| Index: src/arm/code-stubs-arm.h
|
| diff --git a/src/arm/code-stubs-arm.h b/src/arm/code-stubs-arm.h
|
| index bee3e1e1268bbb511892c03d93938b9b8416fd5e..d05e9a1d840076e77af626c235ed5d0e2aa53cc6 100644
|
| --- a/src/arm/code-stubs-arm.h
|
| +++ b/src/arm/code-stubs-arm.h
|
| @@ -68,7 +68,7 @@ class StoreBufferOverflowStub: public PlatformCodeStub {
|
|
|
| void Generate(MacroAssembler* masm);
|
|
|
| - virtual bool IsPregenerated() { return true; }
|
| + virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE { return true; }
|
| static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate);
|
| virtual bool SometimesSetsUpAFrame() { return false; }
|
|
|
| @@ -232,7 +232,7 @@ class WriteInt32ToHeapNumberStub : public PlatformCodeStub {
|
| the_heap_number_(the_heap_number),
|
| scratch_(scratch) { }
|
|
|
| - bool IsPregenerated();
|
| + virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE;
|
| static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate);
|
|
|
| private:
|
| @@ -305,7 +305,7 @@ class RecordWriteStub: public PlatformCodeStub {
|
| INCREMENTAL_COMPACTION
|
| };
|
|
|
| - virtual bool IsPregenerated();
|
| + virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE;
|
| static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate);
|
| virtual bool SometimesSetsUpAFrame() { return false; }
|
|
|
| @@ -465,23 +465,6 @@ class RecordWriteStub: public PlatformCodeStub {
|
| };
|
|
|
|
|
| -// Enter C code from generated RegExp code in a way that allows
|
| -// the C code to fix the return address in case of a GC.
|
| -// Currently only needed on ARM.
|
| -class RegExpCEntryStub: public PlatformCodeStub {
|
| - public:
|
| - RegExpCEntryStub() {}
|
| - virtual ~RegExpCEntryStub() {}
|
| - void Generate(MacroAssembler* masm);
|
| -
|
| - private:
|
| - Major MajorKey() { return RegExpCEntry; }
|
| - int MinorKey() { return 0; }
|
| -
|
| - bool NeedsImmovableCode() { return true; }
|
| -};
|
| -
|
| -
|
| // Trampoline stub to call into native code. To call safely into native code
|
| // in the presence of compacting GC (which can move code objects) we need to
|
| // keep the code which called into native pinned in the memory. Currently the
|
|
|