Home
last modified time | relevance | path

Searched refs:canon_tag (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DLocalVariableInstruction.java41 private short canon_tag = -1; // canonical tag such as ILOAD field in LocalVariableInstruction
54 LocalVariableInstruction(final short canon_tag, final short c_tag) { in LocalVariableInstruction() argument
56 this.canon_tag = canon_tag; in LocalVariableInstruction()
77 canon_tag = opcode; in LocalVariableInstruction()
176 super.setOpcode(canon_tag); in setIndex()
189 return canon_tag; in getCanonicalTag()
203 switch (canon_tag) { in getType()
220 throw new ClassGenException("Oops: unknown case in switch" + canon_tag); in getType()
DLoadInstruction.java33 LoadInstruction(final short canon_tag, final short c_tag) { in LoadInstruction() argument
34 super(canon_tag, c_tag); in LoadInstruction()
DStoreInstruction.java33 StoreInstruction(final short canon_tag, final short c_tag) { in StoreInstruction() argument
34 super(canon_tag, c_tag); in StoreInstruction()