src/share/vm/opto/connode.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8034812 Cdiff src/share/vm/opto/connode.hpp

src/share/vm/opto/connode.hpp

Print this page

        

*** 56,66 **** ConINode( const TypeInt *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConINode* make( Compile* C, int con ) { ! return new (C) ConINode( TypeInt::make(con) ); } }; //------------------------------ConPNode--------------------------------------- --- 56,66 ---- ConINode( const TypeInt *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConINode* make( Compile* C, int con ) { ! return new ConINode( TypeInt::make(con) ); } }; //------------------------------ConPNode---------------------------------------
*** 71,83 **** virtual int Opcode() const; // Factory methods: static ConPNode* make( Compile *C ,address con ) { if (con == NULL) ! return new (C) ConPNode( TypePtr::NULL_PTR ) ; else ! return new (C) ConPNode( TypeRawPtr::make(con) ); } }; //------------------------------ConNNode-------------------------------------- --- 71,83 ---- virtual int Opcode() const; // Factory methods: static ConPNode* make( Compile *C ,address con ) { if (con == NULL) ! return new ConPNode( TypePtr::NULL_PTR ) ; else ! return new ConPNode( TypeRawPtr::make(con) ); } }; //------------------------------ConNNode--------------------------------------
*** 104,114 **** ConLNode( const TypeLong *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConLNode* make( Compile *C ,jlong con ) { ! return new (C) ConLNode( TypeLong::make(con) ); } }; //------------------------------ConFNode--------------------------------------- --- 104,114 ---- ConLNode( const TypeLong *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConLNode* make( Compile *C ,jlong con ) { ! return new ConLNode( TypeLong::make(con) ); } }; //------------------------------ConFNode---------------------------------------
*** 118,128 **** ConFNode( const TypeF *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConFNode* make( Compile *C, float con ) { ! return new (C) ConFNode( TypeF::make(con) ); } }; //------------------------------ConDNode--------------------------------------- --- 118,128 ---- ConFNode( const TypeF *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConFNode* make( Compile *C, float con ) { ! return new ConFNode( TypeF::make(con) ); } }; //------------------------------ConDNode---------------------------------------
*** 132,142 **** ConDNode( const TypeD *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConDNode* make( Compile *C, double con ) { ! return new (C) ConDNode( TypeD::make(con) ); } }; //------------------------------ThreadLocalNode-------------------------------- --- 132,142 ---- ConDNode( const TypeD *t ) : ConNode(t) {} virtual int Opcode() const; // Factory method: static ConDNode* make( Compile *C, double con ) { ! return new ConDNode( TypeD::make(con) ); } }; //------------------------------ThreadLocalNode--------------------------------
src/share/vm/opto/connode.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File