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

Side by Side Diff: src/IceAssemblerARM32.h

Issue 1460523005: Add MVN (register, immediate) to ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 1 month 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
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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 void movw(const Operand *OpRd, const Operand *OpSrc, CondARM32::Cond Cond); 231 void movw(const Operand *OpRd, const Operand *OpSrc, CondARM32::Cond Cond);
232 232
233 void movt(const Operand *OpRd, const Operand *OpSrc, CondARM32::Cond Cond); 233 void movt(const Operand *OpRd, const Operand *OpSrc, CondARM32::Cond Cond);
234 234
235 void mla(const Operand *OpRd, const Operand *OpRn, const Operand *OpRm, 235 void mla(const Operand *OpRd, const Operand *OpRn, const Operand *OpRm,
236 const Operand *OpRa, CondARM32::Cond Cond); 236 const Operand *OpRa, CondARM32::Cond Cond);
237 237
238 void mul(const Operand *OpRd, const Operand *OpRn, const Operand *OpSrc1, 238 void mul(const Operand *OpRd, const Operand *OpRn, const Operand *OpSrc1,
239 bool SetFlags, CondARM32::Cond Cond); 239 bool SetFlags, CondARM32::Cond Cond);
240 240
241 void mvn(const Operand* OpRd, const Operand *OpScc, CondARM32::Cond Cond);
242
241 void orr(const Operand *OpRd, const Operand *OpRn, const Operand *OpSrc1, 243 void orr(const Operand *OpRd, const Operand *OpRn, const Operand *OpSrc1,
242 bool SetFlags, CondARM32::Cond Cond); 244 bool SetFlags, CondARM32::Cond Cond);
243 245
244 void pop(const Operand *OpRt, CondARM32::Cond Cond); 246 void pop(const Operand *OpRt, CondARM32::Cond Cond);
245 247
246 // Note: Registers is a bitset, where bit n corresponds to register Rn. 248 // Note: Registers is a bitset, where bit n corresponds to register Rn.
247 void popList(const IValueT Registers, CondARM32::Cond Cond); 249 void popList(const IValueT Registers, CondARM32::Cond Cond);
248 250
249 void push(const Operand *OpRt, CondARM32::Cond Cond); 251 void push(const Operand *OpRt, CondARM32::Cond Cond);
250 252
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 // cccc=Cond, xxxxxxx<<21=Opcode, dddd=Rd, s=SetFlags, and 388 // cccc=Cond, xxxxxxx<<21=Opcode, dddd=Rd, s=SetFlags, and
387 // iiiiiiiiiiiiiiii=Imm16. 389 // iiiiiiiiiiiiiiii=Imm16.
388 void emitMovw(IValueT Opcode, IValueT Rd, IValueT Imm16, bool SetFlags, 390 void emitMovw(IValueT Opcode, IValueT Rd, IValueT Imm16, bool SetFlags,
389 CondARM32::Cond Cond); 391 CondARM32::Cond Cond);
390 }; 392 };
391 393
392 } // end of namespace ARM32 394 } // end of namespace ARM32
393 } // end of namespace Ice 395 } // end of namespace Ice
394 396
395 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 397 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698