annotate src/share/vm/ci/ciMethodHandle.hpp @ 3752:f918d6096e23

7050554: JSR 292 - need optimization for selectAlternative Reviewed-by: kvn, jrose
author never
date Thu, 02 Jun 2011 13:36:11 -0700
parents fabcf26ee72f
children c26de9aef2ed
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;
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
40
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
41 // Return an adapter for this MethodHandle.
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
42 ciMethod* get_adapter_impl(bool is_invokedynamic) const;
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
43 ciMethod* get_adapter( bool is_invokedynamic) const;
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
44
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
45 protected:
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
46 void print_impl(outputStream* st);
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
47
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
48 public:
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
49 ciMethodHandle(instanceHandle h_i) :
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
50 ciInstance(h_i),
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
51 _callee(NULL),
3752
f918d6096e23 7050554: JSR 292 - need optimization for selectAlternative
never
parents: 3371
diff changeset
52 _caller(NULL)
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
53 {}
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
54
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
55 // What kind of ciObject is this?
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
56 bool is_method_handle() const { return true; }
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
57
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
58 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
59 void set_caller(ciMethod* m) { _caller = m; }
3752
f918d6096e23 7050554: JSR 292 - need optimization for selectAlternative
never
parents: 3371
diff changeset
60 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
61
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
62 // Return an adapter for a MethodHandle call.
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
63 ciMethod* get_method_handle_adapter() const { return get_adapter(false); }
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
64
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
65 // Return an adapter for an invokedynamic call.
3371
fabcf26ee72f 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 3366
diff changeset
66 ciMethod* get_invokedynamic_adapter() const { return get_adapter(true); }
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
67 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
68
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
69 #endif // SHARE_VM_CI_CIMETHODHANDLE_HPP