diff -r 10767ca40189 -r 0b3167e2f2de hotspot/src/share/vm/opto/mulnode.hpp --- a/hotspot/src/share/vm/opto/mulnode.hpp Tue Apr 29 19:45:22 2008 -0700 +++ b/hotspot/src/share/vm/opto/mulnode.hpp Wed May 07 08:06:46 2008 -0700 @@ -133,6 +133,16 @@ virtual uint ideal_reg() const { return Op_RegD; } }; +//-------------------------------MulHiLNode------------------------------------ +// Upper 64 bits of a 64 bit by 64 bit multiply +class MulHiLNode : public Node { +public: + MulHiLNode( Node *in1, Node *in2 ) : Node(0,in1,in2) {} + virtual int Opcode() const; + virtual const Type *Value( PhaseTransform *phase ) const; + const Type *bottom_type() const { return TypeLong::LONG; } + virtual uint ideal_reg() const { return Op_RegL; } +}; //------------------------------AndINode--------------------------------------- // Logically AND 2 integers. Included with the MUL nodes because it inherits