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

Side by Side Diff: src/IceAssemblerARM32.h

Issue 1655363002: Add vector VEOR instruction to the integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add DART file. 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 void vcvtus(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); 370 void vcvtus(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond);
371 371
372 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, 372 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm,
373 CondARM32::Cond Cond); 373 CondARM32::Cond Cond);
374 374
375 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, 375 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm,
376 CondARM32::Cond Cond); 376 CondARM32::Cond Cond);
377 377
378 void veord(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm); 378 void veord(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm);
379 379
380 void veorq(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm);
381
380 void vldrd(const Operand *OpDd, const Operand *OpAddress, 382 void vldrd(const Operand *OpDd, const Operand *OpAddress,
381 CondARM32::Cond Cond, const TargetInfo &TInfo); 383 CondARM32::Cond Cond, const TargetInfo &TInfo);
382 384
383 void vldrd(const Operand *OpDd, const Operand *OpAddress, 385 void vldrd(const Operand *OpDd, const Operand *OpAddress,
384 CondARM32::Cond Cond, const TargetLowering *Lowering) { 386 CondARM32::Cond Cond, const TargetLowering *Lowering) {
385 const TargetInfo TInfo(Lowering); 387 const TargetInfo TInfo(Lowering);
386 vldrd(OpDd, OpAddress, Cond, TInfo); 388 vldrd(OpDd, OpAddress, Cond, TInfo);
387 } 389 }
388 390
389 void vldrs(const Operand *OpSd, const Operand *OpAddress, 391 void vldrs(const Operand *OpSd, const Operand *OpAddress,
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 664
663 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, 665 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd,
664 const Operand *OpSn, const Operand *OpSm, 666 const Operand *OpSn, const Operand *OpSm,
665 const char *InstName); 667 const char *InstName);
666 }; 668 };
667 669
668 } // end of namespace ARM32 670 } // end of namespace ARM32
669 } // end of namespace Ice 671 } // end of namespace Ice
670 672
671 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 673 #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