Lines Matching refs:compiler_options
1010 const CompilerOptions& compiler_options = cu_->compiler_driver->GetCompilerOptions(); in SkipCompilation() local
1011 CompilerOptions::CompilerFilter compiler_filter = compiler_options.GetCompilerFilter(); in SkipCompilation()
1022 if (!compiler_options.IsCompilationEnabled()) { in SkipCompilation()
1032 small_cutoff = compiler_options.GetSmallMethodThreshold(); in SkipCompilation()
1033 default_cutoff = compiler_options.GetLargeMethodThreshold(); in SkipCompilation()
1036 small_cutoff = compiler_options.GetTinyMethodThreshold(); in SkipCompilation()
1037 default_cutoff = compiler_options.GetSmallMethodThreshold(); in SkipCompilation()
1040 small_cutoff = compiler_options.GetHugeMethodThreshold(); in SkipCompilation()
1041 default_cutoff = compiler_options.GetHugeMethodThreshold(); in SkipCompilation()
1057 if (compiler_options.IsHugeMethod(GetNumDalvikInsns())) { in SkipCompilation()
1061 if (static_cast<size_t>(num_blocks_) > (compiler_options.GetHugeMethodThreshold() / 2)) { in SkipCompilation()
1064 } else if (compiler_options.IsLargeMethod(GetNumDalvikInsns()) && in SkipCompilation()