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

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

Issue 10641018: - Remove extra jumps from store barrier on x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 void xorq(Register dst, Register src); 410 void xorq(Register dst, Register src);
411 411
412 void addl(Register dst, Register src); 412 void addl(Register dst, Register src);
413 void addl(const Address& address, const Immediate& imm); 413 void addl(const Address& address, const Immediate& imm);
414 414
415 void addq(Register dst, Register src); 415 void addq(Register dst, Register src);
416 void addq(Register reg, const Immediate& imm); 416 void addq(Register reg, const Immediate& imm);
417 void addq(const Address& address, const Immediate& imm); 417 void addq(const Address& address, const Immediate& imm);
418 void addq(const Address& address, Register reg); 418 void addq(const Address& address, Register reg);
419 419
420 void adcl(Register dst, Register src);
421
420 void subl(Register dst, Register src); 422 void subl(Register dst, Register src);
421 423
422 void cdq(); 424 void cdq();
423 void cqo(); 425 void cqo();
424 426
425 void idivl(Register reg); 427 void idivl(Register reg);
426 void idivq(Register reg); 428 void idivq(Register reg);
427 429
428 void imull(Register dst, Register src); 430 void imull(Register dst, Register src);
429 void imull(Register reg, const Immediate& imm); 431 void imull(Register reg, const Immediate& imm);
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 } 673 }
672 674
673 675
674 inline void Assembler::EmitOperandSizeOverride() { 676 inline void Assembler::EmitOperandSizeOverride() {
675 EmitUint8(0x66); 677 EmitUint8(0x66);
676 } 678 }
677 679
678 } // namespace dart 680 } // namespace dart
679 681
680 #endif // VM_ASSEMBLER_X64_H_ 682 #endif // VM_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698