diff options
author | 2014-11-24 16:19:42 +0000 | |
---|---|---|
committer | 2014-11-24 16:19:43 +0000 | |
commit | 91e9f256b045a30fd55e96a95c77caf2eeadb2f0 (patch) | |
tree | d01d662d108e9b4209ad50ae2de0d8848799c395 /compiler/optimizing/builder.h | |
parent | d7a6f48736d9ed27d8bab42237ee700a2737db8e (diff) | |
parent | 9aec02fc5df5518c16f1e5a9b6cb198a192db973 (diff) |
Merge "[optimizing compiler] Add shifts"
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r-- | compiler/optimizing/builder.h | 6 |
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> |