Lines Matching refs:is64Bit
128 bool is64Bit() const { return TargetObjectWriter->is64Bit(); } in is64Bit() function in __anon4ed704dc0111::ELFObjectWriter
155 if (is64Bit()) in WriteWord()
320 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS] in writeHeader()
345 write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr)); in writeHeader()
351 write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr)); in writeHeader()
765 SymbolTableWriter Writer(*this, is64Bit()); in computeSymbolTable()
768 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32; in computeSymbolTable()
771 SymtabSection->setAlignment(is64Bit() ? 8 : 4); in computeSymbolTable()
957 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela); in createRelocationSection()
959 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel); in createRelocationSection()
968 RelaSection->setAlignment(is64Bit() ? 8 : 4); in createRelocationSection()
1066 if (is64Bit()) { in writeRelocations()
1279 uint64_t NaturalAlignment = is64Bit() ? 8 : 4; in writeObject()
1294 if (is64Bit()) { in writeObject()