| 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 void jmp(Label* L); // unconditional jump to L | 669 void jmp(Label* L); // unconditional jump to L |
| 670 void jmp(byte* entry, RelocInfo::Mode rmode); | 670 void jmp(byte* entry, RelocInfo::Mode rmode); |
| 671 void jmp(const Operand& adr); | 671 void jmp(const Operand& adr); |
| 672 void jmp(Handle<Code> code, RelocInfo::Mode rmode); | 672 void jmp(Handle<Code> code, RelocInfo::Mode rmode); |
| 673 | 673 |
| 674 // Conditional jumps | 674 // Conditional jumps |
| 675 void j(Condition cc, Label* L, Hint hint = no_hint); | 675 void j(Condition cc, Label* L, Hint hint = no_hint); |
| 676 void j(Condition cc, byte* entry, RelocInfo::Mode rmode, Hint hint = no_hint); | 676 void j(Condition cc, byte* entry, RelocInfo::Mode rmode, Hint hint = no_hint); |
| 677 void j(Condition cc, Handle<Code> code, Hint hint = no_hint); | 677 void j(Condition cc, Handle<Code> code, Hint hint = no_hint); |
| 678 | 678 |
| 679 // Loop instruction using ecx as counter. | |
| 680 void loope(Label* L); | |
| 681 | |
| 682 // Floating-point operations | 679 // Floating-point operations |
| 683 void fld(int i); | 680 void fld(int i); |
| 684 | 681 |
| 685 void fld1(); | 682 void fld1(); |
| 686 void fldz(); | 683 void fldz(); |
| 687 | 684 |
| 688 void fld_s(const Operand& adr); | 685 void fld_s(const Operand& adr); |
| 689 void fld_d(const Operand& adr); | 686 void fld_d(const Operand& adr); |
| 690 | 687 |
| 691 void fstp_s(const Operand& adr); | 688 void fstp_s(const Operand& adr); |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 private: | 905 private: |
| 909 Assembler* assembler_; | 906 Assembler* assembler_; |
| 910 #ifdef DEBUG | 907 #ifdef DEBUG |
| 911 int space_before_; | 908 int space_before_; |
| 912 #endif | 909 #endif |
| 913 }; | 910 }; |
| 914 | 911 |
| 915 } } // namespace v8::internal | 912 } } // namespace v8::internal |
| 916 | 913 |
| 917 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 914 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |