1
1
/*
2
- * Copyright (c) 1997, 2024 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1997, 2025 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -532,49 +532,49 @@ class SqrtFNode : public Node {
532
532
// reverse bytes of an integer
533
533
class ReverseBytesINode : public Node {
534
534
public:
535
- ReverseBytesINode (Node *c, Node *in1 ) : Node(c, in1 ) {}
535
+ ReverseBytesINode (Node* in ) : Node(nullptr , in ) {}
536
536
virtual int Opcode () const ;
537
- const Type * bottom_type () const { return TypeInt::INT; }
537
+ const Type* bottom_type () const { return TypeInt::INT; }
538
538
virtual uint ideal_reg () const { return Op_RegI; }
539
539
};
540
540
541
541
// -------------------------------ReverseBytesLNode--------------------------------
542
542
// reverse bytes of a long
543
543
class ReverseBytesLNode : public Node {
544
544
public:
545
- ReverseBytesLNode (Node *c, Node *in1 ) : Node(c, in1 ) {}
545
+ ReverseBytesLNode (Node* in ) : Node(nullptr , in ) {}
546
546
virtual int Opcode () const ;
547
- const Type * bottom_type () const { return TypeLong::LONG; }
547
+ const Type* bottom_type () const { return TypeLong::LONG; }
548
548
virtual uint ideal_reg () const { return Op_RegL; }
549
549
};
550
550
551
551
// -------------------------------ReverseBytesUSNode--------------------------------
552
552
// reverse bytes of an unsigned short / char
553
553
class ReverseBytesUSNode : public Node {
554
554
public:
555
- ReverseBytesUSNode (Node *c, Node * in1) : Node(c , in1) {}
555
+ ReverseBytesUSNode (Node* in1) : Node(nullptr , in1) {}
556
556
virtual int Opcode () const ;
557
- const Type * bottom_type () const { return TypeInt::CHAR; }
557
+ const Type* bottom_type () const { return TypeInt::CHAR; }
558
558
virtual uint ideal_reg () const { return Op_RegI; }
559
559
};
560
560
561
561
// -------------------------------ReverseBytesSNode--------------------------------
562
562
// reverse bytes of a short
563
563
class ReverseBytesSNode : public Node {
564
564
public:
565
- ReverseBytesSNode (Node *c, Node *in1 ) : Node(c, in1 ) {}
565
+ ReverseBytesSNode (Node* in ) : Node(nullptr , in ) {}
566
566
virtual int Opcode () const ;
567
- const Type * bottom_type () const { return TypeInt::SHORT; }
567
+ const Type* bottom_type () const { return TypeInt::SHORT; }
568
568
virtual uint ideal_reg () const { return Op_RegI; }
569
569
};
570
570
571
571
// -------------------------------ReverseINode--------------------------------
572
572
// reverse bits of an int
573
573
class ReverseINode : public Node {
574
574
public:
575
- ReverseINode (Node *c, Node *in1 ) : Node(c, in1 ) {}
575
+ ReverseINode (Node* in ) : Node(nullptr , in ) {}
576
576
virtual int Opcode () const ;
577
- const Type * bottom_type () const { return TypeInt::INT; }
577
+ const Type* bottom_type () const { return TypeInt::INT; }
578
578
virtual uint ideal_reg () const { return Op_RegI; }
579
579
virtual Node* Identity (PhaseGVN* phase);
580
580
virtual const Type* Value (PhaseGVN* phase) const ;
@@ -584,9 +584,9 @@ class ReverseINode : public Node {
584
584
// reverse bits of a long
585
585
class ReverseLNode : public Node {
586
586
public:
587
- ReverseLNode (Node *c, Node *in1 ) : Node(c, in1 ) {}
587
+ ReverseLNode (Node* in ) : Node(nullptr , in ) {}
588
588
virtual int Opcode () const ;
589
- const Type * bottom_type () const { return TypeLong::LONG; }
589
+ const Type* bottom_type () const { return TypeLong::LONG; }
590
590
virtual uint ideal_reg () const { return Op_RegL; }
591
591
virtual Node* Identity (PhaseGVN* phase);
592
592
virtual const Type* Value (PhaseGVN* phase) const ;
0 commit comments