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

  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 512 Triple::ArchType Arch = T.getArch();
513 // FIXME: Checking for Arch here to filter out bogus triples such as
515 if ((Arch == Triple::x86 || Arch == Triple::x86_64 ||
516 Arch == Triple::arm || Arch == Triple::thumb ||
517 Arch == Triple::ppc || Arch == Triple::ppc64 ||
518 Arch == Triple::UnknownArch) &&
522 } else if ((Arch == Triple::x86 || Arch == Triple::x86_64) &
    [all...]
  /frameworks/compile/libbcc/runtime/make/platform/
multi_arch.mk 5 Arch := i386
6 Arch.m64 := x86_64
  /external/llvm/lib/Support/
Triple.cpp 193 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
409 Arch = ParseArch(getArchName());
428 // component movement when a component parses as (eg) both a valid arch and a
430 ArchType Arch = UnknownArch;
432 Arch = ParseArch(Components[0]);
446 Found[0] = Arch != UnknownArch;
470 Arch = ParseArch(Comp);
471 Valid = Arch != UnknownArch;
541 // Special case logic goes here. At this point Arch, Vendor and OS have the
623 Arch = InvalidArch
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
PlatformPackageTest.java 20 import com.android.sdklib.internal.repository.Archive.Arch;
43 Arch archiveArch,
46 assert archiveArch == Arch.getCurrentArch();
47 return super.initializeArchives(props, Os.ANY, Arch.ANY, LOCAL_ARCHIVE_PATH);
SourcePackageTest.java 21 import com.android.sdklib.internal.repository.Archive.Arch;
50 Arch archiveArch,
53 assert archiveArch == Arch.getCurrentArch();
54 return super.initializeArchives(props, Os.ANY, Arch.ANY, LOCAL_ARCHIVE_PATH);
SystemImagePackageTest.java 21 import com.android.sdklib.internal.repository.Archive.Arch;
53 Arch archiveArch,
56 assert archiveArch == Arch.getCurrentArch();
57 return super.initializeArchives(props, Os.ANY, Arch.ANY, LOCAL_ARCHIVE_PATH);
  /external/clang/lib/Driver/
HostInfo.cpp 70 llvm::Triple::ArchType Arch;
73 // If we aren't looking for a specific arch, infer the default architecture
74 // based on -arch and -m32/-m64 command line options.
76 // The gcc driver behavior with multiple -arch flags wasn't consistent for
77 // things which rely on a default architecture. We just use the last -arch
79 Arch = llvm::Triple::getArchTypeForDarwinArchName(A->getValue(Args));
83 if (Arch == llvm::Triple::UnknownArch)
84 Arch = getTriple().getArch();
86 // Otherwise default to the arch of the host.
87 Arch = getTriple().getArch()
    [all...]
Driver.cpp 294 llvm::Triple::ArchType Arch =
297 if (Arch == llvm::Triple::UnknownArch)
300 CCCClangArchs.insert(Arch);
405 // Don't attempt to generate preprocessed files if multiple -arch options are
416 "preprocessed source with multiple -arch options.";
761 llvm::Triple::ArchType Arch =
763 if (Arch == llvm::Triple::UnknownArch) {
775 // When there is no explicit arch for this platform, make sure we still bind
794 // Add in arch bindings for every top level action, as well as lipo and
802 // changing the output names to include the arch, which would also fi
    [all...]
Tools.cpp 446 // Otherwise, if we have -march= choose the base CPU for that arch.
449 // Otherwise, use the Arch from the triple.
476 /// getLLVMArchSuffixForARM - Get the LLVM arch name to use for a particular
577 // FIXME: Factor out an ARM class so we can cache the arch somewhere.
736 "Unexpected arch name.");
    [all...]
ToolChains.cpp 155 if (const char *Arch = GetArmArchForMArch(A->getValue(Args)))
156 return Arch;
159 if (const char *Arch = GetArmArchForMCpu(A->getValue(Args)))
160 return Arch;
308 llvm_unreachable("Invalid Darwin arch!");
324 // Determine the arch specific GCC subdirectory.
727 // triple arch, or the arch being bound.
846 // Add the arch options based on the particular spelling of -arch, to matc
    [all...]
  /external/llvm/lib/MC/MCDisassembler/
EDDisassembler.cpp 44 Triple::ArchType Arch;
59 /// @arg arch - The Triple::ArchType for the desired architecture
60 static const char *tripleFromArch(Triple::ArchType arch) {
64 if (arch == triplemap[infoIndex].Arch)
75 /// @arg arch - The target architecture
77 static int getLLVMSyntaxVariant(Triple::ArchType arch,
84 if (arch == Triple::x86 || arch == Triple::x86_64)
89 if (arch == Triple::x86 || arch == Triple::x86_64
    [all...]
EDDisassembler.h 77 llvm::Triple::ArchType Arch;
84 return (Arch == key.Arch &&
90 return ((Arch < key.Arch) ||
91 ((Arch == key.Arch) && Syntax < (key.Syntax)));
105 /// @arg arch - The desired architecture
107 static EDDisassembler *getDisassembler(llvm::Triple::ArchType arch,
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
Archive.java 42 private static final String PROP_ARCH = "Archive.Arch"; //$NON-NLS-1$
124 public enum Arch {
132 private Arch(String uiName) {
147 * Returns the current architecture as one of the {@link Arch} enum values or null.
149 public static Arch getCurrentArch() {
151 String arch = System.getProperty("os.arch"); local
153 if (arch.equalsIgnoreCase("x86_64") || arch.equalsIgnoreCase("amd64")) {
154 return Arch.X86_64;
174 Arch arch = getCurrentArch(); local
316 String arch = ""; \/\/$NON-NLS-1\$ local
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 116 /// The parsed arch type (or InvalidArch if uninitialized).
117 mutable ArchType Arch;
128 bool isInitialized() const { return Arch != InvalidArch; }
139 Triple() : Data(), Arch(InvalidArch) {}
140 explicit Triple(const Twine &Str) : Data(Str.str()), Arch(InvalidArch) {}
143 Arch(InvalidArch) {
149 EnvironmentStr).str()), Arch(InvalidArch) {
169 return Arch;
374 /// architecture name, for example as accepted by "gcc -arch" (see also
375 /// arch(3))
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]

Completed in 997 milliseconds