Home | History | Annotate | Download | only in expr

Lines Matching refs:bytecode

2  * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
82 * Replaces the explicit cast operator with the bytecode derived from
114 Bytecode bytecode = jc.getBytecode();
115 storeStack(params, true, paramVar, bytecode);
118 bytecode.addConstZero(retType);
119 bytecode.addStore(retVar, retType); // initialize $_
122 bytecode.addLoad(retVar, retType);
124 replace0(pos, bytecode, 3);
144 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args)
153 bytecode.addOpcode(Opcode.CHECKCAST);
154 bytecode.addIndex(index);