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

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

Issue 836593002: Deletion barrier: Distinguish+verify field initialization in ia32 generated code. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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.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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 void StoreIntoObjectNoBarrier(Register object, 765 void StoreIntoObjectNoBarrier(Register object,
766 const Address& dest, 766 const Address& dest,
767 Register value); 767 Register value);
768 void StoreIntoObjectNoBarrier(Register object, 768 void StoreIntoObjectNoBarrier(Register object,
769 const Address& dest, 769 const Address& dest,
770 const Object& value, 770 const Object& value,
771 Register pp); 771 Register pp);
772 772
773 // Stores a Smi value into a heap object field that always contains a Smi. 773 // Stores a Smi value into a heap object field that always contains a Smi.
774 void StoreIntoSmiField(const Address& dest, Register value); 774 void StoreIntoSmiField(const Address& dest, Register value);
775 void ZeroSmiField(const Address& dest); 775 void ZeroInitSmiField(const Address& dest);
776 // Increments a Smi field. Leaves flags in same state as an 'addq'. 776 // Increments a Smi field. Leaves flags in same state as an 'addq'.
777 void IncrementSmiField(const Address& dest, int64_t increment); 777 void IncrementSmiField(const Address& dest, int64_t increment);
778 778
779 void DoubleNegate(XmmRegister d); 779 void DoubleNegate(XmmRegister d);
780 void FloatNegate(XmmRegister f); 780 void FloatNegate(XmmRegister f);
781 781
782 void DoubleAbs(XmmRegister reg); 782 void DoubleAbs(XmmRegister reg);
783 783
784 void LockCmpxchgq(const Address& address, Register reg) { 784 void LockCmpxchgq(const Address& address, Register reg) {
785 lock(); 785 lock();
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
1198 } 1198 }
1199 1199
1200 1200
1201 inline void Assembler::EmitOperandSizeOverride() { 1201 inline void Assembler::EmitOperandSizeOverride() {
1202 EmitUint8(0x66); 1202 EmitUint8(0x66);
1203 } 1203 }
1204 1204
1205 } // namespace dart 1205 } // namespace dart
1206 1206
1207 #endif // VM_ASSEMBLER_X64_H_ 1207 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « runtime/vm/assembler_ia32.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698