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

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

Issue 2594683002: [Turbofan] Add native ARM support for Simd Float32x4 operations. (Closed)
Patch Set: Created 3 years, 12 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 case kArmFloat32Max: 106 case kArmFloat32Max:
107 case kArmFloat64Max: 107 case kArmFloat64Max:
108 case kArmFloat32Min: 108 case kArmFloat32Min:
109 case kArmFloat64Min: 109 case kArmFloat64Min:
110 case kArmFloat64SilenceNaN: 110 case kArmFloat64SilenceNaN:
111 case kArmFloat32x4Splat: 111 case kArmFloat32x4Splat:
112 case kArmFloat32x4ExtractLane: 112 case kArmFloat32x4ExtractLane:
113 case kArmFloat32x4ReplaceLane: 113 case kArmFloat32x4ReplaceLane:
114 case kArmFloat32x4FromInt32x4: 114 case kArmFloat32x4FromInt32x4:
115 case kArmFloat32x4FromUint32x4: 115 case kArmFloat32x4FromUint32x4:
116 case kArmFloat32x4Abs:
117 case kArmFloat32x4Neg:
116 case kArmFloat32x4Add: 118 case kArmFloat32x4Add:
117 case kArmFloat32x4Sub: 119 case kArmFloat32x4Sub:
120 case kArmFloat32x4Eq:
121 case kArmFloat32x4Ne:
118 case kArmInt32x4Splat: 122 case kArmInt32x4Splat:
119 case kArmInt32x4ExtractLane: 123 case kArmInt32x4ExtractLane:
120 case kArmInt32x4ReplaceLane: 124 case kArmInt32x4ReplaceLane:
121 case kArmInt32x4FromFloat32x4: 125 case kArmInt32x4FromFloat32x4:
122 case kArmUint32x4FromFloat32x4: 126 case kArmUint32x4FromFloat32x4:
123 case kArmInt32x4Add: 127 case kArmInt32x4Add:
124 case kArmInt32x4Sub: 128 case kArmInt32x4Sub:
125 case kArmInt32x4Eq: 129 case kArmInt32x4Eq:
126 case kArmInt32x4Ne: 130 case kArmInt32x4Ne:
127 case kArmSimd32x4Select: 131 case kArmSimd32x4Select:
(...skipping 30 matching lines...) Expand all
158 162
159 163
160 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 164 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
161 // TODO(all): Add instruction cost modeling. 165 // TODO(all): Add instruction cost modeling.
162 return 1; 166 return 1;
163 } 167 }
164 168
165 } // namespace compiler 169 } // namespace compiler
166 } // namespace internal 170 } // namespace internal
167 } // namespace v8 171 } // 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