HomeSort by relevance Sort by last modified time
    Searched defs:Arch (Results 1 - 20 of 20) sorted by null

  /external/compiler-rt/make/platform/
multi_arch.mk 5 Arch := i386
6 Arch.m64 := x86_64
clang_linux.mk 6 Arch := unknown
22 # Define configs only if arch in triple is i386 or x86_64
54 Arch.builtins-i386 := i386
55 Arch.profile-i386 := i386
56 Arch.san-i386 := i386
57 Arch.asan-i386 := i386
58 Arch.asan_cxx-i386 := i386
59 Arch.ubsan-i386 := i386
60 Arch.ubsan_cxx-i386 := i386
68 Arch.builtins-x86_64 := x86_6
    [all...]
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
radeon_llvm_emit.cpp 106 Triple::ArchType Arch = Triple::getArchTypeForLLVMName("r600");
107 if (Arch == Triple::UnknownArch) {
108 fprintf(stderr, "Unknown Arch\n");
110 AMDGPUTriple.setArch(Arch);
  /external/chromium_org/tools/cr/cr/base/
arch.py 14 class Arch(cr.Plugin, cr.Plugin.Type):
29 class IA32Arch(Arch):
36 class Mips32Arch(Arch):
47 class X64Arch(Arch):
58 class Arm32Arch(Arch):
73 class Arm64Arch(Arch):
  /external/llvm/lib/Support/
TargetRegistry.cpp 75 Triple::ArchType Arch = Triple(TT).getArch();
77 if (it->ArchMatchFn(Arch)) {
Triple.cpp 385 Arch(parseArch(getArchName())),
402 Arch(parseArch(ArchStr.str())),
418 Arch(parseArch(ArchStr.str())),
435 // component movement when a component parses as (eg) both a valid arch and a
437 ArchType Arch = UnknownArch;
439 Arch = parseArch(Components[0]);
456 Found[0] = Arch != UnknownArch;
479 Arch = parseArch(Comp);
480 Valid = Arch != UnknownArch;
556 // Special case logic goes here. At this point Arch, Vendor and OS have th
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_llvm_emit.cpp 106 Triple::ArchType Arch = Triple::getArchTypeForLLVMName("r600");
107 if (Arch == Triple::UnknownArch) {
108 fprintf(stderr, "Unknown Arch\n");
110 AMDGPUTriple.setArch(Arch);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 216 Triple::ArchType Arch;
  /external/clang/lib/Driver/
Driver.cpp 473 // Don't attempt to generate preprocessed files if multiple -arch options are
487 "preprocessed source with multiple -arch options.";
865 llvm::Triple::ArchType Arch =
867 if (Arch == llvm::Triple::UnknownArch) {
879 // When there is no explicit arch for this platform, make sure we still bind
887 // Add in arch bindings for every top level action, as well as lipo and
895 // changing the output names to include the arch, which would also fix
909 // Lipo if necessary, we do it this way because we need to set the arch flag
    [all...]
ToolChains.cpp 164 if (const char *Arch = GetArmArchForMArch(A->getValue()))
165 return Arch;
168 if (const char *Arch = GetArmArchForMCpu(A->getValue()))
169 return Arch;
685 // triple arch, or the arch being bound.
805 // Add the arch options based on the particular spelling of -arch, to match
    [all...]
Tools.cpp 622 // FIXME: Factor out an ARM class so we can cache the arch somewhere.
860 // Make sure we pick "cyclone" if -arch is used.
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 151 /// The parsed arch type.
152 ArchType Arch;
172 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
194 ArchType getArch() const { return Arch; }
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 895 unsigned Arch = Triple(getTargetTriple()).getArch();
896 bool IsThumb = (Arch == Triple::thumb || Arch == Triple::thumbeb);
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 903 unsigned Arch = this->getArch();
905 switch (Arch) {
1014 unsigned Arch = this->getArch();
1025 if (Arch == Triple::x86_64) {
1078 } else if (Arch == Triple::x86 || Arch == Triple::arm ||
1079 Arch == Triple::ppc) {
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 366 llvm::Triple::ArchType Arch = Context.getTargetInfo().getTriple().getArch();
367 if ( Arch == llvm::Triple::arm
368 || Arch == llvm::Triple::armeb
369 || Arch == llvm::Triple::thumb
370 || Arch == llvm::Triple::thumbeb) {
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 315 // Since the target specific builtins for each arch overlap, only check those
316 // of the arch we are compiling for.
453 llvm::Triple::ArchType Arch = Context.getTargetInfo().getTriple().getArch();
455 Arch == llvm::Triple::aarch64 || Arch == llvm::Triple::arm64;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 732 milliseconds