summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/builder.h
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-04-07 15:26:35 +0100
committerNicolas Geoffray <ngeoffray@google.com>2014-04-08 08:43:50 +0100
commitb55f835d66a61e5da6fc1895ba5a0482868c9552 (patch)
tree44659a826aeadcf2bf176c2e8d31108ba64c88eb /compiler/optimizing/builder.h
parent427ca38b0a6c6fd7dc0dbb380619e2b91b56cf1c (diff)
downloadart-b55f835d66a61e5da6fc1895ba5a0482868c9552.zip
art-b55f835d66a61e5da6fc1895ba5a0482868c9552.tar.gz
art-b55f835d66a61e5da6fc1895ba5a0482868c9552.tar.bz2
Test control flow instruction with optimizing compiler.
Add support for basic instructions to implement these tests. Change-Id: I3870bf9301599043b3511522bb49dc6364c9b4c0
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r--compiler/optimizing/builder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h
index df64d71..60d9982 100644
--- a/compiler/optimizing/builder.h
+++ b/compiler/optimizing/builder.h
@@ -79,6 +79,7 @@ class HGraphBuilder : public ValueObject {
template<typename T> void Binop_12x(const Instruction& instruction);
template<typename T> void Binop_22b(const Instruction& instruction, bool reverse);
template<typename T> void Binop_22s(const Instruction& instruction, bool reverse);
+ template<typename T> void If_22t(const Instruction& instruction, int32_t dex_offset, bool is_not);
ArenaAllocator* const arena_;