• Home
  • Raw
  • Download

Lines Matching refs:is64Bit

101   assert(!is64Bit() && "32-bit interface called on 64-bit object file.");  in toSection32()
110 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); in toSection64()
118 assert(!is64Bit() && "Symbol table support not implemented for 64-bit."); in toSymbolEntry()
128 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); in fileHeader32()
133 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); in fileHeader64()
139 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); in sectionHeaderTable32()
145 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); in sectionHeaderTable64()
201 assert(!is64Bit() && "Symbol table support not implemented for 64-bit."); in getSymbolAddress()
206 assert(!is64Bit() && "Symbol table support not implemented for 64-bit."); in getSymbolValueImpl()
249 if (is64Bit()) in getSectionAddress()
258 if (is64Bit()) in getSectionIndex()
267 if (is64Bit()) in getSectionSize()
279 if (is64Bit()) in getSectionContents()
319 return is64Bit() ? toSection64(Sec)->FileOffsetToRawData == 0 in isSectionVirtual()
324 if (is64Bit()) in section_rel_begin()
336 if (is64Bit()) in section_rel_end()
352 if (is64Bit()) in getRelocationOffset()
371 if (is64Bit()) in getRelocationSymbol()
385 if (is64Bit()) in getRelocationType()
392 if (is64Bit()) in getRelocationTypeName()
406 if (is64Bit()) in symbol_begin()
414 if (is64Bit()) in symbol_end()
435 uint8_t XCOFFObjectFile::getBytesInAddress() const { return is64Bit() ? 8 : 4; } in getBytesInAddress()
438 return is64Bit() ? "aix5coff64-rs6000" : "aixcoff-rs6000"; in getFileFormatName()
442 return is64Bit() ? Triple::ppc64 : Triple::ppc; in getArch()
450 if (is64Bit()) in isRelocatableObject()
462 return is64Bit() ? sizeof(XCOFFFileHeader64) : sizeof(XCOFFFileHeader32); in getFileHeaderSize()
466 return is64Bit() ? sizeof(XCOFFSectionHeader64) : in getSectionHeaderSize()
470 bool XCOFFObjectFile::is64Bit() const { in is64Bit() function in llvm::object::XCOFFObjectFile
475 return is64Bit() ? fileHeader64()->Magic : fileHeader32()->Magic; in getMagic()
490 assert(!is64Bit() && "Symbol table support not implemented for 64-bit."); in getSymbolSectionName()
514 return is64Bit() ? fileHeader64()->NumberOfSections in getNumberOfSections()
519 return is64Bit() ? fileHeader64()->TimeStamp : fileHeader32()->TimeStamp; in getTimeStamp()
523 return is64Bit() ? fileHeader64()->AuxHeaderSize in getOptionalHeaderSize()
554 is64Bit() ? getNumberOfSymbolTableEntries64() in getEndOfSymbolTableAddress()
583 if (is64Bit()) in getSymbolNameByIndex()
595 return is64Bit() ? fileHeader64()->Flags : fileHeader32()->Flags; in getFlags()
599 return is64Bit() ? toSection64(Sec)->Name : toSection32(Sec)->Name; in getSectionNameInternal()
607 return is64Bit() ? toSection64(Sec)->Flags : toSection32(Sec)->Flags; in getSectionFlags()
616 assert(is64Bit() && "64-bit interface called for non 64-bit file."); in sections64()
623 assert(!is64Bit() && "32-bit interface called for non 32-bit file."); in sections32()
733 if (Obj->is64Bit()) in create()
778 assert(!OwningObjectPtr->is64Bit() && in getXCOFFCsectAuxEnt32()
811 if (OwningObjectPtr->is64Bit()) in isFunction()