Lines Matching defs:IsILP32
33 AArch64ELFObjectWriter(uint8_t OSABI, bool IsILP32);
44 bool IsILP32;
49 AArch64ELFObjectWriter::AArch64ELFObjectWriter(uint8_t OSABI, bool IsILP32)
50 : MCELFObjectTargetWriter(/*Is64Bit*/ !IsILP32, OSABI, ELF::EM_AARCH64,
52 IsILP32(IsILP32) {}
55 IsILP32 ? ELF::R_AARCH64_P32_##rtype : ELF::R_AARCH64_##rtype
60 // assumes IsILP32 is true
144 if (IsILP32) {
160 if (IsILP32) {
200 if (IsILP32 && isNonILP32reloc(Fixup, RefKind, Ctx))
209 return (!IsILP32 &&
216 if (IsILP32) {
288 if (IsILP32)
296 if (IsILP32) {
309 if (IsILP32)
317 if (IsILP32)
335 if (!IsILP32) {
354 if (!IsILP32)
362 if (!IsILP32)
472 llvm::createAArch64ELFObjectWriter(uint8_t OSABI, bool IsILP32) {
473 return std::make_unique<AArch64ELFObjectWriter>(OSABI, IsILP32);