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

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

Issue 1698273003: [es6] [interpreter] Add tail calls support to Ignition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@tco-turbo-2
Patch Set: Fixed Bytecodes::IsCallOrNew() Created 4 years, 10 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/compiler/bytecode-graph-builder.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 {
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 340
341 341
342 // static 342 // static
343 Callable CodeFactory::ConstructFunction(Isolate* isolate) { 343 Callable CodeFactory::ConstructFunction(Isolate* isolate) {
344 return Callable(isolate->builtins()->ConstructFunction(), 344 return Callable(isolate->builtins()->ConstructFunction(),
345 ConstructTrampolineDescriptor(isolate)); 345 ConstructTrampolineDescriptor(isolate));
346 } 346 }
347 347
348 348
349 // static 349 // static
350 Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate) { 350 Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate,
351 return Callable(isolate->builtins()->InterpreterPushArgsAndCall(), 351 TailCallMode tail_call_mode) {
352 InterpreterPushArgsAndCallDescriptor(isolate)); 352 return Callable(
353 isolate->builtins()->InterpreterPushArgsAndCall(tail_call_mode),
354 InterpreterPushArgsAndCallDescriptor(isolate));
353 } 355 }
354 356
355 357
356 // static 358 // static
357 Callable CodeFactory::InterpreterPushArgsAndConstruct(Isolate* isolate) { 359 Callable CodeFactory::InterpreterPushArgsAndConstruct(Isolate* isolate) {
358 return Callable(isolate->builtins()->InterpreterPushArgsAndConstruct(), 360 return Callable(isolate->builtins()->InterpreterPushArgsAndConstruct(),
359 InterpreterPushArgsAndConstructDescriptor(isolate)); 361 InterpreterPushArgsAndConstructDescriptor(isolate));
360 } 362 }
361 363
362 364
363 // static 365 // static
364 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { 366 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
365 // Note: If we ever use fpregs in the interpreter then we will need to 367 // Note: If we ever use fpregs in the interpreter then we will need to
366 // save fpregs too. 368 // save fpregs too.
367 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); 369 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister);
368 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); 370 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate));
369 } 371 }
370 372
371 } // namespace internal 373 } // namespace internal
372 } // namespace v8 374 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/compiler/bytecode-graph-builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698