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