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

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

Issue 11428067: Merge the Merlin heap tracing to top-of-trunk. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: address review comments Created 8 years 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_ia32.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) 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_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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 const FieldAddress& dest, // Where we are storing into. 547 const FieldAddress& dest, // Where we are storing into.
548 Register value); // Value we are storing. 548 Register value); // Value we are storing.
549 549
550 void StoreIntoObjectNoBarrier(Register object, 550 void StoreIntoObjectNoBarrier(Register object,
551 const FieldAddress& dest, 551 const FieldAddress& dest,
552 Register value); 552 Register value);
553 void StoreIntoObjectNoBarrier(Register object, 553 void StoreIntoObjectNoBarrier(Register object,
554 const FieldAddress& dest, 554 const FieldAddress& dest,
555 const Object& value); 555 const Object& value);
556 556
557 void TraceStoreIntoObject(Register object,
558 const FieldAddress& dest,
559 Register value);
560
557 void DoubleNegate(XmmRegister d); 561 void DoubleNegate(XmmRegister d);
558 void FloatNegate(XmmRegister f); 562 void FloatNegate(XmmRegister f);
559 563
560 void DoubleAbs(XmmRegister reg); 564 void DoubleAbs(XmmRegister reg);
561 565
562 void LockCmpxchgl(const Address& address, Register reg) { 566 void LockCmpxchgl(const Address& address, Register reg) {
563 lock(); 567 lock();
564 cmpxchgl(address, reg); 568 cmpxchgl(address, reg);
565 } 569 }
566 570
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 } 701 }
698 702
699 703
700 inline void Assembler::EmitOperandSizeOverride() { 704 inline void Assembler::EmitOperandSizeOverride() {
701 EmitUint8(0x66); 705 EmitUint8(0x66);
702 } 706 }
703 707
704 } // namespace dart 708 } // namespace dart
705 709
706 #endif // VM_ASSEMBLER_IA32_H_ 710 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698