| 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 void cmov(Condition cc, Register dst, int32_t imm32); | 544 void cmov(Condition cc, Register dst, int32_t imm32); |
| 545 void cmov(Condition cc, Register dst, Handle<Object> handle); | 545 void cmov(Condition cc, Register dst, Handle<Object> handle); |
| 546 void cmov(Condition cc, Register dst, const Operand& src); | 546 void cmov(Condition cc, Register dst, const Operand& src); |
| 547 | 547 |
| 548 // Flag management. | 548 // Flag management. |
| 549 void cld(); | 549 void cld(); |
| 550 | 550 |
| 551 // Repetitive string instructions. | 551 // Repetitive string instructions. |
| 552 void rep_movs(); | 552 void rep_movs(); |
| 553 void rep_stos(); | 553 void rep_stos(); |
| 554 void stos(); |
| 554 | 555 |
| 555 // Exchange two registers | 556 // Exchange two registers |
| 556 void xchg(Register dst, Register src); | 557 void xchg(Register dst, Register src); |
| 557 | 558 |
| 558 // Arithmetics | 559 // Arithmetics |
| 559 void adc(Register dst, int32_t imm32); | 560 void adc(Register dst, int32_t imm32); |
| 560 void adc(Register dst, const Operand& src); | 561 void adc(Register dst, const Operand& src); |
| 561 | 562 |
| 562 void add(Register dst, const Operand& src); | 563 void add(Register dst, const Operand& src); |
| 563 void add(const Operand& dst, const Immediate& x); | 564 void add(const Operand& dst, const Immediate& x); |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 private: | 933 private: |
| 933 Assembler* assembler_; | 934 Assembler* assembler_; |
| 934 #ifdef DEBUG | 935 #ifdef DEBUG |
| 935 int space_before_; | 936 int space_before_; |
| 936 #endif | 937 #endif |
| 937 }; | 938 }; |
| 938 | 939 |
| 939 } } // namespace v8::internal | 940 } } // namespace v8::internal |
| 940 | 941 |
| 941 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 942 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |