| 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 void pushad(); | 666 void pushad(); |
| 667 void popad(); | 667 void popad(); |
| 668 | 668 |
| 669 void pushfd(); | 669 void pushfd(); |
| 670 void popfd(); | 670 void popfd(); |
| 671 | 671 |
| 672 void push(const Immediate& x); | 672 void push(const Immediate& x); |
| 673 void push_imm32(int32_t imm32); | 673 void push_imm32(int32_t imm32); |
| 674 void push(Register src); | 674 void push(Register src); |
| 675 void push(const Operand& src); | 675 void push(const Operand& src); |
| 676 void push(Handle<Object> handle); | |
| 677 | 676 |
| 678 void pop(Register dst); | 677 void pop(Register dst); |
| 679 void pop(const Operand& dst); | 678 void pop(const Operand& dst); |
| 680 | 679 |
| 681 void enter(const Immediate& size); | 680 void enter(const Immediate& size); |
| 682 void leave(); | 681 void leave(); |
| 683 | 682 |
| 684 // Moves | 683 // Moves |
| 685 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); } | 684 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); } |
| 686 void mov_b(Register dst, const Operand& src); | 685 void mov_b(Register dst, const Operand& src); |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 private: | 1199 private: |
| 1201 Assembler* assembler_; | 1200 Assembler* assembler_; |
| 1202 #ifdef DEBUG | 1201 #ifdef DEBUG |
| 1203 int space_before_; | 1202 int space_before_; |
| 1204 #endif | 1203 #endif |
| 1205 }; | 1204 }; |
| 1206 | 1205 |
| 1207 } } // namespace v8::internal | 1206 } } // namespace v8::internal |
| 1208 | 1207 |
| 1209 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1208 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |