| 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 #ifndef V8_COMPILER_STRUCTURED_MACHINE_ASSEMBLER_H_ | 5 #ifndef V8_CCTEST_COMPILER_STRUCTURED_MACHINE_ASSEMBLER_H_ |
| 6 #define V8_COMPILER_STRUCTURED_MACHINE_ASSEMBLER_H_ | 6 #define V8_CCTEST_COMPILER_STRUCTURED_MACHINE_ASSEMBLER_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
| 11 #include "src/compiler/graph-builder.h" | 11 #include "src/compiler/graph-builder.h" |
| 12 #include "src/compiler/machine-node-factory.h" | 12 #include "src/compiler/machine-node-factory.h" |
| 13 #include "src/compiler/machine-operator.h" | 13 #include "src/compiler/machine-operator.h" |
| 14 #include "src/compiler/node.h" | 14 #include "src/compiler/node.h" |
| 15 #include "src/compiler/operator.h" | 15 #include "src/compiler/operator.h" |
| 16 | 16 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 Environment* header_environment_; | 289 Environment* header_environment_; |
| 290 EnvironmentVector pending_header_merges_; | 290 EnvironmentVector pending_header_merges_; |
| 291 EnvironmentVector pending_exit_merges_; | 291 EnvironmentVector pending_exit_merges_; |
| 292 DISALLOW_COPY_AND_ASSIGN(LoopBuilder); | 292 DISALLOW_COPY_AND_ASSIGN(LoopBuilder); |
| 293 }; | 293 }; |
| 294 | 294 |
| 295 } // namespace compiler | 295 } // namespace compiler |
| 296 } // namespace internal | 296 } // namespace internal |
| 297 } // namespace v8 | 297 } // namespace v8 |
| 298 | 298 |
| 299 #endif // V8_COMPILER_STRUCTURED_MACHINE_ASSEMBLER_H_ | 299 #endif // V8_CCTEST_COMPILER_STRUCTURED_MACHINE_ASSEMBLER_H_ |
| OLD | NEW |