Lines Matching refs:op
280 LIR* MipsMir2Lir::OpReg(OpKind op, RegStorage r_dest_src) { in OpReg() argument
282 switch (op) { in OpReg()
295 LIR* MipsMir2Lir::OpRegImm(OpKind op, RegStorage r_dest_src1, int value) { in OpRegImm() argument
296 if ((op == kOpAdd) || (op == kOpSub)) { in OpRegImm()
297 return OpRegRegImm(op, r_dest_src1, r_dest_src1, value); in OpRegImm()
304 LIR* MipsMir2Lir::OpRegRegReg(OpKind op, RegStorage r_dest, RegStorage r_src1, RegStorage r_src2) { in OpRegRegReg() argument
307 switch (op) { in OpRegRegReg()
346 LIR* MipsMir2Lir::OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) { in OpRegRegImm() argument
352 switch (op) { in OpRegRegImm()
466 LIR* MipsMir2Lir::OpRegReg(OpKind op, RegStorage r_dest_src1, RegStorage r_src2) { in OpRegReg() argument
469 switch (op) { in OpRegReg()
487 return OpRegRegReg(op, r_dest_src1, r_dest_src1, r_src2); in OpRegReg()
536 LIR* MipsMir2Lir::OpCondRegReg(OpKind op, ConditionCode cc, RegStorage r_dest, RegStorage r_src) { in OpCondRegReg() argument
537 UNUSED(op, cc, r_dest, r_src); in OpCondRegReg()
1034 LIR* MipsMir2Lir::OpMem(OpKind op, RegStorage r_base, int disp) { in OpMem() argument
1035 UNUSED(op, r_base, disp); in OpMem()
1046 LIR* MipsMir2Lir::InvokeTrampoline(OpKind op, RegStorage r_tgt, QuickEntrypointEnum trampoline) { in InvokeTrampoline() argument
1054 LIR* retVal = OpReg(op, r_tgt); in InvokeTrampoline()
1059 return OpReg(op, r_tgt); in InvokeTrampoline()