OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |