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

Side by Side Diff: vm/assembler_ia32.h

Issue 10592006: Rework leaf calls as just simple C calls with a signature and not the NativeArgumentDescriptor. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
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
« no previous file with comments | « no previous file | 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 538
539 void DoubleAbs(XmmRegister reg); 539 void DoubleAbs(XmmRegister reg);
540 540
541 void LockCmpxchgl(const Address& address, Register reg) { 541 void LockCmpxchgl(const Address& address, Register reg) {
542 lock(); 542 lock();
543 cmpxchgl(address, reg); 543 cmpxchgl(address, reg);
544 } 544 }
545 545
546 void EnterFrame(intptr_t frame_space); 546 void EnterFrame(intptr_t frame_space);
547 void LeaveFrame(); 547 void LeaveFrame();
548 void ReserveAlignedFrameSpace(intptr_t frame_space);
548 549
549 void CallRuntime(const RuntimeEntry& entry); 550 void CallRuntime(const RuntimeEntry& entry);
550 551
551 /* 552 /*
552 * Loading and comparing classes of objects. 553 * Loading and comparing classes of objects.
553 */ 554 */
554 void LoadClassId(Register result, Register object); 555 void LoadClassId(Register result, Register object);
555 556
556 void LoadClassById(Register result, Register class_id); 557 void LoadClassById(Register result, Register class_id);
557 558
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 } 665 }
665 666
666 667
667 inline void Assembler::EmitOperandSizeOverride() { 668 inline void Assembler::EmitOperandSizeOverride() {
668 EmitUint8(0x66); 669 EmitUint8(0x66);
669 } 670 }
670 671
671 } // namespace dart 672 } // namespace dart
672 673
673 #endif // VM_ASSEMBLER_IA32_H_ 674 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698