//===-- Opcode.cpp --------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "lldb/Core/Opcode.h" #include "lldb/Utility/DataBufferHeap.h" #include "lldb/Utility/DataExtractor.h" #include "lldb/Utility/Endian.h" #include "lldb/Utility/Stream.h" #include "lldb/lldb-forward.h" #include <memory> #include <cinttypes> usingnamespacelldb; usingnamespacelldb_private; int Opcode::Dump(Stream *s, uint32_t min_byte_width) { … } lldb::ByteOrder Opcode::GetDataByteOrder() const { … } uint32_t Opcode::GetData(DataExtractor &data) const { … }