Lines Matching defs:Arch
442 /// getLLVMArchSuffixForARM - Get the LLVM arch name to use for a particular
491 // Otherwise, if we have -march= choose the base CPU for that arch.
494 // Otherwise, use the Arch from the triple.
504 // then chose the minimum cpu for that arch.
664 // FIXME: Factor out an ARM class so we can cache the arch somewhere.
887 llvm_unreachable("Unexpected triple arch name");
3955 // If using a driver driver, force the arch.
3956 llvm::Triple::ArchType Arch = getToolChain().getArch();
3958 CmdArgs.push_back("-arch");
3961 if (Arch == llvm::Triple::ppc)
3963 else if (Arch == llvm::Triple::ppc64)
3965 else if (Arch == llvm::Triple::ppc64le)
3972 // the arch.
3976 if (Arch == llvm::Triple::x86 || Arch == llvm::Triple::ppc)
3978 else if (Arch == llvm::Triple::x86_64 || Arch == llvm::Triple::ppc64 ||
3979 Arch == llvm::Triple::ppc64le)
4339 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
4468 CmdArgs.push_back("-arch");
5008 llvm::Triple::ArchType Arch = T.getArch();
5009 switch (Arch) {
5478 llvm::Triple::ArchType Arch = T.getArch();
5479 switch (Arch) {
5622 llvm::Triple::ArchType Arch = ToolChain.getArch();
5623 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::sparc ||
5624 Arch == llvm::Triple::x86 || Arch == llvm::Triple::x86_64) {