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

Side by Side Diff: src/hydrogen-dce.cc

Issue 27178002: Reduce queue size in dead code elimination by eagerly processing live instructions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Assert the worklist is empty at the end of processing live instructions. Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « src/hydrogen-dce.h ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 13 matching lines...) Expand all
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #include "hydrogen-dce.h" 28 #include "hydrogen-dce.h"
29 #include "v8.h" 29 #include "v8.h"
30 30
31 namespace v8 { 31 namespace v8 {
32 namespace internal { 32 namespace internal {
33 33
34 bool HDeadCodeEliminationPhase::MarkLive(HValue* ref, HValue* instr) { 34 void HDeadCodeEliminationPhase::MarkLive(
35 if (instr->CheckFlag(HValue::kIsLive)) return false; 35 HValue* instr, ZoneList<HValue*>* worklist) {
36 instr->SetFlag(HValue::kIsLive); 36 if (instr->CheckFlag(HValue::kIsLive)) return; // Already live.
37 37
38 if (FLAG_trace_dead_code_elimination) { 38 if (FLAG_trace_dead_code_elimination) PrintLive(NULL, instr);
39 HeapStringAllocator allocator; 39
40 StringStream stream(&allocator); 40 // Transitively mark all inputs of live instructions live.
41 if (ref != NULL) { 41 worklist->Add(instr, zone());
42 ref->PrintTo(&stream); 42 while (!worklist->is_empty()) {
43 } else { 43 HValue* instr = worklist->RemoveLast();
44 stream.Add("root "); 44 instr->SetFlag(HValue::kIsLive);
45 for (int i = 0; i < instr->OperandCount(); ++i) {
46 HValue* input = instr->OperandAt(i);
47 if (!input->CheckFlag(HValue::kIsLive)) {
48 input->SetFlag(HValue::kIsLive);
49 worklist->Add(input, zone());
50 if (FLAG_trace_dead_code_elimination) PrintLive(instr, input);
51 }
45 } 52 }
46 stream.Add(" -> ");
47 instr->PrintTo(&stream);
48 PrintF("[MarkLive %s]\n", *stream.ToCString());
49 } 53 }
54 }
50 55
51 return true; 56
57 void HDeadCodeEliminationPhase::PrintLive(HValue* ref, HValue* instr) {
58 HeapStringAllocator allocator;
59 StringStream stream(&allocator);
60 if (ref != NULL) {
61 ref->PrintTo(&stream);
62 } else {
63 stream.Add("root ");
64 }
65 stream.Add(" -> ");
66 instr->PrintTo(&stream);
67 PrintF("[MarkLive %s]\n", *stream.ToCString());
52 } 68 }
53 69
54 70
55 void HDeadCodeEliminationPhase::MarkLiveInstructions() { 71 void HDeadCodeEliminationPhase::MarkLiveInstructions() {
56 ZoneList<HValue*> worklist(graph()->blocks()->length(), zone()); 72 ZoneList<HValue*> worklist(graph()->blocks()->length(), zone());
57 73
58 // Mark initial root instructions for dead code elimination. 74 // Transitively mark all live instructions, starting from roots.
59 for (int i = 0; i < graph()->blocks()->length(); ++i) { 75 for (int i = 0; i < graph()->blocks()->length(); ++i) {
60 HBasicBlock* block = graph()->blocks()->at(i); 76 HBasicBlock* block = graph()->blocks()->at(i);
61 for (HInstructionIterator it(block); !it.Done(); it.Advance()) { 77 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
62 HInstruction* instr = it.Current(); 78 HInstruction* instr = it.Current();
63 if (instr->CannotBeEliminated() && MarkLive(NULL, instr)) { 79 if (instr->CannotBeEliminated()) MarkLive(instr, &worklist);
64 worklist.Add(instr, zone());
65 }
66 } 80 }
67 for (int j = 0; j < block->phis()->length(); j++) { 81 for (int j = 0; j < block->phis()->length(); j++) {
68 HPhi* phi = block->phis()->at(j); 82 HPhi* phi = block->phis()->at(j);
69 if (phi->CannotBeEliminated() && MarkLive(NULL, phi)) { 83 if (phi->CannotBeEliminated()) MarkLive(phi, &worklist);
70 worklist.Add(phi, zone());
71 }
72 } 84 }
73 } 85 }
74 86
75 // Transitively mark all inputs of live instructions live. 87 ASSERT(worklist.is_empty()); // Should have processed everything.
76 while (!worklist.is_empty()) {
77 HValue* instr = worklist.RemoveLast();
78 for (int i = 0; i < instr->OperandCount(); ++i) {
79 if (MarkLive(instr, instr->OperandAt(i))) {
80 worklist.Add(instr->OperandAt(i), zone());
81 }
82 }
83 }
84 } 88 }
85 89
86 90
87 void HDeadCodeEliminationPhase::RemoveDeadInstructions() { 91 void HDeadCodeEliminationPhase::RemoveDeadInstructions() {
88 ZoneList<HPhi*> worklist(graph()->blocks()->length(), zone()); 92 ZoneList<HPhi*> worklist(graph()->blocks()->length(), zone());
89 93
90 // Remove any instruction not marked kIsLive. 94 // Remove any instruction not marked kIsLive.
91 for (int i = 0; i < graph()->blocks()->length(); ++i) { 95 for (int i = 0; i < graph()->blocks()->length(); ++i) {
92 HBasicBlock* block = graph()->blocks()->at(i); 96 HBasicBlock* block = graph()->blocks()->at(i);
93 for (HInstructionIterator it(block); !it.Done(); it.Advance()) { 97 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
(...skipping 24 matching lines...) Expand all
118 HPhi* phi = worklist.RemoveLast(); 122 HPhi* phi = worklist.RemoveLast();
119 HBasicBlock* block = phi->block(); 123 HBasicBlock* block = phi->block();
120 phi->DeleteAndReplaceWith(NULL); 124 phi->DeleteAndReplaceWith(NULL);
121 if (phi->HasMergedIndex()) { 125 if (phi->HasMergedIndex()) {
122 block->RecordDeletedPhi(phi->merged_index()); 126 block->RecordDeletedPhi(phi->merged_index());
123 } 127 }
124 } 128 }
125 } 129 }
126 130
127 } } // namespace v8::internal 131 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen-dce.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698