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

Unified Diff: src/compiler/linkage.h

Issue 1963583004: [turbofan] Initial version of allocation folding and write barrier elimination. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Jaros comments; Created 4 years, 7 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 | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/memory-optimizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/linkage.h
diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h
index bf299d39a6990c5b5586d0f321c28bcfe330511d..958e8dc94989736987cbb34a08035fc07377c3bc 100644
--- a/src/compiler/linkage.h
+++ b/src/compiler/linkage.h
@@ -162,7 +162,9 @@ class CallDescriptor final : public ZoneObject {
kRestoreJSSP = 1u << 6,
kRestoreCSP = 1u << 7,
// Causes the code generator to initialize the root register.
- kInitializeRootRegister = 1u << 8
+ kInitializeRootRegister = 1u << 8,
+ // Does not ever try to allocate space on our heap.
+ kNoAllocate = 1u << 9
};
typedef base::Flags<Flag> Flags;
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/memory-optimizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698