| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/code-factory.h" |
| 5 #include "src/compiler/code-assembler.h" | 6 #include "src/compiler/code-assembler.h" |
| 6 #include "src/isolate.h" | 7 #include "src/isolate.h" |
| 7 #include "test/cctest/compiler/code-assembler-tester.h" | 8 #include "test/cctest/compiler/code-assembler-tester.h" |
| 8 #include "test/cctest/compiler/function-tester.h" | 9 #include "test/cctest/compiler/function-tester.h" |
| 9 | 10 |
| 10 namespace v8 { | 11 namespace v8 { |
| 11 namespace internal { | 12 namespace internal { |
| 12 namespace compiler { | 13 namespace compiler { |
| 13 | 14 |
| 14 typedef CodeAssemblerTesterImpl<CodeAssembler> CodeAssemblerTester; | 15 typedef CodeAssemblerTesterImpl<CodeAssembler> CodeAssemblerTester; |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 var_object.Bind(m.IntPtrConstant(66)); | 430 var_object.Bind(m.IntPtrConstant(66)); |
| 430 m.Goto(&block1); | 431 m.Goto(&block1); |
| 431 } | 432 } |
| 432 m.Bind(&block1); | 433 m.Bind(&block1); |
| 433 CHECK(!m.GenerateCode().is_null()); | 434 CHECK(!m.GenerateCode().is_null()); |
| 434 } | 435 } |
| 435 | 436 |
| 436 } // namespace compiler | 437 } // namespace compiler |
| 437 } // namespace internal | 438 } // namespace internal |
| 438 } // namespace v8 | 439 } // namespace v8 |
| OLD | NEW |