Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: src/ia32/assembler-ia32.cc

Issue 294022: Add optimized ICs for new CanvasArray types. This is a follow-on CL to... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698