| Index: src/arm/code-stubs-arm.h
|
| ===================================================================
|
| --- src/arm/code-stubs-arm.h (revision 8110)
|
| +++ src/arm/code-stubs-arm.h (working copy)
|
| @@ -64,6 +64,8 @@
|
|
|
| void Generate(MacroAssembler* masm);
|
|
|
| + virtual bool SometimesSetsUpAFrame() { return false; }
|
| +
|
| private:
|
| Register tos_;
|
| Major MajorKey() { return ToBoolean; }
|
| @@ -637,6 +639,8 @@
|
| Register r0,
|
| Register r1);
|
|
|
| + virtual bool SometimesSetsUpAFrame() { return false; }
|
| +
|
| private:
|
| static const int kInlinedProbes = 4;
|
| static const int kTotalProbes = 20;
|
| @@ -656,7 +660,7 @@
|
| }
|
| #endif
|
|
|
| - Major MajorKey() { return StringDictionaryNegativeLookup; }
|
| + Major MajorKey() { return StringDictionaryLookup; }
|
|
|
| int MinorKey() {
|
| return LookupModeBits::encode(mode_);
|
|
|