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

/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h86 if (Arch == Triple::aarch64)
88 if (Arch == Triple::arm || Arch == Triple::thumb)
90 else if (Arch == Triple::mipsel || Arch == Triple::mips)
92 else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le)
94 else if (Arch == Triple::x86_64)
96 else if (Arch == Triple::systemz)
103 if (Arch
[all...]
H A DRuntimeDyldMachO.h59 if (Arch == Triple::arm || Arch == Triple::thumb)
61 else if (Arch == Triple::x86_64)
H A DRuntimeDyld.cpp93 Arch = (Triple::ArchType)obj->getArch();
396 if (Arch == Triple::aarch64) {
414 } else if (Arch == Triple::arm) {
420 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
437 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
455 } else if (Arch == Triple::systemz) {
462 } else if (Arch == Triple::x86_64) {
H A DRuntimeDyldMachO.cpp162 switch (Arch) {
387 if (Arch == Triple::x86_64 && (RelType == MachO::X86_64_RELOC_GOT ||
409 } else if (Arch == Triple::arm &&
H A DRuntimeDyldELF.cpp815 switch (Arch) {
937 if (Arch == Triple::aarch64 &&
986 } else if (Arch == Triple::arm &&
1018 } else if ((Arch == Triple::mipsel || Arch == Triple::mips) &&
1064 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
1155 } else if (Arch == Triple::systemz &&
1202 } else if (Arch == Triple::x86_64 && RelType == ELF::R_X86_64_PLT32) {
1259 if (Arch
[all...]
H A DRuntimeDyldImpl.h187 Triple::ArchType Arch; member in class:llvm::RuntimeDyldImpl
/freebsd-9.3-release/contrib/llvm/lib/Support/Unix/
H A DHost.inc48 std::string Arch = ArchSplit.first;
50 std::string Triple(Arch);
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DMachOUniversal.cpp116 static bool getCTMForArch(Triple::ArchType Arch, MachO::CPUType &CTM) { argument
117 switch (Arch) {
129 MachOUniversalBinary::getObjectForArch(Triple::ArchType Arch, argument
132 if (!getCTMForArch(Arch, CTM))
H A DMachOObjectFile.cpp890 unsigned Arch = this->getArch(); local
892 switch (Arch) {
981 unsigned Arch = this->getArch(); local
992 if (Arch == Triple::x86_64) {
1045 } else if (Arch == Triple::x86 || Arch == Triple::arm ||
1046 Arch == Triple::ppc) {
1071 if (Arch == Triple::x86 || Arch == Triple::ppc) {
1154 unsigned Arch local
[all...]
/freebsd-9.3-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)
/freebsd-9.3-release/contrib/llvm/include/llvm/Object/
H A DMachOUniversal.h95 error_code getObjectForArch(Triple::ArchType Arch,
/freebsd-9.3-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-9.3-release/contrib/llvm/lib/Support/
H A DTriple.cpp317 Arch(parseArch(getArchName())),
331 Arch(parseArch(ArchStr.str())),
346 Arch(parseArch(ArchStr.str())),
362 ArchType Arch = UnknownArch; local
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 the
668 static unsigned getArchPointerBitWidth(llvm::Triple::ArchType Arch) { argument
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DTriple.h133 ArchType Arch; member in class:llvm::Triple
150 Triple() : Data(), Arch(), Vendor(), OS(), Environment() {}
172 ArchType getArch() const { return Arch; }
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCObjectFileInfo.cpp726 Triple::ArchType Arch = T.getArch(); local
727 // FIXME: Checking for Arch here to filter out bogus triples such as
729 if ((Arch == Triple::x86 || Arch == Triple::x86_64 ||
730 Arch == Triple::arm || Arch == Triple::thumb ||
731 Arch == Triple::ppc || Arch == Triple::ppc64 ||
732 Arch == Triple::UnknownArch) &&
736 } else if ((Arch
[all...]
/freebsd-9.3-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-9.3-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-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DToolChains.cpp145 if (const char *Arch = GetArmArchForMArch(A->getValue()))
146 return Arch;
149 if (const char *Arch = GetArmArchForMCpu(A->getValue()))
150 return Arch;
1346 static bool isMipsArch(llvm::Triple::ArchType Arch) { argument
1347 return Arch == llvm::Triple::mips ||
1348 Arch == llvm::Triple::mipsel ||
1349 Arch == llvm::Triple::mips64 ||
1350 Arch == llvm::Triple::mips64el;
2240 static Distro DetectDistro(llvm::Triple::ArchType Arch) { argument
2408 llvm::Triple::ArchType Arch = Triple.getArch(); local
[all...]
H A DTools.cpp498 // Otherwise, use the Arch from the triple.
4149 llvm::Triple::ArchType Arch = getToolChain().getArch(); local
4154 if (Arch == llvm::Triple::ppc)
4156 else if (Arch == llvm::Triple::ppc64)
4158 else if (Arch == llvm::Triple::ppc64le)
4169 if (Arch == llvm::Triple::x86 || Arch == llvm::Triple::ppc)
4171 else if (Arch == llvm::Triple::x86_64 || Arch == llvm::Triple::ppc64 ||
4172 Arch
5195 llvm::Triple::ArchType Arch = T.getArch(); local
5863 llvm::Triple::ArchType Arch = ToolChain.getArch(); local
[all...]
H A DDriver.cpp869 llvm::Triple::ArchType Arch = local
871 if (Arch == llvm::Triple::UnknownArch) {
/freebsd-9.3-release/contrib/llvm/tools/llvm-readobj/
H A DELFDumper.cpp328 static const char *getElfSectionType(unsigned Arch, unsigned Type) { argument
329 switch (Arch) {
394 static const char *getElfSegmentType(unsigned Arch, unsigned Type) { argument
397 switch (Arch) {
/freebsd-9.3-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1976 Triple::ArchType Arch = TT.getArch(); local
1977 if (Arch == Triple::x86_64)
1979 else if (Arch == Triple::x86)
1981 else if (Arch == Triple::ppc)
1983 else if (Arch == Triple::ppc64)
1985 else if (Arch == Triple::arm || Arch == Triple::thumb)
/freebsd-9.3-release/contrib/gcc/config/arm/
H A Dlib1funcs.asm1303 #endif /* Arch supports thumb. */
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaType.cpp4831 llvm::Triple::ArchType Arch = local
4834 Arch == llvm::Triple::aarch64)) {

Completed in 635 milliseconds