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

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

Issue 620553002: Provide ia32 intrinsics for bigint add, sub, quotient digit estimation, and (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
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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 551
552 void subl(Register dst, Register src); 552 void subl(Register dst, Register src);
553 void subl(Register reg, const Immediate& imm); 553 void subl(Register reg, const Immediate& imm);
554 void subl(Register reg, const Address& address); 554 void subl(Register reg, const Address& address);
555 void subl(const Address& address, Register reg); 555 void subl(const Address& address, Register reg);
556 556
557 void cdq(); 557 void cdq();
558 558
559 void idivl(Register reg); 559 void idivl(Register reg);
560 560
561 void divl(Register reg);
562
561 void imull(Register dst, Register src); 563 void imull(Register dst, Register src);
562 void imull(Register reg, const Immediate& imm); 564 void imull(Register reg, const Immediate& imm);
563 void imull(Register reg, const Address& address); 565 void imull(Register reg, const Address& address);
564 566
565 void imull(Register reg); 567 void imull(Register reg);
566 void imull(const Address& address); 568 void imull(const Address& address);
567 569
568 void mull(Register reg); 570 void mull(Register reg);
569 void mull(const Address& address); 571 void mull(const Address& address);
570 572
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
948 } 950 }
949 951
950 952
951 inline void Assembler::EmitOperandSizeOverride() { 953 inline void Assembler::EmitOperandSizeOverride() {
952 EmitUint8(0x66); 954 EmitUint8(0x66);
953 } 955 }
954 956
955 } // namespace dart 957 } // namespace dart
956 958
957 #endif // VM_ASSEMBLER_IA32_H_ 959 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698