comparison src/share/vm/ci/ciMethodHandle.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 c760f78e0a53
children e2a92dd0d3d2
comparison
equal deleted inserted replaced
2356:72dee110246f 2357:8033953d67ff
1 /* 1 /*
2 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2009, 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.
28 #include "ci/ciInstance.hpp" 28 #include "ci/ciInstance.hpp"
29 #include "prims/methodHandles.hpp" 29 #include "prims/methodHandles.hpp"
30 30
31 // ciMethodHandle 31 // ciMethodHandle
32 // 32 //
33 // The class represents a java.dyn.MethodHandle object. 33 // The class represents a java.lang.invoke.MethodHandle object.
34 class ciMethodHandle : public ciInstance { 34 class ciMethodHandle : public ciInstance {
35 private: 35 private:
36 ciMethod* _callee; 36 ciMethod* _callee;
37 37
38 // Return an adapter for this MethodHandle. 38 // Return an adapter for this MethodHandle.