| /llvm-project-15.0.7/lld/ELF/ |
| H A D | ARMErrataFix.cpp | 73 Patch657417Section(InputSection *p, uint64_t off, uint32_t instr, bool isARM); 96 bool isARM; member in elf::Patch657417Section 137 uint32_t instr, bool isARM) in Patch657417Section() argument 140 patchee(p), patcheeOffset(off), instr(instr), isARM(isARM) { in Patch657417Section() 144 isARM ? 0 : 1, getSize(), *this); in Patch657417Section() 145 addSyntheticLocal(saver().save(isARM ? "$a" : "$t"), STT_NOTYPE, 0, 0, *this); in Patch657417Section() 179 if (isARM) in writeTo() 200 target->relocateNoSym(buf, isARM ? R_ARM_JUMP24 : R_ARM_THM_JUMP24, s - p); in writeTo()
|
| /llvm-project-15.0.7/llvm/lib/BinaryFormat/ |
| H A D | MachO.cpp | 27 assert(T.isARM() || T.isThumb()); in getARMSubType() 84 if (T.isARM() || T.isThumb()) in getCPUType() 100 if (T.isARM() || T.isThumb()) in getCPUSubType()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMFrameLowering.cpp | 512 if (isARM) in emitRegPlusImmediate() 718 bool isARM = !AFI->isThumbFunction(); in emitPrologue() local 1025 if (HasFP && isARM) in emitPrologue() 1228 if (isARM) in emitPrologue() 1255 bool isARM = !AFI->isThumbFunction(); in emitEpilogue() local 1285 emitSPUpdate(isARM, MBB, MBBI, dl, TII, in emitEpilogue() 1318 if (isARM) in emitEpilogue() 1341 if (isARM) in emitEpilogue() 1355 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes, in emitEpilogue() 1383 emitSPUpdate(isARM, MBB, MBBI, dl, TII, in emitEpilogue() [all …]
|
| H A D | ARMExpandPseudoInsts.cpp | 2618 bool isARM = Opcode != ARM::t2MOV_ga_pcrel; in ExpandMI() local 2619 unsigned LO16Opc = isARM ? ARM::MOVi16_ga_pcrel : ARM::t2MOVi16_ga_pcrel; in ExpandMI() 2620 unsigned HI16Opc = isARM ? ARM::MOVTi16_ga_pcrel :ARM::t2MOVTi16_ga_pcrel; in ExpandMI() 2623 unsigned PICAddOpc = isARM in ExpandMI() 2640 if (isARM) { in ExpandMI()
|
| /llvm-project-15.0.7/clang/unittests/Interpreter/ExceptionTests/ |
| H A D | InterpreterExceptionTest.cpp | 108 if (Triple.isARM()) in TEST()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | TargetCXXABI.h | 92 return T.isARM() || T.isAArch64(); in isSupportedCXXABI()
|
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCSectionELF.cpp | 120 } else if (T.isARM() || T.isThumb()) { in printSwitchToSection()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/IPO/ |
| H A D | CrossDSOCFI.cpp | 110 if (T.isARM() || T.isThumb()) in buildCFICheck()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | Triple.h | 756 bool isARM() const { in isARM() function 763 return (isARM() || isThumb()) && in isTargetEHABICompatible()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | TargetLibraryInfo.cpp | 246 bool isARM = (T.getArch() == Triple::aarch64 || in initialize() local 248 bool hasPartialFloat = (isARM || in initialize() 274 if (!isARM) in initialize()
|
| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/ |
| H A D | Linux.cpp | 206 if ((Triple.isARM() || Triple.isAArch64()) && Triple.isAndroid()) { in Linux()
|
| H A D | Clang.cpp | 3297 !EffectiveTriple.isARM() && !EffectiveTriple.isThumb()) in RenderSSPOptions() 3300 if ((EffectiveTriple.isX86() || EffectiveTriple.isARM() || in RenderSSPOptions() 3307 if ((EffectiveTriple.isARM() || EffectiveTriple.isThumb()) && in RenderSSPOptions() 3343 !EffectiveTriple.isARM() && !EffectiveTriple.isThumb()) in RenderSSPOptions() 3351 if ((EffectiveTriple.isARM() || EffectiveTriple.isThumb()) && in RenderSSPOptions() 3844 bool IsARM = T.isARM() || T.isThumb() || T.isAArch64(); in RenderCharacterOptions()
|
| H A D | CommonArgs.cpp | 2054 if (!(Triple.isARM() || Triple.isThumb() || in addMachineOutlinerArgs()
|
| H A D | Gnu.cpp | 441 if (Triple.isARM() || Triple.isThumb() || Triple.isAArch64()) { in ConstructJob()
|
| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/Arch/ |
| H A D | ARM.cpp | 159 return Triple.isARM() || AK == llvm::ARM::ArchKind::ARMV6T2 || in isHardTPSupported()
|
| /llvm-project-15.0.7/llvm/tools/sancov/ |
| H A D | sancov.cpp | 718 if (TheTriple.isARM()) in getPreviousInstructionPc()
|
| /llvm-project-15.0.7/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 881 (TI.getTriple().isThumb() || TI.getTriple().isARM())) in InitializePredefinedMacros()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/ |
| H A D | AddressSanitizer.cpp | 484 bool IsArmOrThumb = TargetTriple.isARM() || TargetTriple.isThumb(); in getShadowMapping()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ItaniumMangle.cpp | 647 if (T.isARM() || T.isThumb() || T.isAArch64()) in getEffectiveDeclContext()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaDeclAttr.cpp | 5621 bool IsARM = S.Context.getTargetInfo().getTriple().isARM(); in handleBuiltinAliasAttr()
|