| /openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/ |
| H A D | Symtab.java | 71 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 D | ConstFold.java | 130 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 D | c1_ValueType.cpp | 35 LongType* longType = NULL; variable 59 longType = new (arena) LongType(); 130 case T_LONG : return longType;
|
| H A D | c1_ValueType.hpp | 59 extern LongType* longType; 224 virtual ValueType* base() const { return longType; }
|
| H A D | c1_GraphBuilder.cpp | 2512 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 D | c1_Instruction.hpp | 2057 OsrEntry() : Instruction(longType) { pin(); }
|
| H A D | c1_LIRGenerator.cpp | 2976 do_CompareAndSwap(x, longType);
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/ |
| H A D | PrimitiveTypeImpl.java | 77 case LONG: return env.symtab.longType;
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
| H A D | PrimitiveType.java | 47 static final PrimitiveType longType = new PrimitiveType("long"); field in class:PrimitiveType
|
| H A D | TypeMaker.java | 73 case LONG: return PrimitiveType.longType;
|
| /openjdk7/langtools/test/tools/javac/tree/ |
| H A D | MakeLiteralTest.java | 61 test(Long.valueOf(1), LONG, syms.longType, Long.valueOf(1));
|
| /openjdk7/langtools/test/tools/javac/types/ |
| H A D | BoxingConversionTest.java | 175 predef.longType, 197 predef.longType,
|
| H A D | PrimitiveConversionTest.java | 183 predef.longType, 219 predef.longType,
|
| H A D | TypeHarness.java | 288 return predef.longType.constType(l);
|
| H A D | CastTest.java | 102 predef.longType,
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/ |
| H A D | TypesImpl.java | 104 case LONG: prim = env.symtab.longType; break;
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/ |
| H A D | Code.java | 520 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 D | Items.java | 619 syms.longType,
|
| H A D | ClassReader.java | 637 return syms.longType; 1399 return new Attribute.Constant(syms.longType, readPool(nextChar()));
|
| H A D | Gen.java | 239 items.makeImmediateItem(syms.longType, new Long(-1)).load();
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/ |
| H A D | JavacTypes.java | 151 case LONG: return syms.longType;
|
| /openjdk7/hotspot/src/cpu/x86/vm/ |
| H A D | c1_LIRGenerator_x86.cpp | 746 } else if (type == longType) { 794 else if (type == longType)
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/ |
| H A D | TreeMaker.java | 695 setType(syms.longType.constType(value));
|
| /openjdk7/hotspot/src/cpu/sparc/vm/ |
| H A D | c1_LIRGenerator_sparc.cpp | 676 else if (type == longType)
|