Lines Matching full:stackmap
37 * The implementation of the StackMap class assumes they are 16bit.
43 public class StackMap extends AttributeInfo {
45 * The name of this attribute <code>"StackMap"</code>.
47 public static final String tag = "StackMap";
53 StackMap(ConstPool cp, byte[] newInfo) {
57 StackMap(ConstPool cp, int name_id, DataInputStream in)
125 * A code walker for a StackMap attribute.
133 public Walker(StackMap sm) {
228 Copier(StackMap map, ConstPool newCp, Map classnames) {
267 public StackMap getStackMap() {
268 return new StackMap(destCp, dest);
297 SimpleCopy(StackMap map) {
340 InsertLocal(StackMap map, int varIndex, int varTag, int varData) {
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) {
417 NewRemover(StackMap map, int where) {
479 public Printer(StackMap map, java.io.PrintWriter out) {
500 // see javassist.bytecode.stackmap.MapMaker
519 * Converts to a <code>StackMap</code> attribute.
521 public StackMap toStackMap(ConstPool cp) {
522 return new StackMap(cp, output.toByteArray());
532 if (tag == StackMap.OBJECT || tag == StackMap.UNINIT)