comparison src/share/vm/interpreter/abstractInterpreter.hpp @ 2357:8033953d67ff

7012648: move JSR 292 to package java.lang.invoke and adjust names Summary: package and class renaming only; delete unused methods and classes Reviewed-by: twisti
author jrose
date Fri, 11 Mar 2011 22:34:57 -0800
parents b92c45f2bc75
children e1162778c1c8
comparison
equal deleted inserted replaced
2356:72dee110246f 2357:8033953d67ff
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2011, 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.
94 native, // native method 94 native, // native method
95 native_synchronized, // native method & is synchronized 95 native_synchronized, // native method & is synchronized
96 empty, // empty method (code: _return) 96 empty, // empty method (code: _return)
97 accessor, // accessor method (code: _aload_0, _getfield, _(a|i)return) 97 accessor, // accessor method (code: _aload_0, _getfield, _(a|i)return)
98 abstract, // abstract method (throws an AbstractMethodException) 98 abstract, // abstract method (throws an AbstractMethodException)
99 method_handle, // java.dyn.MethodHandles::invoke 99 method_handle, // java.lang.invoke.MethodHandles::invoke
100 java_lang_math_sin, // implementation of java.lang.Math.sin (x) 100 java_lang_math_sin, // implementation of java.lang.Math.sin (x)
101 java_lang_math_cos, // implementation of java.lang.Math.cos (x) 101 java_lang_math_cos, // implementation of java.lang.Math.cos (x)
102 java_lang_math_tan, // implementation of java.lang.Math.tan (x) 102 java_lang_math_tan, // implementation of java.lang.Math.tan (x)
103 java_lang_math_abs, // implementation of java.lang.Math.abs (x) 103 java_lang_math_abs, // implementation of java.lang.Math.abs (x)
104 java_lang_math_sqrt, // implementation of java.lang.Math.sqrt (x) 104 java_lang_math_sqrt, // implementation of java.lang.Math.sqrt (x)