| Index: src/mips64/code-stubs-mips64.h
|
| diff --git a/src/mips64/code-stubs-mips64.h b/src/mips64/code-stubs-mips64.h
|
| index cff511f026a87a621399265b19b67d5a36bd9456..87ebdd6fdc2abbb4256c10853225d652a195fc81 100644
|
| --- a/src/mips64/code-stubs-mips64.h
|
| +++ b/src/mips64/code-stubs-mips64.h
|
| @@ -79,7 +79,7 @@ class StoreRegistersStateStub: public PlatformCodeStub {
|
|
|
| static void GenerateAheadOfTime(Isolate* isolate);
|
| private:
|
| - Major MajorKey() const { return StoreRegistersState; }
|
| + virtual inline Major MajorKey() const FINAL OVERRIDE;
|
| uint32_t MinorKey() const { return 0; }
|
|
|
| void Generate(MacroAssembler* masm);
|
| @@ -92,7 +92,7 @@ class RestoreRegistersStateStub: public PlatformCodeStub {
|
|
|
| static void GenerateAheadOfTime(Isolate* isolate);
|
| private:
|
| - Major MajorKey() const { return RestoreRegistersState; }
|
| + virtual inline Major MajorKey() const FINAL OVERRIDE;
|
| uint32_t MinorKey() const { return 0; }
|
|
|
| void Generate(MacroAssembler* masm);
|
| @@ -120,7 +120,7 @@ class WriteInt32ToHeapNumberStub : public PlatformCodeStub {
|
| static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate);
|
|
|
| private:
|
| - Major MajorKey() const { return WriteInt32ToHeapNumber; }
|
| + virtual inline Major MajorKey() const FINAL OVERRIDE;
|
|
|
| void Generate(MacroAssembler* masm);
|
|
|
| @@ -300,7 +300,7 @@ class RecordWriteStub: public PlatformCodeStub {
|
| kUpdateRememberedSetOnNoNeedToInformIncrementalMarker
|
| };
|
|
|
| - Major MajorKey() const { return RecordWrite; }
|
| + virtual inline Major MajorKey() const FINAL OVERRIDE;
|
|
|
| void Generate(MacroAssembler* masm);
|
| void GenerateIncremental(MacroAssembler* masm, Mode mode);
|
| @@ -359,7 +359,7 @@ class DirectCEntryStub: public PlatformCodeStub {
|
| void GenerateCall(MacroAssembler* masm, Register target);
|
|
|
| private:
|
| - Major MajorKey() const { return DirectCEntry; }
|
| + virtual inline Major MajorKey() const FINAL OVERRIDE;
|
|
|
| bool NeedsImmovableCode() { return true; }
|
|
|
| @@ -408,7 +408,7 @@ class NameDictionaryLookupStub: public PlatformCodeStub {
|
| NameDictionary::kHeaderSize +
|
| NameDictionary::kElementsStartIndex * kPointerSize;
|
|
|
| - Major MajorKey() const { return NameDictionaryLookup; }
|
| + virtual inline Major MajorKey() const FINAL OVERRIDE;
|
|
|
| LookupMode mode() const { return LookupModeBits::decode(minor_key_); }
|
|
|
|
|