hotspot/src/share/vm/interpreter/abstractInterpreter.hpp
changeset 8676 9098d4e927e1
parent 8107 78e5bd944384
child 9176 42d9d1010f38
equal deleted inserted replaced
8675:e9fef2a9bef7 8676:9098d4e927e1
     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)