comparison src/share/vm/interpreter/abstractInterpreter.hpp @ 14404:6cc7093e1341

Merge
author kvn
date Thu, 11 Jul 2013 12:56:29 -0700
parents d2907f74462e b800986664f4
children 2b8e28fdf503
comparison
equal deleted inserted replaced
14403:75ef1a499665 14404:6cc7093e1341
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.
103 java_lang_math_log, // implementation of java.lang.Math.log (x) 103 java_lang_math_log, // implementation of java.lang.Math.log (x)
104 java_lang_math_log10, // implementation of java.lang.Math.log10 (x) 104 java_lang_math_log10, // implementation of java.lang.Math.log10 (x)
105 java_lang_math_pow, // implementation of java.lang.Math.pow (x,y) 105 java_lang_math_pow, // implementation of java.lang.Math.pow (x,y)
106 java_lang_math_exp, // implementation of java.lang.Math.exp (x) 106 java_lang_math_exp, // implementation of java.lang.Math.exp (x)
107 java_lang_ref_reference_get, // implementation of java.lang.ref.Reference.get() 107 java_lang_ref_reference_get, // implementation of java.lang.ref.Reference.get()
108 java_util_zip_CRC32_update, // implementation of java.util.zip.CRC32.update()
109 java_util_zip_CRC32_updateBytes, // implementation of java.util.zip.CRC32.updateBytes()
110 java_util_zip_CRC32_updateByteBuffer, // implementation of java.util.zip.CRC32.updateByteBuffer()
108 number_of_method_entries, 111 number_of_method_entries,
109 invalid = -1 112 invalid = -1
110 }; 113 };
111 114
112 // Conversion from the part of the above enum to vmIntrinsics::_invokeExact, etc. 115 // Conversion from the part of the above enum to vmIntrinsics::_invokeExact, etc.