| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 440 m_compiler->getTargetOpts().Triple = triple; in ClangExpressionParser() 442 m_compiler->getTargetOpts().Triple.c_str()); in ClangExpressionParser() 452 m_compiler->getTargetOpts().Triple.c_str()); in ClangExpressionParser() 457 m_compiler->getTargetOpts().Triple.find("arm") != std::string::npos && in ClangExpressionParser() 459 m_compiler->getTargetOpts().ABI = "apcs-gnu"; in ClangExpressionParser() 464 m_compiler->getTargetOpts().Features.push_back("+sse"); in ClangExpressionParser() 465 m_compiler->getTargetOpts().Features.push_back("+sse2"); in ClangExpressionParser() 471 m_compiler->getTargetOpts().CPU = target_arch.GetClangTargetCPU(); in ClangExpressionParser() 476 m_compiler->getTargetOpts().ABI = abi; in ClangExpressionParser() 495 auto opts = m_compiler->getTargetOpts(); in ClangExpressionParser() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TargetInfo.h | 258 TargetOptions &getTargetOpts() const { in getTargetOpts() function 579 return (getPointerWidth(0) >= 64) || getTargetOpts().ForceEnableInt128; in hasInt128Type() 1492 setFeatureEnabled(getTargetOpts().OpenCLFeaturesMap, #Ext, V); 1498 for (const auto &Ext : getTargetOpts().OpenCLExtensionsAsWritten) { in setCommandLineOpenCLOpts() 1508 getTargetOpts().OpenCLFeaturesMap[Name] = V; in setCommandLineOpenCLOpts() 1514 return getTargetOpts().OpenCLFeaturesMap; in getSupportedOpenCLOpts() 1519 return getTargetOpts().OpenCLFeaturesMap; in getSupportedOpenCLOpts() 1543 return getTargetOpts().SDKVersion; in getSDKVersion()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | CompilerInstance.h | 319 TargetOptions &getTargetOpts() { in getTargetOpts() function 320 return Invocation->getTargetOpts(); in getTargetOpts() 322 const TargetOptions &getTargetOpts() const { in getTargetOpts() function 323 return Invocation->getTargetOpts(); in getTargetOpts()
|
| H A D | CompilerInvocation.h | 102 TargetOptions &getTargetOpts() { return *TargetOpts.get(); } in getTargetOpts() function 103 const TargetOptions &getTargetOpts() const { return *TargetOpts.get(); } in getTargetOpts() function
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenAction.cpp | 958 CI.getPreprocessorOpts(), CI.getCodeGenOpts(), CI.getTargetOpts(), in CreateASTConsumer() 1006 M->setTargetTriple(CI.getTargetOpts().Triple); in loadModule() 1068 const TargetOptions &TargetOpts = CI.getTargetOpts(); in ExecuteAction() 1091 CI.getTargetOpts(), CI.getLangOpts(), in ExecuteAction()
|
| H A D | ObjectFilePCHContainerOperations.cpp | 145 TargetOpts(CI.getTargetOpts()), LangOpts(CI.getLangOpts()), in PCHContainerGenerator()
|
| H A D | CodeGenModule.cpp | 1948 StringRef TargetCPU = getTarget().getTargetOpts().CPU; in GetCPUAndFeaturesAttributes() 1949 StringRef TuneCPU = getTarget().getTargetOpts().TuneCPU; in GetCPUAndFeaturesAttributes() 1982 Features = getTarget().getTargetOpts().Features; in GetCPUAndFeaturesAttributes()
|
| H A D | CGOpenMPRuntimeGPU.cpp | 3818 for (const auto &Feature : CGM.getTarget().getTargetOpts().FeatureMap) { in getCudaArch()
|
| /freebsd-13.1/contrib/llvm-project/clang/tools/driver/ |
| H A D | cc1_main.cpp | 221 return PrintSupportedCPUs(Clang->getTargetOpts().Triple); in cc1_main()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | Mips.h | 403 return (ABI == "n32" || ABI == "n64") || getTargetOpts().ForceEnableInt128; in hasInt128Type()
|
| H A D | RISCV.cpp | 124 StringRef CodeModel = getTargetOpts().CodeModel; in getTargetDefines()
|
| H A D | AArch64.cpp | 221 std::string CodeModel = getTargetOpts().CodeModel; in getTargetDefines()
|
| H A D | X86.cpp | 381 std::string CodeModel = getTargetOpts().CodeModel; in getTargetDefines()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | ARCMT.cpp | 153 llvm::Triple triple(origCI.getTargetOpts().Triple); in HasARCRuntime()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CompilerInvocation.cpp | 122 TargetOpts(new TargetOptions(X.getTargetOpts())), in CompilerInvocationRefBase() 449 TargetOptions &TargetOpts = Invocation.getTargetOpts(); in FixupInvocation() 4384 ParseTargetArgs(Res.getTargetOpts(), Args, Diags); in CreateFromArgsImpl() 4385 llvm::Triple T(Res.getTargetOpts().Triple); in CreateFromArgsImpl() 4398 Res.getTargetOpts().HostTriple = Res.getFrontendOpts().AuxTriple; in CreateFromArgsImpl() 4403 Res.getTargetOpts().HostTriple = Res.getFrontendOpts().AuxTriple; in CreateFromArgsImpl()
|
| H A D | CompilerInstance.cpp | 148 getTarget().adjustTargetOptions(getCodeGenOpts(), getTargetOpts()); in createTarget() 1002 OS << " when compiling for " << getTargetOpts().CPU; in ExecuteAction()
|
| H A D | FrontendAction.cpp | 741 CI.getLangOpts(), CI.getTargetOpts(), CI.getPreprocessorOpts(), in BeginSourceFile()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmtAsm.cpp | 564 const TargetOptions &TO = Actions.Context.getTargetInfo().getTargetOpts(); in ParseMicrosoftAsmStatement()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 11644 Target->getTargetOpts().CPU, in getFunctionFeatureMap() 11645 Target->getTargetOpts().Features); in getFunctionFeatureMap() 11652 StringRef TargetCPU = Target->getTargetOpts().CPU; in getFunctionFeatureMap() 11661 Target->getTargetOpts().FeaturesAsWritten.begin(), in getFunctionFeatureMap() 11662 Target->getTargetOpts().FeaturesAsWritten.end()); in getFunctionFeatureMap() 11681 FeatureMap = Target->getTargetOpts().FeatureMap; in getFunctionFeatureMap()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 1273 const TargetOptions &TargetOpts = Target.getTargetOpts(); in WriteControlBlock()
|
| H A D | ASTReader.cpp | 450 const TargetOptions &ExistingTargetOpts = PP.getTargetInfo().getTargetOpts(); in ReadTargetOptions()
|