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

Side by Side Diff: src/mips/ic-mips.cc

Issue 6315004: Truncate rather than round to nearest when performing float-to-integer... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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/ic.cc ('k') | src/mips/stub-cache-mips.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) { 165 void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
166 UNIMPLEMENTED_MIPS(); 166 UNIMPLEMENTED_MIPS();
167 } 167 }
168 168
169 169
170 void KeyedLoadIC::GenerateString(MacroAssembler* masm) { 170 void KeyedLoadIC::GenerateString(MacroAssembler* masm) {
171 UNIMPLEMENTED_MIPS(); 171 UNIMPLEMENTED_MIPS();
172 } 172 }
173 173
174 174
175 void KeyedLoadIC::GenerateExternalArray(MacroAssembler* masm,
176 ExternalArrayType array_type) {
177 UNIMPLEMENTED_MIPS();
178 }
179
180
181 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { 175 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) {
182 UNIMPLEMENTED_MIPS(); 176 UNIMPLEMENTED_MIPS();
183 } 177 }
184 178
185 179
186 void KeyedStoreIC::GenerateExternalArray(MacroAssembler* masm,
187 ExternalArrayType array_type) {
188 UNIMPLEMENTED_MIPS();
189 }
190
191
192 void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) { 180 void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) {
193 UNIMPLEMENTED_MIPS(); 181 UNIMPLEMENTED_MIPS();
194 } 182 }
195 183
196 184
197 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { 185 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
198 UNIMPLEMENTED_MIPS(); 186 UNIMPLEMENTED_MIPS();
199 } 187 }
200 188
201 189
202 void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { 190 void StoreIC::GenerateMegamorphic(MacroAssembler* masm) {
203 UNIMPLEMENTED_MIPS(); 191 UNIMPLEMENTED_MIPS();
204 } 192 }
205 193
206 194
207 void StoreIC::GenerateMiss(MacroAssembler* masm) { 195 void StoreIC::GenerateMiss(MacroAssembler* masm) {
208 UNIMPLEMENTED_MIPS(); 196 UNIMPLEMENTED_MIPS();
209 } 197 }
210 198
211 199
212 void StoreIC::GenerateArrayLength(MacroAssembler* masm) { 200 void StoreIC::GenerateArrayLength(MacroAssembler* masm) {
213 UNIMPLEMENTED_MIPS(); 201 UNIMPLEMENTED_MIPS();
214 } 202 }
215 203
216 #undef __ 204 #undef __
217 205
218 } } // namespace v8::internal 206 } } // namespace v8::internal
219 207
220 #endif // V8_TARGET_ARCH_MIPS 208 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/mips/stub-cache-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698