Index: src/x64/code-stubs-x64.h |
diff --git a/src/x64/code-stubs-x64.h b/src/x64/code-stubs-x64.h |
index 0c35436dd734c0b64c49abb06e634cf797581296..708393118629d44c6fb9143f6d600f5385b1d13c 100644 |
--- a/src/x64/code-stubs-x64.h |
+++ b/src/x64/code-stubs-x64.h |
@@ -26,8 +26,8 @@ class StoreBufferOverflowStub: public PlatformCodeStub { |
private: |
SaveFPRegsMode save_doubles_; |
- Major MajorKey() { return StoreBufferOverflow; } |
- int MinorKey() { return (save_doubles_ == kSaveFPRegs) ? 1 : 0; } |
+ Major MajorKey() const { return StoreBufferOverflow; } |
+ int MinorKey() const { return (save_doubles_ == kSaveFPRegs) ? 1 : 0; } |
}; |
@@ -66,8 +66,8 @@ class SubStringStub: public PlatformCodeStub { |
explicit SubStringStub(Isolate* isolate) : PlatformCodeStub(isolate) {} |
private: |
- Major MajorKey() { return SubString; } |
- int MinorKey() { return 0; } |
+ Major MajorKey() const { return SubString; } |
+ int MinorKey() const { return 0; } |
void Generate(MacroAssembler* masm); |
}; |
@@ -95,8 +95,8 @@ class StringCompareStub: public PlatformCodeStub { |
Register scratch2); |
private: |
- virtual Major MajorKey() { return StringCompare; } |
- virtual int MinorKey() { return 0; } |
+ virtual Major MajorKey() const { return StringCompare; } |
+ virtual int MinorKey() const { return 0; } |
virtual void Generate(MacroAssembler* masm); |
static void GenerateAsciiCharsCompareLoop( |
@@ -156,9 +156,9 @@ class NameDictionaryLookupStub: public PlatformCodeStub { |
NameDictionary::kHeaderSize + |
NameDictionary::kElementsStartIndex * kPointerSize; |
- Major MajorKey() { return NameDictionaryLookup; } |
+ Major MajorKey() const { return NameDictionaryLookup; } |
- int MinorKey() { |
+ int MinorKey() const { |
return DictionaryBits::encode(dictionary_.code()) | |
ResultBits::encode(result_.code()) | |
IndexBits::encode(index_.code()) | |
@@ -387,9 +387,9 @@ class RecordWriteStub: public PlatformCodeStub { |
Mode mode); |
void InformIncrementalMarker(MacroAssembler* masm); |
- Major MajorKey() { return RecordWrite; } |
+ Major MajorKey() const { return RecordWrite; } |
- int MinorKey() { |
+ int MinorKey() const { |
return ObjectBits::encode(object_.code()) | |
ValueBits::encode(value_.code()) | |
AddressBits::encode(address_.code()) | |