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

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: Commit fix + rebase 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
« no previous file with comments | « src/IceGlobalContext.h ('k') | src/IceTranslator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 newTimerStackID("Total across all functions"); 155 newTimerStackID("Total across all functions");
156 newTimerStackID("Per-function summary"); 156 newTimerStackID("Per-function summary");
157 } 157 }
158 Timers.initInto(MyTLS->Timers); 158 Timers.initInto(MyTLS->Timers);
159 if (Flags.UseELFWriter) { 159 if (Flags.UseELFWriter) {
160 ObjectWriter.reset(new ELFObjectWriter(*this, *ELFStr)); 160 ObjectWriter.reset(new ELFObjectWriter(*this, *ELFStr));
161 } 161 }
162 } 162 }
163 163
164 void GlobalContext::translateFunctions() { 164 void GlobalContext::translateFunctions() {
165 while (Cfg *Func = cfgQueueBlockingPop()) { 165 while (std::unique_ptr<Cfg> Func = cfgQueueBlockingPop()) {
166 // Install Func in TLS for Cfg-specific container allocators.
167 Cfg::setCurrentCfg(Func.get());
166 // Reset per-function stats being accumulated in TLS. 168 // Reset per-function stats being accumulated in TLS.
167 resetStats(); 169 resetStats();
168 // Install Func in TLS for Cfg-specific container allocators.
169 Func->updateTLS();
170 // Set verbose level to none if the current function does NOT 170 // Set verbose level to none if the current function does NOT
171 // match the -verbose-focus command-line option. 171 // match the -verbose-focus command-line option.
172 if (!matchSymbolName(Func->getFunctionName(), getFlags().VerboseFocusOn)) 172 if (!matchSymbolName(Func->getFunctionName(), getFlags().VerboseFocusOn))
173 Func->setVerbose(IceV_None); 173 Func->setVerbose(IceV_None);
174 // Disable translation if -notranslate is specified, or if the 174 // Disable translation if -notranslate is specified, or if the
175 // current function matches the -translate-only option. If 175 // current function matches the -translate-only option. If
176 // translation is disabled, just dump the high-level IR and 176 // translation is disabled, just dump the high-level IR and
177 // continue. 177 // continue.
178 if (getFlags().DisableTranslation || 178 if (getFlags().DisableTranslation ||
179 !matchSymbolName(Func->getFunctionName(), getFlags().TranslateOnly)) { 179 !matchSymbolName(Func->getFunctionName(), getFlags().TranslateOnly)) {
180 Func->dump(); 180 Func->dump();
181 } else { 181 } else {
182 Func->translate(); 182 Func->translate();
183 if (Func->hasError()) { 183 if (Func->hasError()) {
184 getErrorStatus()->assign(EC_Translation); 184 getErrorStatus()->assign(EC_Translation);
185 OstreamLocker L(this); 185 OstreamLocker L(this);
186 getStrDump() << "ICE translation error: " << Func->getError() << "\n"; 186 getStrDump() << "ICE translation error: " << Func->getError() << "\n";
187 } else { 187 } else {
188 if (getFlags().UseIntegratedAssembler) 188 if (getFlags().UseIntegratedAssembler)
189 Func->emitIAS(); 189 Func->emitIAS();
190 else 190 else
191 Func->emit(); 191 Func->emit();
192 // TODO(stichnot): actually add to emit queue 192 // TODO(stichnot): actually add to emit queue
193 } 193 }
194 // TODO(stichnot): fix multithreaded stats dumping.
195 dumpStats(Func->getFunctionName()); 194 dumpStats(Func->getFunctionName());
196 } 195 }
197 delete Func; 196 Cfg::setCurrentCfg(nullptr);
197 // The Cfg now gets deleted as Func goes out of scope.
198 } 198 }
199 } 199 }
200 200
201 // Scan a string for S[0-9A-Z]*_ patterns and replace them with 201 // Scan a string for S[0-9A-Z]*_ patterns and replace them with
202 // S<num>_ where <num> is the next base-36 value. If a type name 202 // S<num>_ where <num> is the next base-36 value. If a type name
203 // legitimately contains that pattern, then the substitution will be 203 // legitimately contains that pattern, then the substitution will be
204 // made in error and most likely the link will fail. In this case, 204 // made in error and most likely the link will fail. In this case,
205 // the test classes can be rewritten not to use that pattern, which is 205 // the test classes can be rewritten not to use that pattern, which is
206 // much simpler and more reliable than implementing a full demangling 206 // much simpler and more reliable than implementing a full demangling
207 // parser. Another substitution-in-error may occur if a type 207 // parser. Another substitution-in-error may occur if a type
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 Timers->at(StackID).reset(); 541 Timers->at(StackID).reset();
542 } 542 }
543 543
544 void GlobalContext::setTimerName(TimerStackIdT StackID, 544 void GlobalContext::setTimerName(TimerStackIdT StackID,
545 const IceString &NewName) { 545 const IceString &NewName) {
546 auto Timers = &ICE_TLS_GET_FIELD(TLS)->Timers; 546 auto Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
547 assert(StackID < Timers->size()); 547 assert(StackID < Timers->size());
548 Timers->at(StackID).setName(NewName); 548 Timers->at(StackID).setName(NewName);
549 } 549 }
550 550
551 // Note: cfgQueueBlockingPush and cfgQueueBlockingPop use unique_ptr
552 // at the interface to take and transfer ownership, but they
553 // internally store the raw Cfg pointer in the work queue. This
554 // allows e.g. future queue optimizations such as the use of atomics
555 // to modify queue elements.
556 void GlobalContext::cfgQueueBlockingPush(std::unique_ptr<Cfg> Func) {
557 CfgQ.blockingPush(Func.release());
558 }
559
560 std::unique_ptr<Cfg> GlobalContext::cfgQueueBlockingPop() {
561 return std::unique_ptr<Cfg>(CfgQ.blockingPop());
562 }
563
551 void GlobalContext::dumpStats(const IceString &Name, bool Final) { 564 void GlobalContext::dumpStats(const IceString &Name, bool Final) {
552 if (!ALLOW_DUMP || !getFlags().DumpStats) 565 if (!ALLOW_DUMP || !getFlags().DumpStats)
553 return; 566 return;
554 OstreamLocker OL(this); 567 OstreamLocker OL(this);
555 if (Final) { 568 if (Final) {
556 getStatsCumulative()->dump(Name, getStrDump()); 569 getStatsCumulative()->dump(Name, getStrDump());
557 } else { 570 } else {
558 ICE_TLS_GET_FIELD(TLS)->StatsFunction.dump(Name, getStrDump()); 571 ICE_TLS_GET_FIELD(TLS)->StatsFunction.dump(Name, getStrDump());
559 } 572 }
560 } 573 }
(...skipping 25 matching lines...) Expand all
586 void TimerMarker::pushCfg(const Cfg *Func) { 599 void TimerMarker::pushCfg(const Cfg *Func) {
587 Ctx = Func->getContext(); 600 Ctx = Func->getContext();
588 Active = Func->getFocusedTiming() || Ctx->getFlags().SubzeroTimingEnabled; 601 Active = Func->getFocusedTiming() || Ctx->getFlags().SubzeroTimingEnabled;
589 if (Active) 602 if (Active)
590 Ctx->pushTimer(ID, StackID); 603 Ctx->pushTimer(ID, StackID);
591 } 604 }
592 605
593 ICE_TLS_DEFINE_FIELD(GlobalContext::ThreadContext *, GlobalContext, TLS); 606 ICE_TLS_DEFINE_FIELD(GlobalContext::ThreadContext *, GlobalContext, TLS);
594 607
595 } // end of namespace Ice 608 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceGlobalContext.h ('k') | src/IceTranslator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698