/llvm-project/lldb/source/Utility/ |
H A D | Stream.cpp | 27 Stream::Stream(uint32_t flags, uint32_t addr_size, ByteOrder byte_order, in Stream() 39 ByteOrder Stream::SetByteOrder(ByteOrder byte_order) { in SetByteOrder() 267 size_t Stream::PutHex16(uint16_t uvalue, ByteOrder byte_order) { in PutHex16() 283 size_t Stream::PutHex32(uint32_t uvalue, ByteOrder byte_order) { in PutHex32() 299 size_t Stream::PutHex64(uint64_t uvalue, ByteOrder byte_order) { in PutHex64() 316 lldb::ByteOrder byte_order) { in PutMaxHex64() 335 size_t Stream::PutFloat(float f, ByteOrder byte_order) { in PutFloat() 342 size_t Stream::PutDouble(double d, ByteOrder byte_order) { in PutDouble() 349 size_t Stream::PutLongDouble(long double ld, ByteOrder byte_order) { in PutLongDouble()
|
H A D | GDBRemote.cpp | 23 ByteOrder byte_order) in StreamGDBRemote()
|
H A D | StreamString.cpp | 17 ByteOrder byte_order) in StreamString()
|
/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionVariable.cpp | 26 ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, in ClangExpressionVariable() argument 51 const TypeFromUser &user_type, lldb::ByteOrder byte_order, in ClangExpressionVariable() argument
|
H A D | ClangPersistentVariables.cpp | 42 const CompilerType &compiler_type, lldb::ByteOrder byte_order, in CreatePersistentVariable()
|
H A D | ClangExpressionDeclMap.h | 252 lldb::ByteOrder byte_order = lldb::eByteOrderInvalid; member
|
/llvm-project/lldb/unittests/SymbolFile/DWARF/ |
H A D | DWARFIndexCachingTest.cpp | 26 static void EncodeDecode(const DIERef &object, ByteOrder byte_order) { in EncodeDecode() 69 static void EncodeDecode(const NameToDIE &object, ByteOrder byte_order) { in EncodeDecode() 113 ByteOrder byte_order) { in EncodeDecode() 222 static void EncodeDecode(const CacheSignature &object, ByteOrder byte_order, in EncodeDecode()
|
/llvm-project/lldb/source/Plugins/Process/Linux/ |
H A D | NativeRegisterContextLinux_x86_64.cpp | 468 lldb::ByteOrder byte_order = GetByteOrder(); ReadRegister() local 717 lldb::ByteOrder byte_order = GetByteOrder(); ReadAllRegisterValues() local 810 lldb::ByteOrder byte_order = GetByteOrder(); WriteAllRegisterValues() local 921 CopyXSTATEtoYMM(uint32_t reg_index,lldb::ByteOrder byte_order) CopyXSTATEtoYMM() argument 937 CopyYMMtoXSTATE(uint32_t reg,lldb::ByteOrder byte_order) CopyYMMtoXSTATE() argument [all...] |
H A D | NativeRegisterContextLinux.cpp | 61 lldb::ByteOrder byte_order = GetByteOrder(); WriteRegisterRaw() local
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | StreamBuffer.h | 23 StreamBuffer(uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order) in StreamBuffer()
|
H A D | RegisterValue.h | 87 lldb::ByteOrder byte_order) { in RegisterValue() 275 lldb::ByteOrder byte_order = lldb::eByteOrderInvalid; member
|
H A D | DataExtractor.h | 929 void SetByteOrder(lldb::ByteOrder byte_order) { m_byte_order = byte_order; } in SetByteOrder()
|
/llvm-project/lldb/test/API/tools/lldb-server/register-reading/ |
H A D | TestGdbRemoteGPacket.py | 8 def _extract_register_value(reg_info, reg_bank, byte_order, bytes_per_entry=8): argument
|
/llvm-project/lldb/source/Host/common/ |
H A D | StreamFile.cpp | 19 StreamFile::StreamFile(uint32_t flags, uint32_t addr_size, ByteOrder byte_order) in StreamFile()
|
/llvm-project/lldb/unittests/Symbol/ |
H A D | MangledTest.cpp | 19 static void EncodeDecode(const Mangled &object, ByteOrder byte_order) { in EncodeDecode()
|
H A D | SymbolTest.cpp | 21 ByteOrder byte_order) { in EncodeDecode()
|
H A D | SymtabTest.cpp | 38 static void EncodeDecode(const Symtab &object, ByteOrder byte_order) { in EncodeDecode()
|
/llvm-project/lldb/source/Target/ |
H A D | DynamicRegisterInfo.cpp | 67 uint32_t index, llvm::StringRef slice_str, lldb::ByteOrder byte_order) { in ByteOffsetFromSlice() argument 138 lldb::ByteOrder byte_order) { in ByteOffsetFromComposite() argument 178 lldb::ByteOrder byte_order) { in ByteOffsetFromRegInfoDict() argument 227 const ByteOrder byte_order = arch.GetByteOrder(); in SetRegisterInfo() local
|
/llvm-project/lldb/source/Plugins/ABI/X86/ |
H A D | ABISysV_x86_64.cpp | 362 ByteOrder byte_order = data.GetByteOrder(); SetReturnValueObject() local 510 const ByteOrder byte_order = process_sp->GetByteOrder(); GetReturnValueObjectSimple() local 535 const ByteOrder byte_order = process_sp->GetByteOrder(); GetReturnValueObjectSimple() local 648 ByteOrder byte_order = target->GetArchitecture().GetByteOrder(); GetReturnValueObjectImpl() local [all...] |
H A D | ABISysV_i386.cpp | 528 const ByteOrder byte_order = process_sp->GetByteOrder(); GetReturnValueObjectSimple() local 553 const ByteOrder byte_order = process_sp->GetByteOrder(); GetReturnValueObjectSimple() local
|
/llvm-project/lldb/source/Plugins/ABI/AArch64/ |
H A D | ABISysV_arm64.cpp | 471 const ByteOrder byte_order = exe_ctx.GetProcessRef().GetByteOrder(); LoadValueFromConsecutiveGPRRegisters() local 647 const ByteOrder byte_order = GetReturnValueObjectImpl() local 745 const ByteOrder byte_order = exe_ctx.GetProcessRef().GetByteOrder(); GetReturnValueObjectImpl() local [all...] |
H A D | ABIMacOSX_arm64.cpp | 496 const ByteOrder byte_order = exe_ctx.GetProcessRef().GetByteOrder(); LoadValueFromConsecutiveGPRRegisters() local 675 const ByteOrder byte_order = GetReturnValueObjectImpl() local 775 const ByteOrder byte_order = exe_ctx.GetProcessRef().GetByteOrder(); GetReturnValueObjectImpl() local [all...] |
/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBLocationToDWARFExpression.cpp | 77 ByteOrder byte_order = architecture.GetByteOrder(); in ConvertPDBLocationToDWARFExpression() local
|
/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
H A D | ABISysV_ppc64.cpp | 363 ByteOrder byte_order = data.GetByteOrder(); SetReturnValueObject() local 412 Register(Type ty,uint32_t index,uint32_t offs,RegisterContext * reg_ctx,ByteOrder byte_order) Register() argument 419 Register(Type ty,uint32_t index,RegisterContext * reg_ctx,ByteOrder byte_order) Register() argument 423 Register(uint32_t offs,RegisterContext * reg_ctx,ByteOrder byte_order) Register() argument
|
/llvm-project/lldb/source/Core/ |
H A D | ValueObjectConstResult.cpp |
|