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

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

Issue 384703002: Revert r38116 because of crashes. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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/vm/assembler_ia32_test.cc ('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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 void incq(Register reg); 576 void incq(Register reg);
577 void incq(const Address& address); 577 void incq(const Address& address);
578 void decq(Register reg); 578 void decq(Register reg);
579 void decq(const Address& address); 579 void decq(const Address& address);
580 580
581 void negl(Register reg); 581 void negl(Register reg);
582 void negq(Register reg); 582 void negq(Register reg);
583 void notl(Register reg); 583 void notl(Register reg);
584 void notq(Register reg); 584 void notq(Register reg);
585 585
586 void btq(Register base, Register offset);
587
588 void enter(const Immediate& imm); 586 void enter(const Immediate& imm);
589 void leave(); 587 void leave();
590 void ret(); 588 void ret();
591 589
592 void movmskpd(Register dst, XmmRegister src); 590 void movmskpd(Register dst, XmmRegister src);
593 void movmskps(Register dst, XmmRegister src); 591 void movmskps(Register dst, XmmRegister src);
594 592
595 void sqrtsd(XmmRegister dst, XmmRegister src); 593 void sqrtsd(XmmRegister dst, XmmRegister src);
596 594
597 void xorpd(XmmRegister dst, const Address& src); 595 void xorpd(XmmRegister dst, const Address& src);
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 } 1077 }
1080 1078
1081 1079
1082 inline void Assembler::EmitOperandSizeOverride() { 1080 inline void Assembler::EmitOperandSizeOverride() {
1083 EmitUint8(0x66); 1081 EmitUint8(0x66);
1084 } 1082 }
1085 1083
1086 } // namespace dart 1084 } // namespace dart
1087 1085
1088 #endif // VM_ASSEMBLER_X64_H_ 1086 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « runtime/vm/assembler_ia32_test.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698