/openbsd/gnu/llvm/lldb/source/Expression/ |
H A D | DWARFExpressionList.cpp | 20 bool DWARFExpressionList::IsAlwaysValidSingleExpr() const { in IsAlwaysValidSingleExpr() 24 const DWARFExpression * DWARFExpressionList::GetAlwaysValidExpr() const { in GetAlwaysValidExpr() 33 bool DWARFExpressionList::AddExpression(addr_t base, addr_t end, in AddExpression() 41 bool DWARFExpressionList::GetExpressionData(DataExtractor &data, in GetExpressionData() 50 bool DWARFExpressionList::ContainsAddress(lldb::addr_t func_load_addr, in ContainsAddress() 58 DWARFExpressionList::GetExpressionAtAddress(lldb::addr_t func_load_addr, in GetExpressionAtAddress() 85 bool DWARFExpressionList::ContainsThreadLocalStorage() const { in ContainsThreadLocalStorage() 96 bool DWARFExpressionList::LinkThreadLocalStorage( in LinkThreadLocalStorage() 115 bool DWARFExpressionList::MatchesOperand( in MatchesOperand() 176 void DWARFExpressionList::GetDescription(Stream *s, in GetDescription() [all …]
|
H A D | CMakeLists.txt | 4 DWARFExpressionList.cpp
|
H A D | DWARFExpression.cpp | 729 const DWARFExpressionList ¶m_expr = matched_param->LocationInCaller; in Evaluate_DW_OP_entry_value() 2623 DWARFExpressionList *location_list) { in ParseDWARFLocationList() 2675 DWARFExpressionList *fb_expr = frame.GetFrameBaseExpression(nullptr); in MatchesOperand()
|
/openbsd/gnu/llvm/lldb/include/lldb/Symbol/ |
H A D | Function.h | 256 DWARFExpressionList LocationInCallee; 257 DWARFExpressionList LocationInCaller; 373 IndirectCallEdge(DWARFExpressionList call_target, AddrType caller_address_type, in IndirectCallEdge() 386 DWARFExpressionList call_target; 524 DWARFExpressionList &GetFrameBaseExpression() { return m_frame_base; } in GetFrameBaseExpression() 530 const DWARFExpressionList &GetFrameBaseExpression() const { return m_frame_base; } in GetFrameBaseExpression() 662 DWARFExpressionList m_frame_base;
|
H A D | Variable.h | 35 Declaration *decl, const DWARFExpressionList &location, 76 DWARFExpressionList &LocationExpressionList() { return m_location_list; } in LocationExpressionList() 78 const DWARFExpressionList &LocationExpressionList() const { in LocationExpressionList() 133 DWARFExpressionList m_location_list;
|
/openbsd/gnu/llvm/lldb/include/lldb/Expression/ |
H A D | DWARFExpressionList.h | 23 class DWARFExpressionList { 25 DWARFExpressionList() = default; 27 DWARFExpressionList(lldb::ModuleSP module_sp, const DWARFUnit *dwarf_cu, in DWARFExpressionList() function 32 DWARFExpressionList(lldb::ModuleSP module_sp, DWARFExpression expr, in DWARFExpressionList() function
|
H A D | DWARFExpression.h | 147 DWARFExpressionList *loc_list);
|
/openbsd/gnu/usr.bin/clang/liblldbExpression/ |
H A D | Makefile | 11 DWARFExpressionList.cpp \
|
/openbsd/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Expression/ |
H A D | BUILD.gn | 26 "DWARFExpressionList.cpp",
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFDIE.h | 91 lldb_private::DWARFExpressionList *frame_base) const;
|
H A D | DWARFDebugInfoEntry.h | 107 lldb_private::DWARFExpressionList *frame_base = nullptr) const;
|
H A D | SymbolFileDWARF.cpp | 1934 const DWARFExpressionList &location = in GetGlobalAranges() 3304 DWARFExpressionList location_list(module, DWARFExpression(), die.GetCU()); in ParseVariableDIE() 3378 location_list = DWARFExpressionList( in ParseVariableDIE() 3403 location_list = DWARFExpressionList( in ParseVariableDIE() 3413 location_list = DWARFExpressionList( in ParseVariableDIE() 3905 std::optional<DWARFExpressionList> LocationInCallee; in CollectCallSiteParameters() 3906 std::optional<DWARFExpressionList> LocationInCaller; in CollectCallSiteParameters() 3914 [&](int attr_index) -> std::optional<DWARFExpressionList> { in CollectCallSiteParameters() 3923 return DWARFExpressionList( in CollectCallSiteParameters() 3970 std::optional<DWARFExpressionList> call_target; in CollectCallEdges() [all …]
|
H A D | DWARFDebugInfoEntry.cpp | 239 DWARFExpressionList *frame_base) const { in GetDIENamesAndRanges() 354 DWARFExpressionList(module, in GetDIENamesAndRanges()
|
H A D | DWARFDIE.cpp | 444 lldb_private::DWARFExpressionList *frame_base) const { in GetDIENamesAndRanges()
|
/openbsd/gnu/llvm/lldb/include/lldb/Target/ |
H A D | StackFrame.h | 215 DWARFExpressionList *GetFrameBaseExpression(Status *error_ptr);
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbUtil.h | 105 DWARFExpressionList location;
|
H A D | PdbUtil.cpp | 741 result.location = DWARFExpressionList( in GetVariableLocationInfo() 750 result.location = DWARFExpressionList( in GetVariableLocationInfo()
|
H A D | SymbolFileNativePDB.cpp | 910 DWARFExpressionList location( in CreateGlobalVariable() 943 DWARFExpressionList location(module, in CreateConstantSymbol() 1821 var_info.location = DWARFExpressionList(module, DWARFExpression(), nullptr); in CreateLocalVariable()
|
/openbsd/gnu/llvm/lldb/source/Core/ |
H A D | ValueObjectVariable.cpp | 131 DWARFExpressionList &expr_list = variable->LocationExpressionList(); in UpdateValue()
|
/openbsd/gnu/llvm/lldb/source/Symbol/ |
H A D | Variable.cpp | 42 const DWARFExpressionList &location_list, bool external, in Variable()
|
/openbsd/gnu/llvm/lldb/include/lldb/ |
H A D | lldb-forward.h | 69 class DWARFExpressionList; variable
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | RegisterContextUnwind.cpp | 1645 DWARFExpressionList dwarfexpr(opcode_ctx, dwarfdata, nullptr); in SavedLocationForRegister() 2010 DWARFExpressionList dwarfexpr(opcode_ctx, dwarfdata, nullptr); in ReadFrameAddress()
|
H A D | StackFrame.cpp | 1132 DWARFExpressionList *StackFrame::GetFrameBaseExpression(Status *error_ptr) { in GetFrameBaseExpression()
|
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionDeclMap.cpp | 1513 DWARFExpressionList &var_location_list = var->LocationExpressionList(); in GetVariableValue()
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | SymbolFilePDB.cpp | 1032 DWARFExpressionList location(module_sp, in ParseVariableForPDBData()
|