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 | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are 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 1832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1843 | 1843 |
1844 | 1844 |
1845 void Assembler::fucompp() { | 1845 void Assembler::fucompp() { |
1846 EnsureSpace ensure_space(this); | 1846 EnsureSpace ensure_space(this); |
1847 last_pc_ = pc_; | 1847 last_pc_ = pc_; |
1848 EMIT(0xDA); | 1848 EMIT(0xDA); |
1849 EMIT(0xE9); | 1849 EMIT(0xE9); |
1850 } | 1850 } |
1851 | 1851 |
1852 | 1852 |
| 1853 void Assembler::fucomi(int i) { |
| 1854 EnsureSpace ensure_space(this); |
| 1855 last_pc_ = pc_; |
| 1856 EMIT(0xDB); |
| 1857 EMIT(0xE8 + i); |
| 1858 } |
| 1859 |
| 1860 |
1853 void Assembler::fucomip() { | 1861 void Assembler::fucomip() { |
1854 EnsureSpace ensure_space(this); | 1862 EnsureSpace ensure_space(this); |
1855 last_pc_ = pc_; | 1863 last_pc_ = pc_; |
1856 EMIT(0xDF); | 1864 EMIT(0xDF); |
1857 EMIT(0xE9); | 1865 EMIT(0xE9); |
1858 } | 1866 } |
1859 | 1867 |
1860 | 1868 |
1861 void Assembler::fcompp() { | 1869 void Assembler::fcompp() { |
1862 EnsureSpace ensure_space(this); | 1870 EnsureSpace ensure_space(this); |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2266 push_insn[1] = 13; // Skip over coverage insns. | 2274 push_insn[1] = 13; // Skip over coverage insns. |
2267 if (coverage_log != NULL) { | 2275 if (coverage_log != NULL) { |
2268 fprintf(coverage_log, "%s\n", file_line); | 2276 fprintf(coverage_log, "%s\n", file_line); |
2269 fflush(coverage_log); | 2277 fflush(coverage_log); |
2270 } | 2278 } |
2271 } | 2279 } |
2272 | 2280 |
2273 #endif | 2281 #endif |
2274 | 2282 |
2275 } } // namespace v8::internal | 2283 } } // namespace v8::internal |
OLD | NEW |