| 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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 void pushad(); | 652 void pushad(); |
| 653 void popad(); | 653 void popad(); |
| 654 | 654 |
| 655 void pushfd(); | 655 void pushfd(); |
| 656 void popfd(); | 656 void popfd(); |
| 657 | 657 |
| 658 void push(const Immediate& x); | 658 void push(const Immediate& x); |
| 659 void push_imm32(int32_t imm32); | 659 void push_imm32(int32_t imm32); |
| 660 void push(Register src); | 660 void push(Register src); |
| 661 void push(const Operand& src); | 661 void push(const Operand& src); |
| 662 void push(Handle<Object> handle); |
| 662 | 663 |
| 663 void pop(Register dst); | 664 void pop(Register dst); |
| 664 void pop(const Operand& dst); | 665 void pop(const Operand& dst); |
| 665 | 666 |
| 666 void enter(const Immediate& size); | 667 void enter(const Immediate& size); |
| 667 void leave(); | 668 void leave(); |
| 668 | 669 |
| 669 // Moves | 670 // Moves |
| 670 void mov_b(Register dst, const Operand& src); | 671 void mov_b(Register dst, const Operand& src); |
| 671 void mov_b(const Operand& dst, int8_t imm8); | 672 void mov_b(const Operand& dst, int8_t imm8); |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1135 private: | 1136 private: |
| 1136 Assembler* assembler_; | 1137 Assembler* assembler_; |
| 1137 #ifdef DEBUG | 1138 #ifdef DEBUG |
| 1138 int space_before_; | 1139 int space_before_; |
| 1139 #endif | 1140 #endif |
| 1140 }; | 1141 }; |
| 1141 | 1142 |
| 1142 } } // namespace v8::internal | 1143 } } // namespace v8::internal |
| 1143 | 1144 |
| 1144 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1145 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |