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

Side by Side Diff: test/cctest/compiler/test-code-assembler.cc

Issue 2278103002: Include only stuff you need, part 5: make function-tester.h slimmer. (Closed)
Patch Set: Created 4 years, 3 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 | « test/cctest/compiler/function-tester.cc ('k') | test/cctest/compiler/test-run-inlining.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 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
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
OLDNEW
« no previous file with comments | « test/cctest/compiler/function-tester.cc ('k') | test/cctest/compiler/test-run-inlining.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698