Lines Matching defs:IsILP32
33 AArch64ELFObjectWriter(uint8_t OSABI, bool IsILP32);
42 bool IsILP32;
47 AArch64ELFObjectWriter::AArch64ELFObjectWriter(uint8_t OSABI, bool IsILP32)
48 : MCELFObjectTargetWriter(/*Is64Bit*/ !IsILP32, OSABI, ELF::EM_AARCH64,
50 IsILP32(IsILP32) {}
53 IsILP32 ? ELF::R_AARCH64_P32_##rtype : ELF::R_AARCH64_##rtype
58 // assumes IsILP32 is true
142 if (IsILP32) {
151 if (IsILP32) {
167 if (IsILP32) {
178 if (IsILP32) {
191 if (IsILP32) {
212 if (IsILP32) {
239 if (IsILP32 && isNonILP32reloc(Fixup, RefKind, Ctx))
248 return (!IsILP32 &&
255 if (IsILP32) {
280 if (IsILP32) {
289 if (IsILP32) {
345 if (IsILP32)
353 if (IsILP32) {
366 if (IsILP32)
374 if (IsILP32)
395 if (!IsILP32) {
417 if (!IsILP32)
425 if (!IsILP32)
433 if (!IsILP32)
537 llvm::createAArch64ELFObjectWriter(uint8_t OSABI, bool IsILP32) {
538 return std::make_unique<AArch64ELFObjectWriter>(OSABI, IsILP32);