Searched refs:exe_ctx (Results 76 - 100 of 206) sorted by relevance

123456789

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueFormat.h54 DumpValue(const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) override;
H A DOptionValueFormatEntity.h42 DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) override;
H A DOptionValueLanguage.h55 DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) override;
H A DOptionValueUInt64.h69 DumpValue(const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) override;
H A DProperty.h87 Dump (const ExecutionContext *exe_ctx,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBFunction.cpp160 ExecutionContext exe_ctx; local
165 target_sp->CalculateExecutionContext (exe_ctx);
166 exe_ctx.SetProcessSP(target_sp->GetProcessSP());
175 exe_ctx,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionSourceCode.cpp178 bool ExpressionSourceCode::GetText (std::string &text, lldb::LanguageType wrapping_language, bool const_object, bool static_method, ExecutionContext &exe_ctx) const
183 if (Target *target = exe_ctx.GetTargetPtr())
214 if (StackFrame *frame = exe_ctx.GetFramePtr())
242 if (StackFrame *frame = exe_ctx.GetFramePtr())
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueArch.cpp25 OptionValueArch::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) argument
H A DOptionValueFormatEntity.cpp55 OptionValueFormatEntity::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) argument
H A DOptionValueLanguage.cpp25 OptionValueLanguage::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) argument
H A DOptionValueRegex.cpp22 OptionValueRegex::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) argument
H A DOptionValueSInt64.cpp23 OptionValueSInt64::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) argument
25 //printf ("%p: DumpValue (exe_ctx=%p, strm, mask) m_current_value = %" PRIi64 "\n", this, exe_ctx, m_current_value);
H A DOptionValueUInt64.cpp34 OptionValueUInt64::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.h92 /// @param[in] exe_ctx
117 ExecutionContext &exe_ctx,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp37 ExecutionContext exe_ctx (m_thread_wp.lock());
38 Target *target = exe_ctx.GetTargetPtr();
284 ExecutionContext exe_ctx (thread.shared_from_this());
285 Target *target = exe_ctx.GetTargetPtr();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.h45 const lldb_private::ExecutionContext &exe_ctx,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp771 CompilerType::GetChildCompilerTypeAtIndex (ExecutionContext *exe_ctx, argument
789 exe_ctx,
926 CompilerType::DumpValue (ExecutionContext *exe_ctx, argument
941 m_type_system->DumpValue(m_type, exe_ctx, s, format, data, data_byte_offset, data_byte_size, bitfield_bit_size, bitfield_bit_offset, show_types, show_summary, verbose, depth);
965 CompilerType::DumpSummary (ExecutionContext *exe_ctx, argument
972 m_type_system->DumpSummary(m_type, exe_ctx, s, data, data_byte_offset, data_byte_size);
1207 CompilerType::ReadFromMemory (lldb_private::ExecutionContext *exe_ctx, argument
1223 const uint64_t byte_size = GetByteSize(exe_ctx ? exe_ctx->GetBestExecutionContextScope() : NULL);
1244 if (exe_ctx)
1257 WriteToMemory(lldb_private::ExecutionContext *exe_ctx, lldb::addr_t addr, AddressType address_type, StreamString &new_value) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp191 ExecutionContext exe_ctx (thread_sp->GetStackFrameAtIndex(0));
192 StoppointCallbackContext context (event_ptr, exe_ctx, true);
375 ExecutionContext exe_ctx (thread_sp->GetStackFrameAtIndex(0));
376 Process *process = exe_ctx.GetProcessPtr();
417 StoppointCallbackContext context (event_ptr, exe_ctx, false);
473 bool condition_says_stop = bp_loc_sp->ConditionSaysStop(exe_ctx, condition_error);
477 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger();
664 ExecutionContext exe_ctx (thread_sp->GetStackFrameAtIndex(0));
665 StoppointCallbackContext context (event_ptr, exe_ctx, true);
707 ExecutionContext exe_ctx (thread_s
[all...]
H A DExecutionContext.cpp554 ExecutionContextRef::ExecutionContextRef (const ExecutionContext *exe_ctx) : argument
561 if (exe_ctx)
562 *this = *exe_ctx;
565 ExecutionContextRef::ExecutionContextRef (const ExecutionContext &exe_ctx) : argument
572 *this = exe_ctx;
613 ExecutionContextRef::operator =(const ExecutionContext &exe_ctx) argument
615 m_target_wp = exe_ctx.GetTargetSP();
616 m_process_wp = exe_ctx.GetProcessSP();
617 lldb::ThreadSP thread_sp (exe_ctx.GetThreadSP());
623 lldb::StackFrameSP frame_sp (exe_ctx
[all...]
H A DStackFrame.cpp300 ExecutionContext exe_ctx (shared_from_this());
301 Target *target = exe_ctx.GetTargetPtr();
310 exe_ctx,
1226 ExecutionContext exe_ctx (shared_from_this());
1230 loclist_base_addr = m_sc.function->GetAddressRange().GetBaseAddress().GetLoadAddress (exe_ctx.GetTargetPtr());
1232 if (m_sc.function->GetFrameBaseExpression().Evaluate(&exe_ctx, NULL, NULL, NULL, loclist_base_addr, NULL, expr_value, &m_frame_base_error) == false)
1241 m_frame_base = expr_value.ResolveValue(&exe_ctx);
1398 StackFrame::CalculateExecutionContext (ExecutionContext &exe_ctx) argument
1400 exe_ctx.SetContext (shared_from_this());
1410 ExecutionContext exe_ctx (shared_from_thi
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObject.cpp504 ExecutionContext exe_ctx (GetExecutionContextRef());
506 scalar = tmp_value.ResolveValue(&exe_ctx);
835 ExecutionContext exe_ctx (GetExecutionContextRef());
837 child_compiler_type = GetCompilerType().GetChildCompilerTypeAtIndex (&exe_ctx,
981 ExecutionContext exe_ctx (GetExecutionContextRef());
983 const uint64_t item_type_size = pointee_or_element_compiler_type.GetByteSize(exe_ctx.GetBestExecutionContextScope());
1026 ExecutionContext exe_ctx (GetExecutionContextRef());
1027 Target* target = exe_ctx.GetTargetPtr();
1043 ExecutionContext exe_ctx (GetExecutionContextRef());
1044 Process *process = exe_ctx
4073 CreateValueObjectFromExpression(const char* name, const char* expression, const ExecutionContext& exe_ctx) argument
4082 CreateValueObjectFromExpression(const char* name, const char* expression, const ExecutionContext& exe_ctx, const EvaluateExpressionOptions& options) argument
4103 CreateValueObjectFromAddress(const char* name, uint64_t address, const ExecutionContext& exe_ctx, CompilerType type) argument
4135 CreateValueObjectFromData(const char* name, const DataExtractor& data, const ExecutionContext& exe_ctx, CompilerType type) argument
[all...]
H A DDebugger.cpp195 Debugger::SetPropertyValue (const ExecutionContext *exe_ctx, argument
204 if (is_load_script && exe_ctx->GetTargetSP())
206 target_sp = exe_ctx->GetTargetSP();
209 Error error (Properties::SetPropertyValue (exe_ctx, op, property_path, value));
890 ExecutionContext exe_ctx; local
892 exe_ctx.SetTargetSP (target_sp);
897 exe_ctx.SetProcessSP (process_sp);
903 exe_ctx.SetThreadSP (thread_sp);
904 exe_ctx.SetFrameSP (thread_sp->GetSelectedFrame());
905 if (exe_ctx
1271 FormatDisassemblerAddress(const FormatEntity::Entry *format, const SymbolContext *sc, const SymbolContext *prev_sc, const ExecutionContext *exe_ctx, const Address *addr, Stream &s) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DWatchpoint.cpp63 ExecutionContext exe_ctx; local
64 m_target.GetProcessSP()->CalculateExecutionContext(exe_ctx);
65 CaptureWatchedValue (exe_ctx);
138 Watchpoint::CaptureWatchedValue (const ExecutionContext &exe_ctx) argument
151 m_new_value_sp = ValueObjectMemory::Create (exe_ctx.GetBestExecutionContextScope(), watch_name.AsCString(), watch_address, m_type);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp529 ExecutionContext exe_ctx (context->exe_ctx_ref);
530 Process *process = exe_ctx.GetProcessPtr();
543 bool success = abi->GetArgumentValues (exe_ctx.GetThreadRef(), argument_values);
550 error = argument_values.GetValueAtIndex(0)->GetValueAsData (&exe_ctx,
743 ExecutionContext exe_ctx (thread.shared_from_this());
760 m_impl_code.reset (exe_ctx.GetTargetRef().GetUtilityFunctionForLanguage (g_lookup_implementation_function_code,
772 if (!m_impl_code->Install(errors, exe_ctx))
816 if (impl_function_caller->WriteFunctionArguments (exe_ctx, args_addr, dispatch_values, errors))
927 ExecutionContext exe_ctx (thread.shared_from_this());
928 Process *process = exe_ctx
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp211 ExecutionContext exe_ctx (CalculateThread());
213 Process *process = exe_ctx.GetProcessPtr();
214 Thread *thread = exe_ctx.GetThreadPtr();
366 ExecutionContext exe_ctx (CalculateThread());
368 Process *process = exe_ctx.GetProcessPtr();
369 Thread *thread = exe_ctx.GetThreadPtr();
510 ExecutionContext exe_ctx (CalculateThread());
512 Process *process = exe_ctx.GetProcessPtr();
513 Thread *thread = exe_ctx.GetThreadPtr();
539 ExecutionContext exe_ctx (CalculateThrea
[all...]

Completed in 143 milliseconds

123456789