Lines Matching refs:m_code

129     appendU1(m_code, 0x53);  in instrAastore()
134 appendU1(m_code, 0x01); in instrAconstNull()
139 appendU1(m_code, 0xBD); in instrAnewarray()
140 appendU2(m_code, m_classFile.addClassInfo(type)); in instrAnewarray()
145 appendU1(m_code, 0xB0); in instrAreturn()
150 appendU1(m_code, 0xBF); in instrAthrow()
155 appendU1(m_code, 0xC0); in instrCheckcast()
156 appendU2(m_code, m_classFile.addClassInfo(type)); in instrCheckcast()
161 appendU1(m_code, 0x59); in instrDup()
169 appendU1(m_code, 0xB2); in instrGetstatic()
170 appendU2(m_code, m_classFile.addFieldrefInfo(type, name, descriptor)); in instrGetstatic()
175 Branch branch = m_code.size(); in instrIfAcmpne()
176 appendU1(m_code, 0xA6); in instrIfAcmpne()
177 appendU2(m_code, 0); in instrIfAcmpne()
183 Branch branch = m_code.size(); in instrIfeq()
184 appendU1(m_code, 0x99); in instrIfeq()
185 appendU2(m_code, 0); in instrIfeq()
191 Branch branch = m_code.size(); in instrIfnull()
192 appendU1(m_code, 0xC6); in instrIfnull()
193 appendU2(m_code, 0); in instrIfnull()
199 appendU1(m_code, 0xC1); in instrInstanceof()
200 appendU2(m_code, m_classFile.addClassInfo(type)); in instrInstanceof()
208 appendU1(m_code, 0xB9); in instrInvokeinterface()
210 m_code, m_classFile.addInterfaceMethodrefInfo(type, name, descriptor)); in instrInvokeinterface()
211 appendU1(m_code, args); in instrInvokeinterface()
212 appendU1(m_code, 0); in instrInvokeinterface()
220 appendU1(m_code, 0xB7); in instrInvokespecial()
221 appendU2(m_code, m_classFile.addMethodrefInfo(type, name, descriptor)); in instrInvokespecial()
229 appendU1(m_code, 0xB8); in instrInvokestatic()
230 appendU2(m_code, m_classFile.addMethodrefInfo(type, name, descriptor)); in instrInvokestatic()
238 appendU1(m_code, 0xB6); in instrInvokevirtual()
239 appendU2(m_code, m_classFile.addMethodrefInfo(type, name, descriptor)); in instrInvokevirtual()
256 Position pos1 = m_code.size(); in instrLookupswitch()
257 appendU1(m_code, 0xAB); in instrLookupswitch()
260 appendU1(m_code, 0); in instrLookupswitch()
263 appendU4(m_code, static_cast< sal_uInt32 >(pos2 - pos1)); //FIXME: overflow in instrLookupswitch()
264 pos2 += defaultBlock->m_code.size(); //FIXME: overflow in instrLookupswitch()
265 appendU4(m_code, static_cast< sal_uInt32 >(size)); in instrLookupswitch()
270 appendU4(m_code, static_cast< sal_uInt32 >(i->first)); in instrLookupswitch()
271 appendU4(m_code, static_cast< sal_uInt32 >(pos2 - pos1)); in instrLookupswitch()
273 pos2 += i->second->m_code.size(); //FIXME: overflow in instrLookupswitch()
275 appendStream(m_code, defaultBlock->m_code); in instrLookupswitch()
280 appendStream(m_code, i->second->m_code); in instrLookupswitch()
286 appendU1(m_code, 0xBB); in instrNew()
287 appendU2(m_code, m_classFile.addClassInfo(type)); in instrNew()
295 appendU1(m_code, 0xBC); in instrNewarray()
298 appendU1(m_code, atypes[sort - 1]); in instrNewarray()
303 appendU1(m_code, 0x57); in instrPop()
311 appendU1(m_code, 0xB5); in instrPutfield()
312 appendU2(m_code, m_classFile.addFieldrefInfo(type, name, descriptor)); in instrPutfield()
320 appendU1(m_code, 0xB3); in instrPutstatic()
321 appendU2(m_code, m_classFile.addFieldrefInfo(type, name, descriptor)); in instrPutstatic()
326 appendU1(m_code, 0xB1); in instrReturn()
331 appendU1(m_code, 0x5F); in instrSwap()
341 Position pos1 = m_code.size(); in instrTableswitch()
342 appendU1(m_code, 0xAA); in instrTableswitch()
345 appendU1(m_code, 0); in instrTableswitch()
351 appendU4(m_code, defaultOffset); in instrTableswitch()
352 pos2 += defaultBlock->m_code.size(); //FIXME: overflow in instrTableswitch()
353 appendU4(m_code, static_cast< sal_uInt32 >(low)); in instrTableswitch()
354 appendU4(m_code, static_cast< sal_uInt32 >(low + (size - 1))); in instrTableswitch()
359 appendU4(m_code, defaultOffset); in instrTableswitch()
361 appendU4(m_code, static_cast< sal_uInt32 >(pos2 - pos1)); in instrTableswitch()
363 pos2 += (*i)->m_code.size(); //FIXME: overflow in instrTableswitch()
366 appendStream(m_code, defaultBlock->m_code); in instrTableswitch()
371 appendStream(m_code, (*i)->m_code); in instrTableswitch()
379 appendU1(m_code, static_cast< sal_uInt8 >(0x02 + value + 1)); in loadIntegerConstant()
382 appendU1(m_code, 0x10); in loadIntegerConstant()
383 appendU1(m_code, static_cast< sal_uInt8 >(value)); in loadIntegerConstant()
386 appendU1(m_code, 0x11); in loadIntegerConstant()
387 appendU2(m_code, static_cast< sal_uInt16 >(value)); in loadIntegerConstant()
422 std::vector< unsigned char >::size_type n = m_code.size(); in branchHere()
425 m_code[branch + 1] = static_cast< sal_uInt8 >(n >> 8); in branchHere()
426 m_code[branch + 2] = static_cast< sal_uInt8 >(n & 0xFF); in branchHere()
432 OSL_ASSERT(start < end && end <= m_code.size() && handler <= m_code.size()); in addException()
450 return m_code.size(); in getPosition()
460 appendU1(m_code, 0x12); in ldc()
461 appendU1(m_code, static_cast< sal_uInt8 >(index)); in ldc()
464 appendU1(m_code, 0x13); in ldc()
465 appendU2(m_code, index); in ldc()
474 appendU1(m_code, static_cast< sal_uInt8 >(fastOp + index)); in accessLocal()
477 appendU1(m_code, normalOp); in accessLocal()
478 appendU1(m_code, static_cast< sal_uInt8 >(index)); in accessLocal()
481 appendU1(m_code, 0xC4); in accessLocal()
482 appendU1(m_code, normalOp); in accessLocal()
483 appendU2(m_code, index); in accessLocal()
649 std::vector< unsigned char >::size_type codeSize = code->m_code.size(); in addMethod()
672 appendStream(m_methods, code->m_code); in addMethod()