diff options
author | Roland Levillain <rpl@google.com> | 2014-11-14 11:47:14 +0000 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2014-11-14 11:51:41 +0000 |
commit | 981e45424f52735b1c61ae0eac7e299ed313f8db (patch) | |
tree | b52598c87d7e1cd030e570da2a59ee26199ae481 /compiler/optimizing/builder.cc | |
parent | 4594ad627a48e249ee1680e954558dea15f0d133 (diff) | |
download | android_art-981e45424f52735b1c61ae0eac7e299ed313f8db.tar.gz android_art-981e45424f52735b1c61ae0eac7e299ed313f8db.tar.bz2 android_art-981e45424f52735b1c61ae0eac7e299ed313f8db.zip |
Add support for int-to-char in the optimizing compiler.
- Add support for the int-to-char Dex instruction in the
optimizing compiler.
- Implement the ARM and Thumb-2 UBFX instructions and add
tests for them.
- Generate x86, x86-64 and ARM (but not ARM64) code for
byte to char, short to char, int to char (and char to
char!) HTypeConversion nodes.
- Add related tests to test/422-type-conversion.
Change-Id: I5cd4c6d86f0f6a966c059715b98db35cc8f9de76
Diffstat (limited to 'compiler/optimizing/builder.cc')
-rw-r--r-- | compiler/optimizing/builder.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index df3d57ebdf..b51b6e7d25 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -1007,6 +1007,11 @@ bool HGraphBuilder::AnalyzeDexInstruction(const Instruction& instruction, uint32 break; } + case Instruction::INT_TO_CHAR: { + Conversion_12x(instruction, Primitive::kPrimInt, Primitive::kPrimChar); + break; + } + case Instruction::ADD_INT: { Binop_23x<HAdd>(instruction, Primitive::kPrimInt); break; |