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

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

Issue 648613006: Implement bigint absAdd, absSub, mulAdd, sqrAdd, estQuotientDigit intrinsics, (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_ia32.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_IA32_H_ 5 #ifndef VM_ASSEMBLER_IA32_H_
6 #define VM_ASSEMBLER_IA32_H_ 6 #define VM_ASSEMBLER_IA32_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_ia32.h directly; use assembler.h instead. 9 #error Do not include assembler_ia32.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 void decl(const Address& address); 594 void decl(const Address& address);
595 595
596 void shll(Register reg, const Immediate& imm); 596 void shll(Register reg, const Immediate& imm);
597 void shll(Register operand, Register shifter); 597 void shll(Register operand, Register shifter);
598 void shll(const Address& operand, Register shifter); 598 void shll(const Address& operand, Register shifter);
599 void shrl(Register reg, const Immediate& imm); 599 void shrl(Register reg, const Immediate& imm);
600 void shrl(Register operand, Register shifter); 600 void shrl(Register operand, Register shifter);
601 void sarl(Register reg, const Immediate& imm); 601 void sarl(Register reg, const Immediate& imm);
602 void sarl(Register operand, Register shifter); 602 void sarl(Register operand, Register shifter);
603 void sarl(const Address& address, Register shifter); 603 void sarl(const Address& address, Register shifter);
604 void shld(Register dst, Register src); 604 void shldl(Register dst, Register src);
605 void shld(Register dst, Register src, const Immediate& imm); 605 void shldl(Register dst, Register src, const Immediate& imm);
606 void shld(const Address& operand, Register src); 606 void shldl(const Address& operand, Register src);
607 void shrd(Register dst, Register src); 607 void shrdl(Register dst, Register src);
608 void shrd(Register dst, Register src, const Immediate& imm); 608 void shrdl(Register dst, Register src, const Immediate& imm);
609 void shrd(const Address& dst, Register src); 609 void shrdl(const Address& dst, Register src);
610 610
611 void negl(Register reg); 611 void negl(Register reg);
612 void notl(Register reg); 612 void notl(Register reg);
613 613
614 void bsrl(Register dst, Register src); 614 void bsrl(Register dst, Register src);
615 615
616 void bt(Register base, Register offset); 616 void bt(Register base, Register offset);
617 617
618 void enter(const Immediate& imm); 618 void enter(const Immediate& imm);
619 void leave(); 619 void leave();
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
962 } 962 }
963 963
964 964
965 inline void Assembler::EmitOperandSizeOverride() { 965 inline void Assembler::EmitOperandSizeOverride() {
966 EmitUint8(0x66); 966 EmitUint8(0x66);
967 } 967 }
968 968
969 } // namespace dart 969 } // namespace dart
970 970
971 #endif // VM_ASSEMBLER_IA32_H_ 971 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698