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 "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 20 matching lines...) Loading... |
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 CompilationInfo info(test_->isolate(), test_->zone()); |
40 Linkage linkage(&info, call_descriptor()); | 40 Linkage linkage(&info, call_descriptor()); |
41 InstructionSequence sequence(test_->zone(), &linkage, graph(), schedule); | 41 InstructionSequence sequence(test_->zone(), graph(), schedule); |
42 SourcePositionTable source_position_table(graph()); | 42 SourcePositionTable source_position_table(graph()); |
43 InstructionSelector selector(&sequence, schedule, &source_position_table, | 43 InstructionSelector selector(&linkage, &sequence, schedule, |
44 features); | 44 &source_position_table, features); |
45 selector.SelectInstructions(); | 45 selector.SelectInstructions(); |
46 if (FLAG_trace_turbo) { | 46 if (FLAG_trace_turbo) { |
47 OFStream out(stdout); | 47 OFStream out(stdout); |
48 out << "=== Code sequence after instruction selection ===" << std::endl | 48 out << "=== Code sequence after instruction selection ===" << std::endl |
49 << sequence; | 49 << sequence; |
50 } | 50 } |
51 Stream s; | 51 Stream s; |
52 // Map virtual registers. | 52 // Map virtual registers. |
53 { | 53 { |
54 const int* node_map = sequence.GetNodeMapForTesting(); | 54 const NodeToVregMap& node_map = sequence.GetNodeMapForTesting(); |
55 for (int i = 0; i < initial_node_count; ++i) { | 55 for (int i = 0; i < initial_node_count; ++i) { |
56 if (node_map[i] >= 0) { | 56 if (node_map[i] != InstructionSequence::kNodeUnmapped) { |
57 s.virtual_registers_.insert(std::make_pair(i, node_map[i])); | 57 s.virtual_registers_.insert(std::make_pair(i, node_map[i])); |
58 } | 58 } |
59 } | 59 } |
60 } | 60 } |
61 std::set<int> virtual_registers; | 61 std::set<int> virtual_registers; |
62 for (InstructionSequence::const_iterator i = sequence.begin(); | 62 for (InstructionSequence::const_iterator i = sequence.begin(); |
63 i != sequence.end(); ++i) { | 63 i != sequence.end(); ++i) { |
64 Instruction* instr = *i; | 64 Instruction* instr = *i; |
65 if (instr->opcode() < 0) continue; | 65 if (instr->opcode() < 0) continue; |
66 if (mode == kTargetInstructions) { | 66 if (mode == kTargetInstructions) { |
(...skipping 484 matching lines...) Loading... |
551 EXPECT_EQ(s.ToVreg(context2), s.ToVreg(call_instr->InputAt(12))); | 551 EXPECT_EQ(s.ToVreg(context2), s.ToVreg(call_instr->InputAt(12))); |
552 // Continuation. | 552 // Continuation. |
553 | 553 |
554 EXPECT_EQ(kArchRet, s[index++]->arch_opcode()); | 554 EXPECT_EQ(kArchRet, s[index++]->arch_opcode()); |
555 EXPECT_EQ(index, s.size()); | 555 EXPECT_EQ(index, s.size()); |
556 } | 556 } |
557 | 557 |
558 } // namespace compiler | 558 } // namespace compiler |
559 } // namespace internal | 559 } // namespace internal |
560 } // namespace v8 | 560 } // namespace v8 |
OLD | NEW |