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

Side by Side Diff: src/IceRegAlloc.cpp

Issue 620373004: Subzero: Add a few performance measurement tools. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Minor fixes Created 6 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
OLDNEW
1 //===- subzero/src/IceRegAlloc.cpp - Linear-scan implementation -----------===// 1 //===- subzero/src/IceRegAlloc.cpp - Linear-scan implementation -----------===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file implements the LinearScan class, which performs the 10 // This file implements the LinearScan class, which performs the
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // ftp://ftp.ssw.uni-linz.ac.at/pub/Papers/Moe02.PDF . This 58 // ftp://ftp.ssw.uni-linz.ac.at/pub/Papers/Moe02.PDF . This
59 // implementation is modified to take affinity into account and allow 59 // implementation is modified to take affinity into account and allow
60 // two interfering variables to share the same register in certain 60 // two interfering variables to share the same register in certain
61 // cases. 61 // cases.
62 // 62 //
63 // Requires running Cfg::liveness(Liveness_Intervals) in 63 // Requires running Cfg::liveness(Liveness_Intervals) in
64 // preparation. Results are assigned to Variable::RegNum for each 64 // preparation. Results are assigned to Variable::RegNum for each
65 // Variable. 65 // Variable.
66 void LinearScan::scan(const llvm::SmallBitVector &RegMaskFull) { 66 void LinearScan::scan(const llvm::SmallBitVector &RegMaskFull) {
67 static TimerIdT IDscan = GlobalContext::getTimerID("linearScan"); 67 static TimerIdT IDscan = GlobalContext::getTimerID("linearScan");
68 TimerMarker T(IDscan, Func->getContext()); 68 TimerMarker T(IDscan, Func);
69 assert(RegMaskFull.any()); // Sanity check 69 assert(RegMaskFull.any()); // Sanity check
70 Unhandled.clear(); 70 Unhandled.clear();
71 UnhandledPrecolored.clear(); 71 UnhandledPrecolored.clear();
72 Handled.clear(); 72 Handled.clear();
73 Inactive.clear(); 73 Inactive.clear();
74 Active.clear(); 74 Active.clear();
75 Ostream &Str = Func->getContext()->getStrDump(); 75 Ostream &Str = Func->getContext()->getStrDump();
76 bool Verbose = Func->getContext()->isVerbose(IceV_LinearScan); 76 bool Verbose = Func->getContext()->isVerbose(IceV_LinearScan);
77 Func->resetCurrentNode(); 77 Func->resetCurrentNode();
78 VariablesMetadata *VMetadata = Func->getVMetadata(); 78 VariablesMetadata *VMetadata = Func->getVMetadata();
79 79
80 // Gather the live ranges of all variables and add them to the 80 // Gather the live ranges of all variables and add them to the
81 // Unhandled set. TODO: Unhandled is a set<> which is based on a 81 // Unhandled set. TODO: Unhandled is a set<> which is based on a
82 // balanced binary tree, so inserting live ranges for N variables is 82 // balanced binary tree, so inserting live ranges for N variables is
83 // O(N log N) complexity. N may be proportional to the number of 83 // O(N log N) complexity. N may be proportional to the number of
84 // instructions, thanks to temporary generation during lowering. As 84 // instructions, thanks to temporary generation during lowering. As
85 // a result, it may be useful to design a better data structure for 85 // a result, it may be useful to design a better data structure for
86 // storing Func->getVariables(). 86 // storing Func->getVariables().
87 const VarList &Vars = Func->getVariables(); 87 const VarList &Vars = Func->getVariables();
88 { 88 {
89 static TimerIdT IDinitUnhandled = 89 static TimerIdT IDinitUnhandled =
90 GlobalContext::getTimerID("initUnhandled"); 90 GlobalContext::getTimerID("initUnhandled");
91 TimerMarker T(IDinitUnhandled, Func->getContext()); 91 TimerMarker T(IDinitUnhandled, Func);
92 for (Variable *Var : Vars) { 92 for (Variable *Var : Vars) {
93 // Explicitly don't consider zero-weight variables, which are 93 // Explicitly don't consider zero-weight variables, which are
94 // meant to be spill slots. 94 // meant to be spill slots.
95 if (Var->getWeight() == RegWeight::Zero) 95 if (Var->getWeight() == RegWeight::Zero)
96 continue; 96 continue;
97 // Don't bother if the variable has a null live range, which means 97 // Don't bother if the variable has a null live range, which means
98 // it was never referenced. 98 // it was never referenced.
99 if (Var->getLiveRange().isEmpty()) 99 if (Var->getLiveRange().isEmpty())
100 continue; 100 continue;
101 LiveRangeWrapper R(Var); 101 LiveRangeWrapper R(Var);
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 Str << "\n"; 550 Str << "\n";
551 } 551 }
552 Str << "++++++ Inactive:\n"; 552 Str << "++++++ Inactive:\n";
553 for (const LiveRangeWrapper &Item : Inactive) { 553 for (const LiveRangeWrapper &Item : Inactive) {
554 Item.dump(Func); 554 Item.dump(Func);
555 Str << "\n"; 555 Str << "\n";
556 } 556 }
557 } 557 }
558 558
559 } // end of namespace Ice 559 } // end of namespace Ice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698