Home
last modified time | relevance | path

Searched refs:CodeGenOptions (Results 1 – 25 of 41) sorted by relevance

12

/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DProfileList.cpp74 static StringRef getSectionName(CodeGenOptions::ProfileInstrKind Kind) { in getSectionName()
76 case CodeGenOptions::ProfileNone: in getSectionName()
78 case CodeGenOptions::ProfileClangInstr: in getSectionName()
80 case CodeGenOptions::ProfileIRInstr: in getSectionName()
82 case CodeGenOptions::ProfileCSIRInstr: in getSectionName()
89 ProfileList::getDefault(CodeGenOptions::ProfileInstrKind Kind) const { in getDefault()
120 CodeGenOptions::ProfileInstrKind Kind) const { in isFunctionExcluded()
134 CodeGenOptions::ProfileInstrKind Kind) const { in isLocationExcluded()
140 CodeGenOptions::ProfileInstrKind Kind) const { in isFileExcluded()
H A DCodeGenOptions.cpp14 CodeGenOptions::CodeGenOptions() { in CodeGenOptions() function in clang::CodeGenOptions
H A DCMakeLists.txt45 CodeGenOptions.cpp
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DProfileList.h52 ExclusionType getDefault(CodeGenOptions::ProfileInstrKind Kind) const;
56 CodeGenOptions::ProfileInstrKind Kind) const;
59 CodeGenOptions::ProfileInstrKind Kind) const;
62 CodeGenOptions::ProfileInstrKind Kind) const;
H A DCodeGenOptions.h49 class CodeGenOptions : public CodeGenOptionsBase {
460 CodeGenOptions();
H A DTargetInfo.h50 class CodeGenOptions; variable
1255 virtual void adjustTargetOptions(const CodeGenOptions &CGOpts, in adjustTargetOptions()
/openbsd-src/gnu/llvm/clang/include/clang/CodeGen/
H A DBackendUtil.h26 class CodeGenOptions; variable
40 const CodeGenOptions &CGOpts,
45 void EmbedBitcode(llvm::Module *M, const CodeGenOptions &CGOpts,
48 void EmbedObject(llvm::Module *M, const CodeGenOptions &CGOpts,
H A DModuleBuilder.h31 class CodeGenOptions; variable
109 const CodeGenOptions &CGO,
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DBackendUtil.cpp122 const CodeGenOptions &CodeGenOpts;
188 const CodeGenOptions &CGOpts, in EmitAssemblyHelper()
210 getSancovOptsFromCGOpts(const CodeGenOptions &CGOpts) { in getSancovOptsFromCGOpts()
234 getSanitizerBinaryMetadataOptions(const CodeGenOptions &CGOpts) { in getSanitizerBinaryMetadataOptions()
246 static bool asanUseGlobalsGC(const Triple &T, const CodeGenOptions &CGOpts) { in asanUseGlobalsGC()
269 const CodeGenOptions &CodeGenOpts) { in createTLII()
273 case CodeGenOptions::Accelerate: in createTLII()
277 case CodeGenOptions::LIBMVEC: in createTLII()
281 case CodeGenOptions::MASSV: in createTLII()
285 case CodeGenOptions::SVML: in createTLII()
[all …]
H A DModuleBuilder.cpp39 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
71 const CodeGenOptions &CGO) { in ExpandModuleName()
81 const PreprocessorOptions &PPO, const CodeGenOptions &CGO, in CodeGeneratorImpl()
368 const CodeGenOptions &CGO, llvm::LLVMContext &C, in CreateLLVMCodeGen()
H A DABIInfo.h26 class CodeGenOptions; variable
62 const CodeGenOptions &getCodeGenOpts() const;
H A DCodeGenTBAA.h25 class CodeGenOptions; variable
119 const CodeGenOptions &CodeGenOpts;
170 CodeGenTBAA(ASTContext &Ctx, llvm::Module &M, const CodeGenOptions &CGO,
H A DCodeGenAction.cpp62 ClangDiagnosticHandler(const CodeGenOptions &CGOpts, BackendConsumer *BCon) in ClangDiagnosticHandler()
84 const CodeGenOptions &CodeGenOpts;
89 const CodeGenOptions CodeGenOpts) { in reportOptRecordError()
113 const CodeGenOptions &CodeGenOpts;
153 const CodeGenOptions &CodeGenOpts, in BackendConsumer()
179 const CodeGenOptions &CodeGenOpts, in BackendConsumer()
343 CodeGenOpts.getProfileUse() != CodeGenOptions::ProfileNone) in HandleTranslationUnit()
1051 for (const CodeGenOptions::BitcodeFileToLink &F : in CreateASTConsumer()
H A DCGLoopInfo.h32 class CodeGenOptions; variable
212 const clang::CodeGenOptions &CGOpts,
H A DCodeGenTypes.h35 class CodeGenOptions; variable
118 const CodeGenOptions &getCodeGenOpts() const;
H A DCodeGenModule.h74 class CodeGenOptions; variable
307 const CodeGenOptions &CodeGenOpts;
604 const CodeGenOptions &CodeGenOpts, llvm::Module &M,
738 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts()
1714 void EmitBackendOptionsMetadata(const CodeGenOptions CodeGenOpts);
H A DObjectFilePCHContainerOperations.cpp51 CodeGenOptions CodeGenOpts;
H A DCodeGenModule.cpp107 const CodeGenOptions &CGO, llvm::Module &M, in CodeGenModule()
905 case CodeGenOptions::FramePointerKind::None: in Release()
908 case CodeGenOptions::FramePointerKind::NonLeaf: in Release()
911 case CodeGenOptions::FramePointerKind::All: in Release()
980 const CodeGenOptions CodeGenOpts) { in EmitBackendOptionsMetadata()
1300 case CodeGenOptions::GeneralDynamicTLSModel: in GetDefaultLLVMTLSModel()
1302 case CodeGenOptions::LocalDynamicTLSModel: in GetDefaultLLVMTLSModel()
1304 case CodeGenOptions::InitialExecTLSModel: in GetDefaultLLVMTLSModel()
1306 case CodeGenOptions::LocalExecTLSModel: in GetDefaultLLVMTLSModel()
2030 CodeGenOpts.getInlining() == CodeGenOptions::OnlyAlwaysInlining) in SetLLVMFunctionAttributesForDefinition()
[all …]
H A DCodeGenTBAA.cpp33 const CodeGenOptions &CGO, in CodeGenTBAA()
/openbsd-src/gnu/llvm/clang/include/clang/Frontend/
H A DCompilerInvocation.h141 CodeGenOptions CodeGenOpts;
159 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; } in getCodeGenOpts()
160 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts()
275 static bool ParseCodeGenArgs(CodeGenOptions &Opts, llvm::opt::ArgList &Args,
282 static void GenerateCodeGenArgs(const CodeGenOptions &Opts,
H A DCompilerInstance.h256 CodeGenOptions &getCodeGenOpts() { in getCodeGenOpts()
259 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
634 const CodeGenOptions *CodeGenOpts = nullptr);
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DCompilerInvocation.cpp467 CodeGenOptions &CodeGenOpts = Invocation.getCodeGenOpts(); in FixupInvocation()
1171 const CodeGenOptions::OptRemark &Remark) { in GenerateOptimizationRemark()
1174 } else if (Remark.Kind == CodeGenOptions::RK_Enabled) { in GenerateOptimizationRemark()
1176 } else if (Remark.Kind == CodeGenOptions::RK_Disabled) { in GenerateOptimizationRemark()
1184 static CodeGenOptions::OptRemark
1187 CodeGenOptions::OptRemark Result; in ParseOptimizationRemark()
1209 Result.Kind = CodeGenOptions::RK_Enabled; in ParseOptimizationRemark()
1211 Result.Kind = CodeGenOptions::RK_EnabledEverything; in ParseOptimizationRemark()
1213 Result.Kind = CodeGenOptions::RK_Disabled; in ParseOptimizationRemark()
1215 Result.Kind = CodeGenOptions::RK_DisabledEverything; in ParseOptimizationRemark()
[all …]
/openbsd-src/gnu/usr.bin/clang/libclangBasic/
H A DMakefile17 CodeGenOptions.cpp \
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang/lib/Basic/
H A DBUILD.gn61 "CodeGenOptions.cpp",
/openbsd-src/gnu/llvm/clang/include/clang/
H A Dmodule.modulemap61 textual header "Basic/CodeGenOptions.def"

12