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

Side by Side Diff: src/DartARM32/assembler_arm.h

Issue 1521133002: Add CLZ instruction to the ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix comment in clz.ll Created 5 years 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 | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | tests_lit/assembler/arm32/clz.ll » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe 5 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe
6 // Please update the (git) revision if we merge changes from Dart. 6 // Please update the (git) revision if we merge changes from Dart.
7 // https://code.google.com/p/dart/wiki/GettingTheSource 7 // https://code.google.com/p/dart/wiki/GettingTheSource
8 8
9 #ifndef VM_ASSEMBLER_ARM_H_ 9 #ifndef VM_ASSEMBLER_ARM_H_
10 #define VM_ASSEMBLER_ARM_H_ 10 #define VM_ASSEMBLER_ARM_H_
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 #endif 506 #endif
507 507
508 #if 0 508 #if 0
509 // Moved to ARM32::IceAssemblerARM32::bic() 509 // Moved to ARM32::IceAssemblerARM32::bic()
510 void bic(Register rd, Register rn, Operand o, Condition cond = AL); 510 void bic(Register rd, Register rn, Operand o, Condition cond = AL);
511 void bics(Register rd, Register rn, Operand o, Condition cond = AL); 511 void bics(Register rd, Register rn, Operand o, Condition cond = AL);
512 512
513 // Moved to ARM32::IceAssemblerARM32::mvn() 513 // Moved to ARM32::IceAssemblerARM32::mvn()
514 void mvn(Register rd, Operand o, Condition cond = AL); 514 void mvn(Register rd, Operand o, Condition cond = AL);
515 void mvns(Register rd, Operand o, Condition cond = AL); 515 void mvns(Register rd, Operand o, Condition cond = AL);
516 #endif
517 516
518 // Miscellaneous data-processing instructions. 517 // Miscellaneous data-processing instructions.
518 // Moved to ARM32::AssemblerARM32::clz()
519 void clz(Register rd, Register rm, Condition cond = AL); 519 void clz(Register rd, Register rm, Condition cond = AL);
520 520
521 // Multiply instructions. 521 // Multiply instructions.
522 #if 0 522
523 // Moved to ARM32::AssemblerARM32::mul() 523 // Moved to ARM32::AssemblerARM32::mul()
524 void mul(Register rd, Register rn, Register rm, Condition cond = AL); 524 void mul(Register rd, Register rn, Register rm, Condition cond = AL);
525 void muls(Register rd, Register rn, Register rm, Condition cond = AL); 525 void muls(Register rd, Register rn, Register rm, Condition cond = AL);
526 526
527 // Moved to ARM32::AssemblerARM32::mla() 527 // Moved to ARM32::AssemblerARM32::mla()
528 void mla(Register rd, Register rn, Register rm, Register ra, 528 void mla(Register rd, Register rn, Register rm, Register ra,
529 Condition cond = AL); 529 Condition cond = AL);
530 #endif 530 #endif
531 void mls(Register rd, Register rn, Register rm, Register ra, 531 void mls(Register rd, Register rn, Register rm, Register ra,
532 Condition cond = AL); 532 Condition cond = AL);
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 // ARM32::AssemblerARM::uxt() (uxtb and uxth). 1321 // ARM32::AssemblerARM::uxt() (uxtb and uxth).
1322 #endif 1322 #endif
1323 1323
1324 DISALLOW_ALLOCATION(); 1324 DISALLOW_ALLOCATION();
1325 DISALLOW_COPY_AND_ASSIGN(Assembler); 1325 DISALLOW_COPY_AND_ASSIGN(Assembler);
1326 }; 1326 };
1327 1327
1328 } // namespace dart 1328 } // namespace dart
1329 1329
1330 #endif // VM_ASSEMBLER_ARM_H_ 1330 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | tests_lit/assembler/arm32/clz.ll » ('J')

Powered by Google App Engine
This is Rietveld 408576698