OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { | 568 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { |
569 StoreIC::GenerateMegamorphic(masm); | 569 StoreIC::GenerateMegamorphic(masm); |
570 } | 570 } |
571 | 571 |
572 | 572 |
573 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { | 573 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { |
574 KeyedStoreIC::GenerateGeneric(masm); | 574 KeyedStoreIC::GenerateGeneric(masm); |
575 } | 575 } |
576 | 576 |
577 | 577 |
| 578 static void Generate_KeyedStoreIC_ExtendStorage(MacroAssembler* masm) { |
| 579 KeyedStoreIC::GenerateExtendStorage(masm); |
| 580 } |
| 581 |
| 582 |
578 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { | 583 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { |
579 KeyedStoreIC::GenerateMiss(masm); | 584 KeyedStoreIC::GenerateMiss(masm); |
580 } | 585 } |
581 | 586 |
582 | 587 |
583 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { | 588 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { |
584 KeyedStoreIC::GenerateInitialize(masm); | 589 KeyedStoreIC::GenerateInitialize(masm); |
585 } | 590 } |
586 | 591 |
587 | 592 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 if (entry->contains(pc)) { | 721 if (entry->contains(pc)) { |
717 return names_[i]; | 722 return names_[i]; |
718 } | 723 } |
719 } | 724 } |
720 } | 725 } |
721 return NULL; | 726 return NULL; |
722 } | 727 } |
723 | 728 |
724 | 729 |
725 } } // namespace v8::internal | 730 } } // namespace v8::internal |
OLD | NEW |