Home
last modified time | relevance | path

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

123

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResult.cpp33 return (new ValueObjectConstResult(exe_scope, *manager_sp, byte_order, in Create()
43 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult()
63 ExecutionContextScope *exe_scope, ValueObjectManager &manager, in ValueObjectConstResult() argument
66 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult()
109 ExecutionContextScope *exe_scope, ValueObjectManager &manager, in ValueObjectConstResult() argument
113 : ValueObject(exe_scope, manager), m_impl(this, address) { in ValueObjectConstResult()
140 ExecutionContextScope *exe_scope, ValueObjectManager &manager, in ValueObjectConstResult() argument
143 : ValueObject(exe_scope, manager), m_type_name(), in ValueObjectConstResult()
179 : ValueObject(exe_scope, manager), m_impl(this) { in ValueObjectConstResult()
188 : ValueObject(exe_scope, manager), m_impl(this) { in ValueObjectConstResult()
[all …]
H A DAddress.cpp62 if (exe_scope == nullptr) in ReadBytes()
65 TargetSP target_sp(exe_scope->CalculateTarget()); in ReadBytes()
81 if (exe_scope == nullptr) in GetByteOrderAndAddressSize()
84 TargetSP target_sp(exe_scope->CalculateTarget()); in GetByteOrderAndAddressSize()
127 if (exe_scope == nullptr) in ReadAddress()
163 if (exe_scope == nullptr || byte_size == 0) in DumpUInt()
191 if (exe_scope == nullptr) in ReadCStringFromMemory()
400 ExecutionContext exe_ctx(exe_scope); in Dump()
597 DumpUInt(exe_scope, *this, 4, s); in Dump()
604 DumpUInt(exe_scope, *this, 8, s); in Dump()
[all …]
H A DValueObjectMemory.cpp31 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create() argument
36 return (new ValueObjectMemory(exe_scope, *manager_sp, name, address, type_sp)) in Create()
40 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create() argument
45 return (new ValueObjectMemory(exe_scope, *manager_sp, name, address, in Create()
50 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() argument
55 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(type_sp), in ValueObjectMemory()
78 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() argument
83 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(), in ValueObjectMemory()
H A DValueObjectRegister.cpp41 ValueObjectRegisterSet::Create(ExecutionContextScope *exe_scope, in Create() argument
45 return (new ValueObjectRegisterSet(exe_scope, *manager_sp, reg_ctx_sp, in Create()
50 ValueObjectRegisterSet::ValueObjectRegisterSet(ExecutionContextScope *exe_scope, in ValueObjectRegisterSet() argument
54 : ValueObject(exe_scope, manager), m_reg_ctx_sp(reg_ctx), in ValueObjectRegisterSet()
178 ValueObjectSP ValueObjectRegister::Create(ExecutionContextScope *exe_scope, in Create() argument
182 return (new ValueObjectRegister(exe_scope, *manager_sp, reg_ctx_sp, reg_num)) in Create()
186 ValueObjectRegister::ValueObjectRegister(ExecutionContextScope *exe_scope, in ValueObjectRegister() argument
190 : ValueObject(exe_scope, manager), m_reg_ctx_sp(reg_ctx), m_reg_info(), in ValueObjectRegister()
H A DDumpDataExtractor.cpp144 if (exe_scope) in DumpInstructions()
145 target_sp = exe_scope->CalculateTarget(); in DumpInstructions()
171 exe_scope->CalculateExecutionContext(exe_ctx); in DumpInstructions()
264 ExecutionContextScope *exe_scope) { in DumpDataExtractor() argument
276 return DumpInstructions(DE, s, exe_scope, start_offset, base_addr, in DumpDataExtractor()
549 if (exe_scope) in DumpDataExtractor()
550 target_sp = exe_scope->CalculateTarget(); in DumpDataExtractor()
628 if (exe_scope) { in DumpDataExtractor()
629 TargetSP target_sp(exe_scope->CalculateTarget()); in DumpDataExtractor()
639 so_addr.Dump(s, exe_scope, in DumpDataExtractor()
[all …]
H A DValueObjectVariable.cpp51 ValueObjectVariable::Create(ExecutionContextScope *exe_scope, in Create() argument
54 return (new ValueObjectVariable(exe_scope, *manager_sp, var_sp))->GetSP(); in Create()
57 ValueObjectVariable::ValueObjectVariable(ExecutionContextScope *exe_scope, in ValueObjectVariable() argument
60 : ValueObject(exe_scope, manager), m_variable_sp(var_sp) { in ValueObjectVariable()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectConstResult.h38 Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order,
42 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
47 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
57 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
62 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
123 ValueObjectConstResult(ExecutionContextScope *exe_scope,
128 ValueObjectConstResult(ExecutionContextScope *exe_scope,
133 ValueObjectConstResult(ExecutionContextScope *exe_scope,
140 ValueObjectConstResult(ExecutionContextScope *exe_scope,
146 ValueObjectConstResult(ExecutionContextScope *exe_scope,
[all …]
H A DValueObjectMemory.h33 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
38 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
67 ValueObjectMemory(ExecutionContextScope *exe_scope,
71 ValueObjectMemory(ExecutionContextScope *exe_scope,
H A DValueObjectRegister.h35 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
71 ValueObjectRegisterSet(ExecutionContextScope *exe_scope,
85 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
128 ValueObjectRegister(ExecutionContextScope *exe_scope,
H A DValueObjectVariable.h37 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
82 ValueObjectVariable(ExecutionContextScope *exe_scope,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.cpp24 ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, in ClangExpressionVariable() argument
30 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size); in ClangExpressionVariable()
34 ExecutionContextScope *exe_scope, Value &value, ConstString name, in ClangExpressionVariable() argument
39 m_frozen_sp = ValueObjectConstResult::Create(exe_scope, value, name); in ClangExpressionVariable()
51 ExecutionContextScope *exe_scope, ConstString name, in ClangExpressionVariable() argument
58 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size); in ClangExpressionVariable()
H A DClangUserExpression.cpp69 ExecutionContextScope &exe_scope, llvm::StringRef expr, in ClangUserExpression() argument
73 : LLVMUserExpression(exe_scope, expr, prefix, language, desired_type, in ClangUserExpression()
77 m_result_delegate(exe_scope.CalculateTarget()), m_ctx_obj(ctx_obj) { in ClangUserExpression()
677 ExecutionContextScope *exe_scope = process; in Parse() local
679 if (!exe_scope) in Parse()
680 exe_scope = exe_ctx.GetTargetPtr(); in Parse()
841 ExecutionContextScope *exe_scope = process; in Complete() local
843 if (!exe_scope) in Complete()
844 exe_scope = exe_ctx.GetTargetPtr(); in Complete()
846 ClangExpressionParser parser(exe_scope, *this, false); in Complete()
[all …]
H A DClangExpressionVariable.h62 ClangExpressionVariable(ExecutionContextScope *exe_scope,
65 ClangExpressionVariable(ExecutionContextScope *exe_scope, Value &value,
70 ClangExpressionVariable(ExecutionContextScope *exe_scope,
H A DClangFunctionCaller.cpp48 ClangFunctionCaller::ClangFunctionCaller(ExecutionContextScope &exe_scope, in ClangFunctionCaller() argument
53 : FunctionCaller(exe_scope, return_type, functionAddress, arg_value_list, in ClangFunctionCaller()
56 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess()); in ClangFunctionCaller()
H A DClangUserExpression.h118 ClangUserExpression(ExecutionContextScope &exe_scope, llvm::StringRef expr,
169 GetResultAfterDematerialization(ExecutionContextScope *exe_scope) override;
182 ExecutionContextScope *exe_scope, ExecutionContext &exe_ctx,
/freebsd-13.1/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,
91 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key,
105 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, in Find_Impl() argument
109 if (scavenger && scavenger->Find(exe_scope, key, results, append)) in Find_Impl()
128 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, in Find_Impl() argument
134 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-13.1/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp792 if (!exe_scope) in Materialize()
846 if (!exe_scope) in Dematerialize()
849 if (!exe_scope) { in Dematerialize()
1074 if (!exe_scope) in Materialize()
1079 if (exe_scope) in Materialize()
1354 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize() local
1355 if (!exe_scope) in Materialize()
1356 exe_scope = map.GetBestExecutionContextScope(); in Materialize()
1368 if (!exe_scope) { in Materialize()
1406 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.cpp43 UtilityFunction::UtilityFunction(ExecutionContextScope &exe_scope, in UtilityFunction() argument
46 : Expression(exe_scope), m_execution_unit_sp(), m_jit_module_wp(), in UtilityFunction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp327 CompilerType::GetArrayElementType(ExecutionContextScope *exe_scope) const { in GetArrayElementType()
329 return m_type_system->GetArrayElementType(m_type, exe_scope); in GetArrayElementType()
482 CompilerType::GetBitSize(ExecutionContextScope *exe_scope) const { in GetBitSize()
484 return m_type_system->GetBitSize(m_type, exe_scope); in GetBitSize()
489 CompilerType::GetByteSize(ExecutionContextScope *exe_scope) const { in GetByteSize()
490 if (llvm::Optional<uint64_t> bit_size = GetBitSize(exe_scope)) in GetByteSize()
497 return m_type_system->GetTypeBitAlign(m_type, exe_scope); in GetTypeBitAlign()
742 ExecutionContextScope *exe_scope) { in DumpTypeValue() argument
747 bitfield_bit_offset, exe_scope); in DumpTypeValue()
783 ExecutionContextScope *exe_scope) const { in GetValueAsScalar()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h185 CompilerType GetArrayElementType(ExecutionContextScope *exe_scope) const;
269 llvm::Optional<uint64_t> GetByteSize(ExecutionContextScope *exe_scope) const;
271 llvm::Optional<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const;
278 GetTypeBitAlign(ExecutionContextScope *exe_scope) const;
374 ExecutionContextScope *exe_scope);
394 ExecutionContextScope *exe_scope) const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp365 size_t Language::TypeScavenger::Find(ExecutionContextScope *exe_scope, in Find() argument
368 if (!exe_scope || !exe_scope->CalculateTarget().get()) in Find()
379 if (this->Find_Impl(exe_scope, key, results)) in Find()
385 ExecutionContextScope *exe_scope, const char *key, ResultSet &results) { in Find_Impl() argument
388 Target *target = exe_scope->CalculateTarget().get(); in Find_Impl()
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp95 ExecutionContextScope *exe_scope = in FormatObject() local
97 llvm::Optional<uint64_t> size = compiler_type.GetByteSize(exe_scope); in FormatObject()
109 exe_scope); in FormatObject()
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp566 ExecutionContextScope *exe_scope = nullptr; in GetDescription() local
569 exe_scope = target->GetProcessSP().get(); in GetDescription()
570 if (exe_scope == nullptr) in GetDescription()
571 exe_scope = target; in GetDescription()
574 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, in GetDescription()
577 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, in GetDescription()

123