Searched refs:compiler_options (Results 1 – 8 of 8) sorted by relevance
/art/compiler/dex/ |
D | mir_analysis.cc | 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() [all …]
|
D | verification_results.cc | 32 VerificationResults::VerificationResults(const CompilerOptions* compiler_options) in VerificationResults() argument 33 : compiler_options_(compiler_options), in VerificationResults() 38 UNUSED(compiler_options); in VerificationResults()
|
D | verification_results.h | 42 explicit VerificationResults(const CompilerOptions* compiler_options);
|
/art/dex2oat/ |
D | dex2oat.cc | 246 const CompilerOptions& compiler_options, in Create() argument 256 std::unique_ptr<Dex2Oat> dex2oat(new Dex2Oat(&compiler_options, in Create() 508 explicit Dex2Oat(const CompilerOptions* compiler_options, in Dex2Oat() argument 515 : compiler_options_(compiler_options), in Dex2Oat() 524 CHECK(compiler_options != nullptr); in Dex2Oat() 1261 std::unique_ptr<CompilerOptions> compiler_options(new CompilerOptions(compiler_filter, in dex2oat() local 1276 , compiler_options.sea_ir_ = in dex2oat() 1350 compiler_options.get())); in dex2oat() 1366 *compiler_options, in dex2oat() 1508 if (!image && compiler_options->IsCompilationEnabled()) { in dex2oat() [all …]
|
/art/runtime/gc/space/ |
D | image_space.cc | 188 const std::vector<std::string>& compiler_options = Runtime::Current()->GetImageCompilerOptions(); in GenerateImage() local 189 for (size_t i = 0; i < compiler_options.size(); ++i) { in GenerateImage() 190 arg_vector.push_back(compiler_options[i].c_str()); in GenerateImage()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 332 CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options, in CompilerDriver() argument 344 profile_present_(false), compiler_options_(compiler_options), in CompilerDriver() 393 if (compiler_options->GetGenerateGDBInformation()) { in CompilerDriver()
|
D | compiler_driver.h | 104 explicit CompilerDriver(const CompilerOptions* compiler_options,
|
/art/runtime/ |
D | class_linker.cc | 661 const std::vector<std::string>& compiler_options = Runtime::Current()->GetCompilerOptions(); in GenerateOatFile() local 662 for (size_t i = 0; i < compiler_options.size(); ++i) { in GenerateOatFile() 663 argv.push_back(compiler_options[i].c_str()); in GenerateOatFile()
|