| Index: src/builtins.cc
|
| diff --git a/src/builtins.cc b/src/builtins.cc
|
| index 506492f46ef2f1c825b3f21ab616bc8f8a4ab221..2a8e9a7f202326b7231a30ddee8f63753fdb23a3 100644
|
| --- a/src/builtins.cc
|
| +++ b/src/builtins.cc
|
| @@ -1278,17 +1278,12 @@ static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) {
|
|
|
|
|
| static void Generate_LoadIC_Slow(MacroAssembler* masm) {
|
| - LoadIC::GenerateRuntimeGetProperty(masm);
|
| -}
|
| -
|
| -
|
| -static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) {
|
| - KeyedLoadIC::GenerateInitialize(masm);
|
| + NamedLoadHandlerCompiler::GenerateLoadSlow(masm);
|
| }
|
|
|
|
|
| static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) {
|
| - KeyedLoadIC::GenerateRuntimeGetProperty(masm);
|
| + ElementHandlerCompiler::GenerateLoadSlow(masm);
|
| }
|
|
|
|
|
| @@ -1298,7 +1293,12 @@ static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
|
|
|
|
|
| static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) {
|
| - KeyedLoadIC::GenerateMegamorphic(masm);
|
| + KeyedLoadIC::GenerateMegamorphic(masm, Strength::WEAK);
|
| +}
|
| +
|
| +
|
| +static void Generate_KeyedLoadIC_Megamorphic_Strong(MacroAssembler* masm) {
|
| + KeyedLoadIC::GenerateMegamorphic(masm, Strength::STRONG);
|
| }
|
|
|
|
|
|
|