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

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

Issue 10451026: More intrinsification x64: array index load and store. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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 | runtime/vm/assembler_x64.cc » ('j') | runtime/vm/assembler_x64_test.cc » ('J')
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_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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 void orq(Register dst, const Immediate& imm); 407 void orq(Register dst, const Immediate& imm);
408 408
409 void xorq(Register dst, Register src); 409 void xorq(Register dst, Register src);
410 410
411 void addl(Register dst, Register src); 411 void addl(Register dst, Register src);
412 void addl(const Address& address, const Immediate& imm); 412 void addl(const Address& address, const Immediate& imm);
413 413
414 void addq(Register dst, Register src); 414 void addq(Register dst, Register src);
415 void addq(Register reg, const Immediate& imm); 415 void addq(Register reg, const Immediate& imm);
416 void addq(const Address& address, const Immediate& imm); 416 void addq(const Address& address, const Immediate& imm);
417 void addq(const Address& address, Register reg);
417 418
418 void subl(Register dst, Register src); 419 void subl(Register dst, Register src);
419 420
420 void cdq(); 421 void cdq();
421 void cqo(); 422 void cqo();
422 423
423 void idivl(Register reg); 424 void idivl(Register reg);
424 void idivq(Register reg); 425 void idivq(Register reg);
425 426
426 void imull(Register dst, Register src); 427 void imull(Register dst, Register src);
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 } 636 }
636 637
637 638
638 inline void Assembler::EmitOperandSizeOverride() { 639 inline void Assembler::EmitOperandSizeOverride() {
639 EmitUint8(0x66); 640 EmitUint8(0x66);
640 } 641 }
641 642
642 } // namespace dart 643 } // namespace dart
643 644
644 #endif // VM_ASSEMBLER_X64_H_ 645 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_x64.cc » ('j') | runtime/vm/assembler_x64_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698