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

Side by Side Diff: src/IceAssemblerARM32.h

Issue 1881623002: Subzero. ARM32. Vector shifts. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixes GPLUSPLUS build Created 4 years, 8 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 // Integer vector multiply. 484 // Integer vector multiply.
485 void vmulqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQn, 485 void vmulqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQn,
486 const Operand *OpQm); 486 const Operand *OpQm);
487 487
488 // Float vector multiply. 488 // Float vector multiply.
489 void vmulqf(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm); 489 void vmulqf(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm);
490 490
491 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, 491 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm,
492 CondARM32::Cond Cond); 492 CondARM32::Cond Cond);
493 493
494 void vnegqs(Type ElmtTy, const Operand *OpQd, const Operand *OpQm);
495
494 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); 496 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn);
495 497
496 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, 498 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs,
497 CondARM32::Cond Cond); 499 CondARM32::Cond Cond);
498 500
499 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, 501 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs,
500 CondARM32::Cond Cond); 502 CondARM32::Cond Cond);
501 503
504 void vshlqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm,
505 const Operand *OpQn);
506
507 void vshlqu(Type ElmtTy, const Operand *OpQd, const Operand *OpQm,
508 const Operand *OpQn);
509
502 void vsqrtd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); 510 void vsqrtd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond);
503 511
504 void vsqrts(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); 512 void vsqrts(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond);
505 513
506 void vstrd(const Operand *OpDd, const Operand *OpAddress, 514 void vstrd(const Operand *OpDd, const Operand *OpAddress,
507 CondARM32::Cond Cond, const TargetInfo &TInfo); 515 CondARM32::Cond Cond, const TargetInfo &TInfo);
508 516
509 void vstrd(const Operand *OpDd, const Operand *OpAddress, 517 void vstrd(const Operand *OpDd, const Operand *OpAddress,
510 CondARM32::Cond Cond, const TargetLowering *Lowering) { 518 CondARM32::Cond Cond, const TargetLowering *Lowering) {
511 const TargetInfo TInfo(Lowering); 519 const TargetInfo TInfo(Lowering);
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 766
759 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, 767 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd,
760 const Operand *OpSn, const Operand *OpSm, 768 const Operand *OpSn, const Operand *OpSm,
761 const char *InstName); 769 const char *InstName);
762 }; 770 };
763 771
764 } // end of namespace ARM32 772 } // end of namespace ARM32
765 } // end of namespace Ice 773 } // end of namespace Ice
766 774
767 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 775 #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