Home
last modified time | relevance | path

Searched refs:rl_shift (Results 1 – 10 of 10) sorted by relevance

/art/compiler/dex/quick/mips/
Dint_mips.cc829 RegLocation rl_shift) { in GenShiftOpLong() argument
831 Mir2Lir::GenShiftOpLong(opcode, rl_dest, rl_src1, rl_shift); in GenShiftOpLong()
851 rl_shift = LoadValue(rl_shift, kCoreReg); in GenShiftOpLong()
854 OpRegRegReg(op, rl_result.reg, rl_src1.reg, As64BitReg(rl_shift.reg)); in GenShiftOpLong()
859 RegLocation rl_src1, RegLocation rl_shift, int flags) { in GenShiftImmOpLong() argument
863 GenShiftOpLong(opcode, rl_dest, rl_src1, rl_shift); in GenShiftImmOpLong()
868 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; in GenShiftImmOpLong()
Dcodegen_mips.h151 RegLocation rl_shift, int flags);
/art/compiler/dex/quick/arm64/
Dint_arm64.cc72 RegLocation rl_src1, RegLocation rl_shift) { in GenShiftOpLong() argument
90 rl_shift = LoadValue(rl_shift, kCoreReg); in GenShiftOpLong()
93 OpRegRegReg(op, rl_result.reg, rl_src1.reg, As64BitReg(rl_shift.reg)); in GenShiftOpLong()
1343 RegLocation rl_dest, RegLocation rl_src, RegLocation rl_shift, in GenShiftImmOpLong() argument
1347 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; in GenShiftImmOpLong()
Dcodegen_arm64.h140 RegLocation rl_shift, int flags) OVERRIDE;
/art/compiler/dex/quick/x86/
Dcodegen_x86.h205 RegLocation rl_src1, RegLocation rl_shift, int flags) OVERRIDE;
209 RegLocation rl_src1, RegLocation rl_shift) OVERRIDE;
Dint_x86.cc2638 RegLocation rl_src, RegLocation rl_shift, int flags) { in GenShiftImmOpLong() argument
2640 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; in GenShiftImmOpLong()
2652 GenShiftOpLong(opcode, rl_dest, rl_src, rl_shift); in GenShiftImmOpLong()
3373 RegLocation rl_src1, RegLocation rl_shift) { in GenShiftOpLong() argument
3381 LoadValueDirectFixed(rl_shift, rs_rCX); in GenShiftOpLong()
3454 LoadValueDirectFixed(rl_shift, t_reg); in GenShiftOpLong()
/art/compiler/dex/quick/arm/
Dcodegen_arm.h152 RegLocation rl_src1, RegLocation rl_shift, int flags);
Dint_arm.cc1550 RegLocation rl_dest, RegLocation rl_src, RegLocation rl_shift, in GenShiftImmOpLong() argument
1555 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; in GenShiftImmOpLong()
1561 GenShiftOpLong(opcode, rl_dest, rl_src, rl_shift); in GenShiftImmOpLong()
/art/compiler/dex/quick/
Dmir_to_lir.h844 RegLocation rl_src1, RegLocation rl_shift);
1402 RegLocation rl_src1, RegLocation rl_shift, int flags) = 0;
Dgen_common.cc1490 RegLocation rl_src1, RegLocation rl_shift) { in GenShiftOpLong() argument
1510 CallRuntimeHelperRegLocationRegLocation(target, rl_src1, rl_shift, false); in GenShiftOpLong()