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

Overridden By

tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
 1434   ContentType contentType() const override {
 1479   ContentType contentType() const override {
tools/lld/lib/ReaderWriter/MachO/Atoms.h
   49   ContentType contentType() const override { return _contentType; }
  124   ContentType contentType() const override { return DefinedAtom::typeZeroFill; }
tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
   92   ContentType contentType() const override {
tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
   58   ContentType contentType() const override {
tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
   63   ContentType contentType() const override {
tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
   39     ContentType contentType() const override { return typeSectCreate; }
tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
   41   ContentType contentType() const override {
   77   ContentType contentType() const override {
  114   ContentType contentType() const override {
  148   ContentType contentType() const override {
  183   ContentType contentType() const override {
tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
   34   ContentType contentType() const override {
tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
  871     ContentType contentType() const override { return _contentType; }

References

tools/lld/include/lld/Core/DefinedAtom.h
  342     ContentType atomContentType = contentType();
  352     ContentType atomContentType = contentType();
tools/lld/lib/Core/DefinedAtom.cpp
   17   return permissions(this->contentType());
tools/lld/lib/Core/Resolver.cpp
  135                     << atom.get()->contentType()
  490                       << definedAtom->contentType()
tools/lld/lib/Core/SymbolTable.cpp
  216                             atom->contentType(),
  229   if (l->contentType() != r->contentType())
  229   if (l->contentType() != r->contentType())
tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
  143   assert(atom->contentType() == DefinedAtom::typeCFI);
tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
  340   assert(stubAtom.contentType() == DefinedAtom::typeStub);
  343       if (lp->contentType() != DefinedAtom::typeLazyPointer)
 1509   bool isStub = (target.contentType() == DefinedAtom::typeStub);
tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
  159     return (atom->contentType() == DefinedAtom::typeCString);
  458     if (inAtom->contentType() == DefinedAtom::typeCFI)
  514     if (inAtom->contentType() == DefinedAtom::typeCFI)
  559                     << atom.contentType()
tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
  167     return (atom->contentType() == DefinedAtom::typeCString);
  457     if (inAtom->contentType() == DefinedAtom::typeThunkTLV &&
  497       if (inAtom->contentType() == DefinedAtom::typeCFI)
tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
  354       return atom->contentType() == DefinedAtom::typeCompactUnwindInfo;
  367       if (atom->contentType() != DefinedAtom::typeCompactUnwindInfo)
  433       if (ehFrameAtom->contentType() != DefinedAtom::typeCFI)
  461       if (atom->contentType() != DefinedAtom::typeCode)
  509         if (cfiTarget->contentType() == DefinedAtom::typeCFI)
  516       if ((atom->contentType() == DefinedAtom::typeCFI) &&
tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
  141                  << ", type=" << atom->contentType()
  208   DefinedAtom::ContentType leftType = leftRoot->contentType();
  209   DefinedAtom::ContentType rightType = rightRoot->contentType();
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
  346     DefinedAtom::ContentType type = atom->contentType();
  429   if (atom->contentType() == DefinedAtom::typeMachHeader) {
  434   } else if (atom->contentType() == DefinedAtom::typeDSOHandle)
  745       if (lookForEntry && (info.atom->contentType() == DefinedAtom::typeCode) &&
  761                       << info.atom->contentType()
  782                       << definedAtom->contentType()
  814         if (atom->contentType() == DefinedAtom::typeCFI ||
  815             atom->contentType() == DefinedAtom::typeCString)
  912     if (atom->contentType() == DefinedAtom::typeCode) {
  963   if (atom->contentType() == lld::DefinedAtom::typeResolver)
  965   if (atom->contentType() == lld::DefinedAtom::typeMachHeader)
  971     if ((atom->contentType() != DefinedAtom::typeInitializerPtr)
  972      && (atom->contentType() != DefinedAtom::typeTerminatorPtr))
 1344       auto type = info.atom->contentType();
tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
  818           _merge(atom->merge()), _contentType(atom->contentType()),