| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectConstResult.cpp | 29 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() argument 34 return (new ValueObjectConstResult(exe_scope, *manager_sp, byte_order, in Create() 39 ValueObjectConstResult::ValueObjectConstResult(ExecutionContextScope *exe_scope, in ValueObjectConstResult() argument 44 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult() 52 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() argument 58 return (new ValueObjectConstResult(exe_scope, *manager_sp, compiler_type, in Create() 64 ExecutionContextScope *exe_scope, ValueObjectManager &manager, in ValueObjectConstResult() argument 67 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult() 85 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() argument 93 return (new ValueObjectConstResult(exe_scope, *manager_sp, compiler_type, in Create() [all …]
|
| H A D | ValueObjectMemory.cpp | 32 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create() argument 37 return (new ValueObjectMemory(exe_scope, *manager_sp, name, address, type_sp)) in Create() 41 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create() argument 46 return (new ValueObjectMemory(exe_scope, *manager_sp, name, address, in Create() 51 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() argument 56 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(type_sp), in ValueObjectMemory() 79 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() argument 84 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(), in ValueObjectMemory()
|
| H A D | ValueObjectRegister.cpp | 43 ValueObjectRegisterSet::Create(ExecutionContextScope *exe_scope, in Create() argument 47 return (new ValueObjectRegisterSet(exe_scope, *manager_sp, reg_ctx_sp, in Create() 52 ValueObjectRegisterSet::ValueObjectRegisterSet(ExecutionContextScope *exe_scope, in ValueObjectRegisterSet() argument 56 : ValueObject(exe_scope, manager), m_reg_ctx_sp(reg_ctx), in ValueObjectRegisterSet() 175 ValueObjectSP ValueObjectRegister::Create(ExecutionContextScope *exe_scope, in Create() argument 179 return (new ValueObjectRegister(exe_scope, *manager_sp, reg_ctx_sp, reg_info)) in Create() 183 ValueObjectRegister::ValueObjectRegister(ExecutionContextScope *exe_scope, in ValueObjectRegister() argument 187 : ValueObject(exe_scope, manager), m_reg_ctx_sp(reg_ctx), m_reg_info(), in ValueObjectRegister()
|
| H A D | ValueObjectVariable.cpp | 52 ValueObjectVariable::Create(ExecutionContextScope *exe_scope, in Create() argument 55 return (new ValueObjectVariable(exe_scope, *manager_sp, var_sp))->GetSP(); in Create() 58 ValueObjectVariable::ValueObjectVariable(ExecutionContextScope *exe_scope, in ValueObjectVariable() argument 61 : ValueObject(exe_scope, manager), m_variable_sp(var_sp) { in ValueObjectVariable()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Address.cpp | 63 static size_t ReadBytes(ExecutionContextScope *exe_scope, in ReadBytes() argument 65 if (exe_scope == nullptr) in ReadBytes() 68 TargetSP target_sp(exe_scope->CalculateTarget()); in ReadBytes() 78 static bool GetByteOrderAndAddressSize(ExecutionContextScope *exe_scope, in GetByteOrderAndAddressSize() argument 84 if (exe_scope == nullptr) in GetByteOrderAndAddressSize() 87 TargetSP target_sp(exe_scope->CalculateTarget()); in GetByteOrderAndAddressSize() 103 static uint64_t ReadUIntMax64(ExecutionContextScope *exe_scope, in ReadUIntMax64() argument 107 if (exe_scope == nullptr || byte_size > sizeof(uint64_t)) { in ReadUIntMax64() 113 success = ReadBytes(exe_scope, address, &buf, byte_size) == byte_size; in ReadUIntMax64() 117 if (GetByteOrderAndAddressSize(exe_scope, address, byte_order, addr_size)) { in ReadUIntMax64() [all …]
|
| H A D | DumpRegisterValue.cpp | 26 lldb_private::ExecutionContextScope *exe_scope, in dump_type_value() argument 29 lldb::ByteOrder target_order = exe_scope->CalculateProcess()->GetByteOrder(); in dump_type_value() 48 exe_scope, fields_type, lldb_private::ConstString(), data_extractor); in dump_type_value() 66 ExecutionContextScope *exe_scope, in DumpRegisterValue() argument 122 exe_scope); in DumpRegisterValue() 124 if (!print_flags || !reg_info.flags_type || !exe_scope || !target_sp || in DumpRegisterValue() 135 dump_type_value(fields_type, reg_val.GetAsUInt32(), exe_scope, reg_info, in DumpRegisterValue() 138 dump_type_value(fields_type, reg_val.GetAsUInt64(), exe_scope, reg_info, in DumpRegisterValue()
|
| H A D | DumpDataExtractor.cpp | 121 ExecutionContextScope *exe_scope, in DumpInstructions() argument 128 if (exe_scope) in DumpInstructions() 129 target_sp = exe_scope->CalculateTarget(); in DumpInstructions() 157 exe_scope->CalculateExecutionContext(exe_ctx); in DumpInstructions() 244 ExecutionContextScope *exe_scope) { in GetMemoryTags() argument 247 if (!exe_scope) in GetMemoryTags() 250 TargetSP target_sp = exe_scope->CalculateTarget(); in GetMemoryTags() 350 ExecutionContextScope *exe_scope, bool show_memory_tags) { in DumpDataExtractor() argument 364 GetMemoryTags(base_addr, DE.GetByteSize() - offset, exe_scope); in DumpDataExtractor() 367 return DumpInstructions(DE, s, exe_scope, start_offset, base_addr, in DumpDataExtractor() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| H A D | ValueObjectConstResult.h | 39 Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, 43 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 48 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 53 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 59 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 64 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 121 ValueObjectConstResult(ExecutionContextScope *exe_scope, 126 ValueObjectConstResult(ExecutionContextScope *exe_scope, 131 ValueObjectConstResult(ExecutionContextScope *exe_scope, 138 ValueObjectConstResult(ExecutionContextScope *exe_scope, [all …]
|
| H A D | ValueObjectMemory.h | 34 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 39 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 68 ValueObjectMemory(ExecutionContextScope *exe_scope, 72 ValueObjectMemory(ExecutionContextScope *exe_scope,
|
| H A D | ValueObjectRegister.h | 36 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 69 ValueObjectRegisterSet(ExecutionContextScope *exe_scope, 88 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 131 ValueObjectRegister(ExecutionContextScope *exe_scope,
|
| H A D | ValueObjectVariable.h | 38 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 84 ValueObjectVariable(ExecutionContextScope *exe_scope,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionVariable.cpp | 26 ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, in ClangExpressionVariable() argument 31 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size); in ClangExpressionVariable() 35 ExecutionContextScope *exe_scope, Value &value, ConstString name, in ClangExpressionVariable() argument 39 m_frozen_sp = ValueObjectConstResult::Create(exe_scope, value, name); in ClangExpressionVariable() 50 ExecutionContextScope *exe_scope, ConstString name, in ClangExpressionVariable() argument 56 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size); in ClangExpressionVariable()
|
| H A D | ClangExpressionVariable.h | 66 ClangExpressionVariable(ExecutionContextScope *exe_scope, 69 ClangExpressionVariable(ExecutionContextScope *exe_scope, Value &value, 74 ClangExpressionVariable(ExecutionContextScope *exe_scope,
|
| H A D | ClangFunctionCaller.cpp | 49 ClangFunctionCaller::ClangFunctionCaller(ExecutionContextScope &exe_scope, in ClangFunctionCaller() argument 54 : FunctionCaller(exe_scope, return_type, functionAddress, arg_value_list, in ClangFunctionCaller() 57 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess()); in ClangFunctionCaller()
|
| H A D | ClangPersistentVariables.cpp | 41 ExecutionContextScope *exe_scope, ConstString name, in CreatePersistentVariable() argument 45 exe_scope, name, compiler_type, byte_order, addr_byte_size)); in CreatePersistentVariable()
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | Materializer.cpp | 943 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize() local 944 if (!exe_scope) in Materialize() 945 exe_scope = map.GetBestExecutionContextScope(); in Materialize() 947 auto byte_size_or_err = m_type.GetByteSize(exe_scope); in Materialize() 954 std::optional<size_t> opt_bit_align = m_type.GetTypeBitAlign(exe_scope); in Materialize() 998 ExecutionContextScope *exe_scope = frame_sp.get(); in Dematerialize() local 999 if (!exe_scope) in Dematerialize() 1000 exe_scope = map.GetBestExecutionContextScope(); in Dematerialize() 1002 if (!exe_scope) { in Dematerialize() 1022 lldb::TargetSP target_sp = exe_scope->CalculateTarget(); in Dematerialize() [all …]
|
| H A D | Expression.cpp | 23 Expression::Expression(ExecutionContextScope &exe_scope) in Expression() argument 24 : m_target_wp(exe_scope.CalculateTarget()), in Expression()
|
| H A D | UtilityFunction.cpp | 38 UtilityFunction::UtilityFunction(ExecutionContextScope &exe_scope, in UtilityFunction() argument 41 : Expression(exe_scope), m_execution_unit_sp(), m_jit_module_wp(), in UtilityFunction()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Language.h | 57 size_t Find(ExecutionContextScope *exe_scope, const char *key, 63 virtual bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, 100 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, 114 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, in Find_Impl() argument 118 if (scavenger && scavenger->Find(exe_scope, key, results, append)) in Find_Impl() 137 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, in Find_Impl() argument 143 success = scavenger->Find(exe_scope, key, results, append) || success; in Find_Impl()
|
| H A D | ExecutionContext.h | 108 ExecutionContextRef(ExecutionContextScope *exe_scope); 119 ExecutionContextRef(ExecutionContextScope &exe_scope); 325 ExecutionContext(ExecutionContextScope *exe_scope); 326 ExecutionContext(ExecutionContextScope &exe_scope);
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 309 CompilerType GetArrayElementType(ExecutionContextScope *exe_scope) const; 399 llvm::Expected<uint64_t> GetByteSize(ExecutionContextScope *exe_scope) const; 401 llvm::Expected<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const; 407 std::optional<size_t> GetTypeBitAlign(ExecutionContextScope *exe_scope) const; 519 ExecutionContextScope *exe_scope); 535 ExecutionContextScope *exe_scope) const;
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 598 CompilerType::GetArrayElementType(ExecutionContextScope *exe_scope) const { in GetArrayElementType() 601 return type_system_sp->GetArrayElementType(m_type, exe_scope); in GetArrayElementType() 775 CompilerType::GetBitSize(ExecutionContextScope *exe_scope) const { in GetBitSize() 778 return type_system_sp->GetBitSize(m_type, exe_scope); in GetBitSize() 783 CompilerType::GetByteSize(ExecutionContextScope *exe_scope) const { in GetByteSize() 784 auto bit_size_or_err = GetBitSize(exe_scope); in GetByteSize() 791 CompilerType::GetTypeBitAlign(ExecutionContextScope *exe_scope) const { in GetTypeBitAlign() 794 return type_system_sp->GetTypeBitAlign(m_type, exe_scope); in GetTypeBitAlign() 1057 ExecutionContextScope *exe_scope) { in DumpTypeValue() argument 1062 bitfield_bit_offset, exe_scope); in DumpTypeValue() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | Language.cpp | 442 size_t Language::TypeScavenger::Find(ExecutionContextScope *exe_scope, in Find() argument 445 if (!exe_scope || !exe_scope->CalculateTarget().get()) in Find() 456 if (this->Find_Impl(exe_scope, key, results)) in Find() 462 ExecutionContextScope *exe_scope, const char *key, ResultSet &results) { in Find_Impl() argument 465 Target *target = exe_scope->CalculateTarget().get(); in Find_Impl()
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 97 ExecutionContextScope *exe_scope = in FormatObject() local 99 auto size_or_err = compiler_type.GetByteSize(exe_scope); in FormatObject() 115 exe_scope); in FormatObject()
|
| /freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 574 ExecutionContextScope *exe_scope = nullptr; in GetDescription() local 577 exe_scope = target->GetProcessSP().get(); in GetDescription() 578 if (exe_scope == nullptr) in GetDescription() 579 exe_scope = target; in GetDescription() 582 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, in GetDescription() 585 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, in GetDescription()
|