/external/clang/include/clang/Frontend/ |
D | CompilerInstance.h | 196 CodeGenOptions &getCodeGenOpts() { in getCodeGenOpts() function 197 return Invocation->getCodeGenOpts(); in getCodeGenOpts() 199 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts() function 200 return Invocation->getCodeGenOpts(); in getCodeGenOpts()
|
D | CompilerInvocation.h | 160 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; } in getCodeGenOpts() function 161 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts() function
|
/external/clang/lib/CodeGen/ |
D | CodeGenAction.cpp | 334 const std::string &LinkBCFile = CI.getCodeGenOpts().LinkBitcodeFile; in CreateASTConsumer() 356 CI.getCodeGenOpts(), CI.getTargetOpts(), in CreateASTConsumer() 413 EmitBackendOutput(CI.getDiagnostics(), CI.getCodeGenOpts(), in ExecuteAction()
|
D | CodeGenFunction.cpp | 212 if (CGM.getCodeGenOpts().EmitDeclMetadata) in FinishFunction() 219 if (!CGM.getCodeGenOpts().InstrumentFunctions) in ShouldInstrumentFunction() 293 if (CGM.getCodeGenOpts().EmitOpenCLArgMetadata) in EmitOpenCLKernelMetadata() 346 if (!CGM.getCodeGenOpts().NoInline) in StartFunction() 397 if (CGM.getCodeGenOpts().InstrumentForProfiling) in StartFunction() 521 !CGM.getCodeGenOpts().CUDAIsDevice && in GenerateCode() 1159 if (CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) in EmitDeclRefExprDbgValue()
|
D | CGDebugInfo.cpp | 268 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty()) in getCurrentDirname() 269 return CGM.getCodeGenOpts().DebugCompilationDir; in getCurrentDirname() 285 std::string MainFileName = CGM.getCodeGenOpts().MainFileName; in CreateCompileUnit() 331 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers); in CreateCompileUnit() 569 if (CGM.getCodeGenOpts().DebugInfo != CodeGenOptions::LimitedDebugInfo) in CreatePointeeType() 1201 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo); in getOrCreateRecordType() 1210 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo); in getOrCreateInterfaceType() 1860 if (CGM.getCodeGenOpts().DebugInfo == CodeGenOptions::LimitedDebugInfo) in CreateLimitedType() 2054 CGM.getCodeGenOpts().DebugInfo <= CodeGenOptions::DebugLineTablesOnly) in EmitFunctionStart() 2057 if (CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) { in EmitFunctionStart() [all …]
|
D | CGVTables.cpp | 55 if (CGM.getCodeGenOpts().OptimizationLevel && !CGM.getLangOpts().AppleKext) in ShouldEmitVTableInThisTU() 124 if (!CGM.getCodeGenOpts().HiddenWeakVTables) in setThunkVisibility() 153 if (!CGM.getCodeGenOpts().HiddenWeakTemplateVTables) in setThunkVisibility() 478 if (!CGM.getCodeGenOpts().OptimizationLevel) in MaybeEmitThunkAvailableExternally()
|
D | CGCXX.cpp | 34 if (!getCodeGenOpts().CXXCtorDtorAliases) in TryEmitBaseDestructorAsAlias() 104 if (!getCodeGenOpts().CXXCtorDtorAliases) in TryEmitDefinitionAsAlias()
|
D | CGDeclCXX.cpp | 109 if (!CGF.CGM.getCodeGenOpts().OptimizationLevel) in EmitDeclInvariant() 206 if (CGM.getCodeGenOpts().ForbidGuardVariables) in EmitCXXGuardedInit()
|
D | CodeGenTypes.h | 115 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts() function
|
D | CGDecl.cpp | 336 CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) { in EmitStaticVarDecl() 818 if (CGM.getCodeGenOpts().MergeAllConstants && !NRVO && !isByRef && in EmitAutoVarAlloca() 917 if (CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) { in EmitAutoVarAlloca() 1501 if (CGM.getCodeGenOpts().DebugInfo >= in EmitParmDecl() 1584 if (CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) { in EmitParmDecl()
|
D | CodeGenModule.cpp | 178 if (getCodeGenOpts().EmitDeclMetadata) in Release() 181 if (getCodeGenOpts().EmitGcovArcs || getCodeGenOpts().EmitGcovNotes) in Release() 1695 if (getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) in EmitGlobalVarDefinition() 2733 if (!getCodeGenOpts().CoverageFile.empty()) { in EmitCoverageFile() 2738 llvm::MDString::get(Ctx, getCodeGenOpts().CoverageFile); in EmitCoverageFile()
|
D | CodeGenTypes.cpp | 35 CodeGenOpts(CGM.getCodeGenOpts()), CGM(CGM) { in CodeGenTypes()
|
D | CodeGenModule.h | 447 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts() function
|
D | CodeGenFunction.h | 1224 return CGM.getCodeGenOpts().OptimizationLevel == 0; 1298 CGM.getCodeGenOpts().ObjCAutoRefCountExceptions; 2310 return CGM.getCodeGenOpts().ObjCAutoRefCountExceptions
|
D | CGRTTI.cpp | 692 if (CGM.getCodeGenOpts().HiddenWeakVTables && in BuildTypeInfo()
|
D | CGRecordLayoutBuilder.cpp | 286 if (Types.getCodeGenOpts().UseRegisterSizedBitfieldAccess) { in MakeInfo()
|
D | CGCall.cpp | 1799 if (CGM.getCodeGenOpts().OptimizationLevel != 0 && in AddObjCARCExceptionMetadata() 1800 !CGM.getCodeGenOpts().ObjCAutoRefCountExceptions) in AddObjCARCExceptionMetadata()
|
D | CGExpr.cpp | 940 CGM.getCodeGenOpts().StrictEnums && in getRangeForLoadFromType() 1032 if (CGM.getCodeGenOpts().OptimizationLevel > 0) in EmitLoadOfScalar() 1929 const CodeGenOptions &GCO = CGM.getCodeGenOpts(); in EmitCheck()
|
D | ItaniumCXXABI.cpp | 1146 if (CGM.getCodeGenOpts().CXAAtExit) { in registerGlobalDtor()
|
D | CGStmt.cpp | 902 if ((CGM.getCodeGenOpts().OptimizationLevel > 0) && in EmitCaseStmt()
|
D | CGObjC.cpp | 1901 } else if (CGM.getCodeGenOpts().OptimizationLevel == 0) { in EmitARCRetainAutoreleasedReturnValue() 2107 CGM.getCodeGenOpts().OptimizationLevel == 0) { in EmitARCInitWeak()
|
D | CGExprCXX.cpp | 177 if (DI && CGM.getCodeGenOpts().DebugInfo == CodeGenOptions::LimitedDebugInfo in EmitCXXMemberCallExpr()
|
D | CGClass.cpp | 1241 CGM.getCodeGenOpts().DebugInfo == CodeGenOptions::LimitedDebugInfo) { in EmitCXXConstructorCall()
|
/external/clang/lib/Frontend/ |
D | CompilerInstance.cpp | 176 &getCodeGenOpts()); in createDiagnostics()
|
D | CompilerInvocation.cpp | 937 CodeGenOptsToArgs(getCodeGenOpts(), List); in toArgs() 2339 Success = ParseCodeGenArgs(Res.getCodeGenOpts(), *Args, DashX, Diags) in CreateFromArgs()
|