summaryrefslogtreecommitdiff
path: root/compiler/optimizing/builder.h
diff options
context:
space:
mode:
author Calin Juravle <calin@google.com> 2014-11-24 16:19:42 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-11-24 16:19:43 +0000
commit91e9f256b045a30fd55e96a95c77caf2eeadb2f0 (patch)
treed01d662d108e9b4209ad50ae2de0d8848799c395 /compiler/optimizing/builder.h
parentd7a6f48736d9ed27d8bab42237ee700a2737db8e (diff)
parent9aec02fc5df5518c16f1e5a9b6cb198a192db973 (diff)
Merge "[optimizing compiler] Add shifts"
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r--compiler/optimizing/builder.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h
index 897bcece7b..204005daa6 100644
--- a/compiler/optimizing/builder.h
+++ b/compiler/optimizing/builder.h
@@ -105,12 +105,18 @@ class HGraphBuilder : public ValueObject {
void Binop_23x(const Instruction& instruction, Primitive::Type type, uint32_t dex_pc);
template<typename T>
+ void Binop_23x_shift(const Instruction& instruction, Primitive::Type type);
+
+ template<typename T>
void Binop_12x(const Instruction& instruction, Primitive::Type type);
template<typename T>
void Binop_12x(const Instruction& instruction, Primitive::Type type, uint32_t dex_pc);
template<typename T>
+ void Binop_12x_shift(const Instruction& instruction, Primitive::Type type);
+
+ template<typename T>
void Binop_22b(const Instruction& instruction, bool reverse);
template<typename T>