| 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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 void jmp(byte* entry, RelocInfo::Mode rmode); | 835 void jmp(byte* entry, RelocInfo::Mode rmode); |
| 836 void jmp(Register reg) { jmp(Operand(reg)); } | 836 void jmp(Register reg) { jmp(Operand(reg)); } |
| 837 void jmp(const Operand& adr); | 837 void jmp(const Operand& adr); |
| 838 void jmp(Handle<Code> code, RelocInfo::Mode rmode); | 838 void jmp(Handle<Code> code, RelocInfo::Mode rmode); |
| 839 | 839 |
| 840 // Conditional jumps | 840 // Conditional jumps |
| 841 void j(Condition cc, | 841 void j(Condition cc, |
| 842 Label* L, | 842 Label* L, |
| 843 Label::Distance distance = Label::kFar); | 843 Label::Distance distance = Label::kFar); |
| 844 void j(Condition cc, byte* entry, RelocInfo::Mode rmode); | 844 void j(Condition cc, byte* entry, RelocInfo::Mode rmode); |
| 845 void j(Condition cc, Handle<Code> code); | 845 void j(Condition cc, Handle<Code> code, |
| 846 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET); |
| 846 | 847 |
| 847 // Floating-point operations | 848 // Floating-point operations |
| 848 void fld(int i); | 849 void fld(int i); |
| 849 void fstp(int i); | 850 void fstp(int i); |
| 850 | 851 |
| 851 void fld1(); | 852 void fld1(); |
| 852 void fldz(); | 853 void fldz(); |
| 853 void fldpi(); | 854 void fldpi(); |
| 854 void fldln2(); | 855 void fldln2(); |
| 855 | 856 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 private: | 1093 private: |
| 1093 Assembler* assembler_; | 1094 Assembler* assembler_; |
| 1094 #ifdef DEBUG | 1095 #ifdef DEBUG |
| 1095 int space_before_; | 1096 int space_before_; |
| 1096 #endif | 1097 #endif |
| 1097 }; | 1098 }; |
| 1098 | 1099 |
| 1099 } } // namespace v8::internal | 1100 } } // namespace v8::internal |
| 1100 | 1101 |
| 1101 #endif // V8_X87_ASSEMBLER_X87_H_ | 1102 #endif // V8_X87_ASSEMBLER_X87_H_ |
| OLD | NEW |