Implement integer binary arithmetic instructions.
Change-Id: I55f1336182e91996d55d1665bda87c75bb972c64
diff --git a/src/compiler_llvm/method_compiler.h b/src/compiler_llvm/method_compiler.h
index 8833a5c..a34d206 100644
--- a/src/compiler_llvm/method_compiler.h
+++ b/src/compiler_llvm/method_compiler.h
@@ -283,6 +283,16 @@
llvm::Value* rhs,
CondBranchKind cond);
+ llvm::Value* EmitIntArithmResultComputation(uint32_t dex_pc,
+ llvm::Value* lhs,
+ llvm::Value* rhs,
+ IntArithmKind arithm,
+ JType op_jty);
+
+ void EmitGuard_DivZeroException(uint32_t dex_pc,
+ llvm::Value* denominator,
+ JType op_jty);
+
RegCategory GetInferredRegCategory(uint32_t dex_pc, uint16_t reg);