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

Unified Diff: src/macro-assembler.h

Issue 1899813003: [crankshaft] Fragmentation-free allocation folding. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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
Index: src/macro-assembler.h
diff --git a/src/macro-assembler.h b/src/macro-assembler.h
index 6338b2c1c10283de471da5fdd20b0ea9a3e88293..be4b9254a2a605b273b8ba1d9c62c573bdcc056b 100644
--- a/src/macro-assembler.h
+++ b/src/macro-assembler.h
@@ -31,9 +31,11 @@ enum AllocationFlags {
DOUBLE_ALIGNMENT = 1 << 3,
// Directly allocate in old space
PRETENURE = 1 << 4,
+ // Allocation folding dominator
+ ALLOCATION_FOLDING_DOMINATOR = 1 << 5,
+ ALLOCATION_FOLDING_DOMINATED = 1 << 6
};
-
#if V8_TARGET_ARCH_IA32
#include "src/ia32/assembler-ia32.h"
#include "src/ia32/assembler-ia32-inl.h"

Powered by Google App Engine
This is Rietveld 408576698