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

Side by Side Diff: src/builtins.cc

Issue 2804029: Implement IC for storing to dictionary case objects.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 5 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/ia32/ic-ia32.cc » ('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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { 1256 static void Generate_StoreIC_Initialize(MacroAssembler* masm) {
1257 StoreIC::GenerateInitialize(masm); 1257 StoreIC::GenerateInitialize(masm);
1258 } 1258 }
1259 1259
1260 1260
1261 static void Generate_StoreIC_Miss(MacroAssembler* masm) { 1261 static void Generate_StoreIC_Miss(MacroAssembler* masm) {
1262 StoreIC::GenerateMiss(masm); 1262 StoreIC::GenerateMiss(masm);
1263 } 1263 }
1264 1264
1265 1265
1266 static void Generate_StoreIC_Normal(MacroAssembler* masm) {
1267 StoreIC::GenerateNormal(masm);
1268 }
1269
1270
1266 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { 1271 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) {
1267 StoreIC::GenerateMegamorphic(masm); 1272 StoreIC::GenerateMegamorphic(masm);
1268 } 1273 }
1269 1274
1270 1275
1271 static void Generate_StoreIC_ArrayLength(MacroAssembler* masm) { 1276 static void Generate_StoreIC_ArrayLength(MacroAssembler* masm) {
1272 StoreIC::GenerateArrayLength(masm); 1277 StoreIC::GenerateArrayLength(masm);
1273 } 1278 }
1274 1279
1275 1280
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
1515 if (entry->contains(pc)) { 1520 if (entry->contains(pc)) {
1516 return names_[i]; 1521 return names_[i];
1517 } 1522 }
1518 } 1523 }
1519 } 1524 }
1520 return NULL; 1525 return NULL;
1521 } 1526 }
1522 1527
1523 1528
1524 } } // namespace v8::internal 1529 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698