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

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

Issue 2719483002: [V8] Rename SIMD Create methods and add initialization operators. (Closed)
Patch Set: Created 3 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
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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 case kArmInt8x16NotEqual: 182 case kArmInt8x16NotEqual:
183 case kArmInt8x16GreaterThan: 183 case kArmInt8x16GreaterThan:
184 case kArmInt8x16GreaterThanOrEqual: 184 case kArmInt8x16GreaterThanOrEqual:
185 case kArmUint8x16ShiftRightByScalar: 185 case kArmUint8x16ShiftRightByScalar:
186 case kArmUint8x16AddSaturate: 186 case kArmUint8x16AddSaturate:
187 case kArmUint8x16SubSaturate: 187 case kArmUint8x16SubSaturate:
188 case kArmUint8x16Min: 188 case kArmUint8x16Min:
189 case kArmUint8x16Max: 189 case kArmUint8x16Max:
190 case kArmUint8x16GreaterThan: 190 case kArmUint8x16GreaterThan:
191 case kArmUint8x16GreaterThanOrEqual: 191 case kArmUint8x16GreaterThanOrEqual:
192 case kArmSimd128Zero:
192 case kArmSimd128And: 193 case kArmSimd128And:
193 case kArmSimd128Or: 194 case kArmSimd128Or:
194 case kArmSimd128Xor: 195 case kArmSimd128Xor:
195 case kArmSimd128Not: 196 case kArmSimd128Not:
196 case kArmSimd32x4Select: 197 case kArmSimd32x4Select:
197 case kArmSimd16x8Select: 198 case kArmSimd16x8Select:
198 case kArmSimd8x16Select: 199 case kArmSimd8x16Select:
199 return kNoOpcodeFlags; 200 return kNoOpcodeFlags;
200 201
201 case kArmVldrF32: 202 case kArmVldrF32:
(...skipping 27 matching lines...) Expand all
229 230
230 231
231 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 232 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
232 // TODO(all): Add instruction cost modeling. 233 // TODO(all): Add instruction cost modeling.
233 return 1; 234 return 1;
234 } 235 }
235 236
236 } // namespace compiler 237 } // namespace compiler
237 } // namespace internal 238 } // namespace internal
238 } // namespace v8 239 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698