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

Unified Diff: src/globals.h

Issue 1469793002: [builtins] Sanitize the machinery around Construct calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: mips64 fix. Created 5 years, 1 month 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 | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/globals.h
diff --git a/src/globals.h b/src/globals.h
index c3358870e5acc2193ac159b498a4ad1049fc6931..2b73cb04cf3073b6fd7a76c17a4c335a2f011784 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -599,19 +599,6 @@ enum InlineCacheState {
};
-enum CallConstructorFlags {
- NO_CALL_CONSTRUCTOR_FLAGS = 0,
- // The call target is cached in the instruction stream.
- RECORD_CONSTRUCTOR_TARGET = 1,
- // TODO(bmeurer): Kill these SUPER_* modes and use the Construct builtin
- // directly instead; also there's no point in collecting any "targets" for
- // super constructor calls, since these are known when we optimize the
- // constructor that contains the super call.
- SUPER_CONSTRUCTOR_CALL = 1 << 1,
- SUPER_CALL_RECORD_TARGET = SUPER_CONSTRUCTOR_CALL | RECORD_CONSTRUCTOR_TARGET
-};
-
-
enum CacheHolderFlag {
kCacheOnPrototype,
kCacheOnPrototypeReceiverIsDictionary,
« no previous file with comments | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698