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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 void cmpb(Register reg, const Operand& op); | 664 void cmpb(Register reg, const Operand& op); |
665 void cmpb(const Operand& op, Register reg); | 665 void cmpb(const Operand& op, Register reg); |
666 void cmpb_al(const Operand& op); | 666 void cmpb_al(const Operand& op); |
667 void cmpw_ax(const Operand& op); | 667 void cmpw_ax(const Operand& op); |
668 void cmpw(const Operand& op, Immediate imm16); | 668 void cmpw(const Operand& op, Immediate imm16); |
669 void cmp(Register reg, int32_t imm32); | 669 void cmp(Register reg, int32_t imm32); |
670 void cmp(Register reg, Handle<Object> handle); | 670 void cmp(Register reg, Handle<Object> handle); |
671 void cmp(Register reg0, Register reg1) { cmp(reg0, Operand(reg1)); } | 671 void cmp(Register reg0, Register reg1) { cmp(reg0, Operand(reg1)); } |
672 void cmp(Register reg, const Operand& op); | 672 void cmp(Register reg, const Operand& op); |
673 void cmp(Register reg, const Immediate& imm) { cmp(Operand(reg), imm); } | 673 void cmp(Register reg, const Immediate& imm) { cmp(Operand(reg), imm); } |
| 674 void cmp(const Operand& op, Register reg); |
674 void cmp(const Operand& op, const Immediate& imm); | 675 void cmp(const Operand& op, const Immediate& imm); |
675 void cmp(const Operand& op, Handle<Object> handle); | 676 void cmp(const Operand& op, Handle<Object> handle); |
676 | 677 |
677 void dec_b(Register dst); | 678 void dec_b(Register dst); |
678 void dec_b(const Operand& dst); | 679 void dec_b(const Operand& dst); |
679 | 680 |
680 void dec(Register dst); | 681 void dec(Register dst); |
681 void dec(const Operand& dst); | 682 void dec(const Operand& dst); |
682 | 683 |
683 void cdq(); | 684 void cdq(); |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1076 Assembler* assembler_; | 1077 Assembler* assembler_; |
1077 #ifdef DEBUG | 1078 #ifdef DEBUG |
1078 int space_before_; | 1079 int space_before_; |
1079 #endif | 1080 #endif |
1080 }; | 1081 }; |
1081 | 1082 |
1082 } // namespace internal | 1083 } // namespace internal |
1083 } // namespace v8 | 1084 } // namespace v8 |
1084 | 1085 |
1085 #endif // V8_X87_ASSEMBLER_X87_H_ | 1086 #endif // V8_X87_ASSEMBLER_X87_H_ |
OLD | NEW |