Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: src/builtins.cc

Issue 6526: - Fixed Issue 3201: Embedded Google Calendar crashes the renderer... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/builtins.h ('k') | src/ic.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/ic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698