|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h 19 class DWARFCompileUnit;
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h 43 class DWARFCompileUnit;
References
include/llvm/Support/Casting.h 58 return To::classof(&Val);
77 return isa_impl<To, From>::doit(Val);
106 return isa_impl<To, From>::doit(*Val);
122 return isa_impl_wrap<To, SimpleFrom,
132 return isa_impl_cl<To,FromTy>::doit(Val);
142 return isa_impl_wrap<X, const Y,
165 using ret_type = To &; // Normal case, return Ty&
168 using ret_type = const To &; // Normal case, return Ty&
172 using ret_type = To *; // Pointer arg case, return Ty*
176 using ret_type = const To *; // Constant pointer arg case, return const Ty*
198 using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
204 using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
210 To, From, typename simplify_type<From>::SimpleType>::ret_type;
227 static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
228 typename cast_retty<To, FromTy>::ret_type Res2
256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
258 return cast_convert_val<X, Y,
263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
265 return cast_convert_val<X, Y*,
305 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
309 return cast<X>(Val);
337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
343 return isa<X>(Val) ? cast<X>(Val) : nullptr;
343 return isa<X>(Val) ? cast<X>(Val) : nullptr;
366 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
368 return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
368 return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp 657 DWARFCompileUnit *dwo_cu = dwo_symbol_file->GetCompileUnit();
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp 823 new DWARFCompileUnit(dwarf, uid, *expected_header, *abbrevs, section));
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp 690 lldb::CompUnitSP SymbolFileDWARF::ParseCompileUnit(DWARFCompileUnit &dwarf_cu) {
754 if (auto *cu = llvm::dyn_cast<DWARFCompileUnit>(info->GetUnitAtIndex(i))) {
754 if (auto *cu = llvm::dyn_cast<DWARFCompileUnit>(info->GetUnitAtIndex(i))) {
786 if (auto *dwarf_cu = llvm::cast_or_null<DWARFCompileUnit>(
786 if (auto *dwarf_cu = llvm::cast_or_null<DWARFCompileUnit>(
869 if (auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(&unit)) {
869 if (auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(&unit)) {
1472 SymbolFileDWARF::GetCompUnitForDWARFCompUnit(DWARFCompileUnit &dwarf_cu) {
1492 if (die && llvm::isa<DWARFCompileUnit>(die.GetCU())) {
1495 GetCompUnitForDWARFCompUnit(llvm::cast<DWARFCompileUnit>(*die.GetCU()));
1544 DWARFCompileUnit *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(&unit);
1544 DWARFCompileUnit *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(&unit);
1767 if (auto *dwarf_cu = llvm::dyn_cast_or_null<DWARFCompileUnit>(
1767 if (auto *dwarf_cu = llvm::dyn_cast_or_null<DWARFCompileUnit>(
2067 auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(die.GetCU());
2067 auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(die.GetCU());
2151 DWARFCompileUnit *dwarf_cu =
2152 llvm::dyn_cast<DWARFCompileUnit>(die.GetCU());
2556 if (auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(die.GetCU()))
2556 if (auto *dwarf_cu = llvm::dyn_cast<DWARFCompileUnit>(die.GetCU()))
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h 240 GetCompUnitForDWARFCompUnit(DWARFCompileUnit &dwarf_cu);
251 virtual lldb::CompUnitSP ParseCompileUnit(DWARFCompileUnit &dwarf_cu);
287 virtual DWARFCompileUnit *GetBaseCompileUnit() { return nullptr; }
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp 25 DWARFCompileUnit &dwarf_cu)
51 SymbolFileDWARFDwo::ParseCompileUnit(DWARFCompileUnit &dwarf_cu) {
58 DWARFCompileUnit *SymbolFileDWARFDwo::GetCompileUnit() {
64 DWARFCompileUnit *SymbolFileDWARFDwo::ComputeCompileUnit() {
72 return llvm::cast<DWARFCompileUnit>(debug_info->GetUnitAtIndex(0));
76 DWARFCompileUnit *cu = nullptr;
78 if (auto *candidate =
79 llvm::dyn_cast<DWARFCompileUnit>(debug_info->GetUnitAtIndex(i))) {
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h 16 SymbolFileDWARFDwo(lldb::ObjectFileSP objfile, DWARFCompileUnit &dwarf_cu);
20 lldb::CompUnitSP ParseCompileUnit(DWARFCompileUnit &dwarf_cu) override;
22 DWARFCompileUnit *GetCompileUnit();
45 DWARFCompileUnit *GetBaseCompileUnit() override { return &m_base_dwarf_cu; }
72 DWARFCompileUnit *ComputeCompileUnit();
74 DWARFCompileUnit &m_base_dwarf_cu;
75 DWARFCompileUnit *m_cu = nullptr;
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.h 27 GetSymbolFileForDwoId(DWARFCompileUnit &dwarf_cu, uint64_t dwo_id);
usr/include/c++/7.4.0/bits/move.h 72 constexpr _Tp&&
83 constexpr _Tp&&
usr/include/c++/7.4.0/bits/shared_ptr.h 129 shared_ptr(_Yp* __p) : __shared_ptr<_Tp>(__p) { }
usr/include/c++/7.4.0/bits/shared_ptr_base.h 946 : is_convertible<_Yp*, _Tp*>::type
1078 __shared_ptr(_Yp* __p)
1081 static_assert( !is_void<_Yp>::value, "incomplete type" );
1082 static_assert( sizeof(_Yp) > 0, "incomplete type" );
1377 typename enable_if<!__has_esft_base<_Yp2>::value>::type
1378 _M_enable_shared_from_this_with(_Yp*) noexcept
usr/include/c++/7.4.0/bits/unique_ptr.h 824 make_unique(_Args&&... __args)
usr/include/c++/7.4.0/type_traits 215 : public __is_void_helper<typename remove_cv<_Tp>::type>::type
1554 { typedef _Tp type; };
1563 { typedef _Tp type; };
1574 remove_const<typename remove_volatile<_Tp>::type>::type type;
1633 { typedef _Tp type; };