| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { | 554 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { |
| 555 StoreIC::GenerateInitialize(masm); | 555 StoreIC::GenerateInitialize(masm); |
| 556 } | 556 } |
| 557 | 557 |
| 558 | 558 |
| 559 static void Generate_StoreIC_Miss(MacroAssembler* masm) { | 559 static void Generate_StoreIC_Miss(MacroAssembler* masm) { |
| 560 StoreIC::GenerateMiss(masm); | 560 StoreIC::GenerateMiss(masm); |
| 561 } | 561 } |
| 562 | 562 |
| 563 | 563 |
| 564 static void Generate_StoreIC_ExtendStorage(MacroAssembler* masm) { |
| 565 StoreIC::GenerateExtendStorage(masm); |
| 566 } |
| 567 |
| 564 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { | 568 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { |
| 565 StoreIC::GenerateMegamorphic(masm); | 569 StoreIC::GenerateMegamorphic(masm); |
| 566 } | 570 } |
| 567 | 571 |
| 568 | 572 |
| 569 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { | 573 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { |
| 570 KeyedStoreIC::GenerateGeneric(masm); | 574 KeyedStoreIC::GenerateGeneric(masm); |
| 571 } | 575 } |
| 572 | 576 |
| 573 | 577 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 if (entry->contains(pc)) { | 716 if (entry->contains(pc)) { |
| 713 return names_[i]; | 717 return names_[i]; |
| 714 } | 718 } |
| 715 } | 719 } |
| 716 } | 720 } |
| 717 return NULL; | 721 return NULL; |
| 718 } | 722 } |
| 719 | 723 |
| 720 | 724 |
| 721 } } // namespace v8::internal | 725 } } // namespace v8::internal |
| OLD | NEW |