diff options
Diffstat (limited to 'compiler/dex/quick/x86/codegen_x86.h')
-rw-r--r-- | compiler/dex/quick/x86/codegen_x86.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/dex/quick/x86/codegen_x86.h b/compiler/dex/quick/x86/codegen_x86.h index 6896504f52..4c1c1711c0 100644 --- a/compiler/dex/quick/x86/codegen_x86.h +++ b/compiler/dex/quick/x86/codegen_x86.h @@ -207,6 +207,8 @@ class X86Mir2Lir : public Mir2Lir { LIR* OpMemReg(OpKind op, RegLocation rl_dest, int value); LIR* OpRegMem(OpKind op, int r_dest, RegLocation value); LIR* OpRegReg(OpKind op, int r_dest_src1, int r_src2); + LIR* OpMovRegMem(int r_dest, int r_base, int offset, MoveType move_type); + LIR* OpMovMemReg(int r_base, int offset, int r_src, MoveType move_type); LIR* OpCondRegReg(OpKind op, ConditionCode cc, int r_dest, int r_src); LIR* OpRegRegImm(OpKind op, int r_dest, int r_src1, int value); LIR* OpRegRegReg(OpKind op, int r_dest, int r_src1, int r_src2); |