HomeSort by relevance Sort by last modified time
    Searched refs:Triple (Results 276 - 300 of 900) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm-c/
TargetMachine.h 69 /** Finds the target corresponding to the given triple and stores it in \p T.
72 LLVMBool LLVMGetTargetFromTriple(const char* Triple, LLVMTargetRef *T,
93 const char *Triple, const char *CPU, const char *Features,
103 /** Returns the triple used creating this target machine. See
135 /*===-- Triple ------------------------------------------------------------===*/
136 /** Get a triple for the host machine as a string. The result needs to be
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm-c/
TargetMachine.h 69 /** Finds the target corresponding to the given triple and stores it in \p T.
72 LLVMBool LLVMGetTargetFromTriple(const char* Triple, LLVMTargetRef *T,
93 const char *Triple, const char *CPU, const char *Features,
103 /** Returns the triple used creating this target machine. See
135 /*===-- Triple ------------------------------------------------------------===*/
136 /** Get a triple for the host machine as a string. The result needs to be
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm-c/
TargetMachine.h 69 /** Finds the target corresponding to the given triple and stores it in \p T.
72 LLVMBool LLVMGetTargetFromTriple(const char* Triple, LLVMTargetRef *T,
93 const char *Triple, const char *CPU, const char *Features,
103 /** Returns the triple used creating this target machine. See
135 /*===-- Triple ------------------------------------------------------------===*/
136 /** Get a triple for the host machine as a string. The result needs to be
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm-c/
TargetMachine.h 69 /** Finds the target corresponding to the given triple and stores it in \p T.
72 LLVMBool LLVMGetTargetFromTriple(const char* Triple, LLVMTargetRef *T,
93 const char *Triple, const char *CPU, const char *Features,
103 /** Returns the triple used creating this target machine. See
135 /*===-- Triple ------------------------------------------------------------===*/
136 /** Get a triple for the host machine as a string. The result needs to be
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm-c/
TargetMachine.h 69 /** Finds the target corresponding to the given triple and stores it in \p T.
72 LLVMBool LLVMGetTargetFromTriple(const char* Triple, LLVMTargetRef *T,
93 const char *Triple, const char *CPU, const char *Features,
103 /** Returns the triple used creating this target machine. See
135 /*===-- Triple ------------------------------------------------------------===*/
136 /** Get a triple for the host machine as a string. The result needs to be
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm-c/
TargetMachine.h 69 /** Finds the target corresponding to the given triple and stores it in \p T.
72 LLVMBool LLVMGetTargetFromTriple(const char* Triple, LLVMTargetRef *T,
93 const char *Triple, const char *CPU, const char *Features,
103 /** Returns the triple used creating this target machine. See
135 /*===-- Triple ------------------------------------------------------------===*/
136 /** Get a triple for the host machine as a string. The result needs to be
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
24k-triple-stores-11.d 3 #name: 24K: Triple Store (gprel relocs)
24k-triple-stores-2-llsc.d 3 #name: 24K: Triple Store (Range Check, sc)
micromips@24k-triple-stores-10.d 3 #name: 24K: Triple Store (Intervening data #2)
4 #source: 24k-triple-stores-10.s
micromips@24k-triple-stores-2-llsc.d 3 #name: 24K: Triple Store (Range Check, sc)
4 #source: 24k-triple-stores-2-llsc.s
micromips@24k-triple-stores-9.d 3 #name: 24K: Triple store (Intervening data #1)
4 #source: 24k-triple-stores-9.s
mipsr6@24k-triple-stores-2-llsc.d 3 #source: 24k-triple-stores-2-llsc.s
4 #name: 24K: Triple Store (Range Check, sc)
mipsr6@24k-triple-stores-6.d 3 #name: 24K: Triple Store (Store Macro Check)
4 #source: 24k-triple-stores-6.s
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 128 SupportedArchs.push_back(Triple::aarch64);
129 SupportedArchs.push_back(Triple::arm);
130 SupportedArchs.push_back(Triple::mips);
131 SupportedArchs.push_back(Triple::mips64);
132 SupportedArchs.push_back(Triple::mips64el);
133 SupportedArchs.push_back(Triple::x86);
134 SupportedArchs.push_back(Triple::x86_64);
139 HasSubArchs.push_back(Triple::arm);
145 UnsupportedEnvironments.push_back(Triple::Cygnus);
399 if (Triple(HostTriple).getArch() != Triple::x86_64
    [all...]
  /external/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;
  /external/clang/tools/driver/
cc1as_main.cpp 24 #include "llvm/ADT/Triple.h"
69 /// The name of the target triple to assemble for.
70 std::string Triple;
136 Triple = "";
187 Opts.Triple = llvm::Triple::normalize(Args.getLastArgValue(OPT_triple));
191 // Use the default target triple if unspecified.
192 if (Opts.Triple.empty())
193 Opts.Triple = llvm::sys::getDefaultTargetTriple();
286 const Target *TheTarget = TargetRegistry::lookupTarget(Opts.Triple, Error)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp 50 PPCSubtarget::PPCSubtarget(const Triple &TT, const std::string &CPU,
53 IsPPC64(TargetTriple.getArch() == Triple::ppc64 ||
54 TargetTriple.getArch() == Triple::ppc64le),
117 if (TargetTriple.getArch() == Triple::ppc64le)
146 IsLittleEndian = (TargetTriple.getArch() == Triple::ppc64le);
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 62 PPCELFObjectWriter(bool Is64Bit, Triple::OSType OSType, uint16_t EMachine,
147 Triple::OSType OSType;
149 ELFPPCAsmBackend(const Target &T, Triple::OSType OSType) :
187 if (Triple(TT).isOSDarwin())
190 return new ELFPPCAsmBackend(T, Triple(TT).getOS());
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
ObjCRuntime.h 19 #include "llvm/ADT/Triple.h"
98 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) {
102 if (Arch == llvm::Triple::arm ||
103 Arch == llvm::Triple::x86 ||
104 Arch == llvm::Triple::x86_64)
110 return Arch != llvm::Triple::x86_64;

Completed in 2261 milliseconds

<<11121314151617181920>>