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

Unified Diff: src/heap.cc

Issue 7976024: Add dynamic stack frame alignment to optimized functions with untagged doubles on the stack. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove stray changes from assembler-[platform].h files. Created 9 years, 3 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/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 3395531cf5ca91301df5ffe6d188ff853d7587e7..6c221d0a0f88fa047e66cb8c0cf7e29875b2ec5b 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -2242,6 +2242,13 @@ bool Heap::CreateInitialObjects() {
}
set_arguments_marker(obj);
+ { MaybeObject* maybe_obj = CreateOddball("frame_alignment_marker",
+ Smi::FromInt(-5),
Kevin Millikin (Chromium) 2011/09/23 09:38:49 I guess it's useful to give the hidden oddballs di
William Hesse 2011/09/23 12:50:11 Done.
+ Oddball::kFrameAlignmentMarker);
+ if (!maybe_obj->ToObject(&obj)) return false;
+ }
+ set_frame_alignment_marker(obj);
+
{ MaybeObject* maybe_obj = CreateOddball("no_interceptor_result_sentinel",
Smi::FromInt(-2),
Oddball::kOther);
« no previous file with comments | « src/heap.h ('k') | src/ia32/deoptimizer-ia32.cc » ('j') | src/ia32/deoptimizer-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698