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

Side by Side Diff: test/unittests/compiler/instruction-selector-unittest.cc

Issue 679793003: [turbofan] reduce allocations outside of pipeline (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « test/unittests/compiler/change-lowering-unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "test/unittests/compiler/instruction-selector-unittest.h" 5 #include "test/unittests/compiler/instruction-selector-unittest.h"
6 6
7 #include "src/compiler/graph-inl.h" 7 #include "src/compiler/graph-inl.h"
8 #include "src/flags.h" 8 #include "src/flags.h"
9 #include "test/unittests/compiler/compiler-test-utils.h" 9 #include "test/unittests/compiler/compiler-test-utils.h"
10 10
(...skipping 18 matching lines...) Expand all
29 InstructionSelector::Features features, 29 InstructionSelector::Features features,
30 InstructionSelectorTest::StreamBuilderMode mode) { 30 InstructionSelectorTest::StreamBuilderMode mode) {
31 Schedule* schedule = Export(); 31 Schedule* schedule = Export();
32 if (FLAG_trace_turbo) { 32 if (FLAG_trace_turbo) {
33 OFStream out(stdout); 33 OFStream out(stdout);
34 out << "=== Schedule before instruction selection ===" << std::endl 34 out << "=== Schedule before instruction selection ===" << std::endl
35 << *schedule; 35 << *schedule;
36 } 36 }
37 EXPECT_NE(0, graph()->NodeCount()); 37 EXPECT_NE(0, graph()->NodeCount());
38 int initial_node_count = graph()->NodeCount(); 38 int initial_node_count = graph()->NodeCount();
39 CompilationInfo info(test_->isolate(), test_->zone()); 39 Linkage linkage(test_->zone(), call_descriptor());
40 Linkage linkage(&info, call_descriptor());
41 InstructionSequence sequence(test_->zone(), graph(), schedule); 40 InstructionSequence sequence(test_->zone(), graph(), schedule);
42 SourcePositionTable source_position_table(graph()); 41 SourcePositionTable source_position_table(graph());
43 InstructionSelector selector(test_->zone(), &linkage, &sequence, schedule, 42 InstructionSelector selector(test_->zone(), &linkage, &sequence, schedule,
44 &source_position_table, features); 43 &source_position_table, features);
45 selector.SelectInstructions(); 44 selector.SelectInstructions();
46 if (FLAG_trace_turbo) { 45 if (FLAG_trace_turbo) {
47 OFStream out(stdout); 46 OFStream out(stdout);
48 out << "=== Code sequence after instruction selection ===" << std::endl 47 out << "=== Code sequence after instruction selection ===" << std::endl
49 << sequence; 48 << sequence;
50 } 49 }
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 EXPECT_EQ(s.ToVreg(context2), s.ToVreg(call_instr->InputAt(12))); 568 EXPECT_EQ(s.ToVreg(context2), s.ToVreg(call_instr->InputAt(12)));
570 // Continuation. 569 // Continuation.
571 570
572 EXPECT_EQ(kArchRet, s[index++]->arch_opcode()); 571 EXPECT_EQ(kArchRet, s[index++]->arch_opcode());
573 EXPECT_EQ(index, s.size()); 572 EXPECT_EQ(index, s.size());
574 } 573 }
575 574
576 } // namespace compiler 575 } // namespace compiler
577 } // namespace internal 576 } // namespace internal
578 } // namespace v8 577 } // namespace v8
OLDNEW
« no previous file with comments | « test/unittests/compiler/change-lowering-unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698