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

Side by Side Diff: src/compiler/arm/instruction-scheduler-arm.cc

Issue 2101123005: [turbofan] Introduce integer multiplication with overflow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 4 years, 5 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/compiler/arm/instruction-codes-arm.h ('k') | src/compiler/arm/instruction-selector-arm.cc » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/compiler/instruction-scheduler.h" 5 #include "src/compiler/instruction-scheduler.h"
6 6
7 namespace v8 { 7 namespace v8 {
8 namespace internal { 8 namespace internal {
9 namespace compiler { 9 namespace compiler {
10 10
(...skipping 12 matching lines...) Expand all
23 case kArmTst: 23 case kArmTst:
24 case kArmTeq: 24 case kArmTeq:
25 case kArmOrr: 25 case kArmOrr:
26 case kArmEor: 26 case kArmEor:
27 case kArmSub: 27 case kArmSub:
28 case kArmRsb: 28 case kArmRsb:
29 case kArmMul: 29 case kArmMul:
30 case kArmMla: 30 case kArmMla:
31 case kArmMls: 31 case kArmMls:
32 case kArmSmmul: 32 case kArmSmmul:
33 case kArmSmull:
33 case kArmSmmla: 34 case kArmSmmla:
34 case kArmUmull: 35 case kArmUmull:
35 case kArmSdiv: 36 case kArmSdiv:
36 case kArmUdiv: 37 case kArmUdiv:
37 case kArmMov: 38 case kArmMov:
38 case kArmMvn: 39 case kArmMvn:
39 case kArmBfc: 40 case kArmBfc:
40 case kArmUbfx: 41 case kArmUbfx:
41 case kArmSbfx: 42 case kArmSbfx:
42 case kArmSxtb: 43 case kArmSxtb:
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 140
140 141
141 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 142 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
142 // TODO(all): Add instruction cost modeling. 143 // TODO(all): Add instruction cost modeling.
143 return 1; 144 return 1;
144 } 145 }
145 146
146 } // namespace compiler 147 } // namespace compiler
147 } // namespace internal 148 } // namespace internal
148 } // namespace v8 149 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/arm/instruction-codes-arm.h ('k') | src/compiler/arm/instruction-selector-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698