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

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

Issue 10916082: Make register allocator to disregard constant computation with no uses. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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_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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 402
403 void testl(Register reg1, Register reg2); 403 void testl(Register reg1, Register reg2);
404 void testl(Register reg, const Immediate& imm); 404 void testl(Register reg, const Immediate& imm);
405 405
406 void andl(Register dst, const Immediate& imm); 406 void andl(Register dst, const Immediate& imm);
407 void andl(Register dst, Register src); 407 void andl(Register dst, Register src);
408 408
409 void orl(Register dst, const Immediate& imm); 409 void orl(Register dst, const Immediate& imm);
410 void orl(Register dst, Register src); 410 void orl(Register dst, Register src);
411 411
412 void xorl(Register dst, const Immediate& imm);
412 void xorl(Register dst, Register src); 413 void xorl(Register dst, Register src);
413 414
414 void addl(Register dst, Register src); 415 void addl(Register dst, Register src);
415 void addl(Register reg, const Immediate& imm); 416 void addl(Register reg, const Immediate& imm);
416 void addl(Register reg, const Address& address); 417 void addl(Register reg, const Address& address);
417 418
418 void addl(const Address& address, Register reg); 419 void addl(const Address& address, Register reg);
419 void addl(const Address& address, const Immediate& imm); 420 void addl(const Address& address, const Immediate& imm);
420 421
421 void adcl(Register dst, Register src); 422 void adcl(Register dst, Register src);
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 } 657 }
657 658
658 659
659 inline void Assembler::EmitOperandSizeOverride() { 660 inline void Assembler::EmitOperandSizeOverride() {
660 EmitUint8(0x66); 661 EmitUint8(0x66);
661 } 662 }
662 663
663 } // namespace dart 664 } // namespace dart
664 665
665 #endif // VM_ASSEMBLER_IA32_H_ 666 #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