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

Unified Diff: src/stub-cache.cc

Issue 494153002: Avoid one repeated property lookup when computing store ICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: src/stub-cache.cc
diff --git a/src/stub-cache.cc b/src/stub-cache.cc
index 4a7a7a69a0802f1c105818029846144fec3d1e11..98547e7174adc6f5cadb463167f8d1ab26910abf 100644
--- a/src/stub-cache.cc
+++ b/src/stub-cache.cc
@@ -1007,8 +1007,8 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreTransition(
}
-Handle<Code> NamedStoreHandlerCompiler::CompileStoreField(LookupResult* lookup,
- Handle<Name> name) {
+Handle<Code> NamedStoreHandlerCompiler::CompileStoreField(
+ LookupIterator* lookup, Handle<Name> name) {
Label miss;
GenerateStoreField(lookup, value(), &miss);
__ bind(&miss);
« src/lookup.h ('K') | « src/stub-cache.h ('k') | src/x64/stub-cache-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698