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

Side by Side Diff: src/isolate.cc

Issue 57123002: Reland 21774: Generate KeyedLoadGeneric with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Tweaks Created 6 years, 6 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
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/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 1989 matching lines...) Expand 10 before | Expand all | Expand 10 after
2000 CompareNilICStub::InstallDescriptors(this); 2000 CompareNilICStub::InstallDescriptors(this);
2001 ToBooleanStub::InstallDescriptors(this); 2001 ToBooleanStub::InstallDescriptors(this);
2002 ToNumberStub::InstallDescriptors(this); 2002 ToNumberStub::InstallDescriptors(this);
2003 ArrayConstructorStubBase::InstallDescriptors(this); 2003 ArrayConstructorStubBase::InstallDescriptors(this);
2004 InternalArrayConstructorStubBase::InstallDescriptors(this); 2004 InternalArrayConstructorStubBase::InstallDescriptors(this);
2005 FastNewClosureStub::InstallDescriptors(this); 2005 FastNewClosureStub::InstallDescriptors(this);
2006 FastNewContextStub::InstallDescriptors(this); 2006 FastNewContextStub::InstallDescriptors(this);
2007 NumberToStringStub::InstallDescriptors(this); 2007 NumberToStringStub::InstallDescriptors(this);
2008 StringAddStub::InstallDescriptors(this); 2008 StringAddStub::InstallDescriptors(this);
2009 RegExpConstructResultStub::InstallDescriptors(this); 2009 RegExpConstructResultStub::InstallDescriptors(this);
2010 KeyedLoadGenericElementStub::InstallDescriptors(this);
2010 } 2011 }
2011 2012
2012 CallDescriptors::InitializeForIsolate(this); 2013 CallDescriptors::InitializeForIsolate(this);
2013 2014
2014 initialized_from_snapshot_ = (des != NULL); 2015 initialized_from_snapshot_ = (des != NULL);
2015 2016
2016 return true; 2017 return true;
2017 } 2018 }
2018 2019
2019 2020
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
2333 v8::ToCData<v8::MicrotaskCallback>(callback_info->callback()); 2334 v8::ToCData<v8::MicrotaskCallback>(callback_info->callback());
2334 void* data = v8::ToCData<void*>(callback_info->data()); 2335 void* data = v8::ToCData<void*>(callback_info->data());
2335 callback(data); 2336 callback(data);
2336 } 2337 }
2337 } 2338 }
2338 } 2339 }
2339 } 2340 }
2340 2341
2341 2342
2342 } } // namespace v8::internal 2343 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698