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

Unified Diff: src/IceCfg.h

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, 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
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.h
diff --git a/src/IceCfg.h b/src/IceCfg.h
index 71f0a0d54fa17ab97ab7a49296435f83555baddc..605dcf71304f39a1d62c1e5e1512c77321933088 100644
--- a/src/IceCfg.h
+++ b/src/IceCfg.h
@@ -30,17 +30,14 @@ class Cfg {
public:
~Cfg();
- // TODO(stichnot): Change this to return unique_ptr<Cfg>, and plumb
- // it through the callers, to make ownership and lifetime and
- // destruction requirements more explicit.
- static Cfg *create(GlobalContext *Ctx) {
- Cfg *Func = new Cfg(Ctx);
- ICE_TLS_SET_FIELD(CurrentCfg, Func);
- return Func;
+ static std::unique_ptr<Cfg> create(GlobalContext *Ctx) {
+ return std::unique_ptr<Cfg>(new Cfg(Ctx));
}
// Gets a pointer to the current thread's Cfg.
static const Cfg *getCurrentCfg() { return ICE_TLS_GET_FIELD(CurrentCfg); }
- void updateTLS() const { ICE_TLS_SET_FIELD(CurrentCfg, this); }
+ static void setCurrentCfg(const Cfg *Func) {
+ ICE_TLS_SET_FIELD(CurrentCfg, Func);
+ }
// Gets a pointer to the current thread's Cfg's allocator.
static ArenaAllocator<> *getCurrentCfgAllocator() {
assert(ICE_TLS_GET_FIELD(CurrentCfg));
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698