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

Side by Side Diff: src/isolate.cc

Issue 443963002: Always use the StoreFieldStub to do the actual storing. (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ic.cc ('k') | src/stub-cache.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdlib.h> 5 #include <stdlib.h>
6 6
7 #include "src/v8.h" 7 #include "src/v8.h"
8 8
9 #include "src/ast.h" 9 #include "src/ast.h"
10 #include "src/base/platform/platform.h" 10 #include "src/base/platform/platform.h"
(...skipping 1985 matching lines...) Expand 10 before | Expand all | Expand 10 after
1996 ToBooleanStub::InstallDescriptors(this); 1996 ToBooleanStub::InstallDescriptors(this);
1997 ToNumberStub::InstallDescriptors(this); 1997 ToNumberStub::InstallDescriptors(this);
1998 ArrayConstructorStubBase::InstallDescriptors(this); 1998 ArrayConstructorStubBase::InstallDescriptors(this);
1999 InternalArrayConstructorStubBase::InstallDescriptors(this); 1999 InternalArrayConstructorStubBase::InstallDescriptors(this);
2000 FastNewClosureStub::InstallDescriptors(this); 2000 FastNewClosureStub::InstallDescriptors(this);
2001 FastNewContextStub::InstallDescriptors(this); 2001 FastNewContextStub::InstallDescriptors(this);
2002 NumberToStringStub::InstallDescriptors(this); 2002 NumberToStringStub::InstallDescriptors(this);
2003 StringAddStub::InstallDescriptors(this); 2003 StringAddStub::InstallDescriptors(this);
2004 RegExpConstructResultStub::InstallDescriptors(this); 2004 RegExpConstructResultStub::InstallDescriptors(this);
2005 KeyedLoadGenericStub::InstallDescriptors(this); 2005 KeyedLoadGenericStub::InstallDescriptors(this);
2006 StoreFieldStub::InstallDescriptors(this);
2006 } 2007 }
2007 2008
2008 CallDescriptors::InitializeForIsolate(this); 2009 CallDescriptors::InitializeForIsolate(this);
2009 2010
2010 initialized_from_snapshot_ = (des != NULL); 2011 initialized_from_snapshot_ = (des != NULL);
2011 2012
2012 return true; 2013 return true;
2013 } 2014 }
2014 2015
2015 2016
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
2366 if (prev_ && prev_->Intercept(flag)) return true; 2367 if (prev_ && prev_->Intercept(flag)) return true;
2367 // Then check whether this scope intercepts. 2368 // Then check whether this scope intercepts.
2368 if ((flag & intercept_mask_)) { 2369 if ((flag & intercept_mask_)) {
2369 intercepted_flags_ |= flag; 2370 intercepted_flags_ |= flag;
2370 return true; 2371 return true;
2371 } 2372 }
2372 return false; 2373 return false;
2373 } 2374 }
2374 2375
2375 } } // namespace v8::internal 2376 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/stub-cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698