Searched defs:TypeLong (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.hpp96 ConLNode( const TypeLong *t ) : ConNode(t) {}
101 return new (C) ConLNode( TypeLong::make(con) );
199 CMoveLNode(Node *bol, Node *left, Node *right, const TypeLong *tl ) : CMoveNode(bol,left,right,tl){}
355 virtual const Type *bottom_type() const { return TypeLong::LONG; }
392 virtual const Type *bottom_type() const { return TypeLong::LONG; }
426 ConvI2LNode(Node *in1, const TypeLong* t = TypeLong::INT) argument
633 virtual const Type *bottom_type() const { return TypeLong::LONG; }
H A Dtype.hpp50 class TypeLong;
226 const TypeLong *is_long() const;
227 const TypeLong *isa_long() const; // Returns NULL if not a Long
463 //------------------------------TypeLong---------------------------------------
466 class TypeLong : public Type { class in inherits:Type
467 TypeLong( jlong lo, jlong hi, int w );
477 static const TypeLong *make(jlong lo);
479 static const TypeLong *make(jlong lo, jlong hi, int w);
495 static const TypeLong *MINUS_1;
496 static const TypeLong *ZER
[all...]
H A Dmemnode.hpp302 const TypeLong *tl = TypeLong::LONG,
746 GetAndAddLNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeLong::LONG, 4) { }
761 GetAndSetLNode( Node *c, Node *mem, Node *adr, Node *val, const TypePtr* at ) : LoadStoreNode(c, mem, adr, val, at, TypeLong::LONG, 4) { }
301 LoadLNode( Node *c, Node *mem, Node *adr, const TypePtr* at, const TypeLong *tl = TypeLong::LONG, bool require_atomic_access = false ) argument
H A Dtype.cpp267 TypeLong::MINUS_1 = TypeLong::make(-1); // -1
268 TypeLong::ZERO = TypeLong::make( 0); // 0
269 TypeLong::ONE = TypeLong::make( 1); // 1
270 TypeLong::POS = TypeLong::make(0,max_jlong, WidenMin); // Non-neg values
271 TypeLong::LONG = TypeLong
1349 TypeLong::TypeLong( jlong lo, jlong hi, int w ) : Type(Long), _lo(lo), _hi(hi), _widen(w) { function in class:TypeLong
[all...]

Completed in 49 milliseconds