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

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

Issue 1776393004: [wasm] Fixed register allocation for Word32PairShl on arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-add
Patch Set: Rebase Created 4 years, 9 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 case kArmSxtb: 42 case kArmSxtb:
43 case kArmSxth: 43 case kArmSxth:
44 case kArmSxtab: 44 case kArmSxtab:
45 case kArmSxtah: 45 case kArmSxtah:
46 case kArmUxtb: 46 case kArmUxtb:
47 case kArmUxth: 47 case kArmUxth:
48 case kArmUxtab: 48 case kArmUxtab:
49 case kArmUxtah: 49 case kArmUxtah:
50 case kArmRbit: 50 case kArmRbit:
51 case kArmAddPair: 51 case kArmAddPair:
52 case kArmPairLsl: 52 case kArmLslPair:
53 case kArmVcmpF32: 53 case kArmVcmpF32:
54 case kArmVaddF32: 54 case kArmVaddF32:
55 case kArmVsubF32: 55 case kArmVsubF32:
56 case kArmVmulF32: 56 case kArmVmulF32:
57 case kArmVmlaF32: 57 case kArmVmlaF32:
58 case kArmVmlsF32: 58 case kArmVmlsF32:
59 case kArmVdivF32: 59 case kArmVdivF32:
60 case kArmVabsF32: 60 case kArmVabsF32:
61 case kArmVnegF32: 61 case kArmVnegF32:
62 case kArmVsqrtF32: 62 case kArmVsqrtF32:
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 128
129 129
130 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 130 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
131 // TODO(all): Add instruction cost modeling. 131 // TODO(all): Add instruction cost modeling.
132 return 1; 132 return 1;
133 } 133 }
134 134
135 } // namespace compiler 135 } // namespace compiler
136 } // namespace internal 136 } // namespace internal
137 } // namespace v8 137 } // 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