Home | History | Annotate | Download | only in mips

Lines Matching refs:MUL

117     case Token::MUL: return "mul-d";
131 case Token::MUL: return "mul-t";
1515 LMulI* mul = new(zone()) LMulI(left_op, right_op);
1517 AssignEnvironment(mul);
1519 return DefineAsRegister(mul);
1526 mul is the lhs of an add. The add and mul will be folded
1531 // This mul is the rhs of an add, where the lhs is not another mul.
1532 // The add and mul will be folded into a multiply-add.
1537 return DoArithmeticD(Token::MUL, instr);
1539 return DoArithmeticT(Token::MUL, instr);
1564 LInstruction* LChunkBuilder::DoMultiplyAdd(HMul* mul, HValue* addend) {
1565 LOperand* multiplier_op = UseRegisterAtStart(mul->left());
1566 LOperand* multiplicand_op = UseRegisterAtStart(mul->right());