mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
8139575: Update for x86 log in the math lib
Add new java.lang.Math() intrinsics from x86 Reviewed-by: kvn, iveresov
This commit is contained in:
parent
fb687e4ff4
commit
c07f802b14
27 changed files with 789 additions and 147 deletions
|
@ -208,6 +208,7 @@ class StubRoutines: AllStatic {
|
|||
static address _montgomerySquare;
|
||||
|
||||
static address _dexp;
|
||||
static address _dlog;
|
||||
|
||||
// These are versions of the java.lang.Math methods which perform
|
||||
// the same operations as the intrinsic version. They are used for
|
||||
|
@ -376,7 +377,8 @@ class StubRoutines: AllStatic {
|
|||
static address montgomeryMultiply() { return _montgomeryMultiply; }
|
||||
static address montgomerySquare() { return _montgomerySquare; }
|
||||
|
||||
static address dexp() {return _dexp; }
|
||||
static address dexp() { return _dexp; }
|
||||
static address dlog() { return _dlog; }
|
||||
|
||||
static address select_fill_function(BasicType t, bool aligned, const char* &name);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue