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

Unified 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, 11 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 side-by-side diff with in-line comments
Download patch
Index: src/IceGlobalContext.cpp
diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp
index 8805cea111ec69b3760ac52ffe6ce8009a744686..2caf7aead4457c8ffbb221ed4be5b149683af222 100644
--- a/src/IceGlobalContext.cpp
+++ b/src/IceGlobalContext.cpp
@@ -160,11 +160,11 @@ GlobalContext::GlobalContext(Ostream *OsDump, Ostream *OsEmit,
}
void GlobalContext::translateFunctions() {
- while (Cfg *Func = cfgQueueBlockingPop()) {
+ while (std::unique_ptr<Cfg> Func = cfgQueueBlockingPop()) {
+ // Install Func in TLS for Cfg-specific container allocators.
+ 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.
// Reset per-function stats being accumulated in TLS.
resetStats();
- // Install Func in TLS for Cfg-specific container allocators.
- Func->updateTLS();
// Set verbose level to none if the current function does NOT
// match the -verbose-focus command-line option.
if (!matchSymbolName(Func->getFunctionName(), getFlags().VerboseFocusOn))
@@ -189,10 +189,10 @@ void GlobalContext::translateFunctions() {
Func->emit();
// TODO(stichnot): actually add to emit queue
}
- // TODO(stichnot): fix multithreaded stats dumping.
dumpStats(Func->getFunctionName());
}
- delete Func;
+ // The Cfg now gets deleted as Func goes out of scope. This also
+ // resets the thread-local CurrentCfg field.
}
}
@@ -535,6 +535,14 @@ void GlobalContext::setTimerName(TimerStackIdT StackID,
Timers->at(StackID).setName(NewName);
}
+void GlobalContext::cfgQueueBlockingPush(std::unique_ptr<Cfg> Func) {
+ CfgQ.blockingPush(Func.release());
+}
+
+std::unique_ptr<Cfg> GlobalContext::cfgQueueBlockingPop() {
+ return std::unique_ptr<Cfg>(CfgQ.blockingPop());
+}
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.
+
void GlobalContext::dumpStats(const IceString &Name, bool Final) {
if (!ALLOW_DUMP || !getFlags().DumpStats)
return;

Powered by Google App Engine
This is Rietveld 408576698