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

1 2 3 4 5 6

  /external/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
  /external/clang/lib/Driver/
CrossWindowsToolChain.cpp 19 const llvm::Triple &T,
35 return getArch() == llvm::Triple::x86_64;
39 return getArch() == llvm::Triple::x86_64;
43 return getArch() == llvm::Triple::x86_64;
47 return getArch() == llvm::Triple::x86_64;
73 const llvm::Triple &Triple = getTriple();
88 SysRoot + "/usr/include/c++/" + Triple.str());
  /prebuilts/clang/host/darwin-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/darwin-x86/clang-4393122/include/clang/Basic/
TargetOptions.h 27 /// The name of the target triple to compile for.
28 std::string Triple;
30 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
TargetOptions.h 27 /// The name of the target triple to compile for.
28 std::string Triple;
30 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
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/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-4393122/include/clang/Basic/
TargetOptions.h 27 /// The name of the target triple to compile for.
28 std::string Triple;
30 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Basic/
TargetOptions.h 27 /// The name of the target triple to compile for.
28 std::string Triple;
30 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
TargetOptions.h 28 /// The name of the target triple to compile for.
29 std::string Triple;
31 /// When compiling for the device side, contains the triple used to compile
  /external/llvm/unittests/MC/
DwarfLineTables.cpp 24 const char *Triple = "x86_64-pc-linux";
36 const Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
40 MRI.reset(TheTarget->createMCRegInfo(Triple));
41 MAI.reset(TheTarget->createMCAsmInfo(*MRI, Triple));
  /external/clang/lib/AST/
Mangle.cpp 68 const llvm::Triple &Triple = TI.getTriple();
69 if (!Triple.isOSWindows() ||
70 !(Triple.getArch() == llvm::Triple::x86 ||
71 Triple.getArch() == llvm::Triple::x86_64))
  /external/swiftshader/third_party/LLVM/lib/Support/
Triple.cpp 1 //===--- Triple.cpp - Target triple helper class --------------------------===//
10 #include "llvm/ADT/Triple.h"
16 const char *Triple::getArchTypeName(ArchType Kind) {
50 const char *Triple::getArchTypePrefix(ArchType Kind) {
84 const char *Triple::getVendorTypeName(VendorType Kind) {
96 const char *Triple::getOSTypeName(OSType Kind) {
125 const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
137 Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/lto/
LTOCodeGenerator.cpp 24 #include "llvm/ADT/Triple.h"
244 std::string Triple = _linker.getModule()->getTargetTriple();
245 if (Triple.empty())
246 Triple = sys::getHostTriple();
249 const Target *march = TargetRegistry::lookupTarget(Triple, errMsg);
270 Features.getDefaultSubtargetFeatures(llvm::Triple(Triple));
272 _target = march->createTargetMachine(Triple, _mCpu, FeatureStr,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
tokenize.py 74 Triple = group("[uUbB]?[rR]?'''", '[uUbB]?[rR]?"""')
99 PseudoExtras = group(r'\\\r?\n|\Z', Comment, Triple)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
tokenize.py 77 Triple = group("[ubUB]?[rR]?'''", '[ubUB]?[rR]?"""')
102 PseudoExtras = group(r'\\\r?\n', Comment, Triple)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tokenize.py 73 Triple = group("[uU]?[rR]?'''", '[uU]?[rR]?"""')
98 PseudoExtras = group(r'\\\r?\n', Comment, Triple)
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 253 auto Triple = Ctx.getTargetInfo().getTriple();
254 if (!llvm::TargetRegistry::lookupTarget(Triple.getTriple(), Error))
273 if (Triple.isOSBinFormatMachO())
276 else if (Triple.isOSBinFormatCOFF())
  /external/llvm/bindings/go/llvm/
target.go 216 func GetTargetFromTriple(triple string) (t Target, err error) {
218 ctriple := C.CString(triple)
241 func (t Target) CreateTargetMachine(Triple string, CPU string, Features string,
244 cTriple := C.CString(Triple)
264 // Triple returns the triple describing the machine (arch-vendor-os).
265 func (tm TargetMachine) Triple() string {
291 func DefaultTargetTriple() (triple string) {
294 triple = C.GoString(cTriple)

Completed in 160 milliseconds

1 2 3 4 5 6