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

Side by Side Diff: src/IceAssemblerARM32.h

Issue 1665593002: Add VMUL vector instructions to the integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 10 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/DartARM32/assembler_arm.cc ('k') | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceAssemblerARM32.h - Assembler for ARM32 ----*- C++ -*-===// 1 //===- subzero/src/IceAssemblerARM32.h - Assembler for ARM32 ----*- C++ -*-===//
2 // 2 //
3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 // 6 //
7 // Modified by the Subzero authors. 7 // Modified by the Subzero authors.
8 // 8 //
9 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===//
10 // 10 //
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 426
427 void vmlss(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, 427 void vmlss(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm,
428 CondARM32::Cond Cond); 428 CondARM32::Cond Cond);
429 429
430 // Uses APSR_nzcv as register 430 // Uses APSR_nzcv as register
431 void vmrsAPSR_nzcv(CondARM32::Cond Cond); 431 void vmrsAPSR_nzcv(CondARM32::Cond Cond);
432 432
433 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, 433 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm,
434 CondARM32::Cond Cond); 434 CondARM32::Cond Cond);
435 435
436 // Integer vector multiply.
437 void vmulqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQn,
438 const Operand *OpQm);
439
440 // Float vector multiply
Jim Stichnoth 2016/02/02 23:56:56 Either end this fragment with a period, or remove
Karl 2016/02/03 21:27:32 Done.
441 void vmulqf(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm);
442
436 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, 443 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm,
437 CondARM32::Cond Cond); 444 CondARM32::Cond Cond);
438 445
439 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); 446 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn);
440 447
441 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, 448 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs,
442 CondARM32::Cond Cond); 449 CondARM32::Cond Cond);
443 450
444 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, 451 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs,
445 CondARM32::Cond Cond); 452 CondARM32::Cond Cond);
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 669
663 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, 670 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd,
664 const Operand *OpSn, const Operand *OpSm, 671 const Operand *OpSn, const Operand *OpSm,
665 const char *InstName); 672 const char *InstName);
666 }; 673 };
667 674
668 } // end of namespace ARM32 675 } // end of namespace ARM32
669 } // end of namespace Ice 676 } // end of namespace Ice
670 677
671 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 678 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H
OLDNEW
« no previous file with comments | « src/DartARM32/assembler_arm.cc ('k') | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698