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

Side by Side Diff: src/builtins.cc

Issue 6441: - Added fast case for extending the JSObject properties storage.... (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/date-delay.js » ('j') | src/ic.cc » ('J')
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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/date-delay.js » ('j') | src/ic.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698