summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/code_generator_x86.h
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2014-11-14 15:54:36 +0000
committerCalin Juravle <calin@google.com>2014-11-17 11:19:35 +0000
commitbacfec30ee9f2f6fdfd190f11b105b609938efca (patch)
tree1fb08fa38b27627ab59a54895ef098b43bb70ce1 /compiler/optimizing/code_generator_x86.h
parentff5298ff1640b730ee62c90ca78fc96b7ee82ec4 (diff)
downloadart-bacfec30ee9f2f6fdfd190f11b105b609938efca.tar.gz
art-bacfec30ee9f2f6fdfd190f11b105b609938efca.tar.bz2
art-bacfec30ee9f2f6fdfd190f11b105b609938efca.zip
[optimizing compiler] Add REM_INT, REM_LONG
- for arm, x86, x86_64 - minor cleanup/fix in div tests Change-Id: I240874010206a5a9b3aaffbc81a885b94c248f93
Diffstat (limited to 'compiler/optimizing/code_generator_x86.h')
-rw-r--r--compiler/optimizing/code_generator_x86.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator_x86.h b/compiler/optimizing/code_generator_x86.h
index 841b28b158..8252f81c7f 100644
--- a/compiler/optimizing/code_generator_x86.h
+++ b/compiler/optimizing/code_generator_x86.h
@@ -130,6 +130,7 @@ class InstructionCodeGeneratorX86 : public HGraphVisitor {
void GenerateSuspendCheck(HSuspendCheck* check, HBasicBlock* successor);
void GenerateClassInitializationCheck(SlowPathCodeX86* slow_path, Register class_reg);
void HandleBitwiseOperation(HBinaryOperation* instruction);
+ void GenerateDivRemIntegral(HBinaryOperation* instruction);
X86Assembler* const assembler_;
CodeGeneratorX86* const codegen_;