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

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

Issue 1422253003: Add UMULL to ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. 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
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »
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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 void muls(Register rd, Register rn, Register rm, Condition cond = AL); 523 void muls(Register rd, Register rn, Register rm, Condition cond = AL);
524 524
525 // Moved to ARM32::AssemblerARM32::mla() 525 // Moved to ARM32::AssemblerARM32::mla()
526 void mla(Register rd, Register rn, Register rm, Register ra, 526 void mla(Register rd, Register rn, Register rm, Register ra,
527 Condition cond = AL); 527 Condition cond = AL);
528 #endif 528 #endif
529 void mls(Register rd, Register rn, Register rm, Register ra, 529 void mls(Register rd, Register rn, Register rm, Register ra,
530 Condition cond = AL); 530 Condition cond = AL);
531 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, 531 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm,
532 Condition cond = AL); 532 Condition cond = AL);
533 #if 0
534 // Moved to ARM32::AssemblerARM32::umull();
533 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, 535 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm,
534 Condition cond = AL); 536 Condition cond = AL);
537 #endif
535 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, 538 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm,
536 Condition cond = AL); 539 Condition cond = AL);
537 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm, 540 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm,
538 Condition cond = AL); 541 Condition cond = AL);
539 542
540 // Emulation of this instruction uses IP and the condition codes. Therefore, 543 // Emulation of this instruction uses IP and the condition codes. Therefore,
541 // none of the registers can be IP, and the instruction can only be used 544 // none of the registers can be IP, and the instruction can only be used
542 // unconditionally. 545 // unconditionally.
543 void umaal(Register rd_lo, Register rd_hi, Register rn, Register rm); 546 void umaal(Register rd_lo, Register rd_hi, Register rn, Register rm);
544 547
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
1294 Register new_value, 1297 Register new_value,
1295 FieldContent old_content); 1298 FieldContent old_content);
1296 1299
1297 DISALLOW_ALLOCATION(); 1300 DISALLOW_ALLOCATION();
1298 DISALLOW_COPY_AND_ASSIGN(Assembler); 1301 DISALLOW_COPY_AND_ASSIGN(Assembler);
1299 }; 1302 };
1300 1303
1301 } // namespace dart 1304 } // namespace dart
1302 1305
1303 #endif // VM_ASSEMBLER_ARM_H_ 1306 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698