Home
last modified time | relevance | path

Searched refs:return_pc (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp261 addr_t return_pc, CallSequence &path, in FindInterveningFrames() argument
264 begin.GetDisplayName(), end.GetDisplayName(), return_pc); in FindInterveningFrames()
271 CallEdge *first_edge = begin.GetCallEdgeForReturnAddress(return_pc, target); in FindInterveningFrames()
274 begin.GetDisplayName(), return_pc); in FindInterveningFrames()
286 end.GetDisplayName(), return_pc); in FindInterveningFrames()
405 addr_t return_pc = next_reg_ctx_sp->GetPC(); in SynthesizeTailCallFrames() local
410 FindInterveningFrames(*next_func, *prev_func, exe_ctx, target, return_pc, in SynthesizeTailCallFrames()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp356 CallEdge *Function::GetCallEdgeForReturnAddress(addr_t return_pc, in GetCallEdgeForReturnAddress() argument
363 std::make_pair(false, return_pc); in GetCallEdgeForReturnAddress()
366 edge_it->get()->GetReturnPCAddress(*this, target) != return_pc) in GetCallEdgeForReturnAddress()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp593 addr_t return_pc = LLDB_INVALID_ADDRESS; in Evaluate_DW_OP_entry_value() local
605 if (return_pc == LLDB_INVALID_ADDRESS) { in Evaluate_DW_OP_entry_value()
606 return_pc = parent_frame->GetFrameCodeAddress().GetLoadAddress(&target); in Evaluate_DW_OP_entry_value()
607 LLDB_LOG(log, "immediate ancestor with pc = {0:x}", return_pc); in Evaluate_DW_OP_entry_value()
641 call_edge = parent_func->GetCallEdgeForReturnAddress(return_pc, target); in Evaluate_DW_OP_entry_value()
645 return_pc, parent_func->GetName())); in Evaluate_DW_OP_entry_value()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp187 addr_t return_pc = in DeterminePtrauthFailure() local
190 if (!target.ResolveLoadAddress(return_pc - 4, blr_address)) in DeterminePtrauthFailure()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h482 /// address \p return_pc, or return nullptr. Note that this will not return a
484 CallEdge *GetCallEdgeForReturnAddress(lldb::addr_t return_pc, Target &target);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp4067 addr_t return_pc = LLDB_INVALID_ADDRESS; in CollectCallEdges() local
4105 return_pc = form_value.Address(); in CollectCallEdges()
4137 if (return_pc != LLDB_INVALID_ADDRESS) { in CollectCallEdges()
4138 caller_address = return_pc; in CollectCallEdges()
4164 call_origin->GetPubname(), return_pc, call_inst_pc); in CollectCallEdges()