src/share/vm/interpreter/abstractInterpreter.hpp

changeset 5353
b800986664f4
parent 4727
0094485b46c7
child 5987
5ccbab1c69f3
child 6454
6cc7093e1341
equal deleted inserted replaced
5352:738e04fb1232 5353:b800986664f4
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.

mercurial