| 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 "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
| 8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
| 9 #include "src/cpu-profiler.h" | 9 #include "src/cpu-profiler.h" |
| 10 #include "src/factory.h" | 10 #include "src/factory.h" |
| (...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 | 925 |
| 926 // static | 926 // static |
| 927 void RegExpConstructResultStub::InstallDescriptors(Isolate* isolate) { | 927 void RegExpConstructResultStub::InstallDescriptors(Isolate* isolate) { |
| 928 RegExpConstructResultStub stub(isolate); | 928 RegExpConstructResultStub stub(isolate); |
| 929 InstallDescriptor(isolate, &stub); | 929 InstallDescriptor(isolate, &stub); |
| 930 } | 930 } |
| 931 | 931 |
| 932 | 932 |
| 933 // static | 933 // static |
| 934 void KeyedLoadGenericStub::InstallDescriptors(Isolate* isolate) { | 934 void KeyedLoadGenericStub::InstallDescriptors(Isolate* isolate) { |
| 935 KeyedLoadGenericStub stub(isolate); | 935 KeyedLoadGenericStub stub(isolate, LoadIC::NORMAL_LOOKUP); |
| 936 InstallDescriptor(isolate, &stub); | 936 InstallDescriptor(isolate, &stub); |
| 937 } | 937 } |
| 938 | 938 |
| 939 | 939 |
| 940 // static | 940 // static |
| 941 void StoreFieldStub::InstallDescriptors(Isolate* isolate) { | 941 void StoreFieldStub::InstallDescriptors(Isolate* isolate) { |
| 942 StoreFieldStub stub(isolate, FieldIndex::ForInObjectOffset(0), | 942 StoreFieldStub stub(isolate, FieldIndex::ForInObjectOffset(0), |
| 943 Representation::None()); | 943 Representation::None()); |
| 944 InstallDescriptor(isolate, &stub); | 944 InstallDescriptor(isolate, &stub); |
| 945 } | 945 } |
| (...skipping 30 matching lines...) Expand all Loading... |
| 976 InstallDescriptor(isolate, &stub3); | 976 InstallDescriptor(isolate, &stub3); |
| 977 } | 977 } |
| 978 | 978 |
| 979 InternalArrayConstructorStub::InternalArrayConstructorStub( | 979 InternalArrayConstructorStub::InternalArrayConstructorStub( |
| 980 Isolate* isolate) : PlatformCodeStub(isolate) { | 980 Isolate* isolate) : PlatformCodeStub(isolate) { |
| 981 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 981 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
| 982 } | 982 } |
| 983 | 983 |
| 984 | 984 |
| 985 } } // namespace v8::internal | 985 } } // namespace v8::internal |
| OLD | NEW |