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

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

Issue 732663003: Process two 32-bit digits as one 64-bit digit in bigint absAdd intrinsic on x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/assembler_x64.cc » ('j') | runtime/vm/intrinsifier_x64.cc » ('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 #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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 void addl(const Address& address, Register src); 550 void addl(const Address& address, Register src);
551 void adcl(Register dst, Register src); 551 void adcl(Register dst, Register src);
552 void adcl(Register dst, const Immediate& imm); 552 void adcl(Register dst, const Immediate& imm);
553 void adcl(Register dst, const Address& address); 553 void adcl(Register dst, const Address& address);
554 554
555 void addq(Register dst, Register src); 555 void addq(Register dst, Register src);
556 void addq(Register dst, const Immediate& imm); 556 void addq(Register dst, const Immediate& imm);
557 void addq(Register dst, const Address& address); 557 void addq(Register dst, const Address& address);
558 void addq(const Address& address, const Immediate& imm); 558 void addq(const Address& address, const Immediate& imm);
559 void addq(const Address& address, Register src); 559 void addq(const Address& address, Register src);
560 void adcq(Register dst, Register src);
561 void adcq(Register dst, const Immediate& imm);
562 void adcq(Register dst, const Address& address);
560 563
561 void cdq(); 564 void cdq();
562 void cqo(); 565 void cqo();
563 566
564 void idivl(Register reg); 567 void idivl(Register reg);
565 void divl(Register reg); 568 void divl(Register reg);
566 569
567 void idivq(Register reg); 570 void idivq(Register reg);
568 571
569 void imull(Register dst, Register src); 572 void imull(Register dst, Register src);
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
1156 } 1159 }
1157 1160
1158 1161
1159 inline void Assembler::EmitOperandSizeOverride() { 1162 inline void Assembler::EmitOperandSizeOverride() {
1160 EmitUint8(0x66); 1163 EmitUint8(0x66);
1161 } 1164 }
1162 1165
1163 } // namespace dart 1166 } // namespace dart
1164 1167
1165 #endif // VM_ASSEMBLER_X64_H_ 1168 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_x64.cc » ('j') | runtime/vm/intrinsifier_x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698