Lines Matching full:bytecode
15 <a href="#intro">5. Bytecode level API</a>
20 <br><li><a href="#bytecode">Producing a bytecode sequence</a>
34 <h2>5. Bytecode level API</h2>
39 knowledge of the Java bytecode and the class file format
45 <code>javassist.bytecode.ClassFileWriter</code> might provide
47 <code>javassist.bytecode.ClassFile</code> although its API
53 <p>A <code>javassist.bytecode.ClassFile</code> object represents
58 <code>javassist.bytecode.ClassFile</code> directly from a class file.
85 a constructor is regarded as a method at the bytecode level).
117 To examine every bytecode instruction in a method body,
130 bytecode instruction one by one from the beginning to the end.
170 <a name="bytecode">
171 <h3>5.4 Producing a bytecode sequence</h3>
174 A <code>Bytecode</code> object represents a sequence of bytecode
175 instructions. It is a growable array of bytecode.
180 Bytecode b = new Bytecode(cp, 1, 0);
196 calling <code>get()</code> in <code>Bytecode</code>. The
200 While <code>Bytecode</code> provides a number of methods for adding a
212 on the <code>Bytecode</code> object.
214 constructed from the <code>Bytecode</code> object.
229 of <code>javassist.bytecode.AnnotationsAttribute</code> class
230 and the <code>javassist.bytecode.annotation</code> package.
245 generics. However, this is not a serious problem for bytecode
259 <p>The compiled bytecode is equivalent to the following code:
267 <p>So when you write a bytecode transformer, you can just drop
341 <code>javassist.bytecode.MethodInfo.doPreverify</code> is true.