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

12

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObjectConstResult.cpp33 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope, argument
38 return (new ValueObjectConstResult (exe_scope,
44 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope, argument
48 ValueObject (exe_scope),
63 ExecutionContextScope *exe_scope,
70 return (new ValueObjectConstResult (exe_scope,
77 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope, argument
82 ValueObject (exe_scope),
105 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope, argument
113 return (new ValueObjectConstResult (exe_scope,
61 Create( ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, const DataExtractor &data, lldb::addr_t address ) argument
123 Create(ExecutionContextScope *exe_scope, Value &value, const ConstString &name) argument
130 ValueObjectConstResult(ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, const lldb::DataBufferSP &data_sp, lldb::ByteOrder data_byte_order, uint32_t data_addr_size, lldb::addr_t address) argument
156 Create(ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, lldb::addr_t address, AddressType address_type, uint32_t addr_byte_size) argument
171 ValueObjectConstResult(ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, lldb::addr_t address, AddressType address_type, uint32_t addr_byte_size) argument
202 Create( ExecutionContextScope *exe_scope, const Error& error ) argument
212 ValueObjectConstResult(ExecutionContextScope *exe_scope, const Error& error) argument
223 ValueObjectConstResult(ExecutionContextScope *exe_scope, const Value &value, const ConstString &name) argument
[all...]
H A DAddress.cpp29 ReadBytes (ExecutionContextScope *exe_scope, const Address &address, void *dst, size_t dst_len) argument
31 if (exe_scope == NULL)
34 TargetSP target_sp (exe_scope->CalculateTarget());
45 GetByteOrderAndAddressSize (ExecutionContextScope *exe_scope, const Address &address, ByteOrder& byte_order, uint32_t& addr_size) argument
49 if (exe_scope == NULL)
52 TargetSP target_sp (exe_scope->CalculateTarget());
72 ReadUIntMax64 (ExecutionContextScope *exe_scope, const Address &address, uint32_t byte_size, bool &success) argument
75 if (exe_scope == NULL || byte_size > sizeof(uint64_t))
82 success = ReadBytes (exe_scope, address, &buf, byte_size) == byte_size;
87 if (GetByteOrderAndAddressSize (exe_scope, addres
100 ReadAddress(ExecutionContextScope *exe_scope, const Address &address, uint32_t pointer_size, Address &deref_so_addr) argument
141 DumpUInt(ExecutionContextScope *exe_scope, const Address &address, uint32_t byte_size, Stream* strm) argument
173 ReadCStringFromMemory(ExecutionContextScope *exe_scope, const Address &address, Stream *strm) argument
391 Dump(Stream *s, ExecutionContextScope *exe_scope, DumpStyle style, DumpStyle fallback_style, uint32_t addr_size) const argument
[all...]
H A DValueObjectMemory.cpp37 ValueObjectMemory::Create (ExecutionContextScope *exe_scope, argument
42 return (new ValueObjectMemory (exe_scope, name, address, type_sp))->GetSP();
46 ValueObjectMemory::Create (ExecutionContextScope *exe_scope, argument
51 return (new ValueObjectMemory (exe_scope, name, address, ast_type))->GetSP();
54 ValueObjectMemory::ValueObjectMemory (ExecutionContextScope *exe_scope, argument
58 ValueObject(exe_scope),
90 ValueObjectMemory::ValueObjectMemory (ExecutionContextScope *exe_scope, argument
94 ValueObject(exe_scope),
H A DValueObjectRegister.cpp117 ValueObjectRegisterSet::Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t set_idx) argument
119 return (new ValueObjectRegisterSet (exe_scope, reg_ctx_sp, set_idx))->GetSP();
123 ValueObjectRegisterSet::ValueObjectRegisterSet (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx, uint32_t reg_set_idx) : argument
124 ValueObject (exe_scope),
283 ValueObjectRegister::Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t reg_num) argument
285 return (new ValueObjectRegister (exe_scope, reg_ctx_sp, reg_num))->GetSP();
288 ValueObjectRegister::ValueObjectRegister (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx, uint32_t reg_num) : argument
289 ValueObject (exe_scope),
H A DValueObjectVariable.cpp39 ValueObjectVariable::Create (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp) argument
41 return (new ValueObjectVariable (exe_scope, var_sp))->GetSP();
44 ValueObjectVariable::ValueObjectVariable (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp) : argument
45 ValueObject(exe_scope),
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObjectConstResult.h30 Create (ExecutionContextScope *exe_scope,
36 Create (ExecutionContextScope *exe_scope,
43 Create (ExecutionContextScope *exe_scope,
52 Create (ExecutionContextScope *exe_scope,
60 Create (ExecutionContextScope *exe_scope,
66 Create (ExecutionContextScope *exe_scope,
141 ValueObjectConstResult (ExecutionContextScope *exe_scope,
146 ValueObjectConstResult (ExecutionContextScope *exe_scope,
152 ValueObjectConstResult (ExecutionContextScope *exe_scope,
160 ValueObjectConstResult (ExecutionContextScope *exe_scope,
[all...]
H A DValueObjectMemory.h30 Create (ExecutionContextScope *exe_scope,
36 Create (ExecutionContextScope *exe_scope,
74 ValueObjectMemory (ExecutionContextScope *exe_scope,
79 ValueObjectMemory (ExecutionContextScope *exe_scope,
H A DValueObjectVariable.h29 Create (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp);
81 ValueObjectVariable (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp);
H A DValueObjectRegister.h76 Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t set_idx);
122 ValueObjectRegisterSet (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t set_idx);
134 Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t reg_num);
185 ValueObjectRegister (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t reg_num);
H A DAddress.h251 ExecutionContextScope *exe_scope,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangPersistentVariables.cpp35 ClangPersistentVariables::CreatePersistentVariable (ExecutionContextScope *exe_scope, argument
44 var_sp = CreateVariable(exe_scope, name, user_type, byte_order, addr_byte_size);
H A DClangExpressionVariable.cpp28 ClangExpressionVariable::ClangExpressionVariable(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size) : argument
32 m_frozen_sp (ValueObjectConstResult::Create (exe_scope, byte_order, addr_byte_size))
H A DClangExpressionParser.cpp180 ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope, argument
202 if (exe_scope)
203 target_sp = exe_scope->CalculateTarget();
290 if (exe_scope)
291 process_sp = exe_scope->CalculateProcess();
H A DMaterializer.cpp792 ExecutionContextScope *exe_scope = map.GetBestExecutionContextScope(); local
794 if (!exe_scope)
812 lldb::TargetSP target_sp = exe_scope->CalculateTarget();
824 ret = target_sp->GetPersistentVariables().CreateVariable(exe_scope,
842 ret->m_live_sp = ValueObjectConstResult::Create(exe_scope,
1016 ExecutionContextScope *exe_scope = map.GetBestExecutionContextScope(); local
1020 if (exe_scope)
1314 ExecutionContextScope *exe_scope = frame_sp.get(); local
1316 if (!exe_scope)
1317 exe_scope
1364 ExecutionContextScope *exe_scope = m_map->GetBestExecutionContextScope(); local
[all...]
H A DClangFunction.cpp53 ExecutionContextScope &exe_scope,
68 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
75 ExecutionContextScope &exe_scope,
90 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
51 ClangFunction( ExecutionContextScope &exe_scope, const ClangASTType &return_type, const Address& functionAddress, const ValueList &arg_value_list ) argument
73 ClangFunction( ExecutionContextScope &exe_scope, Function &function, ClangASTContext *ast_context, const ValueList &arg_value_list ) argument
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DClangPersistentVariables.h40 CreatePersistentVariable (ExecutionContextScope *exe_scope,
H A DClangExpressionVariable.h66 ClangExpressionVariable(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size);
394 CreateVariable (ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size) argument
396 lldb::ClangExpressionVariableSP var_sp(new ClangExpressionVariable(exe_scope, byte_order, addr_byte_size));
410 CreateVariable (ExecutionContextScope *exe_scope, argument
416 lldb::ClangExpressionVariableSP var_sp(new ClangExpressionVariable(exe_scope, byte_order, addr_byte_size));
H A DClangFunction.h73 /// @param[in] exe_scope
88 ClangFunction (ExecutionContextScope &exe_scope,
96 /// @param[in] exe_scope
114 ClangFunction (ExecutionContextScope &exe_scope,
H A DClangExpressionParser.h45 /// @param[in] exe_scope,
53 ClangExpressionParser (ExecutionContextScope *exe_scope,
H A DDWARFExpression.h260 Evaluate (ExecutionContextScope *exe_scope,
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DExecutionContext.h140 ExecutionContextRef (ExecutionContextScope *exe_scope);
154 ExecutionContextRef (ExecutionContextScope &exe_scope);
414 ExecutionContext (ExecutionContextScope *exe_scope);
415 ExecutionContext (ExecutionContextScope &exe_scope);
H A DLanguageRuntime.h45 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope) = 0;
H A DCPPLanguageRuntime.h131 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp623 ExecutionContextScope *exe_scope = NULL; local
626 exe_scope = target->GetProcessSP().get();
627 if (exe_scope == NULL)
628 exe_scope = target;
631 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleFileAddress);
633 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleModuleWithFileAddress);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DSymbolContext.h167 ExecutionContextScope *exe_scope,

Completed in 97 milliseconds

12