annotate src/share/vm/ci/ciMethodHandle.hpp @ 3938:e6b1331a51d2

7086585: make Java field injection more flexible Reviewed-by: jrose, twisti, kvn, coleenp
author never
date Sat, 10 Sep 2011 17:29:02 -0700
parents c26de9aef2ed
children e0658a9b3f87
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
1 /*
2357
8033953d67ff 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 1983
diff changeset
2 * Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
4 *
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
7 * published by the Free Software Foundation.
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
8 *
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
13 * accompanied this code).
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
14 *
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
21 * questions.
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
22 *
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
23 */
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_CI_CIMETHODHANDLE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_CI_CIMETHODHANDLE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 2357
diff changeset
28 #include "ci/ciCallProfile.hpp"
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
29 #include "ci/ciInstance.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "prims/methodHandles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
32 // ciMethodHandle
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
33 //
2357
8033953d67ff 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 1983
diff changeset
34 // The class represents a java.lang.invoke.MethodHandle object.
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
35 class ciMethodHandle : public ciInstance {
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
36 private:
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 2357
diff changeset
37 ciMethod* _callee;
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
38 ciMethod* _caller;
3752
f918d6096e23 7050554: JSR 292 - need optimization for selectAlternative
never
parents: 3371
diff changeset
39 ciCallProfile _profile;
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
40 ciMethod* _method_handle_adapter;
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
41 ciMethod* _invokedynamic_adapter;
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
42
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
43 // Return an adapter for this MethodHandle.
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
44 ciMethod* get_adapter_impl(bool is_invokedynamic);
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
45 ciMethod* get_adapter( bool is_invokedynamic);
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
46
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
47 protected:
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
48 void print_chain_impl(outputStream* st) PRODUCT_RETURN;
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
49
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
50 public:
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
51 ciMethodHandle(instanceHandle h_i) :
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
52 ciInstance(h_i),
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
53 _callee(NULL),
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
54 _caller(NULL),
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
55 _method_handle_adapter(NULL),
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
56 _invokedynamic_adapter(NULL)
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
57 {}
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
58
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
59 // What kind of ciObject is this?
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
60 bool is_method_handle() const { return true; }
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
61
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
62 void set_callee(ciMethod* m) { _callee = m; }
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
63 void set_caller(ciMethod* m) { _caller = m; }
3752
f918d6096e23 7050554: JSR 292 - need optimization for selectAlternative
never
parents: 3371
diff changeset
64 void set_call_profile(ciCallProfile profile) { _profile = profile; }
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 2357
diff changeset
65
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
66 // Return an adapter for a MethodHandle call.
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
67 ciMethod* get_method_handle_adapter() {
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
68 if (_method_handle_adapter == NULL) {
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
69 _method_handle_adapter = get_adapter(false);
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
70 }
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
71 return _method_handle_adapter;
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
72 }
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
73
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
74 // Return an adapter for an invokedynamic call.
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
75 ciMethod* get_invokedynamic_adapter() {
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
76 if (_invokedynamic_adapter == NULL) {
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
77 _invokedynamic_adapter = get_adapter(true);
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
78 }
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
79 return _invokedynamic_adapter;
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
80 }
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
81
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3752
diff changeset
82 void print_chain(outputStream* st = tty) PRODUCT_RETURN;
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
83 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
84
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
85 #endif // SHARE_VM_CI_CIMETHODHANDLE_HPP