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

Declarations

include/llvm/Object/XCOFFObjectFile.h
  282   bool is64Bit() const;

References

include/llvm/Object/XCOFFObjectFile.h
  285     assert(!is64Bit() && "Symbol table handling not supported yet.");
lib/Object/XCOFFObjectFile.cpp
   79   assert(!is64Bit() && "32-bit interface called on 64-bit object file.");
   88   assert(is64Bit() && "64-bit interface called on a 32-bit object file.");
   96   assert(!is64Bit() && "Symbol table support not implemented for 64-bit.");
  106   assert(!is64Bit() && "32-bit interface called on 64-bit object file.");
  111   assert(is64Bit() && "64-bit interface called on a 32-bit object file.");
  117   assert(!is64Bit() && "32-bit interface called on 64-bit object file.");
  123   assert(is64Bit() && "64-bit interface called on a 32-bit object file.");
  185   assert(!is64Bit() && "Symbol table support not implemented for 64-bit.");
  228   if (is64Bit())
  237   if (is64Bit())
  246   if (is64Bit())
  334   assert(!is64Bit() && "64-bit support not implemented yet.");
  341   assert(!is64Bit() && "64-bit support not implemented yet.");
  361 uint8_t XCOFFObjectFile::getBytesInAddress() const { return is64Bit() ? 8 : 4; }
  364   return is64Bit() ? "aix5coff64-rs6000" : "aixcoff-rs6000";
  368   return is64Bit() ? Triple::ppc64 : Triple::ppc;
  389   return is64Bit() ? sizeof(XCOFFFileHeader64) : sizeof(XCOFFFileHeader32);
  393   return is64Bit() ? sizeof(XCOFFSectionHeader64) :
  402   return is64Bit() ? fileHeader64()->Magic : fileHeader32()->Magic;
  417   assert(!is64Bit() && "Symbol table support not implemented for 64-bit.");
  441   return is64Bit() ? fileHeader64()->NumberOfSections
  446   return is64Bit() ? fileHeader64()->TimeStamp : fileHeader32()->TimeStamp;
  450   return is64Bit() ? fileHeader64()->AuxHeaderSize
  481       is64Bit() ? getNumberOfSymbolTableEntries64()
  510   if (is64Bit())
  522   return is64Bit() ? fileHeader64()->Flags : fileHeader32()->Flags;
  526   return is64Bit() ? toSection64(Sec)->Name : toSection32(Sec)->Name;
  534   return is64Bit() ? toSection64(Sec)->Flags : toSection32(Sec)->Flags;
  543   assert(is64Bit() && "64-bit interface called for non 64-bit file.");
  550   assert(!is64Bit() && "32-bit interface called for non 32-bit file.");
  657   if (Obj->is64Bit())
  708   assert(!OwningObjectPtr->is64Bit() &&
  739   if (OwningObjectPtr->is64Bit())
tools/llvm-readobj/XCOFFDumper.cpp
   92   if (Obj.is64Bit()) {
  112   if (Obj.is64Bit())
  119   if (Obj.is64Bit())
  181   if (Obj.is64Bit())
  216   assert(!Obj.is64Bit() && "32-bit interface called on 64-bit object file.");
  242   assert(!Obj.is64Bit() && "32-bit interface called on 64-bit object file.");
  319   if (Obj.is64Bit())
  459   if (Obj.is64Bit()) {
tools/obj2yaml/xcoff2yaml.cpp
   43   if (Obj.is64Bit())