Lines Matching refs:temp3
46 Register temp3 = a6; in CreateExpFunction() local
53 __ Push(temp3, temp2, temp1); in CreateExpFunction()
56 temp1, temp2, temp3); in CreateExpFunction()
57 __ Pop(temp3, temp2, temp1); in CreateExpFunction()
981 Register temp3) { in EmitMathExp() argument
989 DCHECK(!temp1.is(temp3)); in EmitMathExp()
990 DCHECK(!temp2.is(temp3)); in EmitMathExp()
995 __ li(temp3, Operand(ExternalReference::math_exp_constants(0))); in EmitMathExp()
997 __ ldc1(double_scratch1, ExpConstant(0, temp3)); in EmitMathExp()
1000 __ ldc1(double_scratch2, ExpConstant(1, temp3)); in EmitMathExp()
1003 __ ldc1(double_scratch1, ExpConstant(3, temp3)); in EmitMathExp()
1004 __ ldc1(result, ExpConstant(4, temp3)); in EmitMathExp()
1009 __ ldc1(result, ExpConstant(6, temp3)); in EmitMathExp()
1010 __ ldc1(double_scratch2, ExpConstant(5, temp3)); in EmitMathExp()
1016 __ ldc1(double_scratch2, ExpConstant(7, temp3)); in EmitMathExp()
1029 __ li(temp3, Operand(ExternalReference::math_exp_log_table())); in EmitMathExp()
1031 __ Daddu(temp3, temp3, Operand(at)); in EmitMathExp()
1032 __ lwu(temp2, MemOperand(temp3, 0)); in EmitMathExp()
1033 __ lwu(temp3, MemOperand(temp3, kIntSize)); in EmitMathExp()
1035 if (temp2.code() < temp3.code()) { in EmitMathExp()
1037 __ Or(temp1, temp3, at); in EmitMathExp()
1042 __ Move(double_scratch1, temp3, temp1); in EmitMathExp()
1052 __ ldc1(result, ExpConstant(2, temp3)); in EmitMathExp()