15#include "llvm/ADT/StringRef.h"
57 R
"(^std::__1::(__function.*::operator\(\)|__invoke))"
62 std::string
GetName()
override {
return "libc++ frame recognizer"; }
68 const auto &sc = frame_sp->GetSymbolContext(lldb::eSymbolContextFunction);
84 std::make_shared<RegularExpression>(
"^std::__1::"),
95 return llvm::createStringError(
"C++ does not support object descriptions");
102 return llvm::createStringError(
"C++ does not support object descriptions");
106 return str_ref.contains(
"$_") || str_ref.contains(
"'lambda'");
111 llvm::StringRef first_template_param_sref,
142 return optional_info;
153 return optional_info;
187 ValueObjectSP member_f_(valobj_sp->GetChildMemberWithName(
"__f_"));
190 ValueObjectSP sub_member_f_(member_f_->GetChildMemberWithName(
"__f_"));
193 member_f_ = sub_member_f_;
197 return optional_info;
199 lldb::addr_t member_f_pointer_value = member_f_->GetValueAsUnsigned(0);
203 if (!member_f_pointer_value)
204 return optional_info;
209 if (process ==
nullptr)
210 return optional_info;
221 return optional_info;
227 return optional_info;
229 lldb::addr_t address_after_vtable = member_f_pointer_value + address_size;
236 return optional_info;
241 return optional_info;
243 Address vtable_first_entry_resolved;
246 vtable_address_first_entry, vtable_first_entry_resolved))
247 return optional_info;
254 vtable_addr_resolved))
255 return optional_info;
258 vtable_addr_resolved, eSymbolContextEverything, sc);
261 if (symbol ==
nullptr)
262 return optional_info;
265 bool found_expected_start_string =
266 vtable_name.starts_with(
"vtable for std::__1::__function::__func<");
268 if (!found_expected_start_string)
269 return optional_info;
285 size_t first_open_angle_bracket = vtable_name.find(
'<') + 1;
286 size_t first_comma = vtable_name.find(
',');
288 llvm::StringRef first_template_parameter =
289 vtable_name.slice(first_open_angle_bracket, first_comma);
291 Address function_address_resolved;
297 possible_function_address, function_address_resolved)) {
299 function_address_resolved, eSymbolContextEverything, sc);
306 auto calculate_symbol_context_helper = [](
auto &t,
309 t->CalculateSymbolContext(&sc);
316 calculate_symbol_context_helper(symbol, scl);
330 return optional_info;
333 std::string func_to_match = first_template_parameter.str();
343 llvm::StringRef name_to_use = func_to_match;
352 return optional_info;
354 if (vtable_cu && !has_invoke) {
357 auto name = f->GetName().GetStringRef();
358 if (name.starts_with(name_to_use) && name.contains(
"operator"))
365 calculate_symbol_context_helper(func_sp, scl);
369 if (symbol ==
nullptr)
370 return optional_info;
375 first_template_parameter, has_invoke);
380 return optional_info;
392 if (target_sp->GetSectionLoadList().IsEmpty())
399 if (!target_sp->GetSectionLoadList().ResolveLoadAddress(curr_pc,
403 target_sp->GetImages().ResolveSymbolContextForAddress(
404 pc_addr_resolved, eSymbolContextEverything, sc);
407 if (symbol ==
nullptr)
418 bool found_expected_start_string =
419 function_name.starts_with(
"std::__1::function<");
421 if (!found_expected_start_string)
425 sc.
GetAddressRange(eSymbolContextEverything, 0,
false, range_of_curr_func);
436 value_sp->GetValueIsValid()) {
439 ret_plan_sp = std::make_shared<ThreadPlanRunToAddress>(
446 ret_plan_sp = std::make_shared<ThreadPlanStepInRange>(
static ConstString g_promise
static ConstString g_coro_frame
bool contains_lambda_identifier(llvm::StringRef &str_ref)
static ConstString g_this
CPPLanguageRuntime::LibCppStdFunctionCallableInfo line_entry_helper(Target &target, const SymbolContext &sc, Symbol *symbol, llvm::StringRef first_template_param_sref, bool has_invoke)
#define LLDB_SCOPED_TIMER()
A frame recognizer that is installed to hide libc++ implementation details from the backtrace.
lldb::RecognizedStackFrameSP RecognizeFrame(lldb::StackFrameSP frame_sp) override
RegularExpression m_hidden_function_regex
RecognizedStackFrameSP m_hidden_frame
std::string GetName() override
A section + offset based address range class.
Address & GetBaseAddress()
Get accessor for the base address of the range.
A section + offset based address class.
lldb::addr_t GetCallableLoadAddress(Target *target, bool is_indirect=false) const
Get the load address as a callable code load address.
bool CalculateSymbolContextLineEntry(LineEntry &line_entry) const
CompileUnit * CalculateSymbolContextCompileUnit() const
llvm::Error GetObjectDescription(Stream &str, ValueObject &object) override
bool IsAllowedRuntimeValue(ConstString name) override
Identify whether a name is a runtime value that should not be hidden by from the user interface.
LibCppStdFunctionCallableInfo FindLibCppStdFunctionCallableInfo(lldb::ValueObjectSP &valobj_sp)
lldb::ThreadPlanSP GetStepThroughTrampolinePlan(Thread &thread, bool stop_others) override
Obtain a ThreadPlan to get us into C++ constructs such as std::function.
OperatorStringToCallableInfoMap CallableLookupCache
CPPLanguageRuntime(Process *process)
A class that describes a compilation unit.
lldb::FunctionSP FindFunction(llvm::function_ref< bool(const lldb::FunctionSP &)> matching_lambda)
Find a function in the compile unit based on the predicate matching_lambda.
A uniqued constant string class.
llvm::StringRef GetStringRef() const
Get the string value as a llvm::StringRef.
const char * GetCString() const
Get the string value as a C string.
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
Process * GetProcessPtr() const
Returns a pointer to the process object.
uint32_t ResolveSymbolContextForAddress(const Address &so_addr, lldb::SymbolContextItem resolve_scope, SymbolContext &sc) const
Resolve the symbol context for the given address. (const Address&,uint32_t,SymbolContext&)
A plug-in interface definition class for debugging a process.
lldb::addr_t ReadPointerFromMemory(lldb::addr_t vm_addr, Status &error)
uint32_t GetAddressByteSize() const
Target & GetTarget()
Get the target object pointer for this module.
This class provides extra information about a stack frame that was provided by a specific stack frame...
bool Execute(llvm::StringRef string, llvm::SmallVectorImpl< llvm::StringRef > *matches=nullptr) const
Execute a regular expression match using the compiled regular expression that is already in this obje...
bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr, bool allow_section_end=false) const
void AddRecognizer(lldb::StackFrameRecognizerSP recognizer, ConstString module, llvm::ArrayRef< ConstString > symbols, bool first_instruction_only=true)
A base class for frame recognizers.
bool Fail() const
Test for error condition.
A stream class that can stream formatted output to a file.
Defines a list of symbol context objects.
uint32_t GetSize() const
Get accessor for a symbol context list size.
Defines a symbol context baton that can be handed other debug core functions.
bool GetAddressRange(uint32_t scope, uint32_t range_idx, bool use_inline_block_range, AddressRange &range) const
Get the address range contained within a symbol context.
Symbol * symbol
The Symbol for a given query.
ConstString GetName() const
SectionLoadList & GetSectionLoadList()
StackFrameRecognizerManager & GetFrameRecognizerManager()
bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr, uint32_t stop_id=SectionLoadHistory::eStopIDNow)
const ModuleList & GetImages() const
Get accessor for the images for this process.
virtual lldb::StackFrameSP GetStackFrameAtIndex(uint32_t idx)
virtual lldb::RegisterContextSP GetRegisterContext()=0
lldb::TargetSP CalculateTarget() override
A class that represents a running process on the host machine.
std::shared_ptr< lldb_private::Function > FunctionSP
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::RecognizedStackFrame > RecognizedStackFrameSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::StackFrameRecognizer > StackFrameRecognizerSP
std::shared_ptr< lldb_private::Target > TargetSP
bool ShouldHide() override
Controls whether this frame should be filtered out when displaying backtraces, for example.
lldb::addr_t member_f_pointer_value
LineEntry callable_line_entry
LibCppStdFunctionCallableCase callable_case
A line table entry class.