Searched refs:compiler_options (Results 1 - 8 of 8) sorted by relevance

/art/compiler/dex/
H A Dverification_results.cc23 #include "driver/compiler_options.h"
32 VerificationResults::VerificationResults(const CompilerOptions* compiler_options) argument
33 : compiler_options_(compiler_options),
38 UNUSED(compiler_options);
H A Dmir_analysis.cc27 #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
[all...]
H A Dverification_results.h42 explicit VerificationResults(const CompilerOptions* compiler_options);
/art/dex2oat/
H A Ddex2oat.cc46 #include "driver/compiler_options.h"
246 const CompilerOptions& compiler_options,
256 std::unique_ptr<Dex2Oat> dex2oat(new Dex2Oat(&compiler_options,
508 explicit Dex2Oat(const CompilerOptions* compiler_options, argument
515 : compiler_options_(compiler_options),
524 CHECK(compiler_options != nullptr);
1261 std::unique_ptr<CompilerOptions> compiler_options(new CompilerOptions(compiler_filter,
1276 , compiler_options.sea_ir_ =
1350 compiler_options.get()));
1366 *compiler_options,
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc188 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());
/art/compiler/driver/
H A Dcompiler_driver.cc40 #include "driver/compiler_options.h"
332 CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options, argument
344 profile_present_(false), compiler_options_(compiler_options),
393 if (compiler_options->GetGenerateGDBInformation()) {
H A Dcompiler_driver.h30 #include "driver/compiler_options.h"
104 explicit CompilerDriver(const CompilerOptions* compiler_options,
/art/runtime/
H A Dclass_linker.cc661 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());

Completed in 134 milliseconds