< prev index next >

src/share/vm/runtime/stubRoutines.hpp

Print this page

        

@@ -206,10 +206,11 @@
   static address _mulAdd;
   static address _montgomeryMultiply;
   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
   // constant folding in the compiler to ensure equivalence.  If the
   // intrinsic version returns the same result as the strict version

@@ -374,11 +375,12 @@
   static address squareToLen()         {return _squareToLen; }
   static address mulAdd()              {return _mulAdd; }
   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);
 
   static address zero_aligned_words()   { return _zero_aligned_words; }
 
< prev index next >