comparison src/share/vm/interpreter/abstractInterpreter.hpp @ 11198:1e6d5dec4a4e

Merge.
author Christian Humer <christian.humer@gmail.com>
date Mon, 05 Aug 2013 13:20:06 +0200
parents 6b0fd0964b87
children 096c224171c4
comparison
equal deleted inserted replaced
11197:3479ab380552 11198:1e6d5dec4a4e
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.