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

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: 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
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | src/IceConverter.cpp » ('J')
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..6916924d27e7dcf82c2da39af9925cefba92041e 100644
--- a/src/IceCfg.h
+++ b/src/IceCfg.h
@@ -30,17 +30,16 @@ 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) {
+ static std::unique_ptr<Cfg> create(GlobalContext *Ctx) {
Cfg *Func = new Cfg(Ctx);
JF 2015/02/02 20:59:19 It's slightly better to make this a unique_ptr too
Jim Stichnoth 2015/02/03 00:48:51 Done.
ICE_TLS_SET_FIELD(CurrentCfg, Func);
- return Func;
+ return std::unique_ptr<Cfg>(Func);
}
// 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 updateTLS(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') | src/IceConverter.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698