diff options
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 edde6ff0a6..a1f18024cf 100644 --- a/src/compiler_llvm/method_compiler.h +++ b/src/compiler_llvm/method_compiler.h @@ -294,10 +294,15 @@ class MethodCompiler { llvm::Value* rhs, FPArithmKind arithm); + llvm::Value* EmitLoadArrayLength(llvm::Value* array); + void EmitGuard_DivZeroException(uint32_t dex_pc, llvm::Value* denominator, JType op_jty); + void EmitGuard_NullPointerException(uint32_t dex_pc, + llvm::Value* object); + RegCategory GetInferredRegCategory(uint32_t dex_pc, uint16_t reg); |