| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |