Home
last modified time | relevance | path

Searched refs:func_sp (Results 1 – 7 of 7) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/
DSymbolFileBreakpad.cpp230 if (FunctionSP func_sp = comp_unit.FindFunctionByUID(id)) in GetOrCreateFunction() local
231 return func_sp; in GetOrCreateFunction()
234 FunctionSP func_sp; in GetOrCreateFunction() local
239 return func_sp; in GetOrCreateFunction()
256 func_sp = std::make_shared<Function>(&comp_unit, id, 0, func_name, in GetOrCreateFunction()
258 comp_unit.AddFunction(func_sp); in GetOrCreateFunction()
261 return func_sp; in GetOrCreateFunction()
391 FunctionSP func_sp = GetOrCreateFunction(*sc.comp_unit); in ResolveSymbolContext() local
392 if (func_sp) { in ResolveSymbolContext()
393 sc.function = func_sp.get(); in ResolveSymbolContext()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/Symtab/
DSymbolFileSymtab.cpp182 FunctionSP func_sp( in ParseFunctions() local
191 if (func_sp.get() != nullptr) { in ParseFunctions()
192 comp_unit.AddFunction(func_sp); in ParseFunctions()
/openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
DCPPLanguageRuntime.cpp311 lldb::FunctionSP func_sp = in FindLibCppStdFunctionCallableInfo() local
320 if (func_sp) { in FindLibCppStdFunctionCallableInfo()
321 calculate_symbol_context_helper(func_sp, scl); in FindLibCppStdFunctionCallableInfo()
/openbsd/src/gnu/llvm/lldb/source/Core/
DSearchFilter.cpp329 cu_sp->ForeachFunction([&](const FunctionSP &func_sp) { in DoCUIteration() argument
330 if (!FunctionPasses(*func_sp.get())) in DoCUIteration()
334 func_sp.get()); in DoCUIteration()
338 shouldContinue = DoFunctionIteration(func_sp.get(), context, searcher); in DoCUIteration()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
DSymbolFilePDB.cpp308 FunctionSP func_sp = in ParseCompileUnitFunctionForPDBFunc() local
312 comp_unit.AddFunction(func_sp); in ParseCompileUnitFunctionForPDBFunc()
329 return func_sp.get(); in ParseCompileUnitFunctionForPDBFunc()
342 auto func_sp = comp_unit.FindFunctionByUID(pdb_func_up->getSymIndexId()); in ParseFunctions() local
343 if (!func_sp) { in ParseFunctions()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
DSymbolFileNativePDB.cpp502 FunctionSP func_sp = std::make_shared<Function>( in CreateFunction() local
506 comp_unit.AddFunction(func_sp); in CreateFunction()
510 return func_sp; in CreateFunction()
513 return func_sp; in CreateFunction()
516 return func_sp; in CreateFunction()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp2424 FunctionSP func_sp; in ParseFunctionFromDWARF() local
2437 func_sp = in ParseFunctionFromDWARF()
2443 if (func_sp.get() != nullptr) { in ParseFunctionFromDWARF()
2445 func_sp->GetFrameBaseExpression() = frame_base; in ParseFunctionFromDWARF()
2446 comp_unit.AddFunction(func_sp); in ParseFunctionFromDWARF()
2447 return func_sp.get(); in ParseFunctionFromDWARF()