Searched refs:if_true_ (Results 1 – 2 of 2) sorted by relevance
17 : NodeMatcher(branch), if_true_(nullptr), if_false_(nullptr) { in BranchMatcher()21 DCHECK_NULL(if_true_); in BranchMatcher()22 if_true_ = use; in BranchMatcher()34 if_true_(nullptr), in DiamondMatcher()48 if_true_ = input0; in DiamondMatcher()53 if_true_ = input1; in DiamondMatcher()
707 bool Matched() const { return if_true_ && if_false_; } in Matched()710 Node* IfTrue() const { return if_true_; } in IfTrue()714 Node* if_true_;724 return if_true_->OwnedBy(node()) && if_false_->OwnedBy(node()); in IfProjectionsAreOwned()728 Node* IfTrue() const { return if_true_; } in IfTrue()736 return phi->InputAt(if_true_ == Merge()->InputAt(0) ? 0 : 1); in TrueInputOf()743 return phi->InputAt(if_true_ == Merge()->InputAt(0) ? 1 : 0); in FalseInputOf()748 Node* if_true_; member