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

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
TargetOptions.h 27 /// If given, the name of the target triple to compile for. If not given the
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCELFObjectWriter.h 13 #include "llvm/ADT/Triple.h"
67 static uint8_t getOSABI(Triple::OSType OSType) {
69 case Triple::CloudABI:
71 case Triple::PS4:
72 case Triple::FreeBSD:
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetOptions.h 27 /// If given, the name of the target triple to compile for. If not given the
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCELFObjectWriter.h 13 #include "llvm/ADT/Triple.h"
67 static uint8_t getOSABI(Triple::OSType OSType) {
69 case Triple::CloudABI:
71 case Triple::PS4:
72 case Triple::FreeBSD:
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 46 static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
48 if (TT.getArch() == Triple::x86_64)
64 static std::string computeDataLayout(const Triple &TT) {
71 (TT.getEnvironment() == Triple::GNUX32 || TT.isOSNaCl())) ||
109 static Reloc::Model getEffectiveRelocModel(const Triple &TT,
111 bool is64Bit = TT.getArch() == Triple::x86_64;
147 X86TargetMachine::X86TargetMachine(const Target &T, const Triple &TT,
300 const Triple &TT = TM->getTargetTriple();
301 if (TT.isOSWindows() && TT.getArch() == Triple::x86)
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDOperand.cpp 33 if (Disassembler.Key.Arch == Triple::x86 ||
34 Disassembler.Key.Arch == Triple::x86_64) {
57 else if (Disassembler.Key.Arch == Triple::arm ||
58 Disassembler.Key.Arch == Triple::thumb) {
132 case Triple::x86:
133 case Triple::x86_64:
171 if (segmentReg != 0 && Disassembler.Key.Arch == Triple::x86_64) {
204 case Triple::arm:
205 case Triple::thumb:
  /external/swiftshader/third_party/LLVM/lib/MC/
MCObjectFileInfo.cpp 16 #include "llvm/ADT/Triple.h"
19 void MCObjectFileInfo::InitMachOMCObjectFileInfo(Triple T) {
82 T.getArch() != Triple::x86_64 && T.getArch() != Triple::ppc64)
207 void MCObjectFileInfo::InitELFMCObjectFileInfo(Triple T) {
208 if (T.getArch() == Triple::x86) {
221 } else if (T.getArch() == Triple::x86_64) {
374 void MCObjectFileInfo::InitCOFFMCObjectFileInfo(Triple T) {
511 Triple T(TT);
512 Triple::ArchType Arch = T.getArch()
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.cpp 18 #include "llvm/ADT/Triple.h"
133 std::string ARM_MC::ParseARMTriple(const Triple &TT, StringRef CPU) {
135 TT.getArch() == Triple::thumb || TT.getArch() == Triple::thumbeb;
160 MCSubtargetInfo *ARM_MC::createARMMCSubtargetInfo(const Triple &TT,
179 static MCRegisterInfo *createARMMCRegisterInfo(const Triple &Triple) {
186 const Triple &TheTriple) {
203 static MCStreamer *createELFStreamer(const Triple &T, MCContext &Ctx,
207 T.getArch() == Triple::thumb)
    [all...]
  /external/clang/unittests/CodeGen/
BufferSourceTest.cpp 19 #include "llvm/ADT/Triple.h"
49 compiler.getTargetOpts().Triple = llvm::Triple::normalize(
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 21 #include "llvm/ADT/Triple.h"
126 /// Adds the default features for the specified target triple.
127 void getDefaultSubtargetFeatures(const Triple& Triple);
  /external/llvm/include/llvm/Object/
IRObjectFile.h 23 class Triple;
69 const Triple &TheTriple, StringRef InlineAsm,
  /external/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
  /external/llvm/lib/ExecutionEngine/Orc/
IndirectionUtils.cpp 11 #include "llvm/ADT/Triple.h"
26 createLocalCompileCallbackManager(const Triple &T,
31 case Triple::x86: {
36 case Triple::x86_64: {
37 if ( T.getOS() == Triple::OSType::Win32 ) {
49 createLocalIndirectStubsManagerBuilder(const Triple &T) {
53 case Triple::x86:
59 case Triple::x86_64:
60 if (T.getOS() == Triple::OSType::Win32) {
  /external/llvm/lib/MC/
SubtargetFeature.cpp 293 /// Adds the default features for the specified target triple.
299 void SubtargetFeatures::getDefaultSubtargetFeatures(const Triple& Triple) {
300 if (Triple.getVendor() == Triple::Apple) {
301 if (Triple.getArch() == Triple::ppc) {
304 } else if (Triple.getArch() == Triple::ppc64) {
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCAsmInfo.cpp 15 #include "llvm/ADT/Triple.h"
68 AArch64MCAsmInfoELF::AArch64MCAsmInfoELF(const Triple &T) {
69 if (T.getArch() == Triple::aarch64_be)
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.h 19 #include "llvm/ADT/Triple.h"
30 Triple::OSType OSType;
35 MipsAsmBackend(const Target &T, Triple::OSType OSType, bool IsLittle,
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h 32 class Triple;
46 const Triple &TT, StringRef CPU);
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCTargetDesc.h 26 class Triple;
88 const Triple &TT, StringRef CPU);
  /external/llvm/lib/Target/SystemZ/
SystemZSubtarget.h 23 #include "llvm/ADT/Triple.h"
51 Triple TargetTriple;
60 SystemZSubtarget(const Triple &TT, const std::string &CPU,
  /external/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyMCTargetDesc.h 30 class Triple;
38 MCAsmBackend *createWebAssemblyAsmBackend(const Triple &TT);
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCSubtarget.h 19 #include "llvm/ADT/Triple.h"
73 Triple TargetTriple;
77 /// of the specified triple.
140 const Triple &getTargetTriple() const { return TargetTriple; }
  /frameworks/compile/mclinker/lib/Support/
Target.cpp 11 #include <llvm/ADT/Triple.h>
27 unsigned int Target::getTripleQuality(const llvm::Triple& pTriple) const {
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/processor/
EntityNameMatchingVariationsTest.kt 32 class EntityNameMatchingVariationsTest(triple: Triple<String, String, String>) :
34 val fieldName = triple.first
35 val getterName = triple.second
36 val setterName = triple.third
41 fun params() : List<Triple<String, String, String>> {
42 val result = arrayListOf<Triple<String, String, String>>()
46 result.add(Triple(field, getter, setter))
  /prebuilts/clang/host/darwin-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/darwin-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

Completed in 3955 milliseconds

<<11121314151617181920>>