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

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

Issue 328893002: Begins removing intptr_t from raw object fields. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | « runtime/vm/assembler_arm64.h ('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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 343
344 void popq(Register reg); 344 void popq(Register reg);
345 void popq(const Address& address); 345 void popq(const Address& address);
346 346
347 void setcc(Condition condition, ByteRegister dst); 347 void setcc(Condition condition, ByteRegister dst);
348 348
349 void movl(Register dst, Register src); 349 void movl(Register dst, Register src);
350 void movl(Register dst, const Immediate& imm); 350 void movl(Register dst, const Immediate& imm);
351 void movl(Register dst, const Address& src); 351 void movl(Register dst, const Address& src);
352 void movl(const Address& dst, Register src); 352 void movl(const Address& dst, Register src);
353 void movl(const Address& dst, const Immediate& imm);
353 354
354 void movzxb(Register dst, Register src); 355 void movzxb(Register dst, Register src);
355 void movzxb(Register dst, const Address& src); 356 void movzxb(Register dst, const Address& src);
356 void movsxb(Register dst, Register src); 357 void movsxb(Register dst, Register src);
357 void movsxb(Register dst, const Address& src); 358 void movsxb(Register dst, const Address& src);
358 void movb(Register dst, const Address& src); 359 void movb(Register dst, const Address& src);
359 void movb(const Address& dst, Register src); 360 void movb(const Address& dst, Register src);
360 void movb(const Address& dst, const Immediate& imm); 361 void movb(const Address& dst, const Immediate& imm);
361 362
362 void movzxw(Register dst, Register src); 363 void movzxw(Register dst, Register src);
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 } 1076 }
1076 1077
1077 1078
1078 inline void Assembler::EmitOperandSizeOverride() { 1079 inline void Assembler::EmitOperandSizeOverride() {
1079 EmitUint8(0x66); 1080 EmitUint8(0x66);
1080 } 1081 }
1081 1082
1082 } // namespace dart 1083 } // namespace dart
1083 1084
1084 #endif // VM_ASSEMBLER_X64_H_ 1085 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « runtime/vm/assembler_arm64.h ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698