/external/llvm/lib/MC/ |
MCObjectFileInfo.cpp | 459 Triple::ArchType Arch = T.getArch(); 460 // FIXME: Checking for Arch here to filter out bogus triples such as 462 if ((Arch == Triple::x86 || Arch == Triple::x86_64 || 463 Arch == Triple::arm || Arch == Triple::thumb || 464 Arch == Triple::ppc || Arch == Triple::ppc64 || 465 Arch == Triple::UnknownArch) &&
|
/frameworks/compile/libbcc/runtime/make/platform/ |
multi_arch.mk | 5 Arch := i386 6 Arch.m64 := x86_64
|
/external/llvm/lib/Support/ |
Triple.cpp | 180 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for 377 Arch = ParseArch(getArchName()); 396 // component movement when a component parses as (eg) both a valid arch and a 398 ArchType Arch = UnknownArch; 400 Arch = ParseArch(Components[0]); 414 Found[0] = Arch != UnknownArch; 438 Arch = ParseArch(Comp); 439 Valid = Arch != UnknownArch; 509 // Special case logic goes here. At this point Arch, Vendor and OS have the 591 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 | 252 llvm::Triple::ArchType Arch = 255 if (Arch == llvm::Triple::UnknownArch) 258 CCCClangArchs.insert(Arch); 610 llvm::Triple::ArchType Arch = 612 if (Arch == llvm::Triple::UnknownArch) { 624 // When there is no explicit arch for this platform, make sure we still bind 643 // Add in arch bindings for every top level action, as well as lipo and 651 // changing the output names to include the arch, which would also fix 665 // 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(Args))) 165 return Arch; 168 if (const char *Arch = GetArmArchForMCpu(A->getValue(Args))) 169 return Arch; 307 assert(0 && "Invalid Darwin arch!"); 323 // Determine the arch specific GCC subdirectory. 704 // triple arch, or the arch being bound. 830 // Add the arch options based on the particular spelling of -arch, to matc [all...] |
Tools.cpp | 391 // Otherwise, if we have -march= choose the base CPU for that arch. 394 // Otherwise, use the Arch from the triple. 439 /// getLLVMArchSuffixForARM - Get the LLVM arch name to use for a particular 556 // FIXME: Factor out an ARM class so we can cache the arch somewhere. [all...] |
/external/llvm/lib/MC/MCDisassembler/ |
EDDisassembler.cpp | 46 Triple::ArchType Arch; 61 /// @arg arch - The Triple::ArchType for the desired architecture 62 static const char *tripleFromArch(Triple::ArchType arch) { 66 if (arch == triplemap[infoIndex].Arch) 77 /// @arg arch - The target architecture 79 static int getLLVMSyntaxVariant(Triple::ArchType arch, 86 if (arch == Triple::x86 || arch == Triple::x86_64) 91 if (arch == Triple::x86 || arch == Triple::x86_64 [all...] |
EDDisassembler.h | 79 llvm::Triple::ArchType Arch; 86 return (Arch == key.Arch && 92 return ((Arch < key.Arch) || 93 ((Arch == key.Arch) && Syntax < (key.Syntax))); 107 /// @arg arch - The desired architecture 109 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 | 113 /// The parsed arch type (or InvalidArch if uninitialized). 114 mutable ArchType Arch; 125 bool isInitialized() const { return Arch != InvalidArch; } 136 Triple() : Data(), Arch(InvalidArch) {} 137 explicit Triple(StringRef Str) : Data(Str), Arch(InvalidArch) {} 139 : Data(ArchStr), Arch(InvalidArch) { 148 : Data(ArchStr), Arch(InvalidArch) { 174 return Arch; 379 /// architecture name, for example as accepted by "gcc -arch" (see also 380 /// arch(3)) [all...] |
/external/llvm/lib/Bitcode/Writer/ |
BitcodeWriter.cpp | [all...] |
/frameworks/compile/slang/BitWriter_2_9/ |
BitcodeWriter.cpp | [all...] |