Home
last modified time | relevance | path

Searched refs:TripleStr (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCSKYToolChain.cpp101 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths() local
104 TripleStr, Multilib.includeSuffix(), DriverArgs, in addLibStdCxxIncludePaths()
115 StringRef TripleStr = GCCInstallation.getTriple().str(); in computeSysRoot() local
116 llvm::sys::path::append(SysRootDir, LibDir, "..", TripleStr); in computeSysRoot()
H A DHurd.cpp210 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths() local
213 : TripleStr; in addLibStdCxxIncludePaths()
H A DLinux.cpp424 const StringRef TripleStr = GCCInstallation.getTriple().str(); in computeSysRoot() local
428 (InstallDir + "/../../../../" + TripleStr + "/libc" + Multilib.osSuffix()) in computeSysRoot()
697 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths() local
701 : TripleStr; in addLibStdCxxIncludePaths()
714 LibDir.str() + "/../" + TripleStr.str() + "/include/c++/" + Version.Text, in addLibStdCxxIncludePaths()
724 if (addLibStdCXXIncludePaths(IncludePath, TripleStr, in addLibStdCxxIncludePaths()
H A DManagarm.cpp196 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths() local
199 Generic_GCC::addGCCLibStdCxxIncludePaths(DriverArgs, CC1Args, TripleStr); in addLibStdCxxIncludePaths()
H A DSolaris.cpp417 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths() local
423 TripleStr, Multilib.includeSuffix(), DriverArgs, in addLibStdCxxIncludePaths()
H A DClang.cpp3548 const std::string &TripleStr = EffectiveTriple.getTriple(); in RenderSSPOptions() local
3555 << A->getAsString(Args) << TripleStr; in RenderSSPOptions()
3616 << A->getAsString(Args) << TripleStr; in RenderSSPOptions()
3636 << A->getAsString(Args) << TripleStr; in RenderSSPOptions()
4873 const std::string &TripleStr = Triple.getTriple(); in ConstructJob() local
4969 CmdArgs.push_back(Args.MakeArgString(TripleStr)); in ConstructJob()
4972 DumpCompilationDatabase(C, MJ->getValue(), TripleStr, Output, Input, Args); in ConstructJob()
4977 TripleStr, Output, Input, Args); in ConstructJob()
5103 << TripleStr; in ConstructJob()
5891 << A->getOption().getName() << TripleStr; in ConstructJob()
[all …]
H A DBareMetal.cpp437 StringRef TripleStr = GCCInstallation.getTriple().str(); in addLibStdCxxIncludePaths() local
440 TripleStr, Multilib.includeSuffix(), DriverArgs, in addLibStdCxxIncludePaths()
H A DGnu.cpp3269 StringRef TripleStr = GCCInstallation.getTriple().str(); in addGCCLibStdCxxIncludePaths() local
3275 LibDir.str() + "/../" + TripleStr + "/include/c++/" + Version.Text, in addGCCLibStdCxxIncludePaths()
3276 TripleStr, Multilib.includeSuffix(), DriverArgs, CC1Args)) in addGCCLibStdCxxIncludePaths()
3282 if (addLibStdCXXIncludePaths(LibDir.str() + "/gcc/" + TripleStr + "/" + in addGCCLibStdCxxIncludePaths()
3284 TripleStr, Multilib.includeSuffix(), DriverArgs, in addGCCLibStdCxxIncludePaths()
3296 TripleStr, Multilib.includeSuffix(), DriverArgs, in addGCCLibStdCxxIncludePaths()
3312 if (addLibStdCXXIncludePaths(IncludePath, TripleStr, in addGCCLibStdCxxIncludePaths()
H A DFlang.cpp811 const std::string &TripleStr = Triple.getTriple(); in ConstructJob() local
822 CmdArgs.push_back(Args.MakeArgString(TripleStr)); in ConstructJob()
H A DCommonArgs.cpp3157 const std::string &TripleStr = Triple.getTriple(); in shouldRecordCommandLine() local
3169 << TripleStr; in shouldRecordCommandLine()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp378 TripleStr = MergedModule->getTargetTriple().str(); in determineTarget()
379 llvm::Triple Triple(TripleStr); in determineTarget()
380 if (TripleStr.empty()) { in determineTarget()
381 TripleStr = sys::getDefaultTargetTriple(); in determineTarget()
387 MArch = TargetRegistry::lookupTarget(TripleStr, ErrMsg); in determineTarget()
415 Triple(TripleStr), Config.CPU, FeatureStr, Config.Options, in createTargetMachine()
H A DThinLTOCodeGenerator.cpp549 auto TripleStr = (*InputOrError)->getTargetTriple(); in addModule() local
550 Triple TheTriple(TripleStr); in addModule()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachineC.cpp82 LLVMBool LLVMGetTargetFromTriple(const char* TripleStr, LLVMTargetRef *T, in LLVMGetTargetFromTriple() argument
86 *T = wrap(TargetRegistry::lookupTarget(TripleStr, Error)); in LLVMGetTargetFromTriple()
200 LLVMCreateTargetMachineWithOptions(LLVMTargetRef T, const char *TripleStr, in LLVMCreateTargetMachineWithOptions() argument
205 return wrap(unwrap(T)->createTargetMachine(Triple(TripleStr), Opt->CPU, in LLVMCreateTargetMachineWithOptions()
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp184 Expected<std::string> TripleStr = getBitcodeTargetTriple(MB); in getBitcodeFileMachine() local
185 if (!TripleStr) in getBitcodeFileMachine()
186 return TripleStr.takeError(); in getBitcodeFileMachine()
188 Triple T(*TripleStr); in getBitcodeFileMachine()
203 "unknown arch in target triple: " + *TripleStr); in getBitcodeFileMachine()
/freebsd/contrib/llvm-project/llvm/include/llvm/InterfaceStub/
H A DIFSHandler.h63 LLVM_ABI IFSTarget parseTriple(StringRef TripleStr);
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp699 Expected<std::string> TripleStr = in isECObject() local
701 if (!TripleStr) in isECObject()
703 Triple T(std::move(*TripleStr)); in isECObject()
718 Expected<std::string> TripleStr = in isAnyArm64COFF() local
720 if (!TripleStr) in isAnyArm64COFF()
722 Triple T(std::move(*TripleStr)); in isAnyArm64COFF()
/freebsd/contrib/llvm-project/llvm/tools/opt/
H A Doptdriver.cpp527 std::string TripleStr = in optMain() local
534 if (TripleStr.empty()) in optMain()
538 codegen::createTargetMachineForTriple(TripleStr, GetCodeGenOptLevel()); in optMain()
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DIFSHandler.cpp304 IFSTarget ifs::parseTriple(StringRef TripleStr) { in parseTriple() argument
305 Triple IFSTriple(TripleStr); in parseTriple()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h242 std::string TripleStr; member
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h839 static llvm::Triple getOpenMPTriple(StringRef TripleStr) { in getOpenMPTriple() argument
840 llvm::Triple TT(TripleStr); in getOpenMPTriple()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DTargetRegistry.h709 static const Target *lookupTarget(StringRef TripleStr, std::string &Error) { in lookupTarget()
710 return lookupTarget(Triple(TripleStr), Error); in lookupTarget()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp327 void LLVMSetTarget(LLVMModuleRef M, const char *TripleStr) { in LLVMSetTarget() argument
328 unwrap(M)->setTargetTriple(Triple(TripleStr)); in LLVMSetTarget()