Lines Matching refs:Node
8 #include "src/compiler/node.h"
23 V8_INLINE Mark Get(const Node* node) {
24 Mark mark = node->mark();
31 V8_INLINE void Set(Node* node, Mark mark) {
33 DCHECK_LT(node->mark(), mark_max_);
34 node->set_mark(mark + mark_min_);
44 // A NodeMarker assigns a local "state" to every node of a graph in constant
47 // were created earlier. Internally, the local state is stored in the Node
55 // node with a NodeMarker, and then get or set that node with an older
66 V8_INLINE State Get(const Node* node) {
67 return static_cast<State>(NodeMarkerBase::Get(node));
70 V8_INLINE void Set(Node* node, State state) {
71 NodeMarkerBase::Set(node, static_cast<Mark>(state));