| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 | 492 |
| 493 void movzx_b(Register dst, const Operand& src); | 493 void movzx_b(Register dst, const Operand& src); |
| 494 | 494 |
| 495 void movzx_w(Register dst, const Operand& src); | 495 void movzx_w(Register dst, const Operand& src); |
| 496 | 496 |
| 497 // Conditional moves | 497 // Conditional moves |
| 498 void cmov(Condition cc, Register dst, int32_t imm32); | 498 void cmov(Condition cc, Register dst, int32_t imm32); |
| 499 void cmov(Condition cc, Register dst, Handle<Object> handle); | 499 void cmov(Condition cc, Register dst, Handle<Object> handle); |
| 500 void cmov(Condition cc, Register dst, const Operand& src); | 500 void cmov(Condition cc, Register dst, const Operand& src); |
| 501 | 501 |
| 502 // Exchange two registers |
| 503 void xchg(Register dst, Register src); |
| 504 |
| 502 // Arithmetics | 505 // Arithmetics |
| 503 void adc(Register dst, int32_t imm32); | 506 void adc(Register dst, int32_t imm32); |
| 504 void adc(Register dst, const Operand& src); | 507 void adc(Register dst, const Operand& src); |
| 505 | 508 |
| 506 void add(Register dst, const Operand& src); | 509 void add(Register dst, const Operand& src); |
| 507 void add(const Operand& dst, const Immediate& x); | 510 void add(const Operand& dst, const Immediate& x); |
| 508 | 511 |
| 509 void and_(Register dst, int32_t imm32); | 512 void and_(Register dst, int32_t imm32); |
| 510 void and_(Register dst, const Operand& src); | 513 void and_(Register dst, const Operand& src); |
| 511 void and_(const Operand& src, Register dst); | 514 void and_(const Operand& src, Register dst); |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 private: | 842 private: |
| 840 Assembler* assembler_; | 843 Assembler* assembler_; |
| 841 #ifdef DEBUG | 844 #ifdef DEBUG |
| 842 int space_before_; | 845 int space_before_; |
| 843 #endif | 846 #endif |
| 844 }; | 847 }; |
| 845 | 848 |
| 846 } } // namespace v8::internal | 849 } } // namespace v8::internal |
| 847 | 850 |
| 848 #endif // V8_ASSEMBLER_IA32_H_ | 851 #endif // V8_ASSEMBLER_IA32_H_ |
| OLD | NEW |