summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/builder.h
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2014-11-06 17:09:03 +0000
committerCalin Juravle <calin@google.com>2014-11-06 17:21:16 +0000
commit865fc88fdfd006ce0362c2c0d55c66a7bffdab61 (patch)
tree35670296d924c9619a18a4149134e069de6ae48d /compiler/optimizing/builder.h
parentd375fabd9e8cbb805fd12a33d94aa0729432ff3a (diff)
downloadart-865fc88fdfd006ce0362c2c0d55c66a7bffdab61.tar.gz
art-865fc88fdfd006ce0362c2c0d55c66a7bffdab61.tar.bz2
art-865fc88fdfd006ce0362c2c0d55c66a7bffdab61.zip
[optimizing compiler] Add DIV_INT_2ADDR
Change-Id: I38fc7e216f820d8ccc8bbf8b8e7a67b75fb9de87
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r--compiler/optimizing/builder.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h
index f09f72954..78ed035f6 100644
--- a/compiler/optimizing/builder.h
+++ b/compiler/optimizing/builder.h
@@ -120,7 +120,9 @@ class HGraphBuilder : public ValueObject {
Primitive::Type input_type,
Primitive::Type result_type);
- void BuildCheckedDiv(const Instruction& instruction,
+ void BuildCheckedDiv(uint16_t out_reg,
+ uint16_t first_reg,
+ uint16_t second_reg,
uint32_t dex_offset,
Primitive::Type type,
bool second_is_lit);