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

Side by Side Diff: src/IceGlobalContext.cpp

Issue 892063002: Subzero: Manage each Cfg as a std::unique_ptr<Cfg>. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review updates Created 5 years, 10 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/IceGlobalContext.cpp - Global context defs -------------===// 1 //===- subzero/src/IceGlobalContext.cpp - Global context defs -------------===//
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 defines aspects of the compilation that persist across 10 // This file defines aspects of the compilation that persist across
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 newTimerStackID("Total across all functions"); 153 newTimerStackID("Total across all functions");
154 newTimerStackID("Per-function summary"); 154 newTimerStackID("Per-function summary");
155 } 155 }
156 Timers.initInto(MyTLS->Timers); 156 Timers.initInto(MyTLS->Timers);
157 if (Flags.UseELFWriter) { 157 if (Flags.UseELFWriter) {
158 ObjectWriter.reset(new ELFObjectWriter(*this, *ELFStr)); 158 ObjectWriter.reset(new ELFObjectWriter(*this, *ELFStr));
159 } 159 }
160 } 160 }
161 161
162 void GlobalContext::translateFunctions() { 162 void GlobalContext::translateFunctions() {
163 while (Cfg *Func = cfgQueueBlockingPop()) { 163 while (std::unique_ptr<Cfg> Func = cfgQueueBlockingPop()) {
164 // Install Func in TLS for Cfg-specific container allocators.
165 Cfg::updateTLS(Func.get());
JF 2015/02/02 20:59:19 Hmm, now TLS is asymmetric. Maybe updateTLS(nullpt
Jim Stichnoth 2015/02/03 00:48:51 Done.
164 // Reset per-function stats being accumulated in TLS. 166 // Reset per-function stats being accumulated in TLS.
165 resetStats(); 167 resetStats();
166 // Install Func in TLS for Cfg-specific container allocators.
167 Func->updateTLS();
168 // Set verbose level to none if the current function does NOT 168 // Set verbose level to none if the current function does NOT
169 // match the -verbose-focus command-line option. 169 // match the -verbose-focus command-line option.
170 if (!matchSymbolName(Func->getFunctionName(), getFlags().VerboseFocusOn)) 170 if (!matchSymbolName(Func->getFunctionName(), getFlags().VerboseFocusOn))
171 Func->setVerbose(IceV_None); 171 Func->setVerbose(IceV_None);
172 // Disable translation if -notranslate is specified, or if the 172 // Disable translation if -notranslate is specified, or if the
173 // current function matches the -translate-only option. If 173 // current function matches the -translate-only option. If
174 // translation is disabled, just dump the high-level IR and 174 // translation is disabled, just dump the high-level IR and
175 // continue. 175 // continue.
176 if (getFlags().DisableTranslation || 176 if (getFlags().DisableTranslation ||
177 !matchSymbolName(Func->getFunctionName(), getFlags().TranslateOnly)) { 177 !matchSymbolName(Func->getFunctionName(), getFlags().TranslateOnly)) {
178 Func->dump(); 178 Func->dump();
179 } else { 179 } else {
180 Func->translate(); 180 Func->translate();
181 if (Func->hasError()) { 181 if (Func->hasError()) {
182 getErrorStatus()->assign(EC_Translation); 182 getErrorStatus()->assign(EC_Translation);
183 OstreamLocker L(this); 183 OstreamLocker L(this);
184 getStrDump() << "ICE translation error: " << Func->getError() << "\n"; 184 getStrDump() << "ICE translation error: " << Func->getError() << "\n";
185 } else { 185 } else {
186 if (getFlags().UseIntegratedAssembler) 186 if (getFlags().UseIntegratedAssembler)
187 Func->emitIAS(); 187 Func->emitIAS();
188 else 188 else
189 Func->emit(); 189 Func->emit();
190 // TODO(stichnot): actually add to emit queue 190 // TODO(stichnot): actually add to emit queue
191 } 191 }
192 // TODO(stichnot): fix multithreaded stats dumping.
193 dumpStats(Func->getFunctionName()); 192 dumpStats(Func->getFunctionName());
194 } 193 }
195 delete Func; 194 // The Cfg now gets deleted as Func goes out of scope. This also
195 // resets the thread-local CurrentCfg field.
196 } 196 }
197 } 197 }
198 198
199 // Scan a string for S[0-9A-Z]*_ patterns and replace them with 199 // Scan a string for S[0-9A-Z]*_ patterns and replace them with
200 // S<num>_ where <num> is the next base-36 value. If a type name 200 // S<num>_ where <num> is the next base-36 value. If a type name
201 // legitimately contains that pattern, then the substitution will be 201 // legitimately contains that pattern, then the substitution will be
202 // made in error and most likely the link will fail. In this case, 202 // made in error and most likely the link will fail. In this case,
203 // the test classes can be rewritten not to use that pattern, which is 203 // the test classes can be rewritten not to use that pattern, which is
204 // much simpler and more reliable than implementing a full demangling 204 // much simpler and more reliable than implementing a full demangling
205 // parser. Another substitution-in-error may occur if a type 205 // parser. Another substitution-in-error may occur if a type
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 Timers->at(StackID).reset(); 528 Timers->at(StackID).reset();
529 } 529 }
530 530
531 void GlobalContext::setTimerName(TimerStackIdT StackID, 531 void GlobalContext::setTimerName(TimerStackIdT StackID,
532 const IceString &NewName) { 532 const IceString &NewName) {
533 auto Timers = &ICE_TLS_GET_FIELD(TLS)->Timers; 533 auto Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
534 assert(StackID < Timers->size()); 534 assert(StackID < Timers->size());
535 Timers->at(StackID).setName(NewName); 535 Timers->at(StackID).setName(NewName);
536 } 536 }
537 537
538 void GlobalContext::cfgQueueBlockingPush(std::unique_ptr<Cfg> Func) {
539 CfgQ.blockingPush(Func.release());
540 }
541
542 std::unique_ptr<Cfg> GlobalContext::cfgQueueBlockingPop() {
543 return std::unique_ptr<Cfg>(CfgQ.blockingPop());
544 }
JF 2015/02/02 20:59:19 It would be nice to explain that the cfgQueue take
Jim Stichnoth 2015/02/03 00:48:51 Done.
545
538 void GlobalContext::dumpStats(const IceString &Name, bool Final) { 546 void GlobalContext::dumpStats(const IceString &Name, bool Final) {
539 if (!ALLOW_DUMP || !getFlags().DumpStats) 547 if (!ALLOW_DUMP || !getFlags().DumpStats)
540 return; 548 return;
541 OstreamLocker OL(this); 549 OstreamLocker OL(this);
542 if (Final) { 550 if (Final) {
543 getStatsCumulative()->dump(Name, getStrDump()); 551 getStatsCumulative()->dump(Name, getStrDump());
544 } else { 552 } else {
545 ICE_TLS_GET_FIELD(TLS)->StatsFunction.dump(Name, getStrDump()); 553 ICE_TLS_GET_FIELD(TLS)->StatsFunction.dump(Name, getStrDump());
546 } 554 }
547 } 555 }
(...skipping 25 matching lines...) Expand all
573 void TimerMarker::pushCfg(const Cfg *Func) { 581 void TimerMarker::pushCfg(const Cfg *Func) {
574 Ctx = Func->getContext(); 582 Ctx = Func->getContext();
575 Active = Func->getFocusedTiming() || Ctx->getFlags().SubzeroTimingEnabled; 583 Active = Func->getFocusedTiming() || Ctx->getFlags().SubzeroTimingEnabled;
576 if (Active) 584 if (Active)
577 Ctx->pushTimer(ID, StackID); 585 Ctx->pushTimer(ID, StackID);
578 } 586 }
579 587
580 ICE_TLS_DEFINE_FIELD(GlobalContext::ThreadContext *, GlobalContext, TLS); 588 ICE_TLS_DEFINE_FIELD(GlobalContext::ThreadContext *, GlobalContext, TLS);
581 589
582 } // end of namespace Ice 590 } // end of namespace Ice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698