| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 | 552 |
| 553 void add(Register dst, const Operand& src); | 553 void add(Register dst, const Operand& src); |
| 554 void add(const Operand& dst, const Immediate& x); | 554 void add(const Operand& dst, const Immediate& x); |
| 555 | 555 |
| 556 void and_(Register dst, int32_t imm32); | 556 void and_(Register dst, int32_t imm32); |
| 557 void and_(Register dst, const Operand& src); | 557 void and_(Register dst, const Operand& src); |
| 558 void and_(const Operand& src, Register dst); | 558 void and_(const Operand& src, Register dst); |
| 559 void and_(const Operand& dst, const Immediate& x); | 559 void and_(const Operand& dst, const Immediate& x); |
| 560 | 560 |
| 561 void cmpb(const Operand& op, int8_t imm8); | 561 void cmpb(const Operand& op, int8_t imm8); |
| 562 void cmpb(Register src, const Operand& dst); |
| 563 void cmpb(const Operand& dst, Register src); |
| 562 void cmpb_al(const Operand& op); | 564 void cmpb_al(const Operand& op); |
| 563 void cmpw_ax(const Operand& op); | 565 void cmpw_ax(const Operand& op); |
| 564 void cmpw(const Operand& op, Immediate imm16); | 566 void cmpw(const Operand& op, Immediate imm16); |
| 565 void cmp(Register reg, int32_t imm32); | 567 void cmp(Register reg, int32_t imm32); |
| 566 void cmp(Register reg, Handle<Object> handle); | 568 void cmp(Register reg, Handle<Object> handle); |
| 567 void cmp(Register reg, const Operand& op); | 569 void cmp(Register reg, const Operand& op); |
| 568 void cmp(const Operand& op, const Immediate& imm); | 570 void cmp(const Operand& op, const Immediate& imm); |
| 569 void cmp(const Operand& op, Handle<Object> handle); | 571 void cmp(const Operand& op, Handle<Object> handle); |
| 570 | 572 |
| 571 void dec_b(Register dst); | 573 void dec_b(Register dst); |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 private: | 908 private: |
| 907 Assembler* assembler_; | 909 Assembler* assembler_; |
| 908 #ifdef DEBUG | 910 #ifdef DEBUG |
| 909 int space_before_; | 911 int space_before_; |
| 910 #endif | 912 #endif |
| 911 }; | 913 }; |
| 912 | 914 |
| 913 } } // namespace v8::internal | 915 } } // namespace v8::internal |
| 914 | 916 |
| 915 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 917 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |