src/share/vm/opto/subnode.hpp

changeset 8797
37ba410ffd43
parent 7394
5b8e0f84f00f
child 8856
ac27a9c85bea
equal deleted inserted replaced
8796:b1f3fbe39975 8797:37ba410ffd43
190 CmpLNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {} 190 CmpLNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
191 virtual int Opcode() const; 191 virtual int Opcode() const;
192 virtual const Type *sub( const Type *, const Type * ) const; 192 virtual const Type *sub( const Type *, const Type * ) const;
193 }; 193 };
194 194
195 //------------------------------CmpULNode---------------------------------------
196 // Compare 2 unsigned long values, returning condition codes (-1, 0 or 1).
197 class CmpULNode : public CmpNode {
198 public:
199 CmpULNode(Node* in1, Node* in2) : CmpNode(in1, in2) { }
200 virtual int Opcode() const;
201 virtual const Type* sub(const Type*, const Type*) const;
202 };
203
195 //------------------------------CmpL3Node-------------------------------------- 204 //------------------------------CmpL3Node--------------------------------------
196 // Compare 2 long values, returning integer value (-1, 0 or 1). 205 // Compare 2 long values, returning integer value (-1, 0 or 1).
197 class CmpL3Node : public CmpLNode { 206 class CmpL3Node : public CmpLNode {
198 public: 207 public:
199 CmpL3Node( Node *in1, Node *in2 ) : CmpLNode(in1,in2) { 208 CmpL3Node( Node *in1, Node *in2 ) : CmpLNode(in1,in2) {

mercurial