Searched refs:longType (Results 1 - 24 of 24) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.java71 public final Type longType = new Type(TypeTags.LONG, null); field in class:Symtab
384 initType(longType, "long", "Long");
414 scope.enter(longType.tsym);
528 enterUnop("+", longType, longType, nop);
533 enterUnop("-", longType, longType, lneg);
536 enterUnop("~", longType, longType, lxor);
541 enterUnop("++", longType, longTyp
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java130 return syms.longType.constType(new Long(-longValue(od)));
132 return syms.longType.constType(new Long(~longValue(od)));
220 return syms.longType.constType(
223 return syms.longType.constType(
226 return syms.longType.constType(
229 return syms.longType.constType(
232 return syms.longType.constType(
235 return syms.longType.constType(
238 return syms.longType.constType(
241 return syms.longType
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.cpp35 LongType* longType = NULL; variable
59 longType = new (arena) LongType();
130 case T_LONG : return longType;
H A Dc1_ValueType.hpp59 extern LongType* longType;
224 virtual ValueType* base() const { return longType; }
H A Dc1_GraphBuilder.cpp2512 case Bytecodes::_lload : load_local(longType , s.get_index()); break;
2520 case Bytecodes::_lload_0 : load_local(longType , 0); break;
2521 case Bytecodes::_lload_1 : load_local(longType , 1); break;
2522 case Bytecodes::_lload_2 : load_local(longType , 2); break;
2523 case Bytecodes::_lload_3 : load_local(longType , 3); break;
2545 case Bytecodes::_lstore : store_local(longType , s.get_index()); break;
2553 case Bytecodes::_lstore_0 : store_local(longType , 0); break;
2554 case Bytecodes::_lstore_1 : store_local(longType , 1); break;
2555 case Bytecodes::_lstore_2 : store_local(longType , 2); break;
2556 case Bytecodes::_lstore_3 : store_local(longType ,
[all...]
H A Dc1_Instruction.hpp2057 OsrEntry() : Instruction(longType) { pin(); }
H A Dc1_LIRGenerator.cpp2976 do_CompareAndSwap(x, longType);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DPrimitiveTypeImpl.java77 case LONG: return env.symtab.longType;
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPrimitiveType.java47 static final PrimitiveType longType = new PrimitiveType("long"); field in class:PrimitiveType
H A DTypeMaker.java73 case LONG: return PrimitiveType.longType;
/openjdk7/langtools/test/tools/javac/tree/
H A DMakeLiteralTest.java61 test(Long.valueOf(1), LONG, syms.longType, Long.valueOf(1));
/openjdk7/langtools/test/tools/javac/types/
H A DBoxingConversionTest.java175 predef.longType,
197 predef.longType,
H A DPrimitiveConversionTest.java183 predef.longType,
219 predef.longType,
H A DTypeHarness.java288 return predef.longType.constType(l);
H A DCastTest.java102 predef.longType,
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DTypesImpl.java104 case LONG: prim = env.symtab.longType; break;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java520 state.push(syms.longType);
560 state.push(syms.longType);
665 state.push(syms.longType);
689 state.push(syms.longType);
701 state.push(syms.longType);
902 if (o instanceof Long) return syms.longType;
927 state.push(syms.longType);
H A DItems.java619 syms.longType,
H A DClassReader.java637 return syms.longType;
1399 return new Attribute.Constant(syms.longType, readPool(nextChar()));
H A DGen.java239 items.makeImmediateItem(syms.longType, new Long(-1)).load();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java151 case LONG: return syms.longType;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp746 } else if (type == longType) {
794 else if (type == longType)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java695 setType(syms.longType.constType(value));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp676 else if (type == longType)

Completed in 164 milliseconds