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 1886263004: Subzero. ARM32. Implements vector select. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. 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.h ('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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 336
337 // Integer vector add. 337 // Integer vector add.
338 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, 338 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm,
339 const Operand *OpQn); 339 const Operand *OpQn);
340 340
341 // Float vector add. 341 // Float vector add.
342 void vaddqf(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); 342 void vaddqf(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn);
343 343
344 void vandq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); 344 void vandq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn);
345 345
346 void vbslq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn);
347
346 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); 348 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond);
347 349
348 // Second argument of compare is zero (+0.0). 350 // Second argument of compare is zero (+0.0).
349 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); 351 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond);
350 352
351 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); 353 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond);
352 354
353 // Second argument of compare is zero (+0.0). 355 // Second argument of compare is zero (+0.0).
354 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); 356 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond);
355 357
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 803
802 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, 804 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd,
803 const Operand *OpSn, const Operand *OpSm, 805 const Operand *OpSn, const Operand *OpSm,
804 const char *InstName); 806 const char *InstName);
805 }; 807 };
806 808
807 } // end of namespace ARM32 809 } // end of namespace ARM32
808 } // end of namespace Ice 810 } // end of namespace Ice
809 811
810 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 812 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H
OLDNEW
« no previous file with comments | « src/DartARM32/assembler_arm.h ('k') | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698