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

Side by Side Diff: src/ia32/assembler-ia32.h

Issue 8387070: Make non-templatized versions of LIR printing functions. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 1 month 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 | « src/hydrogen-instructions.cc ('k') | src/ia32/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) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 void movsx_w(Register dst, Register src) { movsx_w(dst, Operand(src)); } 706 void movsx_w(Register dst, Register src) { movsx_w(dst, Operand(src)); }
707 void movsx_w(Register dst, const Operand& src); 707 void movsx_w(Register dst, const Operand& src);
708 708
709 void movzx_b(Register dst, Register src) { movzx_b(dst, Operand(src)); } 709 void movzx_b(Register dst, Register src) { movzx_b(dst, Operand(src)); }
710 void movzx_b(Register dst, const Operand& src); 710 void movzx_b(Register dst, const Operand& src);
711 711
712 void movzx_w(Register dst, Register src) { movzx_w(dst, Operand(src)); } 712 void movzx_w(Register dst, Register src) { movzx_w(dst, Operand(src)); }
713 void movzx_w(Register dst, const Operand& src); 713 void movzx_w(Register dst, const Operand& src);
714 714
715 // Conditional moves 715 // Conditional moves
716 void cmov(Condition cc, Register dst, int32_t imm32);
717 void cmov(Condition cc, Register dst, Handle<Object> handle);
718 void cmov(Condition cc, Register dst, Register src) { 716 void cmov(Condition cc, Register dst, Register src) {
719 cmov(cc, dst, Operand(src)); 717 cmov(cc, dst, Operand(src));
720 } 718 }
721 void cmov(Condition cc, Register dst, const Operand& src); 719 void cmov(Condition cc, Register dst, const Operand& src);
722 720
723 // Flag management. 721 // Flag management.
724 void cld(); 722 void cld();
725 723
726 // Repetitive string instructions. 724 // Repetitive string instructions.
727 void rep_movs(); 725 void rep_movs();
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 private: 1199 private:
1202 Assembler* assembler_; 1200 Assembler* assembler_;
1203 #ifdef DEBUG 1201 #ifdef DEBUG
1204 int space_before_; 1202 int space_before_;
1205 #endif 1203 #endif
1206 }; 1204 };
1207 1205
1208 } } // namespace v8::internal 1206 } } // namespace v8::internal
1209 1207
1210 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1208 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698