| OLD | NEW |
| 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/value-numbering-reducer.h" |
| 6 |
| 5 #include <cstring> | 7 #include <cstring> |
| 6 | 8 |
| 7 #include "src/v8.h" | |
| 8 | |
| 9 #include "src/compiler/value-numbering-reducer.h" | |
| 10 | |
| 11 #include "src/base/functional.h" | 9 #include "src/base/functional.h" |
| 12 #include "src/compiler/node.h" | 10 #include "src/compiler/node.h" |
| 13 | 11 |
| 14 namespace v8 { | 12 namespace v8 { |
| 15 namespace internal { | 13 namespace internal { |
| 16 namespace compiler { | 14 namespace compiler { |
| 17 | 15 |
| 18 namespace { | 16 namespace { |
| 19 | 17 |
| 20 size_t HashCode(Node* node) { | 18 size_t HashCode(Node* node) { |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 size_++; | 130 size_++; |
| 133 break; | 131 break; |
| 134 } | 132 } |
| 135 } | 133 } |
| 136 } | 134 } |
| 137 } | 135 } |
| 138 | 136 |
| 139 } // namespace compiler | 137 } // namespace compiler |
| 140 } // namespace internal | 138 } // namespace internal |
| 141 } // namespace v8 | 139 } // namespace v8 |
| OLD | NEW |