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

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

Issue 1049933002: Implement bigint shift intrinsics on x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 8 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 | « runtime/lib/bigint.dart ('k') | runtime/vm/assembler_x64.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_X64_H_ 5 #ifndef VM_ASSEMBLER_X64_H_
6 #define VM_ASSEMBLER_X64_H_ 6 #define VM_ASSEMBLER_X64_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_x64.h directly; use assembler.h instead. 9 #error Do not include assembler_x64.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 void sarl(Register operand, Register shifter); 620 void sarl(Register operand, Register shifter);
621 void shldl(Register dst, Register src, const Immediate& imm); 621 void shldl(Register dst, Register src, const Immediate& imm);
622 622
623 void shlq(Register reg, const Immediate& imm); 623 void shlq(Register reg, const Immediate& imm);
624 void shlq(Register operand, Register shifter); 624 void shlq(Register operand, Register shifter);
625 void shrq(Register reg, const Immediate& imm); 625 void shrq(Register reg, const Immediate& imm);
626 void shrq(Register operand, Register shifter); 626 void shrq(Register operand, Register shifter);
627 void sarq(Register reg, const Immediate& imm); 627 void sarq(Register reg, const Immediate& imm);
628 void sarq(Register operand, Register shifter); 628 void sarq(Register operand, Register shifter);
629 void shldq(Register dst, Register src, const Immediate& imm); 629 void shldq(Register dst, Register src, const Immediate& imm);
630 void shldq(Register dst, Register src, Register shifter);
631 void shrdq(Register dst, Register src, Register shifter);
630 632
631 void incl(const Address& address); 633 void incl(const Address& address);
632 void decl(const Address& address); 634 void decl(const Address& address);
633 635
634 void incq(Register reg); 636 void incq(Register reg);
635 void incq(const Address& address); 637 void incq(const Address& address);
636 void decq(Register reg); 638 void decq(Register reg);
637 void decq(const Address& address); 639 void decq(const Address& address);
638 640
639 void negl(Register reg); 641 void negl(Register reg);
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 } 1191 }
1190 1192
1191 1193
1192 inline void Assembler::EmitOperandSizeOverride() { 1194 inline void Assembler::EmitOperandSizeOverride() {
1193 EmitUint8(0x66); 1195 EmitUint8(0x66);
1194 } 1196 }
1195 1197
1196 } // namespace dart 1198 } // namespace dart
1197 1199
1198 #endif // VM_ASSEMBLER_X64_H_ 1200 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « runtime/lib/bigint.dart ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698