Lines Matching refs:InstructionConstants

101             case InstructionConstants.OP_ILOAD_1:  in embeddedVariable()
102 case InstructionConstants.OP_LLOAD_1: in embeddedVariable()
103 case InstructionConstants.OP_FLOAD_1: in embeddedVariable()
104 case InstructionConstants.OP_DLOAD_1: in embeddedVariable()
105 case InstructionConstants.OP_ALOAD_1: in embeddedVariable()
106 case InstructionConstants.OP_ISTORE_1: in embeddedVariable()
107 case InstructionConstants.OP_LSTORE_1: in embeddedVariable()
108 case InstructionConstants.OP_FSTORE_1: in embeddedVariable()
109 case InstructionConstants.OP_DSTORE_1: in embeddedVariable()
110 case InstructionConstants.OP_ASTORE_1: return 1; in embeddedVariable()
112 case InstructionConstants.OP_ILOAD_2: in embeddedVariable()
113 case InstructionConstants.OP_LLOAD_2: in embeddedVariable()
114 case InstructionConstants.OP_FLOAD_2: in embeddedVariable()
115 case InstructionConstants.OP_DLOAD_2: in embeddedVariable()
116 case InstructionConstants.OP_ALOAD_2: in embeddedVariable()
117 case InstructionConstants.OP_ISTORE_2: in embeddedVariable()
118 case InstructionConstants.OP_LSTORE_2: in embeddedVariable()
119 case InstructionConstants.OP_FSTORE_2: in embeddedVariable()
120 case InstructionConstants.OP_DSTORE_2: in embeddedVariable()
121 case InstructionConstants.OP_ASTORE_2: return 2; in embeddedVariable()
123 case InstructionConstants.OP_ILOAD_3: in embeddedVariable()
124 case InstructionConstants.OP_LLOAD_3: in embeddedVariable()
125 case InstructionConstants.OP_FLOAD_3: in embeddedVariable()
126 case InstructionConstants.OP_DLOAD_3: in embeddedVariable()
127 case InstructionConstants.OP_ALOAD_3: in embeddedVariable()
128 case InstructionConstants.OP_ISTORE_3: in embeddedVariable()
129 case InstructionConstants.OP_LSTORE_3: in embeddedVariable()
130 case InstructionConstants.OP_FSTORE_3: in embeddedVariable()
131 case InstructionConstants.OP_DSTORE_3: in embeddedVariable()
132 case InstructionConstants.OP_ASTORE_3: return 3; in embeddedVariable()
148 return opcode >= InstructionConstants.OP_ISTORE || in isStore()
149 opcode == InstructionConstants.OP_IINC; in isStore()
162 return opcode < InstructionConstants.OP_ISTORE; in isLoad()
173 case InstructionConstants.OP_ILOAD_0: in canonicalOpcode()
174 case InstructionConstants.OP_ILOAD_1: in canonicalOpcode()
175 case InstructionConstants.OP_ILOAD_2: in canonicalOpcode()
176 case InstructionConstants.OP_ILOAD_3: return InstructionConstants.OP_ILOAD; in canonicalOpcode()
177 case InstructionConstants.OP_LLOAD_0: in canonicalOpcode()
178 case InstructionConstants.OP_LLOAD_1: in canonicalOpcode()
179 case InstructionConstants.OP_LLOAD_2: in canonicalOpcode()
180 case InstructionConstants.OP_LLOAD_3: return InstructionConstants.OP_LLOAD; in canonicalOpcode()
181 case InstructionConstants.OP_FLOAD_0: in canonicalOpcode()
182 case InstructionConstants.OP_FLOAD_1: in canonicalOpcode()
183 case InstructionConstants.OP_FLOAD_2: in canonicalOpcode()
184 case InstructionConstants.OP_FLOAD_3: return InstructionConstants.OP_FLOAD; in canonicalOpcode()
185 case InstructionConstants.OP_DLOAD_0: in canonicalOpcode()
186 case InstructionConstants.OP_DLOAD_1: in canonicalOpcode()
187 case InstructionConstants.OP_DLOAD_2: in canonicalOpcode()
188 case InstructionConstants.OP_DLOAD_3: return InstructionConstants.OP_DLOAD; in canonicalOpcode()
189 case InstructionConstants.OP_ALOAD_0: in canonicalOpcode()
190 case InstructionConstants.OP_ALOAD_1: in canonicalOpcode()
191 case InstructionConstants.OP_ALOAD_2: in canonicalOpcode()
192 case InstructionConstants.OP_ALOAD_3: return InstructionConstants.OP_ALOAD; in canonicalOpcode()
194 case InstructionConstants.OP_ISTORE_0: in canonicalOpcode()
195 case InstructionConstants.OP_ISTORE_1: in canonicalOpcode()
196 case InstructionConstants.OP_ISTORE_2: in canonicalOpcode()
197 case InstructionConstants.OP_ISTORE_3: return InstructionConstants.OP_ISTORE; in canonicalOpcode()
198 case InstructionConstants.OP_LSTORE_0: in canonicalOpcode()
199 case InstructionConstants.OP_LSTORE_1: in canonicalOpcode()
200 case InstructionConstants.OP_LSTORE_2: in canonicalOpcode()
201 case InstructionConstants.OP_LSTORE_3: return InstructionConstants.OP_LSTORE; in canonicalOpcode()
202 case InstructionConstants.OP_FSTORE_0: in canonicalOpcode()
203 case InstructionConstants.OP_FSTORE_1: in canonicalOpcode()
204 case InstructionConstants.OP_FSTORE_2: in canonicalOpcode()
205 case InstructionConstants.OP_FSTORE_3: return InstructionConstants.OP_FSTORE; in canonicalOpcode()
206 case InstructionConstants.OP_DSTORE_0: in canonicalOpcode()
207 case InstructionConstants.OP_DSTORE_1: in canonicalOpcode()
208 case InstructionConstants.OP_DSTORE_2: in canonicalOpcode()
209 case InstructionConstants.OP_DSTORE_3: return InstructionConstants.OP_DSTORE; in canonicalOpcode()
210 case InstructionConstants.OP_ASTORE_0: in canonicalOpcode()
211 case InstructionConstants.OP_ASTORE_1: in canonicalOpcode()
212 case InstructionConstants.OP_ASTORE_2: in canonicalOpcode()
213 case InstructionConstants.OP_ASTORE_3: return InstructionConstants.OP_ASTORE; in canonicalOpcode()
228 …case InstructionConstants.OP_ILOAD: opcode = (byte)(InstructionConstants.OP_ILOAD_0 + variableInde… in shrink()
229 …case InstructionConstants.OP_LLOAD: opcode = (byte)(InstructionConstants.OP_LLOAD_0 + variableInde… in shrink()
230 …case InstructionConstants.OP_FLOAD: opcode = (byte)(InstructionConstants.OP_FLOAD_0 + variableInde… in shrink()
231 …case InstructionConstants.OP_DLOAD: opcode = (byte)(InstructionConstants.OP_DLOAD_0 + variableInde… in shrink()
232 …case InstructionConstants.OP_ALOAD: opcode = (byte)(InstructionConstants.OP_ALOAD_0 + variableInde… in shrink()
234 …case InstructionConstants.OP_ISTORE: opcode = (byte)(InstructionConstants.OP_ISTORE_0 + variableIn… in shrink()
235 …case InstructionConstants.OP_LSTORE: opcode = (byte)(InstructionConstants.OP_LSTORE_0 + variableIn… in shrink()
236 …case InstructionConstants.OP_FSTORE: opcode = (byte)(InstructionConstants.OP_FSTORE_0 + variableIn… in shrink()
237 …case InstructionConstants.OP_DSTORE: opcode = (byte)(InstructionConstants.OP_DSTORE_0 + variableIn… in shrink()
238 …case InstructionConstants.OP_ASTORE: opcode = (byte)(InstructionConstants.OP_ASTORE_0 + variableIn… in shrink()
265 variableIndex = opcode < InstructionConstants.OP_ISTORE_0 ? in readInfo()
266 (opcode - InstructionConstants.OP_ILOAD_0 ) & 3 : in readInfo()
267 (opcode - InstructionConstants.OP_ISTORE_0) & 3; in readInfo()
328 return (opcode >= InstructionConstants.OP_ILOAD_0 && in variableIndexSize()
329 opcode <= InstructionConstants.OP_ALOAD_3) || in variableIndexSize()
330 (opcode >= InstructionConstants.OP_ISTORE_0 && in variableIndexSize()
331 opcode <= InstructionConstants.OP_ASTORE_3) ? 0 : in variableIndexSize()
356 return opcode != InstructionConstants.OP_IINC ? 0 : in constantSize()
367 return opcode != InstructionConstants.OP_IINC ? 0 : in requiredConstantSize()