/frameworks/compile/libbcc/include/bcinfo/ |
BitcodeWrapper.h | 40 uint32_t OptimizationLevel; 123 * \param optimizationLevel - compiler optimization level for this bitcode. 129 uint32_t optimizationLevel) { 146 wrapper->OptimizationLevel = optimizationLevel;
|
/frameworks/compile/libbcc/include/bcc/Renderscript/ |
RSScript.h | 41 enum OptimizationLevel { 51 OptimizationLevel mOptimizationLevel; 88 void setOptimizationLevel(OptimizationLevel pOptimizationLevel) { 92 OptimizationLevel getOptimizationLevel() const {
|
/frameworks/compile/slang/ |
slang_bitcode_gen.h | 34 uint32_t OptimizationLevel,
|
slang_bitcode_gen.cpp | 35 uint32_t OptimizationLevel, 94 CompilerVersion, OptimizationLevel);
|
slang_backend.cpp | 86 PMBuilder.OptLevel = mCodeGenOpts.OptimizationLevel; 96 PMBuilder.OptLevel = mCodeGenOpts.OptimizationLevel; 182 llvm::RegisterRegAlloc::setDefault((mCodeGenOpts.OptimizationLevel == 0) ? 187 if (mCodeGenOpts.OptimizationLevel == 0) { 189 } else if (mCodeGenOpts.OptimizationLevel == 3) { 334 mCodeGenOpts.OptimizationLevel, mCodeGenOpts.getDebugInfo());
|
llvm-rs-as.cpp | 94 /* OptimizationLevel = */ 3,
|
slang.cpp | 260 CodeGenOpts.OptimizationLevel = 3; 447 void Slang::setOptimizationLevel(llvm::CodeGenOpt::Level OptimizationLevel) { 448 CodeGenOpts.OptimizationLevel = OptimizationLevel;
|
slang.h | 264 void setOptimizationLevel(llvm::CodeGenOpt::Level OptimizationLevel);
|
/external/clang/lib/CodeGen/ |
CGVTables.cpp | 495 !CGM.getCodeGenOpts().OptimizationLevel) 718 return CGM.getCodeGenOpts().OptimizationLevel > 0 && 743 assert((def || CodeGenOpts.OptimizationLevel > 0) && 746 if (!def && CodeGenOpts.OptimizationLevel > 0) [all...] |
BackendUtil.cpp | 278 unsigned OptLevel = CodeGenOpts.OptimizationLevel; 494 switch (CodeGenOpts.OptimizationLevel) { 612 if (CodeGenOpts.OptimizationLevel > 0)
|
CodeGenTBAA.cpp | 90 if (CodeGenOpts.OptimizationLevel == 0 || CodeGenOpts.RelaxedAliasing)
|
CGCXX.cpp | 40 if (getCodeGenOpts().OptimizationLevel == 0)
|
CGClass.cpp | [all...] |
CGBlocks.cpp | [all...] |
CGDeclCXX.cpp | 117 if (!CGF.CGM.getCodeGenOpts().OptimizationLevel)
|
CGObjC.cpp | 142 CGM.getCodeGenOpts().OptimizationLevel != 0); [all...] |
CGDecl.cpp | 916 if (CGM.getCodeGenOpts().OptimizationLevel == 0 [all...] |
CodeGenFunction.cpp | [all...] |
CodeGenModule.cpp | 134 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)) 406 if (CodeGenOpts.OptimizationLevel > 0 && CodeGenOpts.StrictVTablePointers) { [all...] |
CGStmt.cpp | [all...] |
/external/clang/include/clang/Frontend/ |
CodeGenOptions.def | 103 VALUE_CODEGENOPT(OptimizationLevel, 2, 0) ///< The -O[0-3] option specified.
|
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 321 printf("optimizationLevel: %u\n\n", bcWrapper.getOptimizationLevel());
|
/external/clang/lib/Frontend/ |
CompilerInvocation.cpp | 370 unsigned OptimizationLevel = getOptimizationLevel(Args, IK, Diags); 373 if (OptimizationLevel > MaxOptLevel) { 378 OptimizationLevel = MaxOptLevel; 380 Opts.OptimizationLevel = OptimizationLevel; 384 (Opts.OptimizationLevel > 1) ? CodeGenOptions::NormalInlining 386 // -fno-inline-functions overrides OptimizationLevel > 1. 447 (Opts.OptimizationLevel > 1 && !Opts.OptimizeSize)); [all...] |
/external/llvm/docs/ |
CommandLine.rst | 353 cl::opt<OptLevel> OptimizationLevel(cl::desc("Choose optimization level:"), 362 if (OptimizationLevel >= O2) doPartialRedundancyElimination(...); 365 This declaration defines a variable "``OptimizationLevel``" of the 399 cl::opt<OptLevel> OptimizationLevel(cl::desc("Choose optimization level:"), 408 if (OptimizationLevel == Debug) outputDebugInfo(...); [all...] |
/frameworks/compile/libbcc/lib/Renderscript/ |
RSCompilerDriver.cpp | 280 script.setOptimizationLevel(static_cast<RSScript::OptimizationLevel>(
|