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

Side by Side Diff: src/hydrogen-redundant-phi.h

Issue 25896006: Simplify redundant phi elimination and use during canonicalization too. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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-canonicalize.cc ('k') | src/hydrogen-redundant-phi.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 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 24 matching lines...) Expand all
35 35
36 36
37 // Replace all phis consisting of a single non-loop operand plus any number of 37 // Replace all phis consisting of a single non-loop operand plus any number of
38 // loop operands by that single non-loop operand. 38 // loop operands by that single non-loop operand.
39 class HRedundantPhiEliminationPhase : public HPhase { 39 class HRedundantPhiEliminationPhase : public HPhase {
40 public: 40 public:
41 explicit HRedundantPhiEliminationPhase(HGraph* graph) 41 explicit HRedundantPhiEliminationPhase(HGraph* graph)
42 : HPhase("H_Redundant phi elimination", graph) { } 42 : HPhase("H_Redundant phi elimination", graph) { }
43 43
44 void Run(); 44 void Run();
45 void ProcessBlock(HBasicBlock* block);
45 46
46 private: 47 private:
48 void ProcessPhis(const ZoneList<HPhi*>* phis);
49
47 DISALLOW_COPY_AND_ASSIGN(HRedundantPhiEliminationPhase); 50 DISALLOW_COPY_AND_ASSIGN(HRedundantPhiEliminationPhase);
48 }; 51 };
49 52
50 53
51 } } // namespace v8::internal 54 } } // namespace v8::internal
52 55
53 #endif // V8_HYDROGEN_REDUNDANT_PHI_H_ 56 #endif // V8_HYDROGEN_REDUNDANT_PHI_H_
OLDNEW
« no previous file with comments | « src/hydrogen-canonicalize.cc ('k') | src/hydrogen-redundant-phi.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698