| Index: src/ia32/code-stubs-ia32.h
|
| ===================================================================
|
| --- src/ia32/code-stubs-ia32.h (revision 8110)
|
| +++ src/ia32/code-stubs-ia32.h (working copy)
|
| @@ -66,6 +66,8 @@
|
|
|
| void Generate(MacroAssembler* masm);
|
|
|
| + virtual bool SometimesSetsUpAFrame() { return false; }
|
| +
|
| private:
|
| Major MajorKey() { return ToBoolean; }
|
| int MinorKey() { return 0; }
|
| @@ -472,6 +474,8 @@
|
| Register r0,
|
| Register r1);
|
|
|
| + virtual bool SometimesSetsUpAFrame() { return false; }
|
| +
|
| private:
|
| static const int kInlinedProbes = 4;
|
| static const int kTotalProbes = 20;
|
| @@ -491,7 +495,7 @@
|
| }
|
| #endif
|
|
|
| - Major MajorKey() { return StringDictionaryNegativeLookup; }
|
| + Major MajorKey() { return StringDictionaryLookup; }
|
|
|
| int MinorKey() {
|
| return DictionaryBits::encode(dictionary_.code()) |
|
|
|