summaryrefslogtreecommitdiffstats
path: root/compiler/compiler.h
diff options
context:
space:
mode:
authorDavid Brazdil <dbrazdil@google.com>2014-12-01 17:04:16 +0000
committerDavid Brazdil <dbrazdil@google.com>2014-12-17 15:46:21 +0000
commitee690a3dd364c025ebc1767d9f84097bb7473eec (patch)
tree9fe546eba2c7be93017188b376789281f7b32aa9 /compiler/compiler.h
parent3fea27b5f956a08b5b01f873b807fac98a5cc1f6 (diff)
downloadandroid_art-ee690a3dd364c025ebc1767d9f84097bb7473eec.tar.gz
android_art-ee690a3dd364c025ebc1767d9f84097bb7473eec.tar.bz2
android_art-ee690a3dd364c025ebc1767d9f84097bb7473eec.zip
ART: Added Checker, a pattern matching test engine
This patch adds a Python script which implements a domain-specific mini-language similar to that of LLVM's FileCheck. It is primarily intended for writing tests for the optimizing compiler but could be configured for other use cases too. It is implemented from scratch in order to avoid dependency on LLVM. Checker tests are written in Java and dex2oat is invoked with a flag which dumps the CFG before and after each pass of the optimizing compiler. The output is then compared against assertions in the test's comments parsed by Checker. See comments in tools/checker.py for more details about the currently supported language features. This initial CL implements only one type of assertion - whether the output contains lines matching a desired pattern in the given order - but supports both plain text and regex matching and allows for equivalency testing by matching for the outcome of a previous match. See the tests in compiler/optimizing/test/ConstantFolding.java for examples. Change-Id: I1ad7431b399c38dc0391ccee74d2c643ba0b0675
Diffstat (limited to 'compiler/compiler.h')
-rw-r--r--compiler/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/compiler.h b/compiler/compiler.h
index 07e2fd611f..d688ead749 100644
--- a/compiler/compiler.h
+++ b/compiler/compiler.h
@@ -41,7 +41,7 @@ class Compiler {
static Compiler* Create(CompilerDriver* driver, Kind kind);
- virtual void Init() const = 0;
+ virtual void Init() = 0;
virtual void UnInit() const = 0;