diff options
| author | 2012-02-16 22:50:50 -0800 | |
|---|---|---|
| committer | 2012-02-16 22:50:50 -0800 | |
| commit | 5b07ea25a064995d0acbb142a768baf356ba5fdf (patch) | |
| tree | 9135eff661b143bf97e2db269523d5671e4ab0fa /src/compiler_llvm/method_compiler.h | |
| parent | 2a344cd38a1cc9d7f4bfd2a6939820f0c4a3fc6c (diff) | |
| parent | 76e1c797ff1af2d8f5e5ae992e2c1510c6dcaf00 (diff) | |
Merge "Implement floating-point binary arithmetic instructions." into dalvik-dev
Diffstat (limited to 'src/compiler_llvm/method_compiler.h')
| -rw-r--r-- | src/compiler_llvm/method_compiler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compiler_llvm/method_compiler.h b/src/compiler_llvm/method_compiler.h index a34d20601d..edde6ff0a6 100644 --- a/src/compiler_llvm/method_compiler.h +++ b/src/compiler_llvm/method_compiler.h @@ -289,6 +289,11 @@ class MethodCompiler { IntArithmKind arithm, JType op_jty); + llvm::Value* EmitFPArithmResultComputation(uint32_t dex_pc, + llvm::Value* lhs, + llvm::Value* rhs, + FPArithmKind arithm); + void EmitGuard_DivZeroException(uint32_t dex_pc, llvm::Value* denominator, JType op_jty); |