| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | ValueObjectConstResult.cpp | 33 return (new ValueObjectConstResult(exe_scope, byte_order, addr_byte_size, in Create() 42 : ValueObject(exe_scope), m_type_name(), m_byte_size(0), in ValueObjectConstResult() 56 return (new ValueObjectConstResult(exe_scope, compiler_type, name, data, in Create() 62 ExecutionContextScope *exe_scope, const CompilerType &compiler_type, in ValueObjectConstResult() argument 64 : ValueObject(exe_scope), m_type_name(), m_byte_size(0), in ValueObjectConstResult() 103 ExecutionContextScope *exe_scope, const CompilerType &compiler_type, in ValueObjectConstResult() argument 107 : ValueObject(exe_scope), m_type_name(), m_byte_size(0), in ValueObjectConstResult() 134 ExecutionContextScope *exe_scope, const CompilerType &compiler_type, in ValueObjectConstResult() argument 137 : ValueObject(exe_scope), m_type_name(), m_byte_size(0), in ValueObjectConstResult() 167 return (new ValueObjectConstResult(exe_scope, error))->GetSP(); in Create() [all …]
|
| H A D | Address.cpp | 63 if (exe_scope == nullptr) in ReadBytes() 66 TargetSP target_sp(exe_scope->CalculateTarget()); in ReadBytes() 82 if (exe_scope == nullptr) in GetByteOrderAndAddressSize() 85 TargetSP target_sp(exe_scope->CalculateTarget()); in GetByteOrderAndAddressSize() 128 if (exe_scope == nullptr) in ReadAddress() 164 if (exe_scope == nullptr || byte_size == 0) in DumpUInt() 192 if (exe_scope == nullptr) in ReadCStringFromMemory() 383 ExecutionContext exe_ctx(exe_scope); in Dump() 584 DumpUInt(exe_scope, *this, 4, s); in Dump() 591 DumpUInt(exe_scope, *this, 8, s); in Dump() [all …]
|
| H A D | ValueObjectMemory.cpp | 32 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create() argument 36 return (new ValueObjectMemory(exe_scope, name, address, type_sp))->GetSP(); in Create() 39 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, in Create() argument 43 return (new ValueObjectMemory(exe_scope, name, address, ast_type))->GetSP(); in Create() 46 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() argument 50 : ValueObject(exe_scope), m_address(address), m_type_sp(type_sp), in ValueObjectMemory() 73 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, in ValueObjectMemory() argument 77 : ValueObject(exe_scope), m_address(address), m_type_sp(), in ValueObjectMemory()
|
| H A D | ValueObjectRegister.cpp | 107 ValueObjectRegisterSet::Create(ExecutionContextScope *exe_scope, in Create() argument 110 return (new ValueObjectRegisterSet(exe_scope, reg_ctx_sp, set_idx))->GetSP(); in Create() 113 ValueObjectRegisterSet::ValueObjectRegisterSet(ExecutionContextScope *exe_scope, in ValueObjectRegisterSet() argument 116 : ValueObject(exe_scope), m_reg_ctx_sp(reg_ctx), m_reg_set(NULL), in ValueObjectRegisterSet() 240 ValueObjectSP ValueObjectRegister::Create(ExecutionContextScope *exe_scope, in Create() argument 243 return (new ValueObjectRegister(exe_scope, reg_ctx_sp, reg_num))->GetSP(); in Create() 246 ValueObjectRegister::ValueObjectRegister(ExecutionContextScope *exe_scope, in ValueObjectRegister() argument 249 : ValueObject(exe_scope), m_reg_ctx_sp(reg_ctx), m_reg_info(), in ValueObjectRegister()
|
| H A D | DumpDataExtractor.cpp | 140 ExecutionContextScope *exe_scope) { in DumpDataExtractor() argument 153 if (exe_scope) in DumpDataExtractor() 154 target_sp = exe_scope->CalculateTarget(); in DumpDataExtractor() 179 exe_scope->CalculateExecutionContext(exe_ctx); in DumpDataExtractor() 556 if (exe_scope) in DumpDataExtractor() 557 target_sp = exe_scope->CalculateTarget(); in DumpDataExtractor() 653 if (exe_scope) { in DumpDataExtractor() 654 TargetSP target_sp(exe_scope->CalculateTarget()); in DumpDataExtractor() 660 so_addr.Dump(s, exe_scope, Address::DumpStyleResolvedDescription, in DumpDataExtractor() 664 so_addr.Dump(s, exe_scope, in DumpDataExtractor()
|
| H A D | ValueObjectVariable.cpp | 52 ValueObjectVariable::Create(ExecutionContextScope *exe_scope, in Create() argument 54 return (new ValueObjectVariable(exe_scope, var_sp))->GetSP(); in Create() 57 ValueObjectVariable::ValueObjectVariable(ExecutionContextScope *exe_scope, in ValueObjectVariable() argument 59 : ValueObject(exe_scope), m_variable_sp(var_sp) { in ValueObjectVariable()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | ValueObjectConstResult.h | 47 Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, 51 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 56 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 62 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 66 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 71 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 132 ValueObjectConstResult(ExecutionContextScope *exe_scope, 136 ValueObjectConstResult(ExecutionContextScope *exe_scope, 141 ValueObjectConstResult(ExecutionContextScope *exe_scope, 148 ValueObjectConstResult(ExecutionContextScope *exe_scope, [all …]
|
| H A D | ValueObjectMemory.h | 39 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 44 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 73 ValueObjectMemory(ExecutionContextScope *exe_scope, llvm::StringRef name, 76 ValueObjectMemory(ExecutionContextScope *exe_scope, llvm::StringRef name,
|
| H A D | ValueObjectRegister.h | 88 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 124 ValueObjectRegisterSet(ExecutionContextScope *exe_scope, 137 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 180 ValueObjectRegister(ExecutionContextScope *exe_scope,
|
| H A D | ValueObjectVariable.h | 51 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 93 ValueObjectVariable(ExecutionContextScope *exe_scope,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionVariable.cpp | 25 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, const ConstString &name, in ClangExpressionVariable() argument 40 m_frozen_sp = ValueObjectConstResult::Create(exe_scope, value, name); in ClangExpressionVariable() 52 ExecutionContextScope *exe_scope, const ConstString &name, in ClangExpressionVariable() argument 59 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size); in ClangExpressionVariable()
|
| H A D | ClangUserExpression.cpp | 61 ExecutionContextScope &exe_scope, llvm::StringRef expr, in ClangUserExpression() argument 64 : LLVMUserExpression(exe_scope, expr, prefix, language, desired_type, in ClangUserExpression() 69 m_result_delegate(exe_scope.CalculateTarget()) { in ClangUserExpression() 490 ExecutionContextScope *exe_scope = process; in Parse() local 492 if (!exe_scope) in Parse() 493 exe_scope = exe_ctx.GetTargetPtr(); in Parse() 680 ExecutionContextScope *exe_scope = process; in Complete() local 682 if (!exe_scope) in Complete() 683 exe_scope = exe_ctx.GetTargetPtr(); in Complete() 685 ClangExpressionParser parser(exe_scope, *this, false); in Complete() [all …]
|
| H A D | ClangExpressionVariable.h | 62 ClangExpressionVariable(ExecutionContextScope *exe_scope, 65 ClangExpressionVariable(ExecutionContextScope *exe_scope, Value &value, 70 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 | 35 ExecutionContextScope *exe_scope, const ConstString &name, in CreatePersistentVariable() argument 39 exe_scope, name, compiler_type, byte_order, addr_byte_size)); in CreatePersistentVariable()
|
| H A D | ClangUtilityFunction.cpp | 42 ClangUtilityFunction::ClangUtilityFunction(ExecutionContextScope &exe_scope, in ClangUtilityFunction() argument 44 : UtilityFunction(exe_scope, text, name) {} in ClangUtilityFunction()
|
| H A D | ClangUserExpression.h | 110 ClangUserExpression(ExecutionContextScope &exe_scope, llvm::StringRef expr, 161 GetResultAfterDematerialization(ExecutionContextScope *exe_scope) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Language.h | 47 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 D | ExecutionContext.h | 123 ExecutionContextRef(ExecutionContextScope *exe_scope); 136 ExecutionContextRef(ExecutionContextScope &exe_scope); 385 ExecutionContext(ExecutionContextScope *exe_scope); 386 ExecutionContext(ExecutionContextScope &exe_scope);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | Language.cpp | 362 size_t Language::TypeScavenger::Find(ExecutionContextScope *exe_scope, in Find() argument 365 if (!exe_scope || !exe_scope->CalculateTarget().get()) in Find() 376 if (this->Find_Impl(exe_scope, key, results)) in Find() 382 ExecutionContextScope *exe_scope, const char *key, ResultSet &results) { in Find_Impl() argument 385 Target *target = exe_scope->CalculateTarget().get(); in Find_Impl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/ |
| H A D | Expression.cpp | 24 Expression::Expression(ExecutionContextScope &exe_scope) in Expression() argument 25 : m_target_wp(exe_scope.CalculateTarget()), in Expression()
|
| H A D | Materializer.cpp | 798 llvm::Optional<uint64_t> byte_size = m_type.GetByteSize(exe_scope); in Materialize() 843 ExecutionContextScope *exe_scope = map.GetBestExecutionContextScope(); in Dematerialize() local 845 if (!exe_scope) { in Dematerialize() 863 lldb::TargetSP target_sp = exe_scope->CalculateTarget(); in Dematerialize() 1072 ExecutionContextScope *exe_scope = map.GetBestExecutionContextScope(); in Materialize() local 1076 if (exe_scope) in Materialize() 1352 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize() local 1354 if (!exe_scope) in Materialize() 1355 exe_scope = map.GetBestExecutionContextScope(); in Materialize() 1367 if (!exe_scope) { in Materialize() [all …]
|
| H A D | UtilityFunction.cpp | 43 UtilityFunction::UtilityFunction(ExecutionContextScope &exe_scope, in UtilityFunction() argument 45 : Expression(exe_scope), m_execution_unit_sp(), m_jit_module_wp(), in UtilityFunction()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 97 ExecutionContextScope *exe_scope = in FormatObject() local 99 llvm::Optional<uint64_t> size = compiler_type.GetByteSize(exe_scope); in FormatObject() 111 exe_scope); in FormatObject()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 571 ExecutionContextScope *exe_scope = nullptr; in GetDescription() local 574 exe_scope = target->GetProcessSP().get(); in GetDescription() 575 if (exe_scope == nullptr) in GetDescription() 576 exe_scope = target; in GetDescription() 579 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, in GetDescription() 582 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, in GetDescription()
|