Home
last modified time | relevance | path

Searched refs:isArch64Bit (Results 1 – 25 of 76) sorted by relevance

1234

/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DRISCV.cpp336 unsigned XLen = getTriple().isArch64Bit() ? 64 : 32; in handleTargetFeatures()
371 bool Is64Bit = getTriple().isArch64Bit(); in isValidCPUName()
377 bool Is64Bit = getTriple().isArch64Bit(); in fillValidCPUList()
382 bool Is64Bit = getTriple().isArch64Bit(); in isValidTuneCPUName()
388 bool Is64Bit = getTriple().isArch64Bit(); in fillValidTuneCPUList()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.cpp41 bool IsRV64 = TT.isArch64Bit(); in computeTargetABI()
112 if (TT.isArch64Bit() && !FeatureBits[RISCV::Feature64Bit]) in validate()
114 if (!TT.isArch64Bit() && !FeatureBits[RISCV::Feature32Bit]) in validate()
H A DRISCVMCAsmInfo.cpp23 CodePointerSize = CalleeSaveStackSlotSize = TT.isArch64Bit() ? 8 : 4; in RISCVMCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchBaseInfo.cpp54 bool Is64Bit = TT.isArch64Bit(); in getTripleABI()
74 bool Is64Bit = TT.isArch64Bit(); in computeTargetABI()
H A DLoongArchMCAsmInfo.cpp23 CodePointerSize = CalleeSaveStackSlotSize = TT.isArch64Bit() ? 8 : 4; in LoongArchMCAsmInfo()
H A DLoongArchMCTargetDesc.cpp58 CPU = TT.isArch64Bit() ? "generic-la64" : "generic-la32"; in createLoongArchMCSubtargetInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp132 if (!TT.isArch64Bit() || TT.isX32() || TT.isOSNaCl()) in computeDataLayout()
141 if (TT.isArch64Bit() || TT.isOSWindows() || TT.isOSNaCl()) in computeDataLayout()
151 else if (TT.isArch64Bit() || TT.isOSDarwin() || TT.isWindowsMSVCEnvironment()) in computeDataLayout()
160 if (TT.isArch64Bit()) in computeDataLayout()
166 if ((!TT.isArch64Bit() && TT.isOSWindows()) || TT.isOSIAMCU()) in computeDataLayout()
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMachO.cpp20 assert(T.isArch64Bit()); in getX86SubType()
82 if (T.isX86() && T.isArch64Bit()) in getCPUType()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCAsmInfo.cpp27 CodePointerSize = CalleeSaveStackSlotSize = T.isArch64Bit() ? 8 : 4; in WebAssemblyMCAsmInfo()
H A DWebAssemblyAsmBackend.cpp121 return new WebAssemblyAsmBackend(TT.isArch64Bit(), TT.isOSEmscripten()); in createWebAssemblyAsmBackend()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchTargetMachine.cpp56 if (TT.isArch64Bit()) in computeDataLayout()
78 if (!TT.isArch64Bit()) in getEffectiveLoongArchCodeModel()
H A DLoongArchSubtarget.cpp30 bool Is64Bit = TT.isArch64Bit(); in initializeSubtargetDependencies()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DRuntimeLibcalls.h89 return !TT.isMacOSXVersionLT(10, 9) && TT.isArch64Bit(); in darwinHasSinCos()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRObjectFile.h41 return Triple(getTargetTriple()).isArch64Bit(); in is64Bit()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblySubtarget.h94 bool hasAddr64() const { return TargetTriple.isArch64Bit(); } in hasAddr64()
H A DWebAssemblyRegisterInfo.cpp150 return Regs[TFI->hasFP(MF)][TT.isArch64Bit()]; in getFrameRegister()
H A DWebAssemblyUtilities.cpp111 bool is64 = Subtarget && Subtarget->getTargetTriple().isArch64Bit(); in getOrCreateFunctionTableSymbol()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp108 if (hostArch.GetTriple().isArch64Bit()) { in PlatformNetBSD()
268 if (triple.isArch64Bit()) in GetSiginfoType()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVSubtarget.cpp71 bool Is64Bit = TT.isArch64Bit(); in initializeSubtargetDependencies()
H A DRISCVTargetMachine.cpp136 if (TT.isArch64Bit()) { in computeDataLayout()
171 if (TT.isOSFuchsia() && !TT.isArch64Bit()) in RISCVTargetMachine()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DLinux.cpp338 Triple.isArch64Bit()) in Linux()
446 !Triple.isAndroidVersionLT(34) && Triple.isArch64Bit()) { in getDynamicLinker()
453 return Triple.isArch64Bit() ? "/system/bin/linker64" : "/system/bin/linker"; in getDynamicLinker()
H A DAIX.cpp39 const bool IsArch64Bit = getToolChain().getTriple().isArch64Bit(); in ConstructJob()
119 const bool IsArch64Bit = ToolChain.getTriple().isArch64Bit(); in ConstructJob()
H A DWebAssembly.cpp75 if (ToolChain.getTriple().isArch64Bit()) in ConstructJob()
218 assert(Triple.isArch32Bit() != Triple.isArch64Bit()); in WebAssembly()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DPPC.cpp133 if (!Triple.isOSAIX() || !Triple.isArch64Bit()) in getPPCTargetFeatures()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp668 bool IsN64 = TT.isArch64Bit() && !IsN32; in createMipsELFObjectWriter()
669 bool HasRelocationAddend = TT.isArch64Bit(); in createMipsELFObjectWriter()

1234