Home | History | Annotate | Download | only in compiler

Lines Matching refs:right

108 // right hand sides of a binary operation and can put constants on the right
110 template <typename Left, typename Right>
118 const Right& right() const { return right_; }
120 bool IsFoldable() const { return left().HasValue() && right().HasValue(); }
121 bool LeftEqualsRight() const { return left().node() == right().node(); }
125 if (left().HasValue() && !right().HasValue()) {
128 node()->ReplaceInput(1, right().node());
133 Right right_;