diff options
author | Calin Juravle <calin@google.com> | 2014-11-25 20:56:51 +0000 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2014-11-26 10:59:15 +0000 |
commit | cea28ec4b9e94ec942899acf1dbf20f8999b36b4 (patch) | |
tree | 893c062f6792688671519989a78065ecc7e79de9 /compiler/optimizing/builder.h | |
parent | f0c001465371279355eeb7633b67ffcc6f6738e5 (diff) | |
download | art-cea28ec4b9e94ec942899acf1dbf20f8999b36b4.tar.gz art-cea28ec4b9e94ec942899acf1dbf20f8999b36b4.tar.bz2 art-cea28ec4b9e94ec942899acf1dbf20f8999b36b4.zip |
[optimizing compiler] Add CMP{L,G}_{FLOAT,DOUBLE}
- adds float comparison for arm, x86, x86_64 backends.
- adds ucomis{s,d} assembly to x86 and x86_64.
Change-Id: Ie91e04bfb402025073054f3803a3a569e4705caa
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r-- | compiler/optimizing/builder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index 204005daa6..25781b08f4 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -107,6 +107,8 @@ class HGraphBuilder : public ValueObject { template<typename T> void Binop_23x_shift(const Instruction& instruction, Primitive::Type type); + void Binop_23x_cmp(const Instruction& instruction, Primitive::Type type, HCompare::Bias bias); + template<typename T> void Binop_12x(const Instruction& instruction, Primitive::Type type); |