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

Side by Side Diff: test/cctest/compiler/simplified-graph-builder.cc

Issue 821913002: [turbofan] Deinlinify OperatorProperties implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "test/cctest/compiler/simplified-graph-builder.h" 5 #include "test/cctest/compiler/simplified-graph-builder.h"
6 6
7 #include "src/compiler/operator-properties.h" 7 #include "src/compiler/operator-properties.h"
8 #include "src/compiler/operator-properties-inl.h"
9 8
10 namespace v8 { 9 namespace v8 {
11 namespace internal { 10 namespace internal {
12 namespace compiler { 11 namespace compiler {
13 12
14 SimplifiedGraphBuilder::SimplifiedGraphBuilder( 13 SimplifiedGraphBuilder::SimplifiedGraphBuilder(
15 Graph* graph, CommonOperatorBuilder* common, 14 Graph* graph, CommonOperatorBuilder* common,
16 MachineOperatorBuilder* machine, SimplifiedOperatorBuilder* simplified) 15 MachineOperatorBuilder* machine, SimplifiedOperatorBuilder* simplified)
17 : GraphBuilder(graph), 16 : GraphBuilder(graph),
18 effect_(NULL), 17 effect_(NULL),
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 // This graph builder does not support control flow. 78 // This graph builder does not support control flow.
80 CHECK_EQ(0, op->ControlOutputCount()); 79 CHECK_EQ(0, op->ControlOutputCount());
81 } 80 }
82 81
83 return result; 82 return result;
84 } 83 }
85 84
86 } // namespace compiler 85 } // namespace compiler
87 } // namespace internal 86 } // namespace internal
88 } // namespace v8 87 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | test/cctest/compiler/test-machine-operator-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698