| 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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 | 728 |
| 729 // Moves | 729 // Moves |
| 730 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); } | 730 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); } |
| 731 void mov_b(Register dst, const Operand& src); | 731 void mov_b(Register dst, const Operand& src); |
| 732 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); } | 732 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); } |
| 733 void mov_b(const Operand& dst, int8_t imm8); | 733 void mov_b(const Operand& dst, int8_t imm8); |
| 734 void mov_b(const Operand& dst, Register src); | 734 void mov_b(const Operand& dst, Register src); |
| 735 | 735 |
| 736 void mov_w(Register dst, const Operand& src); | 736 void mov_w(Register dst, const Operand& src); |
| 737 void mov_w(const Operand& dst, Register src); | 737 void mov_w(const Operand& dst, Register src); |
| 738 void mov_w(const Operand& dst, int16_t imm16); |
| 738 | 739 |
| 739 void mov(Register dst, int32_t imm32); | 740 void mov(Register dst, int32_t imm32); |
| 740 void mov(Register dst, const Immediate& x); | 741 void mov(Register dst, const Immediate& x); |
| 741 void mov(Register dst, Handle<Object> handle); | 742 void mov(Register dst, Handle<Object> handle); |
| 742 void mov(Register dst, const Operand& src); | 743 void mov(Register dst, const Operand& src); |
| 743 void mov(Register dst, Register src); | 744 void mov(Register dst, Register src); |
| 744 void mov(const Operand& dst, const Immediate& x); | 745 void mov(const Operand& dst, const Immediate& x); |
| 745 void mov(const Operand& dst, Handle<Object> handle); | 746 void mov(const Operand& dst, Handle<Object> handle); |
| 746 void mov(const Operand& dst, Register src); | 747 void mov(const Operand& dst, Register src); |
| 747 | 748 |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1256 private: | 1257 private: |
| 1257 Assembler* assembler_; | 1258 Assembler* assembler_; |
| 1258 #ifdef DEBUG | 1259 #ifdef DEBUG |
| 1259 int space_before_; | 1260 int space_before_; |
| 1260 #endif | 1261 #endif |
| 1261 }; | 1262 }; |
| 1262 | 1263 |
| 1263 } } // namespace v8::internal | 1264 } } // namespace v8::internal |
| 1264 | 1265 |
| 1265 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1266 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |