hotspot/src/share/vm/interpreter/abstractInterpreter.hpp
changeset 18507 61bfc8995bb3
parent 15943 d830a939d985
child 21095 1a04f7b3946e
child 22820 70660a78baaf
equal deleted inserted replaced
18506:af8765fafc07 18507:61bfc8995bb3
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   100     java_lang_math_log,                                         // implementation of java.lang.Math.log   (x)
   100     java_lang_math_log,                                         // implementation of java.lang.Math.log   (x)
   101     java_lang_math_log10,                                       // implementation of java.lang.Math.log10 (x)
   101     java_lang_math_log10,                                       // implementation of java.lang.Math.log10 (x)
   102     java_lang_math_pow,                                         // implementation of java.lang.Math.pow   (x,y)
   102     java_lang_math_pow,                                         // implementation of java.lang.Math.pow   (x,y)
   103     java_lang_math_exp,                                         // implementation of java.lang.Math.exp   (x)
   103     java_lang_math_exp,                                         // implementation of java.lang.Math.exp   (x)
   104     java_lang_ref_reference_get,                                // implementation of java.lang.ref.Reference.get()
   104     java_lang_ref_reference_get,                                // implementation of java.lang.ref.Reference.get()
       
   105     java_util_zip_CRC32_update,                                 // implementation of java.util.zip.CRC32.update()
       
   106     java_util_zip_CRC32_updateBytes,                            // implementation of java.util.zip.CRC32.updateBytes()
       
   107     java_util_zip_CRC32_updateByteBuffer,                       // implementation of java.util.zip.CRC32.updateByteBuffer()
   105     number_of_method_entries,
   108     number_of_method_entries,
   106     invalid = -1
   109     invalid = -1
   107   };
   110   };
   108 
   111 
   109   // Conversion from the part of the above enum to vmIntrinsics::_invokeExact, etc.
   112   // Conversion from the part of the above enum to vmIntrinsics::_invokeExact, etc.