blob: efebf7bcb9b866327fd861eecb43cd3b68c87fde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright 2013 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_COMPILER_GRAPH_INL_H_
#define V8_COMPILER_GRAPH_INL_H_
#include "src/compiler/generic-algorithm-inl.h"
#include "src/compiler/graph.h"
namespace v8 {
namespace internal {
namespace compiler {
template <class Visitor>
void Graph::VisitNodeUsesFrom(Node* node, Visitor* visitor) {
Zone tmp_zone(zone()->isolate());
GenericGraphVisit::Visit<Visitor, NodeUseIterationTraits<Node> >(
this, &tmp_zone, node, visitor);
}
template <class Visitor>
void Graph::VisitNodeUsesFromStart(Visitor* visitor) {
VisitNodeUsesFrom(start(), visitor);
}
template <class Visitor>
void Graph::VisitNodeInputsFromEnd(Visitor* visitor) {
Zone tmp_zone(zone()->isolate());
GenericGraphVisit::Visit<Visitor, NodeInputIterationTraits<Node> >(
this, &tmp_zone, end(), visitor);
}
}
}
} // namespace v8::internal::compiler
#endif // V8_COMPILER_GRAPH_INL_H_
|