Home
last modified time | relevance | path

Searched refs:exe_scope (Results 1 – 25 of 73) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResult.cpp34 return (new ValueObjectConstResult(exe_scope, *manager_sp, byte_order, in Create()
44 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult()
64 ExecutionContextScope *exe_scope, ValueObjectManager &manager, in ValueObjectConstResult() argument
67 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult()
110 ExecutionContextScope *exe_scope, ValueObjectManager &manager, in ValueObjectConstResult() argument
114 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult()
141 ExecutionContextScope *exe_scope, ValueObjectManager &manager, in ValueObjectConstResult() argument
144 : ValueObject(exe_scope, manager), m_type_name(), in ValueObjectConstResult()
180 : ValueObject(exe_scope, manager), m_impl(this) { in ValueObjectConstResult()
189 : ValueObject(exe_scope, manager), m_impl(this) { in ValueObjectConstResult()
[all …]
H A DAddress.cpp65 if (exe_scope == nullptr) in ReadBytes()
68 TargetSP target_sp(exe_scope->CalculateTarget()); in ReadBytes()
84 if (exe_scope == nullptr) in GetByteOrderAndAddressSize()
87 TargetSP target_sp(exe_scope->CalculateTarget()); in GetByteOrderAndAddressSize()
130 if (exe_scope == nullptr) in ReadAddress()
166 if (exe_scope == nullptr || byte_size == 0) in DumpUInt()
194 if (exe_scope == nullptr) in ReadCStringFromMemory()
418 ExecutionContext exe_ctx(exe_scope); in Dump()
614 DumpUInt(exe_scope, *this, 4, s); in Dump()
621 DumpUInt(exe_scope, *this, 8, s); in Dump()
[all …]
H A DDumpRegisterValue.cpp26 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()
65 ExecutionContextScope *exe_scope, in DumpRegisterValue() argument
121 exe_scope); in DumpRegisterValue()
123 if (!print_flags || !reg_info.flags_type || !exe_scope || !target_sp || in DumpRegisterValue()
134 dump_type_value(fields_type, reg_val.GetAsUInt32(), exe_scope, reg_info, in DumpRegisterValue()
137 dump_type_value(fields_type, reg_val.GetAsUInt64(), exe_scope, reg_info, in DumpRegisterValue()
H A DValueObjectMemory.cpp32 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 DValueObjectRegister.cpp43 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()
176 ValueObjectSP ValueObjectRegister::Create(ExecutionContextScope *exe_scope, in Create() argument
180 return (new ValueObjectRegister(exe_scope, *manager_sp, reg_ctx_sp, reg_info)) in Create()
184 ValueObjectRegister::ValueObjectRegister(ExecutionContextScope *exe_scope, in ValueObjectRegister() argument
188 : ValueObject(exe_scope, manager), m_reg_ctx_sp(reg_ctx), m_reg_info(), in ValueObjectRegister()
H A DDumpDataExtractor.cpp128 if (exe_scope) in DumpInstructions()
129 target_sp = exe_scope->CalculateTarget(); in DumpInstructions()
156 exe_scope->CalculateExecutionContext(exe_ctx); in DumpInstructions()
243 ExecutionContextScope *exe_scope) { in GetMemoryTags() argument
246 if (!exe_scope) in GetMemoryTags()
249 TargetSP target_sp = exe_scope->CalculateTarget(); in GetMemoryTags()
657 if (exe_scope) in DumpDataExtractor()
658 target_sp = exe_scope->CalculateTarget(); in DumpDataExtractor()
705 if (exe_scope) { in DumpDataExtractor()
716 so_addr.Dump(s, exe_scope, in DumpDataExtractor()
[all …]
H A DValueObjectVariable.cpp52 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-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectConstResult.h39 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,
58 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
63 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
124 ValueObjectConstResult(ExecutionContextScope *exe_scope,
129 ValueObjectConstResult(ExecutionContextScope *exe_scope,
134 ValueObjectConstResult(ExecutionContextScope *exe_scope,
141 ValueObjectConstResult(ExecutionContextScope *exe_scope,
147 ValueObjectConstResult(ExecutionContextScope *exe_scope,
[all …]
H A DValueObjectMemory.h34 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 DValueObjectRegister.h36 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
72 ValueObjectRegisterSet(ExecutionContextScope *exe_scope,
86 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
129 ValueObjectRegister(ExecutionContextScope *exe_scope,
H A DValueObjectVariable.h38 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
83 ValueObjectVariable(ExecutionContextScope *exe_scope,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.cpp26 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 DClangUserExpression.cpp65 ExecutionContextScope &exe_scope, llvm::StringRef expr, in ClangUserExpression() argument
69 : LLVMUserExpression(exe_scope, expr, prefix, language, desired_type, in ClangUserExpression()
673 ExecutionContextScope *exe_scope = process; in Parse() local
675 if (!exe_scope) in Parse()
676 exe_scope = exe_ctx.GetTargetPtr(); in Parse()
698 parse_success = TryParse(retry_manager, exe_scope, exe_ctx, in Parse()
844 ExecutionContextScope *exe_scope = process; in Complete() local
846 if (!exe_scope) in Complete()
847 exe_scope = exe_ctx.GetTargetPtr(); in Complete()
849 ClangExpressionParser parser(exe_scope, *this, false); in Complete()
[all …]
H A DClangExpressionVariable.h66 ClangExpressionVariable(ExecutionContextScope *exe_scope,
69 ClangExpressionVariable(ExecutionContextScope *exe_scope, Value &value,
74 ClangExpressionVariable(ExecutionContextScope *exe_scope,
H A DClangFunctionCaller.cpp49 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 DClangUserExpression.h124 ClangUserExpression(ExecutionContextScope &exe_scope, llvm::StringRef expr,
175 GetResultAfterDematerialization(ExecutionContextScope *exe_scope) override;
188 ExecutionContextScope *exe_scope, ExecutionContext &exe_ctx,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h47 size_t Find(ExecutionContextScope *exe_scope, const char *key,
53 virtual bool Find_Impl(ExecutionContextScope *exe_scope, const char *key,
90 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key,
104 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, in Find_Impl() argument
108 if (scavenger && scavenger->Find(exe_scope, key, results, append)) in Find_Impl()
127 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, in Find_Impl() argument
133 success = scavenger->Find(exe_scope, key, results, append) || success; in Find_Impl()
H A DExecutionContext.h108 ExecutionContextRef(ExecutionContextScope *exe_scope);
119 ExecutionContextRef(ExecutionContextScope &exe_scope);
325 ExecutionContext(ExecutionContextScope *exe_scope);
326 ExecutionContext(ExecutionContextScope &exe_scope);
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp935 if (!exe_scope) in Materialize()
989 if (!exe_scope) in Dematerialize()
992 if (!exe_scope) { in Dematerialize()
1224 if (!exe_scope) in Materialize()
1229 if (exe_scope) in Materialize()
1504 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize() local
1505 if (!exe_scope) in Materialize()
1506 exe_scope = map.GetBestExecutionContextScope(); in Materialize()
1518 if (!exe_scope) { in Materialize()
1555 if (!exe_scope) in Dematerialize()
[all …]
H A DExpression.cpp23 Expression::Expression(ExecutionContextScope &exe_scope) in Expression() argument
24 : m_target_wp(exe_scope.CalculateTarget()), in Expression()
H A DUtilityFunction.cpp38 UtilityFunction::UtilityFunction(ExecutionContextScope &exe_scope, in UtilityFunction() argument
41 : Expression(exe_scope), m_execution_unit_sp(), m_jit_module_wp(), in UtilityFunction()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h295 CompilerType GetArrayElementType(ExecutionContextScope *exe_scope) const;
379 std::optional<uint64_t> GetByteSize(ExecutionContextScope *exe_scope) const;
381 std::optional<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const;
387 std::optional<size_t> GetTypeBitAlign(ExecutionContextScope *exe_scope) const;
490 ExecutionContextScope *exe_scope);
506 ExecutionContextScope *exe_scope) const;
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp567 CompilerType::GetArrayElementType(ExecutionContextScope *exe_scope) const { in GetArrayElementType()
570 return type_system_sp->GetArrayElementType(m_type, exe_scope); in GetArrayElementType()
737 CompilerType::GetBitSize(ExecutionContextScope *exe_scope) const { in GetBitSize()
740 return type_system_sp->GetBitSize(m_type, exe_scope); in GetBitSize()
745 CompilerType::GetByteSize(ExecutionContextScope *exe_scope) const { in GetByteSize()
746 if (std::optional<uint64_t> bit_size = GetBitSize(exe_scope)) in GetByteSize()
752 CompilerType::GetTypeBitAlign(ExecutionContextScope *exe_scope) const { in GetTypeBitAlign()
755 return type_system_sp->GetTypeBitAlign(m_type, exe_scope); in GetTypeBitAlign()
1008 ExecutionContextScope *exe_scope) { in DumpTypeValue() argument
1013 bitfield_bit_offset, exe_scope); in DumpTypeValue()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp411 size_t Language::TypeScavenger::Find(ExecutionContextScope *exe_scope, in Find() argument
414 if (!exe_scope || !exe_scope->CalculateTarget().get()) in Find()
425 if (this->Find_Impl(exe_scope, key, results)) in Find()
431 ExecutionContextScope *exe_scope, const char *key, ResultSet &results) { in Find_Impl() argument
434 Target *target = exe_scope->CalculateTarget().get(); in Find_Impl()
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp97 ExecutionContextScope *exe_scope = in FormatObject() local
99 std::optional<uint64_t> size = compiler_type.GetByteSize(exe_scope); in FormatObject()
111 exe_scope); in FormatObject()

123