Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2004)

Unified Diff: test/cctest/compiler/graph-builder-tester.h

Issue 1112343002: [test] Remove DirectGraphBuilder helper. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-test-machine-call-helper
Patch Set: Rebased. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/cctest/compiler/test-js-context-specialization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/compiler/graph-builder-tester.h
diff --git a/test/cctest/compiler/graph-builder-tester.h b/test/cctest/compiler/graph-builder-tester.h
index ea8507ca7f0809c013588e734b718fe41bbdca73..ca50c9f4eb92d6a9bd4d9c68ae398f7662eabb24 100644
--- a/test/cctest/compiler/graph-builder-tester.h
+++ b/test/cctest/compiler/graph-builder-tester.h
@@ -19,21 +19,6 @@ namespace v8 {
namespace internal {
namespace compiler {
-// A class that just passes node creation on to the Graph.
-class DirectGraphBuilder : public GraphBuilder {
- public:
- DirectGraphBuilder(Isolate* isolate, Graph* graph)
- : GraphBuilder(isolate, graph) {}
- virtual ~DirectGraphBuilder() {}
-
- protected:
- virtual Node* MakeNode(const Operator* op, int value_input_count,
- Node** value_inputs, bool incomplete) final {
- return graph()->NewNode(op, value_input_count, value_inputs, incomplete);
- }
-};
-
-
class MachineCallHelper : public CallHelper {
public:
MachineCallHelper(Isolate* isolate, MachineSignature* machine_sig);
« no previous file with comments | « no previous file | test/cctest/compiler/test-js-context-specialization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698