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

Side by Side Diff: src/compiler/machine-operator.cc

Issue 2729943002: [WASM] Implement remaining F32x4 operations for ARM. (Closed)
Patch Set: Rebase. 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
« no previous file with comments | « src/compiler/machine-operator.h ('k') | src/compiler/opcodes.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/compiler/machine-operator.h" 5 #include "src/compiler/machine-operator.h"
6 6
7 #include "src/base/lazy-instance.h" 7 #include "src/base/lazy-instance.h"
8 #include "src/compiler/opcodes.h" 8 #include "src/compiler/opcodes.h"
9 #include "src/compiler/operator.h" 9 #include "src/compiler/operator.h"
10 10
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 V(Float32x4RecipApprox, Operator::kNoProperties, 1, 0, 1) \ 232 V(Float32x4RecipApprox, Operator::kNoProperties, 1, 0, 1) \
233 V(Float32x4RecipSqrtApprox, Operator::kNoProperties, 1, 0, 1) \ 233 V(Float32x4RecipSqrtApprox, Operator::kNoProperties, 1, 0, 1) \
234 V(Float32x4Add, Operator::kCommutative, 2, 0, 1) \ 234 V(Float32x4Add, Operator::kCommutative, 2, 0, 1) \
235 V(Float32x4Sub, Operator::kNoProperties, 2, 0, 1) \ 235 V(Float32x4Sub, Operator::kNoProperties, 2, 0, 1) \
236 V(Float32x4Mul, Operator::kCommutative, 2, 0, 1) \ 236 V(Float32x4Mul, Operator::kCommutative, 2, 0, 1) \
237 V(Float32x4Div, Operator::kNoProperties, 2, 0, 1) \ 237 V(Float32x4Div, Operator::kNoProperties, 2, 0, 1) \
238 V(Float32x4Min, Operator::kCommutative, 2, 0, 1) \ 238 V(Float32x4Min, Operator::kCommutative, 2, 0, 1) \
239 V(Float32x4Max, Operator::kCommutative, 2, 0, 1) \ 239 V(Float32x4Max, Operator::kCommutative, 2, 0, 1) \
240 V(Float32x4MinNum, Operator::kCommutative, 2, 0, 1) \ 240 V(Float32x4MinNum, Operator::kCommutative, 2, 0, 1) \
241 V(Float32x4MaxNum, Operator::kCommutative, 2, 0, 1) \ 241 V(Float32x4MaxNum, Operator::kCommutative, 2, 0, 1) \
242 V(Float32x4RecipRefine, Operator::kNoProperties, 2, 0, 1) \
243 V(Float32x4RecipSqrtRefine, Operator::kNoProperties, 2, 0, 1) \
242 V(Float32x4Equal, Operator::kCommutative, 2, 0, 1) \ 244 V(Float32x4Equal, Operator::kCommutative, 2, 0, 1) \
243 V(Float32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ 245 V(Float32x4NotEqual, Operator::kCommutative, 2, 0, 1) \
244 V(Float32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ 246 V(Float32x4LessThan, Operator::kNoProperties, 2, 0, 1) \
245 V(Float32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ 247 V(Float32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
246 V(Float32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \
247 V(Float32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
248 V(Float32x4FromInt32x4, Operator::kNoProperties, 1, 0, 1) \ 248 V(Float32x4FromInt32x4, Operator::kNoProperties, 1, 0, 1) \
249 V(Float32x4FromUint32x4, Operator::kNoProperties, 1, 0, 1) \ 249 V(Float32x4FromUint32x4, Operator::kNoProperties, 1, 0, 1) \
250 V(Int32x4Splat, Operator::kNoProperties, 1, 0, 1) \ 250 V(Int32x4Splat, Operator::kNoProperties, 1, 0, 1) \
251 V(Int32x4Neg, Operator::kNoProperties, 1, 0, 1) \ 251 V(Int32x4Neg, Operator::kNoProperties, 1, 0, 1) \
252 V(Int32x4Add, Operator::kCommutative, 2, 0, 1) \ 252 V(Int32x4Add, Operator::kCommutative, 2, 0, 1) \
253 V(Int32x4Sub, Operator::kNoProperties, 2, 0, 1) \ 253 V(Int32x4Sub, Operator::kNoProperties, 2, 0, 1) \
254 V(Int32x4Mul, Operator::kCommutative, 2, 0, 1) \ 254 V(Int32x4Mul, Operator::kCommutative, 2, 0, 1) \
255 V(Int32x4Min, Operator::kCommutative, 2, 0, 1) \ 255 V(Int32x4Min, Operator::kCommutative, 2, 0, 1) \
256 V(Int32x4Max, Operator::kCommutative, 2, 0, 1) \ 256 V(Int32x4Max, Operator::kCommutative, 2, 0, 1) \
257 V(Int32x4Equal, Operator::kCommutative, 2, 0, 1) \ 257 V(Int32x4Equal, Operator::kCommutative, 2, 0, 1) \
258 V(Int32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ 258 V(Int32x4NotEqual, Operator::kCommutative, 2, 0, 1) \
259 V(Int32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ 259 V(Int32x4LessThan, Operator::kNoProperties, 2, 0, 1) \
260 V(Int32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ 260 V(Int32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
261 V(Int32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \
262 V(Int32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
263 V(Int32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \ 261 V(Int32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \
264 V(Uint32x4Min, Operator::kCommutative, 2, 0, 1) \ 262 V(Uint32x4Min, Operator::kCommutative, 2, 0, 1) \
265 V(Uint32x4Max, Operator::kCommutative, 2, 0, 1) \ 263 V(Uint32x4Max, Operator::kCommutative, 2, 0, 1) \
266 V(Uint32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ 264 V(Uint32x4LessThan, Operator::kNoProperties, 2, 0, 1) \
267 V(Uint32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ 265 V(Uint32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
268 V(Uint32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \
269 V(Uint32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
270 V(Uint32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \ 266 V(Uint32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \
271 V(Int16x8Splat, Operator::kNoProperties, 1, 0, 1) \ 267 V(Int16x8Splat, Operator::kNoProperties, 1, 0, 1) \
272 V(Int16x8Neg, Operator::kNoProperties, 1, 0, 1) \ 268 V(Int16x8Neg, Operator::kNoProperties, 1, 0, 1) \
273 V(Int16x8Add, Operator::kCommutative, 2, 0, 1) \ 269 V(Int16x8Add, Operator::kCommutative, 2, 0, 1) \
274 V(Int16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \ 270 V(Int16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \
275 V(Int16x8Sub, Operator::kNoProperties, 2, 0, 1) \ 271 V(Int16x8Sub, Operator::kNoProperties, 2, 0, 1) \
276 V(Int16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \ 272 V(Int16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \
277 V(Int16x8Mul, Operator::kCommutative, 2, 0, 1) \ 273 V(Int16x8Mul, Operator::kCommutative, 2, 0, 1) \
278 V(Int16x8Min, Operator::kCommutative, 2, 0, 1) \ 274 V(Int16x8Min, Operator::kCommutative, 2, 0, 1) \
279 V(Int16x8Max, Operator::kCommutative, 2, 0, 1) \ 275 V(Int16x8Max, Operator::kCommutative, 2, 0, 1) \
280 V(Int16x8Equal, Operator::kCommutative, 2, 0, 1) \ 276 V(Int16x8Equal, Operator::kCommutative, 2, 0, 1) \
281 V(Int16x8NotEqual, Operator::kCommutative, 2, 0, 1) \ 277 V(Int16x8NotEqual, Operator::kCommutative, 2, 0, 1) \
282 V(Int16x8LessThan, Operator::kNoProperties, 2, 0, 1) \ 278 V(Int16x8LessThan, Operator::kNoProperties, 2, 0, 1) \
283 V(Int16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ 279 V(Int16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
284 V(Int16x8GreaterThan, Operator::kNoProperties, 2, 0, 1) \
285 V(Int16x8GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
286 V(Uint16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \ 280 V(Uint16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \
287 V(Uint16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \ 281 V(Uint16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \
288 V(Uint16x8Min, Operator::kCommutative, 2, 0, 1) \ 282 V(Uint16x8Min, Operator::kCommutative, 2, 0, 1) \
289 V(Uint16x8Max, Operator::kCommutative, 2, 0, 1) \ 283 V(Uint16x8Max, Operator::kCommutative, 2, 0, 1) \
290 V(Uint16x8LessThan, Operator::kNoProperties, 2, 0, 1) \ 284 V(Uint16x8LessThan, Operator::kNoProperties, 2, 0, 1) \
291 V(Uint16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ 285 V(Uint16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
292 V(Uint16x8GreaterThan, Operator::kNoProperties, 2, 0, 1) \
293 V(Uint16x8GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
294 V(Int8x16Splat, Operator::kNoProperties, 1, 0, 1) \ 286 V(Int8x16Splat, Operator::kNoProperties, 1, 0, 1) \
295 V(Int8x16Neg, Operator::kNoProperties, 1, 0, 1) \ 287 V(Int8x16Neg, Operator::kNoProperties, 1, 0, 1) \
296 V(Int8x16Add, Operator::kCommutative, 2, 0, 1) \ 288 V(Int8x16Add, Operator::kCommutative, 2, 0, 1) \
297 V(Int8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \ 289 V(Int8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \
298 V(Int8x16Sub, Operator::kNoProperties, 2, 0, 1) \ 290 V(Int8x16Sub, Operator::kNoProperties, 2, 0, 1) \
299 V(Int8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \ 291 V(Int8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \
300 V(Int8x16Mul, Operator::kCommutative, 2, 0, 1) \ 292 V(Int8x16Mul, Operator::kCommutative, 2, 0, 1) \
301 V(Int8x16Min, Operator::kCommutative, 2, 0, 1) \ 293 V(Int8x16Min, Operator::kCommutative, 2, 0, 1) \
302 V(Int8x16Max, Operator::kCommutative, 2, 0, 1) \ 294 V(Int8x16Max, Operator::kCommutative, 2, 0, 1) \
303 V(Int8x16Equal, Operator::kCommutative, 2, 0, 1) \ 295 V(Int8x16Equal, Operator::kCommutative, 2, 0, 1) \
304 V(Int8x16NotEqual, Operator::kCommutative, 2, 0, 1) \ 296 V(Int8x16NotEqual, Operator::kCommutative, 2, 0, 1) \
305 V(Int8x16LessThan, Operator::kNoProperties, 2, 0, 1) \ 297 V(Int8x16LessThan, Operator::kNoProperties, 2, 0, 1) \
306 V(Int8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ 298 V(Int8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
307 V(Int8x16GreaterThan, Operator::kNoProperties, 2, 0, 1) \
308 V(Int8x16GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
309 V(Uint8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \ 299 V(Uint8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \
310 V(Uint8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \ 300 V(Uint8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \
311 V(Uint8x16Min, Operator::kCommutative, 2, 0, 1) \ 301 V(Uint8x16Min, Operator::kCommutative, 2, 0, 1) \
312 V(Uint8x16Max, Operator::kCommutative, 2, 0, 1) \ 302 V(Uint8x16Max, Operator::kCommutative, 2, 0, 1) \
313 V(Uint8x16LessThan, Operator::kNoProperties, 2, 0, 1) \ 303 V(Uint8x16LessThan, Operator::kNoProperties, 2, 0, 1) \
314 V(Uint8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ 304 V(Uint8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
315 V(Uint8x16GreaterThan, Operator::kNoProperties, 2, 0, 1) \
316 V(Uint8x16GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
317 V(Simd128Load, Operator::kNoProperties, 2, 0, 1) \ 305 V(Simd128Load, Operator::kNoProperties, 2, 0, 1) \
318 V(Simd128Load1, Operator::kNoProperties, 2, 0, 1) \ 306 V(Simd128Load1, Operator::kNoProperties, 2, 0, 1) \
319 V(Simd128Load2, Operator::kNoProperties, 2, 0, 1) \ 307 V(Simd128Load2, Operator::kNoProperties, 2, 0, 1) \
320 V(Simd128Load3, Operator::kNoProperties, 2, 0, 1) \ 308 V(Simd128Load3, Operator::kNoProperties, 2, 0, 1) \
321 V(Simd128Store, Operator::kNoProperties, 3, 0, 1) \ 309 V(Simd128Store, Operator::kNoProperties, 3, 0, 1) \
322 V(Simd128Store1, Operator::kNoProperties, 3, 0, 1) \ 310 V(Simd128Store1, Operator::kNoProperties, 3, 0, 1) \
323 V(Simd128Store2, Operator::kNoProperties, 3, 0, 1) \ 311 V(Simd128Store2, Operator::kNoProperties, 3, 0, 1) \
324 V(Simd128Store3, Operator::kNoProperties, 3, 0, 1) \ 312 V(Simd128Store3, Operator::kNoProperties, 3, 0, 1) \
325 V(Simd128Zero, Operator::kNoProperties, 0, 0, 1) \ 313 V(Simd128Zero, Operator::kNoProperties, 0, 0, 1) \
326 V(Simd128And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ 314 V(Simd128And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 return new (zone_) \ 907 return new (zone_) \
920 Operator1<uint32_t>(IrOpcode::kSimd##format##Swizzle, Operator::kPure, \ 908 Operator1<uint32_t>(IrOpcode::kSimd##format##Swizzle, Operator::kPure, \
921 "Swizzle", 2, 0, 0, 1, 0, 0, swizzle); \ 909 "Swizzle", 2, 0, 0, 1, 0, 0, swizzle); \
922 } 910 }
923 SIMD_FORMAT_LIST(SIMD_PERMUTE_OPS) 911 SIMD_FORMAT_LIST(SIMD_PERMUTE_OPS)
924 #undef SIMD_PERMUTE_OPS 912 #undef SIMD_PERMUTE_OPS
925 913
926 } // namespace compiler 914 } // namespace compiler
927 } // namespace internal 915 } // namespace internal
928 } // namespace v8 916 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.h ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698