diff options
Diffstat (limited to 'deps/v8/src/deoptimizer.h')
-rw-r--r-- | deps/v8/src/deoptimizer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/src/deoptimizer.h b/deps/v8/src/deoptimizer.h index 67690ded0d..a36362fc93 100644 --- a/deps/v8/src/deoptimizer.h +++ b/deps/v8/src/deoptimizer.h @@ -134,7 +134,7 @@ class Deoptimizer : public Malloced { static const int kBailoutTypesWithCodeEntry = SOFT + 1; - struct JumpTableEntry { + struct JumpTableEntry : public ZoneObject { inline JumpTableEntry(Address entry, Deoptimizer::BailoutType type, bool frame) @@ -508,6 +508,8 @@ class FrameDescription { void SetCallerFp(unsigned offset, intptr_t value); + void SetCallerConstantPool(unsigned offset, intptr_t value); + intptr_t GetRegister(unsigned n) const { #if DEBUG // This convoluted ASSERT is needed to work around a gcc problem that |