Searched refs:intType (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicCIntegerField.java34 private CIntegerType intType; field in class:BasicCIntegerField
44 intType = (CIntegerType) type;
48 return intType.isUnsigned();
54 return getCInteger(addr, intType);
60 return getCInteger(intType);
/openjdk7/langtools/test/tools/javac/processing/model/util/
H A DNoSupers.java45 PrimitiveType intType = types.getPrimitiveType(TypeKind.INT);
46 if (! types.directSupertypes(intType).isEmpty())
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.java70 public final Type intType = new Type(TypeTags.INT, null); field in class:Symtab
383 initType(intType, "int", "Integer");
413 scope.enter(intType.tsym);
514 intType,
529 enterUnop("+", intType, intType, nop);
534 enterUnop("-", intType, intType, ineg);
537 enterUnop("~", intType, intType, ixo
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java111 return syms.intType.constType(-intValue(od));
113 return syms.intType.constType(~intValue(od));
169 return syms.intType.constType(intValue(l) + intValue(r));
171 return syms.intType.constType(intValue(l) - intValue(r));
173 return syms.intType.constType(intValue(l) * intValue(r));
175 return syms.intType.constType(intValue(l) / intValue(r));
177 return syms.intType.constType(intValue(l) % intValue(r));
180 ? syms.booleanType : syms.intType)
186 ? syms.booleanType : syms.intType)
192 ? syms.booleanType : syms.intType)
[all...]
H A DLower.java390 new ArrayType(syms.intType, syms.arrayClass),
430 .NewArray(make.Type(syms.intType), List.of(size), null)
431 .setType(new ArrayType(syms.intType, syms.arrayClass));
453 .setType(syms.intType);
1167 .prepend(syms.intType)
1795 List.<JCExpression>of(make.Literal(INT, 0).setType(syms.intType)),
2117 return abstractRval(i.index, syms.intType, new TreeBuilder() {
2405 syms.intType,
2407 syms.intType,
2408 syms.intType),
[all...]
H A DTransTypes.java522 Type target = enumSwitch ? erasure(tree.selector.type) : syms.intType;
619 translate(tree.dims, syms.intType);
676 tree.index = translate(tree.index, syms.intType);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.cpp34 IntType* intType = NULL; variable
58 intType = new (arena) IntType();
129 case T_INT : return intType;
H A Dc1_GraphBuilder.cpp1157 load_local(intType, index);
1159 arithmetic_op(intType, Bytecodes::_iadd);
1160 store_local(intType, index);
2511 case Bytecodes::_iload : load_local(intType , s.get_index()); break;
2516 case Bytecodes::_iload_0 : load_local(intType , 0); break;
2517 case Bytecodes::_iload_1 : load_local(intType , 1); break;
2518 case Bytecodes::_iload_2 : load_local(intType , 2); break;
2519 case Bytecodes::_iload_3 : load_local(intType , 3); break;
2544 case Bytecodes::_istore : store_local(intType , s.get_index()); break;
2549 case Bytecodes::_istore_0 : store_local(intType ,
[all...]
H A Dc1_ValueType.hpp58 extern IntType* intType;
106 virtual ValueType* base() const = 0; // the 'canonical' type (e.g., intType for an IntConstant)
181 virtual ValueType* base() const { return intType; }
H A Dc1_Canonicalizer.cpp832 if (shift->x()->type() != intType) return false;
859 if ((*index)->type() != intType) return false;
894 if (convert->op() == Bytecodes::_i2l && convert->value()->type() == intType) {
H A Dc1_Instruction.hpp826 : AccessArray(intType, array, state_before)
1027 : Op2(intType, op, x, y, state_before)
1385 InstanceOf(ciKlass* klass, Value obj, ValueStack* state_before) : TypeCheck(klass, obj, intType, state_before) {}
2059 OsrEntry() : Instruction(intType) { pin(); }
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DPrimitiveTypeImpl.java76 case INT: return env.symtab.intType;
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPrimitiveType.java46 static final PrimitiveType intType = new PrimitiveType("int"); field in class:PrimitiveType
H A DTypeMaker.java72 case INT: return PrimitiveType.intType;
/openjdk7/langtools/test/tools/javac/tree/
H A DMakeLiteralTest.java60 test(Integer.valueOf(1), INT, syms.intType, Integer.valueOf(1));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java512 state.push(syms.intType);
556 state.push(syms.intType);
625 state.push(syms.intType);
640 // state.push(syms.intType);
657 state.push(syms.intType);
661 state.push(syms.intType);
685 state.push(syms.intType);
697 state.push(syms.intType);
840 state.push(syms.intType);
845 state.push(syms.intType);
[all...]
H A DItems.java410 makeImmediateItem(syms.intType, x).load();
413 makeImmediateItem(syms.intType, -x).load();
416 makeStackItem(syms.intType).coerce(typecode);
615 syms.intType,
H A DGen.java206 items.makeImmediateItem(syms.intType, n).load();
1116 Item sel = genExpr(tree.selector, syms.intType);
1754 genExpr(l.head, syms.intType).load();
2046 rtype = syms.intType;
2090 genExpr(tree.index, syms.intType).load();
2168 result = items.makeStackItem(syms.intType);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFunctionCall.java468 final Type intType = (Type)argsType.elementAt(j);
469 Object match = _internal2Java.maps(intType, extType);
473 else if (intType instanceof ObjectType) {
474 ObjectType objectType = (ObjectType)intType;
595 final Type intType = (Type)argsType.elementAt(j);
596 Object match = _internal2Java.maps(intType, extType);
605 if (intType instanceof ReferenceType) {
608 else if (intType instanceof ObjectType) {
609 ObjectType object = (ObjectType)intType;
1068 final Type intType
[all...]
/openjdk7/langtools/test/tools/javac/types/
H A DBoxingConversionTest.java174 predef.intType,
193 predef.intType,
H A DGenericTypeWellFormednessTest.java129 new InstantiableType(box(predef.intType)),
236 Symbol s = box(predef.intType).tsym;
H A DPrimitiveConversionTest.java182 predef.intType,
215 predef.intType,
H A DTypeHarness.java284 return predef.intType.constType(i);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DTypesImpl.java103 case INT: prim = env.symtab.intType; break;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java150 case INT: return syms.intType;

Completed in 109 milliseconds

12