Searched refs:bytecode (Results 1 - 25 of 137) sorted by relevance

123456

/external/javassist/src/main/javassist/bytecode/
H A DMnemonic.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
21 * <p>This interface has been separated from javassist.bytecode.Opcode
22 * because typical bytecode translators do not use mnemonics. If this
H A DDuplicateMemberException.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
H A DBadBytecode.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
19 * Signals that a bad bytecode sequence has been found.
23 super("bytecode " + opcode);
/external/javassist/src/main/javassist/convert/
H A DTransformer.java2 * Javassist, a Java-bytecode translator toolkit.
20 import javassist.bytecode.BadBytecode;
21 import javassist.bytecode.CodeAttribute;
22 import javassist.bytecode.CodeIterator;
23 import javassist.bytecode.ConstPool;
24 import javassist.bytecode.MethodInfo;
25 import javassist.bytecode.Opcode;
/external/javassist/src/main/javassist/compiler/
H A DCodeGen.java2 * Javassist, a Java-bytecode translator toolkit.
21 import javassist.bytecode.*;
35 protected Bytecode bytecode; field in class:CodeGen
83 bytecode = b;
105 public int getMaxLocals() { return bytecode.getMaxLocals(); }
108 bytecode.setMaxLocals(n);
112 bytecode.incMaxLocals(size);
294 bytecode.addOpcode(Opcode.RETURN);
339 bytecode.addOpcode(POP2);
341 bytecode
[all...]
H A DProceedHandler.java2 * Javassist, a Java-bytecode translator toolkit.
18 import javassist.bytecode.Bytecode;
H A DMemberCodeGen.java2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
79 bytecode.addAload(0);
80 bytecode.addInvokespecial(MemberResolver.getSuperclass(thisClass),
189 Bytecode bc = bytecode;
275 Bytecode bc = bytecode;
298 bytecode.addNew(cname);
299 bytecode.addOpcode(DUP);
339 bytecode.addIconst(s);
347 bytecode
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DNoSuchClassError.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
H A DBooleanMemberValue.java2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.annotation;
18 import javassist.bytecode.ConstPool;
H A DByteMemberValue.java2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.annotation;
18 import javassist.bytecode.ConstPool;
H A DCharMemberValue.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
19 import javassist.bytecode.ConstPool;
H A DDoubleMemberValue.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
19 import javassist.bytecode.ConstPool;
H A DFloatMemberValue.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
19 import javassist.bytecode.ConstPool;
H A DIntegerMemberValue.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
19 import javassist.bytecode.ConstPool;
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeTag.java2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.stackmap;
18 import javassist.bytecode.StackMapTable;
/external/javassist/src/main/javassist/expr/
H A DExpr.java2 * Javassist, a Java-bytecode translator toolkit.
25 import javassist.bytecode.AccessFlag;
26 import javassist.bytecode.BadBytecode;
27 import javassist.bytecode.Bytecode;
28 import javassist.bytecode.ClassFile;
29 import javassist.bytecode.CodeAttribute;
30 import javassist.bytecode.CodeIterator;
31 import javassist.bytecode.ConstPool;
32 import javassist.bytecode.ExceptionTable;
33 import javassist.bytecode
232 storeStack(CtClass[] params, boolean isStaticCall, int regno, Bytecode bytecode) argument
241 storeStack0(int i, int n, CtClass[] params, int regno, Bytecode bytecode) argument
289 replace0(int pos, Bytecode bytecode, int size) argument
[all...]
H A DCast.java2 * 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, ASTLis argument
[all...]
H A DInstanceof.java2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
85 * Replaces the instanceof operator with the bytecode derived from
120 Bytecode bytecode = jc.getBytecode();
121 storeStack(params, true, paramVar, bytecode);
124 bytecode.addConstZero(retType);
125 bytecode.addStore(retVar, retType); // initialize $_
128 bytecode.addLoad(retVar, retType);
130 replace0(pos, bytecode, 3);
148 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTLis argument
[all...]
H A DFieldAccess.java2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
131 * @see javassist.bytecode.Descriptor#toCtClass(String, ClassPool)
140 * Replaces the method call with the bytecode derived from
195 Bytecode bytecode = jc.getBytecode();
196 storeStack(params, isStatic(), paramVar, bytecode);
201 bytecode.addOpcode(ACONST_NULL);
202 bytecode.addAstore(retVar);
205 bytecode.addConstZero(retType);
206 bytecode
236 doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) argument
284 doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) argument
[all...]
H A DConstructorCall.java2 * Javassist, a Java-bytecode translator toolkit.
22 import javassist.bytecode.CodeIterator;
23 import javassist.bytecode.MethodInfo;
H A DNewExpr.java2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
100 * @see javassist.bytecode.Descriptor
154 * Replaces the <tt>new</tt> expression with the bytecode derived from
199 Bytecode bytecode = jc.getBytecode();
200 storeStack(params, true, paramVar, bytecode);
203 bytecode.addConstZero(newType);
204 bytecode.addStore(retVar, newType); // initialize $_
208 bytecode.addAload(retVar);
210 replace0(pos, bytecode, bytecodeSiz
229 doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) argument
[all...]
H A DNewArray.java2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
149 * Replaces the array creation with the bytecode derived from
225 Bytecode bytecode = jc.getBytecode();
226 storeStack(params, true, paramVar, bytecode);
229 bytecode.addOpcode(ACONST_NULL); // initialize $_
230 bytecode.addAstore(retVar);
233 bytecode.addAload(retVar);
235 replace0(pos, bytecode, codeLength);
252 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTLis argument
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DUtil.java2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.analysis;
17 import javassist.bytecode.CodeIterator;
18 import javassist.bytecode.Opcode;
H A DFramePrinter.java2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.analysis;
23 import javassist.bytecode.BadBytecode;
24 import javassist.bytecode.CodeAttribute;
25 import javassist.bytecode.CodeIterator;
26 import javassist.bytecode.ConstPool;
27 import javassist.bytecode.Descriptor;
28 import javassist.bytecode.InstructionPrinter;
29 import javassist.bytecode.MethodInfo;
41 * Constructs a bytecode printe
[all...]
/external/javassist/src/main/javassist/tools/
H A DDump.java2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.ClassFile;
20 import javassist.bytecode.ClassFilePrinter;

Completed in 753 milliseconds

123456