Home
last modified time | relevance | path

Searched refs:if_true_ (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dnode-matchers.cc17 : 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()
Dnode-matchers.h789 bool Matched() const { return if_true_ && if_false_; } in Matched()
792 Node* IfTrue() const { return if_true_; } in IfTrue()
796 Node* if_true_;
806 return if_true_->OwnedBy(node()) && if_false_->OwnedBy(node()); in IfProjectionsAreOwned()
810 Node* IfTrue() const { return if_true_; } in IfTrue()
818 return phi->InputAt(if_true_ == Merge()->InputAt(0) ? 0 : 1); in TrueInputOf()
825 return phi->InputAt(if_true_ == Merge()->InputAt(0) ? 1 : 0); in FalseInputOf()
830 Node* if_true_; member
/third_party/gn/src/gn/
Dparse_tree.h347 const BlockNode* if_true() const { return if_true_.get(); } in if_true()
348 void set_if_true(std::unique_ptr<BlockNode> t) { if_true_ = std::move(t); } in set_if_true()
362 std::unique_ptr<BlockNode> if_true_; // Always non-null. variable
Dparse_tree.cc675 if_true_->Execute(scope, err); in Execute()
687 return if_token_.range().Union(if_true_->GetRange()); in GetRange()
699 child.GetList().push_back(if_true_->GetJSONNode()); in GetJSONNode()
718 ret->if_true_ = BlockNode::NewFromJSON(children[1]); in NewFromJSON()
/third_party/node/deps/v8/src/maglev/
Dmaglev-ir.h1490 if_true_(if_true_refs), in ConditionalControlNode()
1493 BasicBlock* if_true() const { return if_true_.block_ptr(); } in if_true()
1497 BasicBlockRef if_true_;