Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/compiler/
Dnode-matchers.h30 struct NodeMatcher { struct
31 explicit NodeMatcher(Node* node) : node_(node) {} in NodeMatcher() function
33 Node* node() const { return node_; } in node()
34 const Operator* op() const { return node()->op(); } in op()
35 IrOpcode::Value opcode() const { return node()->opcode(); } in opcode()
37 bool HasProperty(Operator::Property property) const { in HasProperty()
40 Node* InputAt(int index) const { return node()->InputAt(index); } in InputAt()
42 bool Equals(const Node* node) const { return node_ == node; } in Equals()