Searched defs:typecode (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java110 return stackItem[Code.typecode(type)];
190 int typecode; field in class:Items.Item
192 Item(int typecode) { argument
193 this.typecode = typecode;
222 /** Generate code to stash a copy of top of stack - of typecode toscode -
240 if (typecode == targetcode)
244 int typecode1 = Code.truncate(typecode);
262 return coerce(Code.typecode(targettype));
278 StackItem(int typecode) { argument
[all...]
H A DCode.java226 public static int typecode(Type type) { method in class:Code
245 default: throw new AssertionError("typecode " + type.tag);
260 public static int width(int typecode) { argument
261 switch (typecode) {
269 return type == null ? 1 : width(typecode(type));
1948 private int newLocal(int typecode) { argument
1950 int w = width(typecode);
1957 return newLocal(typecode(type));

Completed in 45 milliseconds