Searched refs:exe_scope (Results 1 - 25 of 67) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DExpression.cpp23 Expression::Expression(ExecutionContextScope &exe_scope) argument
24 : m_target_wp(exe_scope.CalculateTarget()),
H A DUtilityFunction.cpp43 UtilityFunction::UtilityFunction(ExecutionContextScope &exe_scope, argument
45 : Expression(exe_scope), m_execution_unit_sp(), m_jit_module_wp(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.cpp24 ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order,
30 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size);
34 ExecutionContextScope *exe_scope, Value &value, ConstString name,
39 m_frozen_sp = ValueObjectConstResult::Create(exe_scope, value, name);
51 ExecutionContextScope *exe_scope, ConstString name,
58 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size);
23 ClangExpressionVariable( ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size) argument
33 ClangExpressionVariable( ExecutionContextScope *exe_scope, Value &value, ConstString name, uint16_t flags) argument
50 ClangExpressionVariable( ExecutionContextScope *exe_scope, ConstString name, const TypeFromUser &user_type, lldb::ByteOrder byte_order, uint32_t addr_byte_size) argument
H A DClangPersistentVariables.cpp34 ExecutionContextScope *exe_scope, ConstString name,
38 exe_scope, name, compiler_type, byte_order, addr_byte_size));
33 CreatePersistentVariable( ExecutionContextScope *exe_scope, ConstString name, const CompilerType &compiler_type, lldb::ByteOrder byte_order, uint32_t addr_byte_size) argument
H A DClangUtilityFunction.cpp43 ClangUtilityFunction::ClangUtilityFunction(ExecutionContextScope &exe_scope, argument
45 : UtilityFunction(exe_scope, text, name) {
H A DClangUserExpression.cpp69 ExecutionContextScope &exe_scope, llvm::StringRef expr,
73 : LLVMUserExpression(exe_scope, expr, prefix, language, desired_type,
77 m_result_delegate(exe_scope.CalculateTarget()), m_ctx_obj(ctx_obj) {
598 ExecutionContextScope *exe_scope = process; local
600 if (!exe_scope)
601 exe_scope = exe_ctx.GetTargetPtr();
607 ClangExpressionParser parser(exe_scope, *this, generate_debug_info,
789 ExecutionContextScope *exe_scope = process; local
791 if (!exe_scope)
792 exe_scope
68 ClangUserExpression( ExecutionContextScope &exe_scope, llvm::StringRef expr, llvm::StringRef prefix, lldb::LanguageType language, ResultType desired_type, const EvaluateExpressionOptions &options, ValueObject *ctx_obj) argument
889 GetResultAfterDematerialization( ExecutionContextScope *exe_scope) argument
[all...]
H A DClangExpressionVariable.h59 ClangExpressionVariable(ExecutionContextScope *exe_scope,
62 ClangExpressionVariable(ExecutionContextScope *exe_scope, Value &value,
67 ClangExpressionVariable(ExecutionContextScope *exe_scope,
H A DClangFunctionCaller.cpp48 ClangFunctionCaller::ClangFunctionCaller(ExecutionContextScope &exe_scope, argument
53 : FunctionCaller(exe_scope, return_type, functionAddress, arg_value_list,
56 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
H A DClangExpressionParser.h45 /// \param[in] exe_scope
60 ClangExpressionParser(ExecutionContextScope *exe_scope, Expression &expr,
H A DClangFunctionCaller.h100 /// \param[in] exe_scope
114 ClangFunctionCaller(ExecutionContextScope &exe_scope,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResult.cpp28 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, argument
32 return (new ValueObjectConstResult(exe_scope, byte_order, addr_byte_size,
37 ValueObjectConstResult::ValueObjectConstResult(ExecutionContextScope *exe_scope, argument
41 : ValueObject(exe_scope), m_type_name(), m_byte_size(0),
50 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, argument
55 return (new ValueObjectConstResult(exe_scope, compiler_type, name, data,
61 ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
63 : ValueObject(exe_scope), m_type_name(), m_byte_size(0),
82 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, argument
89 return (new ValueObjectConstResult(exe_scope, compiler_typ
60 ValueObjectConstResult( ExecutionContextScope *exe_scope, const CompilerType &compiler_type, ConstString name, const DataExtractor &data, lldb::addr_t address) argument
94 Create(ExecutionContextScope *exe_scope, Value &value, ConstString name, Module *module) argument
101 ValueObjectConstResult( ExecutionContextScope *exe_scope, const CompilerType &compiler_type, ConstString name, const lldb::DataBufferSP &data_sp, lldb::ByteOrder data_byte_order, uint32_t data_addr_size, lldb::addr_t address) argument
121 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, ConstString name, lldb::addr_t address, AddressType address_type, uint32_t addr_byte_size) argument
132 ValueObjectConstResult( ExecutionContextScope *exe_scope, const CompilerType &compiler_type, ConstString name, lldb::addr_t address, AddressType address_type, uint32_t addr_byte_size) argument
164 Create(ExecutionContextScope *exe_scope, const Status &error) argument
169 ValueObjectConstResult(ExecutionContextScope *exe_scope, const Status &error) argument
176 ValueObjectConstResult(ExecutionContextScope *exe_scope, const Value &value, ConstString name, Module *module) argument
[all...]
H A DAddress.cpp60 static size_t ReadBytes(ExecutionContextScope *exe_scope, argument
62 if (exe_scope == nullptr)
65 TargetSP target_sp(exe_scope->CalculateTarget());
75 static bool GetByteOrderAndAddressSize(ExecutionContextScope *exe_scope, argument
81 if (exe_scope == nullptr)
84 TargetSP target_sp(exe_scope->CalculateTarget());
100 static uint64_t ReadUIntMax64(ExecutionContextScope *exe_scope, argument
104 if (exe_scope == nullptr || byte_size > sizeof(uint64_t)) {
110 success = ReadBytes(exe_scope, address, &buf, byte_size) == byte_size;
114 if (GetByteOrderAndAddressSize(exe_scope, addres
124 ReadAddress(ExecutionContextScope *exe_scope, const Address &address, uint32_t pointer_size, Address &deref_so_addr) argument
161 DumpUInt(ExecutionContextScope *exe_scope, const Address &address, uint32_t byte_size, Stream *strm) argument
189 ReadCStringFromMemory(ExecutionContextScope *exe_scope, const Address &address, Stream *strm) argument
392 Dump(Stream *s, ExecutionContextScope *exe_scope, DumpStyle style, DumpStyle fallback_style, uint32_t addr_size) const argument
[all...]
H A DValueObjectMemory.cpp31 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, argument
35 return (new ValueObjectMemory(exe_scope, name, address, type_sp))->GetSP();
38 ValueObjectSP ValueObjectMemory::Create(ExecutionContextScope *exe_scope, argument
42 return (new ValueObjectMemory(exe_scope, name, address, ast_type))->GetSP();
45 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, argument
49 : ValueObject(exe_scope), m_address(address), m_type_sp(type_sp),
72 ValueObjectMemory::ValueObjectMemory(ExecutionContextScope *exe_scope, argument
76 : ValueObject(exe_scope), m_address(address), m_type_sp(),
H A DValueObjectRegister.cpp107 ValueObjectRegisterSet::Create(ExecutionContextScope *exe_scope, argument
110 return (new ValueObjectRegisterSet(exe_scope, reg_ctx_sp, set_idx))->GetSP();
113 ValueObjectRegisterSet::ValueObjectRegisterSet(ExecutionContextScope *exe_scope, argument
116 : ValueObject(exe_scope), m_reg_ctx_sp(reg_ctx), m_reg_set(nullptr),
240 ValueObjectSP ValueObjectRegister::Create(ExecutionContextScope *exe_scope, argument
243 return (new ValueObjectRegister(exe_scope, reg_ctx_sp, reg_num))->GetSP();
246 ValueObjectRegister::ValueObjectRegister(ExecutionContextScope *exe_scope, argument
249 : ValueObject(exe_scope), m_reg_ctx_sp(reg_ctx), m_reg_info(),
/freebsd-11-stable/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,
53 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,
127 ValueObjectConstResult(ExecutionContextScope *exe_scope,
132 ValueObjectConstResult(ExecutionContextScope *exe_scope,
139 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, llvm::StringRef name,
70 ValueObjectMemory(ExecutionContextScope *exe_scope, llvm::StringRef name,
H A DDumpDataExtractor.h86 ExecutionContextScope *exe_scope = nullptr);
H A DValueObjectVariable.h37 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
79 ValueObjectVariable(ExecutionContextScope *exe_scope,
H A DValueObjectRegister.h72 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
108 ValueObjectRegisterSet(ExecutionContextScope *exe_scope,
119 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
162 ValueObjectRegister(ExecutionContextScope *exe_scope,
/freebsd-11-stable/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,
109 if (scavenger && scavenger->Find(exe_scope, key, results, append))
128 bool Find_Impl(ExecutionContextScope *exe_scope, const char *key,
134 success = scavenger->Find(exe_scope, key, results, append) || success;
H A DExecutionContext.h108 ExecutionContextRef(ExecutionContextScope *exe_scope);
119 ExecutionContextRef(ExecutionContextScope &exe_scope);
324 ExecutionContext(ExecutionContextScope *exe_scope);
325 ExecutionContext(ExecutionContextScope &exe_scope);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionParser.h32 /// \param[in] exe_scope
39 ExpressionParser(ExecutionContextScope *exe_scope, Expression &expr, argument
H A DExpression.h39 Expression(ExecutionContextScope &exe_scope);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp373 size_t Language::TypeScavenger::Find(ExecutionContextScope *exe_scope, argument
376 if (!exe_scope || !exe_scope->CalculateTarget().get())
387 if (this->Find_Impl(exe_scope, key, results))
393 ExecutionContextScope *exe_scope, const char *key, ResultSet &results) {
396 Target *target = exe_scope->CalculateTarget().get();
392 Find_Impl( ExecutionContextScope *exe_scope, const char *key, ResultSet &results) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.h67 ExecutionContextScope *exe_scope) override;

Completed in 174 milliseconds

123