< prev index next >

src/share/vm/prims/methodHandles.hpp

Print this page
rev 13107 : imported patch jvm_h


  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_PRIMS_METHODHANDLES_HPP
  26 #define SHARE_VM_PRIMS_METHODHANDLES_HPP
  27 
  28 #include "classfile/javaClasses.hpp"
  29 #include "classfile/vmSymbols.hpp"

  30 #include "runtime/frame.inline.hpp"
  31 #include "runtime/globals.hpp"
  32 #include "runtime/interfaceSupport.hpp"
  33 #include "utilities/macros.hpp"
  34 
  35 #ifdef ZERO
  36 # include "entry_zero.hpp"
  37 #endif
  38 
  39 
  40 class MacroAssembler;
  41 class Label;
  42 
  43 class MethodHandles: AllStatic {
  44   // JVM support for MethodHandle, MethodType, and related types
  45   // in java.lang.invoke and sun.invoke.
  46   // See also  javaClasses for layouts java_lang_invoke_Method{Handle,Type,Type::Form}.
  47  public:
  48  public:
  49   static bool enabled()                         { return _enabled; }




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_PRIMS_METHODHANDLES_HPP
  26 #define SHARE_VM_PRIMS_METHODHANDLES_HPP
  27 
  28 #include "classfile/javaClasses.hpp"
  29 #include "classfile/vmSymbols.hpp"
  30 #include "prims/jvm.h"
  31 #include "runtime/frame.inline.hpp"
  32 #include "runtime/globals.hpp"
  33 #include "runtime/interfaceSupport.hpp"
  34 #include "utilities/macros.hpp"
  35 
  36 #ifdef ZERO
  37 # include "entry_zero.hpp"
  38 #endif
  39 
  40 
  41 class MacroAssembler;
  42 class Label;
  43 
  44 class MethodHandles: AllStatic {
  45   // JVM support for MethodHandle, MethodType, and related types
  46   // in java.lang.invoke and sun.invoke.
  47   // See also  javaClasses for layouts java_lang_invoke_Method{Handle,Type,Type::Form}.
  48  public:
  49  public:
  50   static bool enabled()                         { return _enabled; }


< prev index next >