reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/DebugInfo/DWARF/DWARFDie.h
  154   Optional<DWARFFormValue> find(ArrayRef<dwarf::Attribute> Attrs) const;

References

lib/DebugInfo/DWARF/DWARFDie.cpp
  407     if (auto Value = Die.find(Attrs))
  441   return toSectionOffset(find({DW_AT_rnglists_base, DW_AT_GNU_ranges_base}));
lib/DebugInfo/DWARF/DWARFUnit.cpp
  772   Optional<DWARFFormValue> PC = UnitDie.find({DW_AT_low_pc, DW_AT_entry_pc});
lib/DebugInfo/DWARF/DWARFVerifier.cpp
  225       Curr.find({DW_AT_call_all_calls, DW_AT_call_all_source_calls,
tools/dsymutil/DwarfLinker.cpp
 2152       CUDie.find({dwarf::DW_AT_dwo_id, dwarf::DW_AT_GNU_dwo_id}));
 2165       CUDie.find({dwarf::DW_AT_dwo_name, dwarf::DW_AT_GNU_dwo_name}), "");
tools/llvm-dwp/llvm-dwp.cpp
  489         Die.find({dwarf::DW_AT_dwo_name, dwarf::DW_AT_GNU_dwo_name}), "");
unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp
 1721   EXPECT_FALSE(FuncDie.find(ArrayRef<dwarf::Attribute>()).hasValue());
 1725   EXPECT_FALSE(FuncDie.find({DW_AT_low_pc, DW_AT_entry_pc}).hasValue());
 1732   EXPECT_FALSE(FuncDie.find(Attrs).hasValue());