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

/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.hpp49 class TypeInt;
224 const TypeInt *is_int() const;
225 const TypeInt *isa_int() const; // Returns NULL if not an Int
407 //------------------------------TypeInt----------------------------------------
410 class TypeInt : public Type { class in inherits:Type
411 TypeInt( jint lo, jint hi, int w );
421 static const TypeInt *make(jint lo);
423 static const TypeInt *make(jint lo, jint hi, int w);
439 static const TypeInt *MINUS_1;
440 static const TypeInt *ZER
[all...]
H A Dtype.cpp128 if (this == TypeInt::INT) return T_INT;
129 if (this == TypeInt::CHAR) return T_CHAR;
130 if (this == TypeInt::BYTE) return T_BYTE;
131 if (this == TypeInt::BOOL) return T_BOOLEAN;
132 if (this == TypeInt::SHORT) return T_SHORT;
159 return TypeInt::TOP;
240 TypeInt::MINUS_1 = TypeInt::make(-1); // -1
241 TypeInt::ZERO = TypeInt
1094 TypeInt::TypeInt( jint lo, jint hi, int w ) : Type(Int), _lo(lo), _hi(hi), _widen(w) { function in class:TypeInt
[all...]

Completed in 38 milliseconds