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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.h 22 class Triple;
25 explicit X86MCAsmInfoDarwin(const Triple &Triple);
29 explicit X86_64MCAsmInfoDarwin(const Triple &Triple);
37 explicit X86ELFMCAsmInfo(const Triple &Triple);
42 explicit X86MCAsmInfoCOFF(const Triple &Triple);
  /external/llvm/lib/Support/
Triple.cpp 1 //===--- Triple.cpp - Target triple helper class --------------------------===//
10 #include "llvm/ADT/Triple.h"
20 const char *Triple::getArchTypeName(ArchType Kind) {
74 const char *Triple::getArchTypePrefix(ArchType Kind) {
140 const char *Triple::getVendorTypeName(VendorType Kind) {
163 const char *Triple::getOSTypeName(OSType Kind) {
200 const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
224 static Triple::ArchType parseBPFArch(StringRef ArchName) {
227 return Triple::bpfel
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.h 23 class Triple;
29 explicit X86MCAsmInfoDarwin(const Triple &Triple);
33 explicit X86_64MCAsmInfoDarwin(const Triple &Triple);
43 explicit X86ELFMCAsmInfo(const Triple &Triple);
50 explicit X86MCAsmInfoMicrosoft(const Triple &Triple);
57 explicit X86MCAsmInfoGNUCOFF(const Triple &Triple)
    [all...]
  /external/llvm/unittests/ADT/
TripleTest.cpp 1 //===----------- Triple.cpp - Triple unit tests ---------------------------===//
11 #include "llvm/ADT/Triple.h"
18 Triple T;
20 T = Triple("");
26 T = Triple("-");
32 T = Triple("--");
38 T = Triple("---");
44 T = Triple("----");
50 T = Triple("a")
    [all...]
  /external/llvm/lib/Target/AVR/MCTargetDesc/
AVRMCAsmInfo.h 21 class Triple;
26 explicit AVRMCAsmInfo(const Triple &TT);
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCAsmInfo.h 17 class Triple;
21 explicit SystemZMCAsmInfo(const Triple &TT);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Triple.cpp 1 //===--- Triple.cpp - Target triple helper class --------------------------===//
10 #include "llvm/ADT/Triple.h"
20 StringRef Triple::getArchTypeName(ArchType Kind) {
77 StringRef Triple::getArchTypePrefix(ArchType Kind) {
146 StringRef Triple::getVendorTypeName(VendorType Kind) {
169 StringRef Triple::getOSTypeName(OSType Kind) {
208 StringRef Triple::getEnvironmentTypeName(EnvironmentType Kind) {
234 static Triple::ArchType parseBPFArch(StringRef ArchName) {
237 return Triple::bpfel
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/ADT/
TripleTest.cpp 1 //===----------- Triple.cpp - Triple unit tests ---------------------------===//
11 #include "llvm/ADT/Triple.h"
18 Triple T;
20 T = Triple("");
26 T = Triple("-");
32 T = Triple("--");
38 T = Triple("---");
44 T = Triple("----");
50 T = Triple("a")
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.h 21 class Triple;
27 explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple &);
34 explicit PPCELFMCAsmInfo(bool is64Bit, const Triple &);
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.cpp 20 ModuleBuilder::ModuleBuilder(LLVMContext &Context, StringRef Triple,
23 if (Triple != "")
24 M->setTargetTriple(Triple);
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUMCAsmInfo.h 20 class Triple;
29 explicit AMDGPUMCAsmInfo(const Triple &TT);
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.h 20 class Triple;
26 explicit HexagonMCAsmInfo(const Triple &TT);
  /external/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiMCAsmInfo.h 20 class Triple;
26 explicit LanaiMCAsmInfo(const Triple &TheTriple);
  /external/llvm/lib/Target/MSP430/MCTargetDesc/
MSP430MCAsmInfo.h 20 class Triple;
26 explicit MSP430MCAsmInfo(const Triple &TT);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCAsmInfo.h 20 class Triple;
26 explicit MipsMCAsmInfo(const Triple &TheTriple);
MipsMCAsmInfo.cpp 15 #include "llvm/ADT/Triple.h"
21 MipsMCAsmInfo::MipsMCAsmInfo(const Triple &TheTriple) {
22 if ((TheTriple.getArch() == Triple::mips) ||
23 (TheTriple.getArch() == Triple::mips64))
26 if ((TheTriple.getArch() == Triple::mips64el) ||
27 (TheTriple.getArch() == Triple::mips64)) {
47 if (TheTriple.getArch() == Triple::mips ||
48 TheTriple.getArch() == Triple::mipsel)
  /external/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXMCAsmInfo.h 21 class Triple;
27 explicit NVPTXMCAsmInfo(const Triple &TheTriple);
  /external/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyMCAsmInfo.h 22 class Triple;
26 explicit WebAssemblyMCAsmInfo(const Triple &T);
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCAsmInfo.h 20 class Triple;
26 explicit XCoreMCAsmInfo(const Triple &TT);
  /external/llvm/lib/Target/ARM/TargetInfo/
ARMTargetInfo.cpp 18 RegisterTarget<Triple::arm, /*HasJIT=*/true>
20 RegisterTarget<Triple::armeb, /*HasJIT=*/true>
23 RegisterTarget<Triple::thumb, /*HasJIT=*/true>
25 RegisterTarget<Triple::thumbeb, /*HasJIT=*/true>
  /external/llvm/lib/Target/Mips/TargetInfo/
MipsTargetInfo.cpp 19 RegisterTarget<Triple::mips,
22 RegisterTarget<Triple::mipsel,
25 RegisterTarget<Triple::mips64,
28 RegisterTarget<Triple::mips64el,
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/TargetInfo/
MipsTargetInfo.cpp 19 RegisterTarget<Triple::mips,
22 RegisterTarget<Triple::mipsel,
25 RegisterTarget<Triple::mips64,
28 RegisterTarget<Triple::mips64el,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
Triple.h 1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===//
23 /// Triple - Helper class for working with autoconf configuration names. For
37 /// At its core the Triple class is designed to be a wrapper for a triple
38 /// string; the constructor does not change or normalize the triple string.
44 class Triple {
239 /// triple fields unknown.
240 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
242 explicit Triple(const Twine &Str)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
Triple.h 1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===//
23 /// Triple - Helper class for working with autoconf configuration names. For
37 /// At its core the Triple class is designed to be a wrapper for a triple
38 /// string; the constructor does not change or normalize the triple string.
44 class Triple {
239 /// triple fields unknown.
240 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
242 explicit Triple(const Twine &Str)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
Triple.h 1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===//
23 /// Triple - Helper class for working with autoconf configuration names. For
37 /// At its core the Triple class is designed to be a wrapper for a triple
38 /// string; the constructor does not change or normalize the triple string.
44 class Triple {
239 /// triple fields unknown.
240 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
242 explicit Triple(const Twine &Str)
    [all...]

Completed in 768 milliseconds

1 2 3 4 5 6 7 8 91011>>