Searched refs:Arch (Results 1 - 19 of 19) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h166 Triple::ArchType Arch; member in class:llvm::RuntimeDyldImpl
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)
177 else if (Arch == Triple::x86_64)
179 else if (Arch == Triple::systemz)
186 if (Arch
[all...]
H A DRuntimeDyld.cpp75 Arch = (Triple::ArchType)obj->getArch();
343 if (Arch == Triple::aarch64) {
361 } else if (Arch == Triple::arm) {
367 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
384 } else if (Arch == Triple::ppc64) {
402 } else if (Arch == Triple::systemz) {
H A DRuntimeDyldMachO.cpp117 switch (Arch) {
333 if (Arch == Triple::x86_64 && RelType == macho::RIT_X86_64_GOT) {
355 } else if (Arch == Triple::arm &&
H A DRuntimeDyldELF.cpp702 switch (Arch) {
809 if (Arch == Triple::aarch64 &&
858 } else if (Arch == Triple::arm &&
890 } else if ((Arch == Triple::mipsel || Arch == Triple::mips) &&
937 } else if (Arch == Triple::ppc64) {
1025 } else if (Arch == Triple::systemz &&
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DHost.inc48 std::string Arch = ArchSplit.first;
50 std::string Triple(Arch);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DObjCRuntime.h93 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) { argument
97 if (Arch == llvm::Triple::arm ||
98 Arch == llvm::Triple::x86 ||
99 Arch == llvm::Triple::x86_64)
103 return Arch != llvm::Triple::x86_64;
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DTriple.h127 ArchType Arch; member in class:llvm::Triple
144 Triple() : Data(), Arch(), Vendor(), OS(), Environment() {}
166 ArchType getArch() const { return Arch; }
/freebsd-10.0-release/contrib/bmake/
H A Darch.c181 typedef struct Arch { struct
187 } Arch; typedef in typeref:struct:Arch
197 static int ArchSVR4Entry(Arch *, char *, size_t, FILE *);
246 Arch *a = (Arch *)ap;
547 return (strcmp(archName, ((const Arch *)ar)->name));
581 Arch *ar; /* Archive descriptor */
600 ar = (Arch *)Lst_Datum(ln);
661 ar = bmake_malloc(sizeof(Arch));
790 ArchSVR4Entry(Arch *a
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DTriple.cpp312 Arch(parseArch(getArchName())),
326 Arch(parseArch(ArchStr.str())),
341 Arch(parseArch(ArchStr.str())),
357 ArchType Arch = UnknownArch; local
359 Arch = parseArch(Components[0]);
373 Found[0] = Arch != UnknownArch;
396 Arch = parseArch(Comp);
397 Valid = Arch != UnknownArch;
469 // Special case logic goes here. At this point Arch, Vendor and OS have the
663 static unsigned getArchPointerBitWidth(llvm::Triple::ArchType Arch) { argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCObjectFileInfo.cpp662 Triple::ArchType Arch = T.getArch(); local
663 // FIXME: Checking for Arch here to filter out bogus triples such as
665 if ((Arch == Triple::x86 || Arch == Triple::x86_64 ||
666 Arch == Triple::arm || Arch == Triple::thumb ||
667 Arch == Triple::ppc || Arch == Triple::ppc64 ||
668 Arch == Triple::UnknownArch) &&
672 } else if ((Arch
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DInitHeaderSearch.cpp83 StringRef Arch,
202 StringRef Arch,
204 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++",
206 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/" + Arch,
208 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/backward",
201 AddMinGWCPlusPlusIncludePaths(StringRef Base, StringRef Arch, StringRef Version) argument
/freebsd-10.0-release/usr.bin/make/
H A Darch.c117 typedef struct Arch { struct
126 TAILQ_ENTRY(Arch) link; /* link all cached archives */
127 } Arch; typedef in typeref:struct:Arch
130 static TAILQ_HEAD(, Arch) archives = TAILQ_HEAD_INITIALIZER(archives);
884 Arch *ar; /* Archive descriptor */
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DToolChains.cpp141 if (const char *Arch = GetArmArchForMArch(A->getValue()))
142 return Arch;
145 if (const char *Arch = GetArmArchForMCpu(A->getValue()))
146 return Arch;
1291 static bool isMipsArch(llvm::Triple::ArchType Arch) { argument
1292 return Arch == llvm::Triple::mips ||
1293 Arch == llvm::Triple::mipsel ||
1294 Arch == llvm::Triple::mips64 ||
1295 Arch == llvm::Triple::mips64el;
2064 static Distro DetectDistro(llvm::Triple::ArchType Arch) { argument
2211 isMipsR2Arch(llvm::Triple::ArchType Arch, const ArgList &Args) argument
2246 llvm::Triple::ArchType Arch = Triple.getArch(); local
[all...]
H A DTools.cpp493 // Otherwise, use the Arch from the triple.
3810 llvm::Triple::ArchType Arch = getToolChain().getArch(); local
3815 if (Arch == llvm::Triple::ppc)
3817 else if (Arch == llvm::Triple::ppc64)
3828 if (Arch == llvm::Triple::x86 || Arch == llvm::Triple::ppc)
3830 else if (Arch == llvm::Triple::x86_64 || Arch == llvm::Triple::ppc64)
4859 llvm::Triple::ArchType Arch = T.getArch(); local
4860 switch (Arch) {
5326 llvm::Triple::ArchType Arch = T.getArch(); local
5470 llvm::Triple::ArchType Arch = ToolChain.getArch(); local
[all...]
H A DDriver.cpp808 llvm::Triple::ArchType Arch = local
810 if (Arch == llvm::Triple::UnknownArch) {
/freebsd-10.0-release/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp906 unsigned Arch = this->getArch(); local
908 switch (Arch) {
1003 unsigned Arch = this->getArch(); local
1014 if (Arch == Triple::x86_64) {
1067 } else if (Arch == Triple::x86 || Arch == Triple::arm) {
1092 if (Arch == Triple::x86) {
1177 unsigned Arch = getArch(); local
1185 if (Arch == Triple::x86 || Arch
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1956 Triple::ArchType Arch = TT.getArch(); local
1957 if (Arch == Triple::x86_64)
1959 else if (Arch == Triple::x86)
1961 else if (Arch == Triple::ppc)
1963 else if (Arch == Triple::ppc64)
1965 else if (Arch == Triple::arm || Arch == Triple::thumb)
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DELFDumper.cpp335 static const char *getElfSectionType(unsigned Arch, unsigned Type) { argument
336 switch (Arch) {
/freebsd-10.0-release/contrib/gcc/config/arm/
H A Dlib1funcs.asm1303 #endif /* Arch supports thumb. */

Completed in 413 milliseconds