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

Unified Diff: src/interface.h

Issue 667703002: Fix data race with interface caching (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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/interface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interface.h
diff --git a/src/interface.h b/src/interface.h
index 598d0381427095c4c9f31de6365385757ac328b0..4f0a204525336dfc12d87356a28214be9cf89caa 100644
--- a/src/interface.h
+++ b/src/interface.h
@@ -6,6 +6,7 @@
#define V8_INTERFACE_H_
#include "src/ast-value-factory.h"
+#include "src/base/lazy-instance.h"
Benedikt Meurer 2014/10/21 04:09:05 No need for this include, see comment below.
#include "src/zone-inl.h" // For operator new.
namespace v8 {
@@ -41,15 +42,9 @@ class Interface : public ZoneObject {
return new(zone) Interface(NONE);
}
- static Interface* NewValue() {
- static Interface value_interface(VALUE + FROZEN); // Cached.
- return &value_interface;
- }
+ static Interface* NewValue();
- static Interface* NewConst() {
- static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
- return &value_interface;
- }
+ static Interface* NewConst();
static Interface* NewModule(Zone* zone) {
return new(zone) Interface(MODULE);
@@ -202,6 +197,11 @@ class Interface : public ZoneObject {
#endif
}
+ struct ValueCreate;
+ struct ConstCreate;
+ static base::LazyInstance<Interface*, ValueCreate>::type value_interface_;
Benedikt Meurer 2014/10/21 04:09:05 Move the statics to the .cc file and hide them in
rossberg 2014/10/21 10:42:52 Done. Also changed them to do in-place constructio
+ static base::LazyInstance<Interface*, ConstCreate>::type const_interface_;
+
Interface* Chase() {
Interface* result = this;
while (result->forward_ != NULL) result = result->forward_;
« no previous file with comments | « no previous file | src/interface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698