Lines Matching refs:is64Bit
156 bool is64Bit() const;
172 if (is64Bit()) in WriteWord()
400 bool ELFWriter::is64Bit() const { in is64Bit() function in ELFWriter
401 return OWriter.TargetObjectWriter->is64Bit(); in is64Bit()
420 W.OS << char(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS] in writeHeader()
446 W.write<uint16_t>(is64Bit() ? sizeof(ELF::Elf64_Ehdr) in writeHeader()
453 W.write<uint16_t>(is64Bit() ? sizeof(ELF::Elf64_Shdr) in writeHeader()
615 SymbolTableWriter Writer(*this, is64Bit()); in computeSymbolTable()
618 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32; in computeSymbolTable()
621 SymtabSection->setAlignment(is64Bit() ? 8 : 4); in computeSymbolTable()
792 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela); in createRelocationSection()
794 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel); in createRelocationSection()
803 RelaSection->setAlignment(is64Bit() ? 8 : 4); in createRelocationSection()
813 is64Bit() ? sizeof(ELF::Elf32_Chdr) : sizeof(ELF::Elf64_Chdr); in maybeWriteCompression()
817 if (is64Bit()) { in maybeWriteCompression()
927 if (is64Bit()) { in writeRelocations()
1210 uint64_t NaturalAlignment = is64Bit() ? 8 : 4; in writeObject()
1225 if (is64Bit()) { in writeObject()