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 551 Triple::ArchType Arch = T.getArch();
552 // FIXME: Checking for Arch here to filter out bogus triples such as
554 if ((Arch == Triple::x86 || Arch == Triple::x86_64 ||
555 Arch == Triple::arm || Arch == Triple::thumb ||
556 Arch == Triple::ppc || Arch == Triple::ppc64 ||
557 Arch == Triple::UnknownArch) &&
561 } 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
29 Arch.full-i386 := i386
30 Arch.full-x86_64 := x86_64
36 Arch.profile-i386 := i386
37 Arch.profile-x86_64 := x86_64
43 Arch.asan-i386 := i386
47 Arch.asan-x86_64 := x86_64
  /frameworks/compile/libbcc/runtime/make/platform/
multi_arch.mk 5 Arch := i386
6 Arch.m64 := x86_64
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/packages/
PlatformPackageTest.java 22 import com.android.sdklib.internal.repository.archives.Archive.Arch;
46 Arch archiveArch,
49 assert archiveArch == Arch.getCurrentArch();
50 return super.initializeArchives(props, Os.ANY, Arch.ANY, LOCAL_ARCHIVE_PATH);
SourcePackageTest.java 22 import com.android.sdklib.internal.repository.archives.Archive.Arch;
52 Arch archiveArch,
55 assert archiveArch == Arch.getCurrentArch();
56 return super.initializeArchives(props, Os.ANY, Arch.ANY, LOCAL_ARCHIVE_PATH);
SystemImagePackageTest.java 22 import com.android.sdklib.internal.repository.archives.Archive.Arch;
55 Arch archiveArch,
58 assert archiveArch == Arch.getCurrentArch();
59 return super.initializeArchives(props, Os.ANY, Arch.ANY, LOCAL_ARCHIVE_PATH);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 133 Triple::ArchType Arch;
136 if (Arch == Triple::arm || Arch == Triple::thumb)
  /external/llvm/lib/MC/MCDisassembler/
EDDisassembler.cpp 43 Triple::ArchType Arch;
57 /// @arg arch - The Triple::ArchType for the desired architecture
58 static const char *tripleFromArch(Triple::ArchType arch) {
62 if (arch == triplemap[infoIndex].Arch)
73 /// @arg arch - The target architecture
75 static int getLLVMSyntaxVariant(Triple::ArchType arch,
80 if (arch == Triple::x86 || arch == Triple::x86_64)
84 if (arch == Triple::x86 || arch == Triple::x86_64
    [all...]
  /external/llvm/lib/Support/
Triple.cpp 171 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
311 Arch(parseArch(getArchName())),
325 Arch(parseArch(ArchStr.str())),
340 Arch(parseArch(ArchStr.str())),
354 // component movement when a component parses as (eg) both a valid arch and a
356 ArchType Arch = UnknownArch;
358 Arch = parseArch(Components[0]);
372 Found[0] = Arch != UnknownArch;
395 Arch = parseArch(Comp);
396 Valid = Arch != UnknownArch
    [all...]
  /external/clang/lib/Driver/
ToolChains.h 267 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
464 llvm::Triple::ArchType Arch = getTriple().getArch();
465 if (Arch == llvm::Triple::arm ||
466 Arch == llvm::Triple::x86 ||
467 Arch == llvm::Triple::x86_64)
482 llvm::Triple::ArchType Arch = getTriple().getArch();
483 if (Arch == llvm::Triple::arm ||
484 Arch == llvm::Triple::x86 ||
485 Arch == llvm::Triple::x86_64)
500 llvm::Triple::ArchType Arch = getTriple().getArch()
    [all...]
Driver.cpp 303 llvm::Triple::ArchType Arch =
306 if (Arch == llvm::Triple::UnknownArch)
309 CCCClangArchs.insert(Arch);
428 // Don't attempt to generate preprocessed files if multiple -arch options are
442 "preprocessed source with multiple -arch options.";
809 llvm::Triple::ArchType Arch =
811 if (Arch == llvm::Triple::UnknownArch) {
823 // When there is no explicit arch for this platform, make sure we still bind
842 // Add in arch bindings for every top level action, as well as lipo and
850 // changing the output names to include the arch, which would also fi
    [all...]
ToolChains.cpp 157 if (const char *Arch = GetArmArchForMArch(A->getValue(Args)))
158 return Arch;
161 if (const char *Arch = GetArmArchForMCpu(A->getValue(Args)))
162 return Arch;
306 llvm_unreachable("Invalid Darwin arch!");
322 // Determine the arch specific GCC subdirectory.
769 // triple arch, or the arch being bound.
888 // Add the arch options based on the particular spelling of -arch, to matc
    [all...]
Tools.cpp 438 // Otherwise, if we have -march= choose the base CPU for that arch.
441 // Otherwise, use the Arch from the triple.
468 /// getLLVMArchSuffixForARM - Get the LLVM arch name to use for a particular
603 // FIXME: Factor out an ARM class so we can cache the arch somewhere.
785 "Unexpected arch name.");
796 "Unexpected arch name.");
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
Archive.java 46 private static final String PROP_ARCH = "Archive.Arch"; //$NON-NLS-1$
128 public enum Arch {
136 private Arch(String uiName) {
151 * Returns the current architecture as one of the {@link Arch} enum values or null.
153 public static Arch getCurrentArch() {
155 String arch = System.getProperty("os.arch"); local
157 if (arch.equalsIgnoreCase("x86_64") || arch.equalsIgnoreCase("amd64")) {
158 return Arch.X86_64;
178 Arch arch = getCurrentArch(); local
320 String arch = ""; \/\/$NON-NLS-1\$ local
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 117 /// The parsed arch type.
118 ArchType Arch;
135 Triple() : Data(), Arch(), Vendor(), OS(), Environment() {}
157 ArchType getArch() const { return Arch; }
422 /// architecture name, for example as accepted by "gcc -arch" (see also
423 /// arch(3)).
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 715 unsigned Arch = getArch();
716 bool isScattered = (Arch != Triple::x86_64) &&
732 unsigned Arch = getArch();
733 bool isScattered = (Arch != Triple::x86_64) &&
777 unsigned Arch = getArch();
778 bool isScattered = (Arch != Triple::x86_64) &&
787 switch (Arch) {
911 unsigned Arch = getArch();
912 bool isScattered = (Arch != Triple::x86_64) &&
983 unsigned Arch = getArch()
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]

Completed in 585 milliseconds