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

Side by Side Diff: src/isolate.cc

Issue 424743002: Clean up name distinction between Keyed ICs and Element Handlers (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 1982 matching lines...) Expand 10 before | Expand all | Expand 10 after
1993 CompareNilICStub::InstallDescriptors(this); 1993 CompareNilICStub::InstallDescriptors(this);
1994 ToBooleanStub::InstallDescriptors(this); 1994 ToBooleanStub::InstallDescriptors(this);
1995 ToNumberStub::InstallDescriptors(this); 1995 ToNumberStub::InstallDescriptors(this);
1996 ArrayConstructorStubBase::InstallDescriptors(this); 1996 ArrayConstructorStubBase::InstallDescriptors(this);
1997 InternalArrayConstructorStubBase::InstallDescriptors(this); 1997 InternalArrayConstructorStubBase::InstallDescriptors(this);
1998 FastNewClosureStub::InstallDescriptors(this); 1998 FastNewClosureStub::InstallDescriptors(this);
1999 FastNewContextStub::InstallDescriptors(this); 1999 FastNewContextStub::InstallDescriptors(this);
2000 NumberToStringStub::InstallDescriptors(this); 2000 NumberToStringStub::InstallDescriptors(this);
2001 StringAddStub::InstallDescriptors(this); 2001 StringAddStub::InstallDescriptors(this);
2002 RegExpConstructResultStub::InstallDescriptors(this); 2002 RegExpConstructResultStub::InstallDescriptors(this);
2003 KeyedLoadGenericElementStub::InstallDescriptors(this); 2003 KeyedLoadGenericStub::InstallDescriptors(this);
2004 } 2004 }
2005 2005
2006 CallDescriptors::InitializeForIsolate(this); 2006 CallDescriptors::InitializeForIsolate(this);
2007 2007
2008 initialized_from_snapshot_ = (des != NULL); 2008 initialized_from_snapshot_ = (des != NULL);
2009 2009
2010 return true; 2010 return true;
2011 } 2011 }
2012 2012
2013 2013
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
2358 if (prev_ && prev_->Intercept(flag)) return true; 2358 if (prev_ && prev_->Intercept(flag)) return true;
2359 // Then check whether this scope intercepts. 2359 // Then check whether this scope intercepts.
2360 if ((flag & intercept_mask_)) { 2360 if ((flag & intercept_mask_)) {
2361 intercepted_flags_ |= flag; 2361 intercepted_flags_ |= flag;
2362 return true; 2362 return true;
2363 } 2363 }
2364 return false; 2364 return false;
2365 } 2365 }
2366 2366
2367 } } // namespace v8::internal 2367 } } // 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