| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| 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 | Address.cpp | 61 static size_t ReadBytes(ExecutionContextScope *exe_scope, in ReadBytes() argument 63 if (exe_scope == nullptr) in ReadBytes() 66 TargetSP target_sp(exe_scope->CalculateTarget()); in ReadBytes() 76 static bool GetByteOrderAndAddressSize(ExecutionContextScope *exe_scope, in GetByteOrderAndAddressSize() argument 82 if (exe_scope == nullptr) in GetByteOrderAndAddressSize() 85 TargetSP target_sp(exe_scope->CalculateTarget()); in GetByteOrderAndAddressSize() 101 static uint64_t ReadUIntMax64(ExecutionContextScope *exe_scope, in ReadUIntMax64() argument 105 if (exe_scope == nullptr || byte_size > sizeof(uint64_t)) { in ReadUIntMax64() 111 success = ReadBytes(exe_scope, address, &buf, byte_size) == byte_size; in ReadUIntMax64() 115 if (GetByteOrderAndAddressSize(exe_scope, address, byte_order, addr_size)) { in ReadUIntMax64() [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() 179 ValueObjectSP ValueObjectRegister::Create(ExecutionContextScope *exe_scope, in Create() argument 183 return (new ValueObjectRegister(exe_scope, *manager_sp, reg_ctx_sp, reg_info)) in Create() 187 ValueObjectRegister::ValueObjectRegister(ExecutionContextScope *exe_scope, in ValueObjectRegister() argument 191 : ValueObject(exe_scope, manager), m_reg_ctx_sp(reg_ctx), m_reg_info(), in ValueObjectRegister()
|
| 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() 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() 349 ExecutionContextScope *exe_scope, bool show_memory_tags) { in DumpDataExtractor() argument 363 GetMemoryTags(base_addr, DE.GetByteSize() - offset, exe_scope); in DumpDataExtractor() 366 return DumpInstructions(DE, s, exe_scope, start_offset, base_addr, in DumpDataExtractor() [all …]
|
| H A D | DumpRegisterValue.cpp | 23 ExecutionContextScope *exe_scope) { in DumpRegisterValue() argument 78 exe_scope); in DumpRegisterValue()
|
| 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()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| 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, 54 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, [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, 72 ValueObjectRegisterSet(ExecutionContextScope *exe_scope, 86 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 129 ValueObjectRegister(ExecutionContextScope *exe_scope,
|
| H A D | ValueObjectVariable.h | 38 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 83 ValueObjectVariable(ExecutionContextScope *exe_scope,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionVariable.cpp | 24 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 D | ClangUserExpression.cpp | 66 ExecutionContextScope &exe_scope, llvm::StringRef expr, in ClangUserExpression() argument 70 : LLVMUserExpression(exe_scope, expr, prefix, language, desired_type, in ClangUserExpression() 74 m_result_delegate(exe_scope.CalculateTarget()), m_ctx_obj(ctx_obj) { in ClangUserExpression() 557 DiagnosticManager &diagnostic_manager, ExecutionContextScope *exe_scope, in TryParse() argument 578 exe_scope, *this, generate_debug_info, m_include_directories, m_filename); in TryParse() 674 ExecutionContextScope *exe_scope = process; in Parse() local 676 if (!exe_scope) in Parse() 677 exe_scope = exe_ctx.GetTargetPtr(); in Parse() 679 bool parse_success = TryParse(diagnostic_manager, exe_scope, exe_ctx, in Parse() 699 parse_success = TryParse(retry_manager, exe_scope, exe_ctx, in Parse() [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 | ClangUserExpression.h | 121 ClangUserExpression(ExecutionContextScope &exe_scope, llvm::StringRef expr, 172 GetResultAfterDematerialization(ExecutionContextScope *exe_scope) override; 185 ExecutionContextScope *exe_scope, ExecutionContext &exe_ctx,
|
| /openbsd-src/gnu/llvm/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, 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 D | ExecutionContext.h | 108 ExecutionContextRef(ExecutionContextScope *exe_scope); 119 ExecutionContextRef(ExecutionContextScope &exe_scope); 325 ExecutionContext(ExecutionContextScope *exe_scope); 326 ExecutionContext(ExecutionContextScope &exe_scope);
|
| /openbsd-src/gnu/llvm/lldb/source/Expression/ |
| H A D | Materializer.cpp | 934 ExecutionContextScope *exe_scope = frame_sp.get(); in Materialize() local 935 if (!exe_scope) in Materialize() 936 exe_scope = map.GetBestExecutionContextScope(); in Materialize() 938 std::optional<uint64_t> byte_size = m_type.GetByteSize(exe_scope); in Materialize() 945 std::optional<size_t> opt_bit_align = m_type.GetTypeBitAlign(exe_scope); in Materialize() 988 ExecutionContextScope *exe_scope = frame_sp.get(); in Dematerialize() local 989 if (!exe_scope) in Dematerialize() 990 exe_scope = map.GetBestExecutionContextScope(); in Dematerialize() 992 if (!exe_scope) { in Dematerialize() 1010 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()
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 382 CompilerType::GetArrayElementType(ExecutionContextScope *exe_scope) const { in GetArrayElementType() 385 return type_system_sp->GetArrayElementType(m_type, exe_scope); in GetArrayElementType() 552 CompilerType::GetBitSize(ExecutionContextScope *exe_scope) const { in GetBitSize() 555 return type_system_sp->GetBitSize(m_type, exe_scope); in GetBitSize() 560 CompilerType::GetByteSize(ExecutionContextScope *exe_scope) const { in GetByteSize() 561 if (std::optional<uint64_t> bit_size = GetBitSize(exe_scope)) in GetByteSize() 567 CompilerType::GetTypeBitAlign(ExecutionContextScope *exe_scope) const { in GetTypeBitAlign() 570 return type_system_sp->GetTypeBitAlign(m_type, exe_scope); in GetTypeBitAlign() 837 ExecutionContextScope *exe_scope) { in DumpTypeValue() argument 842 bitfield_bit_offset, exe_scope); in DumpTypeValue() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 246 CompilerType GetArrayElementType(ExecutionContextScope *exe_scope) const; 330 std::optional<uint64_t> GetByteSize(ExecutionContextScope *exe_scope) const; 332 std::optional<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const; 338 std::optional<size_t> GetTypeBitAlign(ExecutionContextScope *exe_scope) const; 448 ExecutionContextScope *exe_scope); 468 ExecutionContextScope *exe_scope) const;
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Language.cpp | 387 size_t Language::TypeScavenger::Find(ExecutionContextScope *exe_scope, in Find() argument 390 if (!exe_scope || !exe_scope->CalculateTarget().get()) in Find() 401 if (this->Find_Impl(exe_scope, key, results)) in Find() 407 ExecutionContextScope *exe_scope, const char *key, ResultSet &results) { in Find_Impl() argument 410 Target *target = exe_scope->CalculateTarget().get(); in Find_Impl()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectDWIMPrint.cpp | 62 auto *exe_scope = m_exe_ctx.GetBestExecutionContextScope(); in DoExecute() local 64 if (target.EvaluateExpression(expr, exe_scope, valobj_sp) == in DoExecute()
|