| 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 // Stack | 514 // Stack |
| 515 void pushad(); | 515 void pushad(); |
| 516 void popad(); | 516 void popad(); |
| 517 | 517 |
| 518 void pushfd(); | 518 void pushfd(); |
| 519 void popfd(); | 519 void popfd(); |
| 520 | 520 |
| 521 void push(const Immediate& x); | 521 void push(const Immediate& x); |
| 522 void push(Register src); | 522 void push(Register src); |
| 523 void push(const Operand& src); | 523 void push(const Operand& src); |
| 524 void push(Label* label, RelocInfo::Mode relocation_mode); | |
| 525 | 524 |
| 526 void pop(Register dst); | 525 void pop(Register dst); |
| 527 void pop(const Operand& dst); | 526 void pop(const Operand& dst); |
| 528 | 527 |
| 529 void enter(const Immediate& size); | 528 void enter(const Immediate& size); |
| 530 void leave(); | 529 void leave(); |
| 531 | 530 |
| 532 // Moves | 531 // Moves |
| 533 void mov_b(Register dst, const Operand& src); | 532 void mov_b(Register dst, const Operand& src); |
| 534 void mov_b(const Operand& dst, int8_t imm8); | 533 void mov_b(const Operand& dst, int8_t imm8); |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 972 private: | 971 private: |
| 973 Assembler* assembler_; | 972 Assembler* assembler_; |
| 974 #ifdef DEBUG | 973 #ifdef DEBUG |
| 975 int space_before_; | 974 int space_before_; |
| 976 #endif | 975 #endif |
| 977 }; | 976 }; |
| 978 | 977 |
| 979 } } // namespace v8::internal | 978 } } // namespace v8::internal |
| 980 | 979 |
| 981 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 980 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |