diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2017-04-21 13:08:25 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2017-04-21 13:25:15 +0100 |
commit | 49cda06d5bf003f588ba7839bbf89d606237dfa7 (patch) | |
tree | bc97607c6ae33a69ebdea2346c781f7ac238c9e3 /compiler/driver/compiler_options.h | |
parent | aa03f6fa38da0166790f2b22b679e6568ad56f7d (diff) |
Rename and obsolete compiler filter names.
ART side of the change.
bug:34715556
test: test-art-host, jdwp, libcore
Change-Id: I3a73ae4af2d602431150c8ecfceaddb9ba519cee
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 2376fbf5f5..957ea99c49 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -84,32 +84,32 @@ class CompilerOptions FINAL { compiler_filter_ = compiler_filter; } - bool VerifyAtRuntime() const { - return compiler_filter_ == CompilerFilter::kVerifyAtRuntime; - } - - bool IsBytecodeCompilationEnabled() const { - return CompilerFilter::IsBytecodeCompilationEnabled(compiler_filter_); + bool IsAotCompilationEnabled() const { + return CompilerFilter::IsAotCompilationEnabled(compiler_filter_); } bool IsJniCompilationEnabled() const { return CompilerFilter::IsJniCompilationEnabled(compiler_filter_); } + bool IsQuickeningCompilationEnabled() const { + return CompilerFilter::IsQuickeningCompilationEnabled(compiler_filter_); + } + bool IsVerificationEnabled() const { return CompilerFilter::IsVerificationEnabled(compiler_filter_); } bool AssumeClassesAreVerified() const { - return compiler_filter_ == CompilerFilter::kVerifyNone; + return compiler_filter_ == CompilerFilter::kAssumeVerified; } - bool VerifyOnlyProfile() const { - return compiler_filter_ == CompilerFilter::kVerifyProfile; + bool VerifyAtRuntime() const { + return compiler_filter_ == CompilerFilter::kExtract; } - bool IsAnyMethodCompilationEnabled() const { - return CompilerFilter::IsAnyMethodCompilationEnabled(compiler_filter_); + bool IsAnyCompilationEnabled() const { + return CompilerFilter::IsAnyCompilationEnabled(compiler_filter_); } size_t GetHugeMethodThreshold() const { |