| 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 void and_(Register dst, const Operand& src); | 492 void and_(Register dst, const Operand& src); |
| 493 void and_(const Operand& src, Register dst); | 493 void and_(const Operand& src, Register dst); |
| 494 void and_(const Operand& dst, const Immediate& x); | 494 void and_(const Operand& dst, const Immediate& x); |
| 495 | 495 |
| 496 void cmp(Register reg, int32_t imm32); | 496 void cmp(Register reg, int32_t imm32); |
| 497 void cmp(Register reg, Handle<Object> handle); | 497 void cmp(Register reg, Handle<Object> handle); |
| 498 void cmp(Register reg, const Operand& op); | 498 void cmp(Register reg, const Operand& op); |
| 499 void cmp(const Operand& op, const Immediate& imm); | 499 void cmp(const Operand& op, const Immediate& imm); |
| 500 | 500 |
| 501 void rep_cmpsb(); | 501 void rep_cmpsb(); |
| 502 void rep_cmpsw(); | 502 void rep_cmpsl(); |
| 503 | 503 |
| 504 void dec_b(Register dst); | 504 void dec_b(Register dst); |
| 505 | 505 |
| 506 void dec(Register dst); | 506 void dec(Register dst); |
| 507 void dec(const Operand& dst); | 507 void dec(const Operand& dst); |
| 508 | 508 |
| 509 void cdq(); | 509 void cdq(); |
| 510 | 510 |
| 511 void idiv(Register src); | 511 void idiv(Register src); |
| 512 | 512 |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 private: | 815 private: |
| 816 Assembler* assembler_; | 816 Assembler* assembler_; |
| 817 #ifdef DEBUG | 817 #ifdef DEBUG |
| 818 int space_before_; | 818 int space_before_; |
| 819 #endif | 819 #endif |
| 820 }; | 820 }; |
| 821 | 821 |
| 822 } } // namespace v8::internal | 822 } } // namespace v8::internal |
| 823 | 823 |
| 824 #endif // V8_ASSEMBLER_IA32_H_ | 824 #endif // V8_ASSEMBLER_IA32_H_ |
| OLD | NEW |