src/cpu/x86/vm/templateInterpreter_x86_64.cpp

changeset 3787
6759698e3140
parent 3400
22cee0ee8927
child 3826
2fe087c3e814
equal deleted inserted replaced
3760:8f972594effc 3787:6759698e3140
1532 case Interpreter::java_lang_math_cos : // fall thru 1532 case Interpreter::java_lang_math_cos : // fall thru
1533 case Interpreter::java_lang_math_tan : // fall thru 1533 case Interpreter::java_lang_math_tan : // fall thru
1534 case Interpreter::java_lang_math_abs : // fall thru 1534 case Interpreter::java_lang_math_abs : // fall thru
1535 case Interpreter::java_lang_math_log : // fall thru 1535 case Interpreter::java_lang_math_log : // fall thru
1536 case Interpreter::java_lang_math_log10 : // fall thru 1536 case Interpreter::java_lang_math_log10 : // fall thru
1537 case Interpreter::java_lang_math_sqrt : entry_point = ((InterpreterGenerator*) this)->generate_math_entry(kind); break; 1537 case Interpreter::java_lang_math_sqrt : // fall thru
1538 case Interpreter::java_lang_math_pow : // fall thru
1539 case Interpreter::java_lang_math_exp : entry_point = ((InterpreterGenerator*) this)->generate_math_entry(kind); break;
1538 case Interpreter::java_lang_ref_reference_get 1540 case Interpreter::java_lang_ref_reference_get
1539 : entry_point = ((InterpreterGenerator*)this)->generate_Reference_get_entry(); break; 1541 : entry_point = ((InterpreterGenerator*)this)->generate_Reference_get_entry(); break;
1540 default : ShouldNotReachHere(); break; 1542 default : ShouldNotReachHere(); break;
1541 } 1543 }
1542 1544
1556 case Interpreter::java_lang_math_cos : // fall thru 1558 case Interpreter::java_lang_math_cos : // fall thru
1557 case Interpreter::java_lang_math_tan : // fall thru 1559 case Interpreter::java_lang_math_tan : // fall thru
1558 case Interpreter::java_lang_math_abs : // fall thru 1560 case Interpreter::java_lang_math_abs : // fall thru
1559 case Interpreter::java_lang_math_log : // fall thru 1561 case Interpreter::java_lang_math_log : // fall thru
1560 case Interpreter::java_lang_math_log10 : // fall thru 1562 case Interpreter::java_lang_math_log10 : // fall thru
1561 case Interpreter::java_lang_math_sqrt : 1563 case Interpreter::java_lang_math_sqrt : // fall thru
1564 case Interpreter::java_lang_math_pow : // fall thru
1565 case Interpreter::java_lang_math_exp :
1562 return false; 1566 return false;
1563 default: 1567 default:
1564 return true; 1568 return true;
1565 } 1569 }
1566 } 1570 }

mercurial