Home
last modified time | relevance | path

Searched defs:BranchMatcher (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dnode-matchers.h565 struct BranchMatcher : public NodeMatcher { struct
568 bool Matched() const { return if_true_ && if_false_; } in Matched()
570 Node* Branch() const { return node(); } in Branch()
571 Node* IfTrue() const { return if_true_; } in IfTrue()
572 Node* IfFalse() const { return if_false_; } in IfFalse()
576 Node* if_false_;
Dnode-matchers.cc16 BranchMatcher::BranchMatcher(Node* branch) in BranchMatcher() function in v8::internal::compiler::BranchMatcher