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

  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 663 Triple::ArchType Arch = T.getArch();
664 // FIXME: Checking for Arch here to filter out bogus triples such as
666 if ((Arch == Triple::x86 || Arch == Triple::x86_64 ||
667 Arch == Triple::arm || Arch == Triple::thumb ||
668 Arch == Triple::ppc || Arch == Triple::ppc64 ||
669 Arch == Triple::UnknownArch) &&
673 } else if ((Arch == Triple::x86 || Arch == Triple::x86_64) &
    [all...]
  /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
53 Arch.full-i386 := i386
54 Arch.profile-i386 := i386
55 Arch.san-i386 := i386
56 Arch.asan-i386 := i386
57 Arch.ubsan-i386 := i386
58 Arch.ubsan_cxx-i386 := i386
65 Arch.full-x86_64 := x86_64
66 Arch.profile-x86_64 := x86_6
    [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):
  /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 166 Triple::ArchType Arch;
169 if (Arch == Triple::aarch64)
171 if (Arch == Triple::arm || Arch == Triple::thumb)
173 else if (Arch == Triple::mipsel || Arch == Triple::mips)
175 else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le)
177 else if (Arch == Triple::x86_64)
179 else if (Arch == Triple::systemz
    [all...]
  /external/llvm/lib/Support/
Triple.cpp 317 Arch(parseArch(getArchName())),
331 Arch(parseArch(ArchStr.str())),
346 Arch(parseArch(ArchStr.str())),
360 // component movement when a component parses as (eg) both a valid arch and a
362 ArchType Arch = UnknownArch;
364 Arch = parseArch(Components[0]);
378 Found[0] = Arch != UnknownArch;
401 Arch = parseArch(Comp);
402 Valid = Arch != UnknownArch;
474 // Special case logic goes here. At this point Arch, Vendor and OS have th
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 131 /// The parsed arch type.
132 ArchType Arch;
149 Triple() : Data(), Arch(), Vendor(), OS(), Environment() {}
171 ArchType getArch() const { return Arch; }
  /external/clang/lib/Driver/
Driver.cpp 477 // Don't attempt to generate preprocessed files if multiple -arch options are
491 "preprocessed source with multiple -arch options.";
890 llvm::Triple::ArchType Arch =
892 if (Arch == llvm::Triple::UnknownArch) {
904 // When there is no explicit arch for this platform, make sure we still bind
912 // Add in arch bindings for every top level action, as well as lipo and
920 // changing the output names to include the arch, which would also fix
    [all...]
ToolChains.cpp 143 if (const char *Arch = GetArmArchForMArch(A->getValue()))
144 return Arch;
147 if (const char *Arch = GetArmArchForMCpu(A->getValue()))
148 return Arch;
608 // triple arch, or the arch being bound.
727 // Add the arch options based on the particular spelling of -arch, to match
804 llvm_unreachable("invalid Darwin arch");
    [all...]
Tools.cpp 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");
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 907 unsigned Arch = this->getArch();
909 switch (Arch) {
998 unsigned Arch = this->getArch();
1009 if (Arch == Triple::x86_64) {
1062 } else if (Arch == Triple::x86 || Arch == Triple::arm) {
1087 if (Arch == Triple::x86) {
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.2.0/
sdklib-22.2.0.jar 

Completed in 2047 milliseconds