diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2016-11-03 10:52:49 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2016-11-03 12:55:11 +0000 |
commit | 6bb7f1b60f4b6b2214457d19d66d2b7b50685feb (patch) | |
tree | 980f8d69174155e71469e4c5163e2dcf4d2c6fbe /runtime/compiler_callbacks.h | |
parent | 63f41f9ff6ce6b68b93feafcbed0f75e5c439594 (diff) |
Integrate VerifierDeps in compiler driver.
If a VerifierDeps is given, try fast verify. Otherwise create
a new VerifierDeps and do the full verification.
test: test-art-host, verifier_deps_test
bug: 30937355
Change-Id: Ifb030d7b5232c95872164f601057a56ab96038e1
Diffstat (limited to 'runtime/compiler_callbacks.h')
-rw-r--r-- | runtime/compiler_callbacks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/compiler_callbacks.h b/runtime/compiler_callbacks.h index 00dedef1e7..806653a265 100644 --- a/runtime/compiler_callbacks.h +++ b/runtime/compiler_callbacks.h @@ -47,6 +47,7 @@ class CompilerCallbacks { virtual bool IsRelocationPossible() = 0; virtual verifier::VerifierDeps* GetVerifierDeps() const = 0; + virtual void SetVerifierDeps(verifier::VerifierDeps* deps ATTRIBUTE_UNUSED) {} bool IsBootImage() { return mode_ == CallbackMode::kCompileBootImage; |