Searched defs:pass_manager_options (Results 1 - 4 of 4) sorted by relevance

/art/compiler/driver/
H A Dcompiler_options.cc68 PassManagerOptions* pass_manager_options,
89 pass_manager_options_(pass_manager_options),
51 CompilerOptions(CompilerFilter compiler_filter, size_t huge_method_threshold, size_t large_method_threshold, size_t small_method_threshold, size_t tiny_method_threshold, size_t num_dex_methods_threshold, size_t inline_depth_limit, size_t inline_max_code_units, bool include_patch_information, double top_k_profile_threshold, bool debuggable, bool generate_debug_info, bool implicit_null_checks, bool implicit_so_checks, bool implicit_suspend_checks, bool compile_pic, const std::vector<std::string>* verbose_methods, PassManagerOptions* pass_manager_options, std::ostream* init_failure_output, bool abort_on_hard_verifier_failure ) argument
/art/compiler/dex/quick/
H A Dquick_compiler.cc835 auto* pass_manager_options = compiler_options.GetPassManagerOptions(); local
836 pre_opt_pass_manager_.reset(new PassManager(*pass_manager_options));
840 if (pass_manager_options->GetPrintPassOptions()) {
848 if (pass_manager_options->GetPrintPassOptions()) {
/art/compiler/jit/
H A Djit_compiler.cc65 auto* pass_manager_options = new PassManagerOptions; local
66 pass_manager_options->SetDisablePassList("GVN,DCE,GVNCleanup");
85 pass_manager_options,
/art/dex2oat/
H A Ddex2oat.cc583 PassManagerOptions pass_manager_options; local
791 pass_manager_options.SetPrintPassNames(true);
794 pass_manager_options.SetDisablePassList(disable_passes);
797 pass_manager_options.SetPrintPassList(print_passes);
799 pass_manager_options.SetPrintAllPasses();
802 pass_manager_options.SetDumpPassList(dump_passes_string);
804 pass_manager_options.SetPrintPassOptions(true);
807 pass_manager_options.SetOverriddenPassOptions(options);
1059 new PassManagerOptions(pass_manager_options),

Completed in 126 milliseconds