| Index: src/ia32/frames-ia32.h
|
| diff --git a/src/ia32/frames-ia32.h b/src/ia32/frames-ia32.h
|
| index 2681da93be76809be1556712f07e8f68d3ea3f36..69f9a007212f27df0e953322d0fab4b9d29c50cf 100644
|
| --- a/src/ia32/frames-ia32.h
|
| +++ b/src/ia32/frames-ia32.h
|
| @@ -51,6 +51,10 @@ static const int kNumJSCallerSaved = 5;
|
|
|
| typedef Object* JSCallerSavedBuffer[kNumJSCallerSaved];
|
|
|
| +
|
| +// Number of registers for which space is reserved in safepoints.
|
| +static const int kNumSafepointRegisters = 8;
|
| +
|
| // ----------------------------------------------------
|
|
|
|
|
| @@ -92,6 +96,7 @@ class ExitFrameConstants : public AllStatic {
|
|
|
| class StandardFrameConstants : public AllStatic {
|
| public:
|
| + static const int kFixedFrameSize = 4;
|
| static const int kExpressionsOffset = -3 * kPointerSize;
|
| static const int kMarkerOffset = -2 * kPointerSize;
|
| static const int kContextOffset = -1 * kPointerSize;
|
|
|