comparison src/share/vm/opto/subnode.hpp @ 24206:37ba410ffd43 jdk8u141-b08

8173770: Image conversion improvements Reviewed-by: kvn, vlivanov, dlong, rhalade, mschoene, iignatyev
author thartmann
date Thu, 30 Mar 2017 15:28:33 +0200
parents 5b8e0f84f00f
children 719853999215
comparison
equal deleted inserted replaced
24205:b1f3fbe39975 24206: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) {