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

Side by Side Diff: src/code-factory.cc

Issue 1895093002: Create per-descriptor-index LoadApiGetterStub (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 8 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
« no previous file with comments | « src/code-factory.h ('k') | src/code-stubs.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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/code-factory.h" 5 #include "src/code-factory.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 12
13 13
14 // static 14 // static
15 Callable CodeFactory::LoadIC(Isolate* isolate, TypeofMode typeof_mode) { 15 Callable CodeFactory::LoadIC(Isolate* isolate, TypeofMode typeof_mode) {
16 LoadICTrampolineStub stub(isolate, LoadICState(typeof_mode)); 16 LoadICTrampolineStub stub(isolate, LoadICState(typeof_mode));
17 return Callable(stub.GetCode(), LoadDescriptor(isolate)); 17 return Callable(stub.GetCode(), LoadDescriptor(isolate));
18 } 18 }
19 19
20 // static
21 Callable CodeFactory::ApiGetter(Isolate* isolate) {
22 CallApiGetterStub stub(isolate);
23 return Callable(stub.GetCode(), ApiGetterDescriptor(isolate));
24 }
20 25
21 // static 26 // static
22 Callable CodeFactory::LoadICInOptimizedCode( 27 Callable CodeFactory::LoadICInOptimizedCode(
23 Isolate* isolate, TypeofMode typeof_mode, 28 Isolate* isolate, TypeofMode typeof_mode,
24 InlineCacheState initialization_state) { 29 InlineCacheState initialization_state) {
25 auto code = LoadIC::initialize_stub_in_optimized_code( 30 auto code = LoadIC::initialize_stub_in_optimized_code(
26 isolate, LoadICState(typeof_mode).GetExtraICState(), 31 isolate, LoadICState(typeof_mode).GetExtraICState(),
27 initialization_state); 32 initialization_state);
28 return Callable(code, LoadWithVectorDescriptor(isolate)); 33 return Callable(code, LoadWithVectorDescriptor(isolate));
29 } 34 }
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 // static 563 // static
559 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { 564 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
560 // Note: If we ever use fpregs in the interpreter then we will need to 565 // Note: If we ever use fpregs in the interpreter then we will need to
561 // save fpregs too. 566 // save fpregs too.
562 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); 567 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister);
563 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); 568 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate));
564 } 569 }
565 570
566 } // namespace internal 571 } // namespace internal
567 } // namespace v8 572 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698