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

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

Issue 1925073002: Revert of [turbofan] Run everything after representation selection concurrently. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/builtins.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 {
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 #define SIMD128_ALLOC(TYPE, Type, type, lane_count, lane_type) \ 509 #define SIMD128_ALLOC(TYPE, Type, type, lane_count, lane_type) \
510 Callable CodeFactory::Allocate##Type(Isolate* isolate) { \ 510 Callable CodeFactory::Allocate##Type(Isolate* isolate) { \
511 Allocate##Type##Stub stub(isolate); \ 511 Allocate##Type##Stub stub(isolate); \
512 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); \ 512 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); \
513 } 513 }
514 SIMD128_TYPES(SIMD128_ALLOC) 514 SIMD128_TYPES(SIMD128_ALLOC)
515 #undef SIMD128_ALLOC 515 #undef SIMD128_ALLOC
516 516
517 // static 517 // static
518 Callable CodeFactory::Allocate(Isolate* isolate, PretenureFlag pretenure_flag) { 518 Callable CodeFactory::Allocate(Isolate* isolate, PretenureFlag pretenure_flag) {
519 return Callable(pretenure_flag == NOT_TENURED 519 AllocateStub stub(isolate, pretenure_flag);
520 ? isolate->builtins()->AllocateInNewSpace() 520 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
521 : isolate->builtins()->AllocateInOldSpace(),
522 AllocateDescriptor(isolate));
523 } 521 }
524 522
525 // static 523 // static
526 Callable CodeFactory::ArgumentAdaptor(Isolate* isolate) { 524 Callable CodeFactory::ArgumentAdaptor(Isolate* isolate) {
527 return Callable(isolate->builtins()->ArgumentsAdaptorTrampoline(), 525 return Callable(isolate->builtins()->ArgumentsAdaptorTrampoline(),
528 ArgumentAdaptorDescriptor(isolate)); 526 ArgumentAdaptorDescriptor(isolate));
529 } 527 }
530 528
531 529
532 // static 530 // static
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 // static 575 // static
578 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { 576 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
579 // Note: If we ever use fpregs in the interpreter then we will need to 577 // Note: If we ever use fpregs in the interpreter then we will need to
580 // save fpregs too. 578 // save fpregs too.
581 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); 579 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister);
582 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); 580 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate));
583 } 581 }
584 582
585 } // namespace internal 583 } // namespace internal
586 } // namespace v8 584 } // namespace v8
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698