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

Side by Side Diff: src/compiler/verifier.cc

Issue 883613006: [turbofan] Cleanup the NodeProperties. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/code-generator-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "src/compiler/verifier.h" 5 #include "src/compiler/verifier.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <sstream> 10 #include <sstream>
11 #include <string> 11 #include <string>
12 12
13 #include "src/bit-vector.h" 13 #include "src/bit-vector.h"
14 #include "src/compiler/all-nodes.h" 14 #include "src/compiler/all-nodes.h"
15 #include "src/compiler/common-operator.h"
15 #include "src/compiler/graph.h" 16 #include "src/compiler/graph.h"
16 #include "src/compiler/node.h" 17 #include "src/compiler/node.h"
17 #include "src/compiler/node-properties-inl.h"
18 #include "src/compiler/node-properties.h" 18 #include "src/compiler/node-properties.h"
19 #include "src/compiler/opcodes.h" 19 #include "src/compiler/opcodes.h"
20 #include "src/compiler/operator.h" 20 #include "src/compiler/operator.h"
21 #include "src/compiler/operator-properties.h"
21 #include "src/compiler/schedule.h" 22 #include "src/compiler/schedule.h"
22 #include "src/compiler/simplified-operator.h" 23 #include "src/compiler/simplified-operator.h"
23 #include "src/ostreams.h" 24 #include "src/ostreams.h"
24 25
25 namespace v8 { 26 namespace v8 {
26 namespace internal { 27 namespace internal {
27 namespace compiler { 28 namespace compiler {
28 29
29 30
30 static bool IsDefUseChainLinkPresent(Node* def, Node* use) { 31 static bool IsDefUseChainLinkPresent(Node* def, Node* use) {
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 // Check inputs for all nodes in the block. 1001 // Check inputs for all nodes in the block.
1001 for (size_t i = 0; i < block->NodeCount(); i++) { 1002 for (size_t i = 0; i < block->NodeCount(); i++) {
1002 Node* node = block->NodeAt(i); 1003 Node* node = block->NodeAt(i);
1003 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); 1004 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1);
1004 } 1005 }
1005 } 1006 }
1006 } 1007 }
1007 } 1008 }
1008 } 1009 }
1009 } // namespace v8::internal::compiler 1010 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/code-generator-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698