annotate src/share/vm/opto/classes.hpp @ 63:eac007780a58

6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint Summary: Values of non-static fields of a scalarized object should be saved in debug info to reallocate the object during deoptimization. Reviewed-by: never
author kvn
date Thu, 13 Mar 2008 16:06:34 -0700
parents a61af66fc99e
children ba764ed4b6f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // The giant table of Node classes.
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // One entry per class, sorted by class name.
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 macro(AbsD)
a61af66fc99e Initial load
duke
parents:
diff changeset
29 macro(AbsF)
a61af66fc99e Initial load
duke
parents:
diff changeset
30 macro(AbsI)
a61af66fc99e Initial load
duke
parents:
diff changeset
31 macro(AddD)
a61af66fc99e Initial load
duke
parents:
diff changeset
32 macro(AddF)
a61af66fc99e Initial load
duke
parents:
diff changeset
33 macro(AddI)
a61af66fc99e Initial load
duke
parents:
diff changeset
34 macro(AddL)
a61af66fc99e Initial load
duke
parents:
diff changeset
35 macro(AddP)
a61af66fc99e Initial load
duke
parents:
diff changeset
36 macro(Allocate)
a61af66fc99e Initial load
duke
parents:
diff changeset
37 macro(AllocateArray)
a61af66fc99e Initial load
duke
parents:
diff changeset
38 macro(AndI)
a61af66fc99e Initial load
duke
parents:
diff changeset
39 macro(AndL)
a61af66fc99e Initial load
duke
parents:
diff changeset
40 macro(AtanD)
a61af66fc99e Initial load
duke
parents:
diff changeset
41 macro(Binary)
a61af66fc99e Initial load
duke
parents:
diff changeset
42 macro(Bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
43 macro(BoxLock)
a61af66fc99e Initial load
duke
parents:
diff changeset
44 macro(ReverseBytesI)
a61af66fc99e Initial load
duke
parents:
diff changeset
45 macro(ReverseBytesL)
a61af66fc99e Initial load
duke
parents:
diff changeset
46 macro(CProj)
a61af66fc99e Initial load
duke
parents:
diff changeset
47 macro(CallDynamicJava)
a61af66fc99e Initial load
duke
parents:
diff changeset
48 macro(CallJava)
a61af66fc99e Initial load
duke
parents:
diff changeset
49 macro(CallLeaf)
a61af66fc99e Initial load
duke
parents:
diff changeset
50 macro(CallLeafNoFP)
a61af66fc99e Initial load
duke
parents:
diff changeset
51 macro(CallRuntime)
a61af66fc99e Initial load
duke
parents:
diff changeset
52 macro(CallStaticJava)
a61af66fc99e Initial load
duke
parents:
diff changeset
53 macro(CastII)
a61af66fc99e Initial load
duke
parents:
diff changeset
54 macro(CastX2P)
a61af66fc99e Initial load
duke
parents:
diff changeset
55 macro(CastP2X)
a61af66fc99e Initial load
duke
parents:
diff changeset
56 macro(CastPP)
a61af66fc99e Initial load
duke
parents:
diff changeset
57 macro(Catch)
a61af66fc99e Initial load
duke
parents:
diff changeset
58 macro(CatchProj)
a61af66fc99e Initial load
duke
parents:
diff changeset
59 macro(CheckCastPP)
a61af66fc99e Initial load
duke
parents:
diff changeset
60 macro(ClearArray)
a61af66fc99e Initial load
duke
parents:
diff changeset
61 macro(ConstraintCast)
a61af66fc99e Initial load
duke
parents:
diff changeset
62 macro(CMoveD)
a61af66fc99e Initial load
duke
parents:
diff changeset
63 macro(CMoveF)
a61af66fc99e Initial load
duke
parents:
diff changeset
64 macro(CMoveI)
a61af66fc99e Initial load
duke
parents:
diff changeset
65 macro(CMoveL)
a61af66fc99e Initial load
duke
parents:
diff changeset
66 macro(CMoveP)
a61af66fc99e Initial load
duke
parents:
diff changeset
67 macro(CmpD)
a61af66fc99e Initial load
duke
parents:
diff changeset
68 macro(CmpD3)
a61af66fc99e Initial load
duke
parents:
diff changeset
69 macro(CmpF)
a61af66fc99e Initial load
duke
parents:
diff changeset
70 macro(CmpF3)
a61af66fc99e Initial load
duke
parents:
diff changeset
71 macro(CmpI)
a61af66fc99e Initial load
duke
parents:
diff changeset
72 macro(CmpL)
a61af66fc99e Initial load
duke
parents:
diff changeset
73 macro(CmpL3)
a61af66fc99e Initial load
duke
parents:
diff changeset
74 macro(CmpLTMask)
a61af66fc99e Initial load
duke
parents:
diff changeset
75 macro(CmpP)
a61af66fc99e Initial load
duke
parents:
diff changeset
76 macro(CmpU)
a61af66fc99e Initial load
duke
parents:
diff changeset
77 macro(CompareAndSwapI)
a61af66fc99e Initial load
duke
parents:
diff changeset
78 macro(CompareAndSwapL)
a61af66fc99e Initial load
duke
parents:
diff changeset
79 macro(CompareAndSwapP)
a61af66fc99e Initial load
duke
parents:
diff changeset
80 macro(Con)
a61af66fc99e Initial load
duke
parents:
diff changeset
81 macro(ConD)
a61af66fc99e Initial load
duke
parents:
diff changeset
82 macro(ConF)
a61af66fc99e Initial load
duke
parents:
diff changeset
83 macro(ConI)
a61af66fc99e Initial load
duke
parents:
diff changeset
84 macro(ConL)
a61af66fc99e Initial load
duke
parents:
diff changeset
85 macro(ConP)
a61af66fc99e Initial load
duke
parents:
diff changeset
86 macro(Conv2B)
a61af66fc99e Initial load
duke
parents:
diff changeset
87 macro(ConvD2F)
a61af66fc99e Initial load
duke
parents:
diff changeset
88 macro(ConvD2I)
a61af66fc99e Initial load
duke
parents:
diff changeset
89 macro(ConvD2L)
a61af66fc99e Initial load
duke
parents:
diff changeset
90 macro(ConvF2D)
a61af66fc99e Initial load
duke
parents:
diff changeset
91 macro(ConvF2I)
a61af66fc99e Initial load
duke
parents:
diff changeset
92 macro(ConvF2L)
a61af66fc99e Initial load
duke
parents:
diff changeset
93 macro(ConvI2D)
a61af66fc99e Initial load
duke
parents:
diff changeset
94 macro(ConvI2F)
a61af66fc99e Initial load
duke
parents:
diff changeset
95 macro(ConvI2L)
a61af66fc99e Initial load
duke
parents:
diff changeset
96 macro(ConvL2D)
a61af66fc99e Initial load
duke
parents:
diff changeset
97 macro(ConvL2F)
a61af66fc99e Initial load
duke
parents:
diff changeset
98 macro(ConvL2I)
a61af66fc99e Initial load
duke
parents:
diff changeset
99 macro(CosD)
a61af66fc99e Initial load
duke
parents:
diff changeset
100 macro(CountedLoop)
a61af66fc99e Initial load
duke
parents:
diff changeset
101 macro(CountedLoopEnd)
a61af66fc99e Initial load
duke
parents:
diff changeset
102 macro(CreateEx)
a61af66fc99e Initial load
duke
parents:
diff changeset
103 macro(DivD)
a61af66fc99e Initial load
duke
parents:
diff changeset
104 macro(DivF)
a61af66fc99e Initial load
duke
parents:
diff changeset
105 macro(DivI)
a61af66fc99e Initial load
duke
parents:
diff changeset
106 macro(DivL)
a61af66fc99e Initial load
duke
parents:
diff changeset
107 macro(DivMod)
a61af66fc99e Initial load
duke
parents:
diff changeset
108 macro(DivModI)
a61af66fc99e Initial load
duke
parents:
diff changeset
109 macro(DivModL)
a61af66fc99e Initial load
duke
parents:
diff changeset
110 macro(ExpD)
a61af66fc99e Initial load
duke
parents:
diff changeset
111 macro(FastLock)
a61af66fc99e Initial load
duke
parents:
diff changeset
112 macro(FastUnlock)
a61af66fc99e Initial load
duke
parents:
diff changeset
113 macro(Goto)
a61af66fc99e Initial load
duke
parents:
diff changeset
114 macro(Halt)
a61af66fc99e Initial load
duke
parents:
diff changeset
115 macro(If)
a61af66fc99e Initial load
duke
parents:
diff changeset
116 macro(IfFalse)
a61af66fc99e Initial load
duke
parents:
diff changeset
117 macro(IfTrue)
a61af66fc99e Initial load
duke
parents:
diff changeset
118 macro(Initialize)
a61af66fc99e Initial load
duke
parents:
diff changeset
119 macro(JProj)
a61af66fc99e Initial load
duke
parents:
diff changeset
120 macro(Jump)
a61af66fc99e Initial load
duke
parents:
diff changeset
121 macro(JumpProj)
a61af66fc99e Initial load
duke
parents:
diff changeset
122 macro(LShiftI)
a61af66fc99e Initial load
duke
parents:
diff changeset
123 macro(LShiftL)
a61af66fc99e Initial load
duke
parents:
diff changeset
124 macro(LoadB)
a61af66fc99e Initial load
duke
parents:
diff changeset
125 macro(LoadC)
a61af66fc99e Initial load
duke
parents:
diff changeset
126 macro(LoadD)
a61af66fc99e Initial load
duke
parents:
diff changeset
127 macro(LoadD_unaligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
128 macro(LoadF)
a61af66fc99e Initial load
duke
parents:
diff changeset
129 macro(LoadI)
a61af66fc99e Initial load
duke
parents:
diff changeset
130 macro(LoadKlass)
a61af66fc99e Initial load
duke
parents:
diff changeset
131 macro(LoadL)
a61af66fc99e Initial load
duke
parents:
diff changeset
132 macro(LoadL_unaligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 macro(LoadPLocked)
a61af66fc99e Initial load
duke
parents:
diff changeset
134 macro(LoadLLocked)
a61af66fc99e Initial load
duke
parents:
diff changeset
135 macro(LoadP)
a61af66fc99e Initial load
duke
parents:
diff changeset
136 macro(LoadRange)
a61af66fc99e Initial load
duke
parents:
diff changeset
137 macro(LoadS)
a61af66fc99e Initial load
duke
parents:
diff changeset
138 macro(Lock)
a61af66fc99e Initial load
duke
parents:
diff changeset
139 macro(LogD)
a61af66fc99e Initial load
duke
parents:
diff changeset
140 macro(Log10D)
a61af66fc99e Initial load
duke
parents:
diff changeset
141 macro(Loop)
a61af66fc99e Initial load
duke
parents:
diff changeset
142 macro(Mach)
a61af66fc99e Initial load
duke
parents:
diff changeset
143 macro(MachProj)
a61af66fc99e Initial load
duke
parents:
diff changeset
144 macro(MaxI)
a61af66fc99e Initial load
duke
parents:
diff changeset
145 macro(MemBarAcquire)
a61af66fc99e Initial load
duke
parents:
diff changeset
146 macro(MemBarCPUOrder)
a61af66fc99e Initial load
duke
parents:
diff changeset
147 macro(MemBarRelease)
a61af66fc99e Initial load
duke
parents:
diff changeset
148 macro(MemBarVolatile)
a61af66fc99e Initial load
duke
parents:
diff changeset
149 macro(MergeMem)
a61af66fc99e Initial load
duke
parents:
diff changeset
150 macro(MinI)
a61af66fc99e Initial load
duke
parents:
diff changeset
151 macro(ModD)
a61af66fc99e Initial load
duke
parents:
diff changeset
152 macro(ModF)
a61af66fc99e Initial load
duke
parents:
diff changeset
153 macro(ModI)
a61af66fc99e Initial load
duke
parents:
diff changeset
154 macro(ModL)
a61af66fc99e Initial load
duke
parents:
diff changeset
155 macro(MoveI2F)
a61af66fc99e Initial load
duke
parents:
diff changeset
156 macro(MoveF2I)
a61af66fc99e Initial load
duke
parents:
diff changeset
157 macro(MoveL2D)
a61af66fc99e Initial load
duke
parents:
diff changeset
158 macro(MoveD2L)
a61af66fc99e Initial load
duke
parents:
diff changeset
159 macro(MulD)
a61af66fc99e Initial load
duke
parents:
diff changeset
160 macro(MulF)
a61af66fc99e Initial load
duke
parents:
diff changeset
161 macro(MulI)
a61af66fc99e Initial load
duke
parents:
diff changeset
162 macro(MulL)
a61af66fc99e Initial load
duke
parents:
diff changeset
163 macro(Multi)
a61af66fc99e Initial load
duke
parents:
diff changeset
164 macro(NegD)
a61af66fc99e Initial load
duke
parents:
diff changeset
165 macro(NegF)
a61af66fc99e Initial load
duke
parents:
diff changeset
166 macro(NeverBranch)
a61af66fc99e Initial load
duke
parents:
diff changeset
167 macro(Opaque1)
a61af66fc99e Initial load
duke
parents:
diff changeset
168 macro(Opaque2)
a61af66fc99e Initial load
duke
parents:
diff changeset
169 macro(OrI)
a61af66fc99e Initial load
duke
parents:
diff changeset
170 macro(OrL)
a61af66fc99e Initial load
duke
parents:
diff changeset
171 macro(PCTable)
a61af66fc99e Initial load
duke
parents:
diff changeset
172 macro(Parm)
a61af66fc99e Initial load
duke
parents:
diff changeset
173 macro(PartialSubtypeCheck)
a61af66fc99e Initial load
duke
parents:
diff changeset
174 macro(Phi)
a61af66fc99e Initial load
duke
parents:
diff changeset
175 macro(PowD)
a61af66fc99e Initial load
duke
parents:
diff changeset
176 macro(PrefetchRead)
a61af66fc99e Initial load
duke
parents:
diff changeset
177 macro(PrefetchWrite)
a61af66fc99e Initial load
duke
parents:
diff changeset
178 macro(Proj)
a61af66fc99e Initial load
duke
parents:
diff changeset
179 macro(RShiftI)
a61af66fc99e Initial load
duke
parents:
diff changeset
180 macro(RShiftL)
a61af66fc99e Initial load
duke
parents:
diff changeset
181 macro(Region)
a61af66fc99e Initial load
duke
parents:
diff changeset
182 macro(Rethrow)
a61af66fc99e Initial load
duke
parents:
diff changeset
183 macro(Return)
a61af66fc99e Initial load
duke
parents:
diff changeset
184 macro(Root)
a61af66fc99e Initial load
duke
parents:
diff changeset
185 macro(RoundDouble)
a61af66fc99e Initial load
duke
parents:
diff changeset
186 macro(RoundFloat)
a61af66fc99e Initial load
duke
parents:
diff changeset
187 macro(SafePoint)
63
eac007780a58 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 0
diff changeset
188 macro(SafePointScalarObject)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
189 macro(SCMemProj)
a61af66fc99e Initial load
duke
parents:
diff changeset
190 macro(SinD)
a61af66fc99e Initial load
duke
parents:
diff changeset
191 macro(SqrtD)
a61af66fc99e Initial load
duke
parents:
diff changeset
192 macro(Start)
a61af66fc99e Initial load
duke
parents:
diff changeset
193 macro(StartOSR)
a61af66fc99e Initial load
duke
parents:
diff changeset
194 macro(StoreB)
a61af66fc99e Initial load
duke
parents:
diff changeset
195 macro(StoreC)
a61af66fc99e Initial load
duke
parents:
diff changeset
196 macro(StoreCM)
a61af66fc99e Initial load
duke
parents:
diff changeset
197 macro(StorePConditional)
a61af66fc99e Initial load
duke
parents:
diff changeset
198 macro(StoreLConditional)
a61af66fc99e Initial load
duke
parents:
diff changeset
199 macro(StoreD)
a61af66fc99e Initial load
duke
parents:
diff changeset
200 macro(StoreF)
a61af66fc99e Initial load
duke
parents:
diff changeset
201 macro(StoreI)
a61af66fc99e Initial load
duke
parents:
diff changeset
202 macro(StoreL)
a61af66fc99e Initial load
duke
parents:
diff changeset
203 macro(StoreP)
a61af66fc99e Initial load
duke
parents:
diff changeset
204 macro(StrComp)
a61af66fc99e Initial load
duke
parents:
diff changeset
205 macro(SubD)
a61af66fc99e Initial load
duke
parents:
diff changeset
206 macro(SubF)
a61af66fc99e Initial load
duke
parents:
diff changeset
207 macro(SubI)
a61af66fc99e Initial load
duke
parents:
diff changeset
208 macro(SubL)
a61af66fc99e Initial load
duke
parents:
diff changeset
209 macro(TailCall)
a61af66fc99e Initial load
duke
parents:
diff changeset
210 macro(TailJump)
a61af66fc99e Initial load
duke
parents:
diff changeset
211 macro(TanD)
a61af66fc99e Initial load
duke
parents:
diff changeset
212 macro(ThreadLocal)
a61af66fc99e Initial load
duke
parents:
diff changeset
213 macro(Unlock)
a61af66fc99e Initial load
duke
parents:
diff changeset
214 macro(URShiftI)
a61af66fc99e Initial load
duke
parents:
diff changeset
215 macro(URShiftL)
a61af66fc99e Initial load
duke
parents:
diff changeset
216 macro(XorI)
a61af66fc99e Initial load
duke
parents:
diff changeset
217 macro(XorL)
a61af66fc99e Initial load
duke
parents:
diff changeset
218 macro(Vector)
a61af66fc99e Initial load
duke
parents:
diff changeset
219 macro(AddVB)
a61af66fc99e Initial load
duke
parents:
diff changeset
220 macro(AddVC)
a61af66fc99e Initial load
duke
parents:
diff changeset
221 macro(AddVS)
a61af66fc99e Initial load
duke
parents:
diff changeset
222 macro(AddVI)
a61af66fc99e Initial load
duke
parents:
diff changeset
223 macro(AddVL)
a61af66fc99e Initial load
duke
parents:
diff changeset
224 macro(AddVF)
a61af66fc99e Initial load
duke
parents:
diff changeset
225 macro(AddVD)
a61af66fc99e Initial load
duke
parents:
diff changeset
226 macro(SubVB)
a61af66fc99e Initial load
duke
parents:
diff changeset
227 macro(SubVC)
a61af66fc99e Initial load
duke
parents:
diff changeset
228 macro(SubVS)
a61af66fc99e Initial load
duke
parents:
diff changeset
229 macro(SubVI)
a61af66fc99e Initial load
duke
parents:
diff changeset
230 macro(SubVL)
a61af66fc99e Initial load
duke
parents:
diff changeset
231 macro(SubVF)
a61af66fc99e Initial load
duke
parents:
diff changeset
232 macro(SubVD)
a61af66fc99e Initial load
duke
parents:
diff changeset
233 macro(MulVF)
a61af66fc99e Initial load
duke
parents:
diff changeset
234 macro(MulVD)
a61af66fc99e Initial load
duke
parents:
diff changeset
235 macro(DivVF)
a61af66fc99e Initial load
duke
parents:
diff changeset
236 macro(DivVD)
a61af66fc99e Initial load
duke
parents:
diff changeset
237 macro(LShiftVB)
a61af66fc99e Initial load
duke
parents:
diff changeset
238 macro(LShiftVC)
a61af66fc99e Initial load
duke
parents:
diff changeset
239 macro(LShiftVS)
a61af66fc99e Initial load
duke
parents:
diff changeset
240 macro(LShiftVI)
a61af66fc99e Initial load
duke
parents:
diff changeset
241 macro(URShiftVB)
a61af66fc99e Initial load
duke
parents:
diff changeset
242 macro(URShiftVC)
a61af66fc99e Initial load
duke
parents:
diff changeset
243 macro(URShiftVS)
a61af66fc99e Initial load
duke
parents:
diff changeset
244 macro(URShiftVI)
a61af66fc99e Initial load
duke
parents:
diff changeset
245 macro(AndV)
a61af66fc99e Initial load
duke
parents:
diff changeset
246 macro(OrV)
a61af66fc99e Initial load
duke
parents:
diff changeset
247 macro(XorV)
a61af66fc99e Initial load
duke
parents:
diff changeset
248 macro(VectorLoad)
a61af66fc99e Initial load
duke
parents:
diff changeset
249 macro(Load16B)
a61af66fc99e Initial load
duke
parents:
diff changeset
250 macro(Load8B)
a61af66fc99e Initial load
duke
parents:
diff changeset
251 macro(Load4B)
a61af66fc99e Initial load
duke
parents:
diff changeset
252 macro(Load8C)
a61af66fc99e Initial load
duke
parents:
diff changeset
253 macro(Load4C)
a61af66fc99e Initial load
duke
parents:
diff changeset
254 macro(Load2C)
a61af66fc99e Initial load
duke
parents:
diff changeset
255 macro(Load8S)
a61af66fc99e Initial load
duke
parents:
diff changeset
256 macro(Load4S)
a61af66fc99e Initial load
duke
parents:
diff changeset
257 macro(Load2S)
a61af66fc99e Initial load
duke
parents:
diff changeset
258 macro(Load4I)
a61af66fc99e Initial load
duke
parents:
diff changeset
259 macro(Load2I)
a61af66fc99e Initial load
duke
parents:
diff changeset
260 macro(Load2L)
a61af66fc99e Initial load
duke
parents:
diff changeset
261 macro(Load4F)
a61af66fc99e Initial load
duke
parents:
diff changeset
262 macro(Load2F)
a61af66fc99e Initial load
duke
parents:
diff changeset
263 macro(Load2D)
a61af66fc99e Initial load
duke
parents:
diff changeset
264 macro(VectorStore)
a61af66fc99e Initial load
duke
parents:
diff changeset
265 macro(Store16B)
a61af66fc99e Initial load
duke
parents:
diff changeset
266 macro(Store8B)
a61af66fc99e Initial load
duke
parents:
diff changeset
267 macro(Store4B)
a61af66fc99e Initial load
duke
parents:
diff changeset
268 macro(Store8C)
a61af66fc99e Initial load
duke
parents:
diff changeset
269 macro(Store4C)
a61af66fc99e Initial load
duke
parents:
diff changeset
270 macro(Store2C)
a61af66fc99e Initial load
duke
parents:
diff changeset
271 macro(Store4I)
a61af66fc99e Initial load
duke
parents:
diff changeset
272 macro(Store2I)
a61af66fc99e Initial load
duke
parents:
diff changeset
273 macro(Store2L)
a61af66fc99e Initial load
duke
parents:
diff changeset
274 macro(Store4F)
a61af66fc99e Initial load
duke
parents:
diff changeset
275 macro(Store2F)
a61af66fc99e Initial load
duke
parents:
diff changeset
276 macro(Store2D)
a61af66fc99e Initial load
duke
parents:
diff changeset
277 macro(Pack)
a61af66fc99e Initial load
duke
parents:
diff changeset
278 macro(PackB)
a61af66fc99e Initial load
duke
parents:
diff changeset
279 macro(PackS)
a61af66fc99e Initial load
duke
parents:
diff changeset
280 macro(PackC)
a61af66fc99e Initial load
duke
parents:
diff changeset
281 macro(PackI)
a61af66fc99e Initial load
duke
parents:
diff changeset
282 macro(PackL)
a61af66fc99e Initial load
duke
parents:
diff changeset
283 macro(PackF)
a61af66fc99e Initial load
duke
parents:
diff changeset
284 macro(PackD)
a61af66fc99e Initial load
duke
parents:
diff changeset
285 macro(Pack2x1B)
a61af66fc99e Initial load
duke
parents:
diff changeset
286 macro(Pack2x2B)
a61af66fc99e Initial load
duke
parents:
diff changeset
287 macro(Replicate16B)
a61af66fc99e Initial load
duke
parents:
diff changeset
288 macro(Replicate8B)
a61af66fc99e Initial load
duke
parents:
diff changeset
289 macro(Replicate4B)
a61af66fc99e Initial load
duke
parents:
diff changeset
290 macro(Replicate8S)
a61af66fc99e Initial load
duke
parents:
diff changeset
291 macro(Replicate4S)
a61af66fc99e Initial load
duke
parents:
diff changeset
292 macro(Replicate2S)
a61af66fc99e Initial load
duke
parents:
diff changeset
293 macro(Replicate8C)
a61af66fc99e Initial load
duke
parents:
diff changeset
294 macro(Replicate4C)
a61af66fc99e Initial load
duke
parents:
diff changeset
295 macro(Replicate2C)
a61af66fc99e Initial load
duke
parents:
diff changeset
296 macro(Replicate4I)
a61af66fc99e Initial load
duke
parents:
diff changeset
297 macro(Replicate2I)
a61af66fc99e Initial load
duke
parents:
diff changeset
298 macro(Replicate2L)
a61af66fc99e Initial load
duke
parents:
diff changeset
299 macro(Replicate4F)
a61af66fc99e Initial load
duke
parents:
diff changeset
300 macro(Replicate2F)
a61af66fc99e Initial load
duke
parents:
diff changeset
301 macro(Replicate2D)
a61af66fc99e Initial load
duke
parents:
diff changeset
302 macro(Extract)
a61af66fc99e Initial load
duke
parents:
diff changeset
303 macro(ExtractB)
a61af66fc99e Initial load
duke
parents:
diff changeset
304 macro(ExtractS)
a61af66fc99e Initial load
duke
parents:
diff changeset
305 macro(ExtractC)
a61af66fc99e Initial load
duke
parents:
diff changeset
306 macro(ExtractI)
a61af66fc99e Initial load
duke
parents:
diff changeset
307 macro(ExtractL)
a61af66fc99e Initial load
duke
parents:
diff changeset
308 macro(ExtractF)
a61af66fc99e Initial load
duke
parents:
diff changeset
309 macro(ExtractD)