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

Unified Diff: src/objects.h

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/objects.h
diff --git a/src/objects.h b/src/objects.h
index e64bdbfff2011658bb94022cbd5c48e2e5d29ce8..7537509a713536106091faeaba0bc75bbf6d7107 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -6578,7 +6578,11 @@ class Oddball: public HeapObject {
static const byte kNull = 3;
static const byte kArgumentMarker = 4;
static const byte kUndefined = 5;
- static const byte kOther = 6;
+ static const byte kFrameAlignmentMarker = 6;
Kevin Millikin (Chromium) 2011/09/23 09:38:49 You never use this constant that I can see. Can y
William Hesse 2011/09/23 12:50:11 Done.
+ static const byte kOther = 7;
+
+ // The ToNumber value of a hidden oddball is a negative smi.
+ static const int kLeastHiddenOddballNumber = -5;
typedef FixedBodyDescriptor<kToStringOffset,
kToNumberOffset + kPointerSize,

Powered by Google App Engine
This is Rietveld 408576698