diff options
Diffstat (limited to 'deps/v8/src/ia32/frames-ia32.h')
-rw-r--r-- | deps/v8/src/ia32/frames-ia32.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deps/v8/src/ia32/frames-ia32.h b/deps/v8/src/ia32/frames-ia32.h index c3fe6c748d..80846949a0 100644 --- a/deps/v8/src/ia32/frames-ia32.h +++ b/deps/v8/src/ia32/frames-ia32.h @@ -49,6 +49,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; + // ---------------------------------------------------- @@ -90,6 +94,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; |