HomeSort by relevance Sort by last modified time
    Searched defs:compiler_options (Results 1 - 3 of 3) sorted by null

  /art/compiler/dex/
mir_analysis.cc 27 #include "driver/compiler_options.h"
1010 const CompilerOptions& compiler_options = cu_->compiler_driver->GetCompilerOptions(); local
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()
    [all...]
  /art/runtime/gc/space/
image_space.cc 188 const std::vector<std::string>& compiler_options = Runtime::Current()->GetImageCompilerOptions(); local
189 for (size_t i = 0; i < compiler_options.size(); ++i) {
190 arg_vector.push_back(compiler_options[i].c_str());
    [all...]
  /art/runtime/
class_linker.cc 661 const std::vector<std::string>& compiler_options = Runtime::Current()->GetCompilerOptions(); local
662 for (size_t i = 0; i < compiler_options.size(); ++i) {
663 argv.push_back(compiler_options[i].c_str());
    [all...]

Completed in 94 milliseconds