author | stuefe |
Thu, 23 Feb 2017 15:59:14 -0500 | |
changeset 46284 | ad578adff5df |
parent 34451 | b7fec92235d8 |
permissions | -rw-r--r-- |
32523 | 1 |
/* |
2 |
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* |
|
4 |
* Redistribution and use in source and binary forms, with or without |
|
5 |
* modification, are permitted provided that the following conditions |
|
6 |
* are met: |
|
7 |
* |
|
8 |
* - Redistributions of source code must retain the above copyright |
|
9 |
* notice, this list of conditions and the following disclaimer. |
|
10 |
* |
|
11 |
* - Redistributions in binary form must reproduce the above copyright |
|
12 |
* notice, this list of conditions and the following disclaimer in the |
|
13 |
* documentation and/or other materials provided with the distribution. |
|
14 |
* |
|
15 |
* - Neither the name of Oracle nor the names of its |
|
16 |
* contributors may be used to endorse or promote products derived |
|
17 |
* from this software without specific prior written permission. |
|
18 |
* |
|
19 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
|
20 |
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
|
21 |
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
22 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
|
23 |
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|
24 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
25 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|
26 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
|
27 |
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
|
28 |
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|
29 |
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
30 |
*/ |
|
31 |
||
32 |
// Simple sample to demonstrate openjdk asmtools assembler with |
|
33 |
// nashorn dynalink linker in a invokedynamic instruction. |
|
34 |
// |
|
35 |
// To assemble this file, use the following command: |
|
36 |
// |
|
37 |
// java -cp <asmtools.jar> org.openjdk.asmtools.Main jasm Main.asm |
|
38 |
// |
|
39 |
// See also: https://wiki.openjdk.java.net/display/CodeTools/asmtools |
|
40 |
// |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
41 |
// NOTE: Uses dynalink API defined by JEP-276 (http://openjdk.java.net/jeps/276) |
32523 | 42 |
|
43 |
super public class Main |
|
44 |
version 52:0 |
|
45 |
{ |
|
46 |
||
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
47 |
private static final Field linker:"Ljdk/dynalink/DynamicLinker;"; |
32523 | 48 |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
49 |
/* |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
50 |
static { |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
51 |
// create dynalink linker factory |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
52 |
final DynamicLinkerFactory factory = new DynamicLinkerFactory(); |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
53 |
|
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
54 |
// create standard linker that can handle Java POJOs |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
55 |
linker = factory.createLinker(); |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
56 |
} |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
57 |
*/ |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
58 |
static Method "<clinit>":"()V" |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
59 |
stack 2 locals 1 |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
60 |
{ |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
61 |
new class jdk/dynalink/DynamicLinkerFactory; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
62 |
dup; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
63 |
invokespecial Method jdk/dynalink/DynamicLinkerFactory."<init>":"()V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
64 |
astore_0; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
65 |
aload_0; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
66 |
invokevirtual Method jdk/dynalink/DynamicLinkerFactory.createLinker:"()Ljdk/dynalink/DynamicLinker;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
67 |
putstatic Field linker:"Ljdk/dynalink/DynamicLinker;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
68 |
return; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
69 |
} |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
70 |
|
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
71 |
/* |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
72 |
// Bootstrap method used with invokedynamic methods |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
73 |
|
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
74 |
public static CallSite bootstrap(MethodHandles.Lookup caller, String name, MethodType type) { |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
75 |
// use dynalink linker to perform the actual linking |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
76 |
return linker.link( |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
77 |
new SimpleRelinkableCallSite( |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
78 |
new CallSiteDescriptor( |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
79 |
MethodHandles.publicLookup(), |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
80 |
new NamedOperation(StandardOperation.GET_PROPERTY, name), type) |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
81 |
) |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
82 |
); |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
83 |
} |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
84 |
|
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
85 |
*/ |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
86 |
public static Method bootstrap:"(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;" |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
87 |
stack 10 locals 3 |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
88 |
{ |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
89 |
getstatic Field linker:"Ljdk/dynalink/DynamicLinker;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
90 |
new class jdk/dynalink/support/SimpleRelinkableCallSite; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
91 |
dup; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
92 |
new class jdk/dynalink/CallSiteDescriptor; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
93 |
dup; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
94 |
invokestatic Method java/lang/invoke/MethodHandles.publicLookup:"()Ljava/lang/invoke/MethodHandles$Lookup;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
95 |
new class jdk/dynalink/NamedOperation; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
96 |
dup; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
97 |
getstatic Field jdk/dynalink/StandardOperation.GET_PROPERTY:"Ljdk/dynalink/StandardOperation;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
98 |
aload_1; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
99 |
invokespecial Method jdk/dynalink/NamedOperation."<init>":"(Ljdk/dynalink/Operation;Ljava/lang/Object;)V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
100 |
aload_2; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
101 |
invokespecial Method jdk/dynalink/CallSiteDescriptor."<init>":"(Ljava/lang/invoke/MethodHandles$Lookup;Ljdk/dynalink/Operation;Ljava/lang/invoke/MethodType;)V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
102 |
invokespecial Method jdk/dynalink/support/SimpleRelinkableCallSite."<init>":"(Ljdk/dynalink/CallSiteDescriptor;)V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
103 |
invokevirtual Method jdk/dynalink/DynamicLinker.link:"(Ljdk/dynalink/RelinkableCallSite;)Ljdk/dynalink/RelinkableCallSite;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
104 |
checkcast class java/lang/invoke/CallSite; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
105 |
areturn; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
106 |
} |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
107 |
|
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
108 |
// default constructor that does nothing! |
32523 | 109 |
public Method "<init>":"()V" |
110 |
stack 1 locals 1 |
|
111 |
{ |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
112 |
aload_0; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
113 |
invokespecial Method java/lang/Object."<init>":"()V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
114 |
return; |
32523 | 115 |
} |
116 |
||
117 |
public static Method main:"([Ljava/lang/String;)V" |
|
118 |
stack 2 locals 2 |
|
119 |
{ |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
120 |
// List l = new ArrayList(); |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
121 |
new class java/util/ArrayList; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
122 |
dup; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
123 |
invokespecial Method java/util/ArrayList."<init>":"()V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
124 |
astore_1; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
125 |
aload_1; |
32523 | 126 |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
127 |
// l.add("hello"); |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
128 |
ldc String "hello"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
129 |
invokeinterface InterfaceMethod java/util/List.add:"(Ljava/lang/Object;)Z", 2; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
130 |
pop; |
32523 | 131 |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
132 |
// l.add("world"); |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
133 |
aload_1; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
134 |
ldc String "world"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
135 |
invokeinterface InterfaceMethod java/util/List.add:"(Ljava/lang/Object;)Z", 2; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
136 |
pop; |
32523 | 137 |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
138 |
// printLength(l); |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
139 |
aload_1; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
140 |
invokestatic Method printLength:"(Ljava/lang/Object;)V"; |
32523 | 141 |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
142 |
// printLength(args); // args is argument of main method |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
143 |
aload_0; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
144 |
invokestatic Method printLength:"(Ljava/lang/Object;)V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
145 |
return; |
32523 | 146 |
} |
147 |
||
148 |
private static Method printLength:"(Ljava/lang/Object;)V" |
|
149 |
stack 2 locals 1 |
|
150 |
{ |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
151 |
getstatic Field java/lang/System.out:"Ljava/io/PrintStream;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
152 |
aload_0; |
32523 | 153 |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
154 |
// Using bootstrap method in this class with the following invokedynamic |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
155 |
// which uses dynalink linker. Dynalink's bean linker handles Java beans. |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
156 |
// 'length' property on a bean - arrays, lists supported |
32523 | 157 |
|
34451
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
158 |
invokedynamic InvokeDynamic REF_invokeStatic:Main.bootstrap:"(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;":"length":"(Ljava/lang/Object;)Ljava/lang/Object;"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
159 |
|
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
160 |
// print 'length' value |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
161 |
invokevirtual Method java/io/PrintStream.println:"(Ljava/lang/Object;)V"; |
b7fec92235d8
8144186: Update Main.asm sample to use dynalink public API
sundar
parents:
32523
diff
changeset
|
162 |
return; |
32523 | 163 |
} |
164 |
||
165 |
} // end Class Main |