OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/graph.h" | 5 #include "src/compiler/graph.h" |
6 | 6 |
7 #include "src/compiler/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
8 #include "src/compiler/generic-node-inl.h" | |
9 #include "src/compiler/graph-inl.h" | 8 #include "src/compiler/graph-inl.h" |
10 #include "src/compiler/node.h" | 9 #include "src/compiler/node.h" |
11 #include "src/compiler/node-aux-data-inl.h" | 10 #include "src/compiler/node-aux-data-inl.h" |
12 #include "src/compiler/node-properties.h" | 11 #include "src/compiler/node-properties.h" |
13 #include "src/compiler/node-properties-inl.h" | 12 #include "src/compiler/node-properties-inl.h" |
14 #include "src/compiler/opcodes.h" | 13 #include "src/compiler/opcodes.h" |
15 #include "src/compiler/operator-properties.h" | 14 #include "src/compiler/operator-properties.h" |
16 #include "src/compiler/operator-properties-inl.h" | 15 #include "src/compiler/operator-properties-inl.h" |
17 | 16 |
18 namespace v8 { | 17 namespace v8 { |
(...skipping 24 matching lines...) Expand all Loading... |
43 result->Initialize(op); | 42 result->Initialize(op); |
44 if (!incomplete) { | 43 if (!incomplete) { |
45 Decorate(result); | 44 Decorate(result); |
46 } | 45 } |
47 return result; | 46 return result; |
48 } | 47 } |
49 | 48 |
50 } // namespace compiler | 49 } // namespace compiler |
51 } // namespace internal | 50 } // namespace internal |
52 } // namespace v8 | 51 } // namespace v8 |
OLD | NEW |