Searched defs:canon_tag (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DLoadInstruction.java75 LoadInstruction(short canon_tag, short c_tag) { argument
76 super(canon_tag, c_tag);
H A DStoreInstruction.java75 StoreInstruction(short canon_tag, short c_tag) { argument
76 super(canon_tag, c_tag);
H A DLocalVariableInstruction.java74 private short canon_tag = -1; // canonical tag such as ILOAD field in class:LocalVariableInstruction
83 LocalVariableInstruction(short canon_tag, short c_tag) { argument
85 this.canon_tag = canon_tag;
105 canon_tag = opcode;
190 opcode = canon_tag;
202 return canon_tag;
214 switch(canon_tag) {
226 default: throw new ClassGenException("Oops: unknown case in switch" + canon_tag);

Completed in 35 milliseconds