| Index: src/ia32/code-stubs-ia32.h
|
| diff --git a/src/ia32/code-stubs-ia32.h b/src/ia32/code-stubs-ia32.h
|
| index 082915544c4265125c98fdf36c72f430242f1bcc..14033a9e7374ac09f7616a0ff72d3760928a1b9f 100644
|
| --- a/src/ia32/code-stubs-ia32.h
|
| +++ b/src/ia32/code-stubs-ia32.h
|
| @@ -320,14 +320,14 @@ class NumberToStringStub: public PlatformCodeStub {
|
| };
|
|
|
|
|
| -class StringDictionaryLookupStub: public PlatformCodeStub {
|
| +class NameDictionaryLookupStub: public PlatformCodeStub {
|
| public:
|
| enum LookupMode { POSITIVE_LOOKUP, NEGATIVE_LOOKUP };
|
|
|
| - StringDictionaryLookupStub(Register dictionary,
|
| - Register result,
|
| - Register index,
|
| - LookupMode mode)
|
| + NameDictionaryLookupStub(Register dictionary,
|
| + Register result,
|
| + Register index,
|
| + LookupMode mode)
|
| : dictionary_(dictionary), result_(result), index_(index), mode_(mode) { }
|
|
|
| void Generate(MacroAssembler* masm);
|
| @@ -336,7 +336,7 @@ class StringDictionaryLookupStub: public PlatformCodeStub {
|
| Label* miss,
|
| Label* done,
|
| Register properties,
|
| - Handle<String> name,
|
| + Handle<Name> name,
|
| Register r0);
|
|
|
| static void GeneratePositiveLookup(MacroAssembler* masm,
|
| @@ -354,14 +354,14 @@ class StringDictionaryLookupStub: public PlatformCodeStub {
|
| static const int kTotalProbes = 20;
|
|
|
| static const int kCapacityOffset =
|
| - StringDictionary::kHeaderSize +
|
| - StringDictionary::kCapacityIndex * kPointerSize;
|
| + NameDictionary::kHeaderSize +
|
| + NameDictionary::kCapacityIndex * kPointerSize;
|
|
|
| static const int kElementsStartOffset =
|
| - StringDictionary::kHeaderSize +
|
| - StringDictionary::kElementsStartIndex * kPointerSize;
|
| + NameDictionary::kHeaderSize +
|
| + NameDictionary::kElementsStartIndex * kPointerSize;
|
|
|
| - Major MajorKey() { return StringDictionaryLookup; }
|
| + Major MajorKey() { return NameDictionaryLookup; }
|
|
|
| int MinorKey() {
|
| return DictionaryBits::encode(dictionary_.code()) |
|
|
|