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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 void LoadIC::ClearInlinedVersion(Address address) {} | 496 void LoadIC::ClearInlinedVersion(Address address) {} |
497 bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) { | 497 bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) { |
498 return false; | 498 return false; |
499 } | 499 } |
500 | 500 |
501 void KeyedLoadIC::ClearInlinedVersion(Address address) {} | 501 void KeyedLoadIC::ClearInlinedVersion(Address address) {} |
502 bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) { | 502 bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) { |
503 return false; | 503 return false; |
504 } | 504 } |
505 | 505 |
| 506 void KeyedStoreIC::ClearInlinedVersion(Address address) {} |
| 507 void KeyedStoreIC::RestoreInlinedVersion(Address address) {} |
| 508 bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) { |
| 509 return false; |
| 510 } |
| 511 |
506 | 512 |
507 Object* KeyedLoadIC_Miss(Arguments args); | 513 Object* KeyedLoadIC_Miss(Arguments args); |
508 | 514 |
509 | 515 |
510 void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { | 516 void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { |
511 Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss))); | 517 Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss))); |
512 } | 518 } |
513 | 519 |
514 | 520 |
515 void KeyedLoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) { | 521 void KeyedLoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) { |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 | 794 |
789 // Perform tail call to the entry. | 795 // Perform tail call to the entry. |
790 __ TailCallRuntime(f, 3); | 796 __ TailCallRuntime(f, 3); |
791 } | 797 } |
792 | 798 |
793 | 799 |
794 #undef __ | 800 #undef __ |
795 | 801 |
796 | 802 |
797 } } // namespace v8::internal | 803 } } // namespace v8::internal |
OLD | NEW |