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

Side by Side Diff: runtime/vm/assembler_arm.h

Issue 638983002: Implement bigint mulAdd and sqrAdd intrinsics on ARM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/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 #ifndef VM_ASSEMBLER_ARM_H_ 5 #ifndef VM_ASSEMBLER_ARM_H_
6 #define VM_ASSEMBLER_ARM_H_ 6 #define VM_ASSEMBLER_ARM_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_arm.h directly; use assembler.h instead. 9 #error Do not include assembler_arm.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 void mls(Register rd, Register rn, Register rm, Register ra, 415 void mls(Register rd, Register rn, Register rm, Register ra,
416 Condition cond = AL); 416 Condition cond = AL);
417 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, 417 void smull(Register rd_lo, Register rd_hi, Register rn, Register rm,
418 Condition cond = AL); 418 Condition cond = AL);
419 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, 419 void umull(Register rd_lo, Register rd_hi, Register rn, Register rm,
420 Condition cond = AL); 420 Condition cond = AL);
421 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm, 421 void smlal(Register rd_lo, Register rd_hi, Register rn, Register rm,
422 Condition cond = AL); 422 Condition cond = AL);
423 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm, 423 void umlal(Register rd_lo, Register rd_hi, Register rn, Register rm,
424 Condition cond = AL); 424 Condition cond = AL);
425 void umaal(Register rd_lo, Register rd_hi, Register rn, Register rm,
426 Condition cond = AL);
425 427
426 // Division instructions. 428 // Division instructions.
427 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL); 429 void sdiv(Register rd, Register rn, Register rm, Condition cond = AL);
428 void udiv(Register rd, Register rn, Register rm, Condition cond = AL); 430 void udiv(Register rd, Register rn, Register rm, Condition cond = AL);
429 431
430 // Load/store instructions. 432 // Load/store instructions.
431 void ldr(Register rd, Address ad, Condition cond = AL); 433 void ldr(Register rd, Address ad, Condition cond = AL);
432 void str(Register rd, Address ad, Condition cond = AL); 434 void str(Register rd, Address ad, Condition cond = AL);
433 435
434 void ldrb(Register rd, Address ad, Condition cond = AL); 436 void ldrb(Register rd, Address ad, Condition cond = AL);
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 Register value, 1023 Register value,
1022 Label* no_update); 1024 Label* no_update);
1023 1025
1024 DISALLOW_ALLOCATION(); 1026 DISALLOW_ALLOCATION();
1025 DISALLOW_COPY_AND_ASSIGN(Assembler); 1027 DISALLOW_COPY_AND_ASSIGN(Assembler);
1026 }; 1028 };
1027 1029
1028 } // namespace dart 1030 } // namespace dart
1029 1031
1030 #endif // VM_ASSEMBLER_ARM_H_ 1032 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698