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

Side by Side Diff: runtime/vm/intrinsifier_arm.cc

Issue 11227042: isEven, isOdd, isNegative, isMaxValue, isMinValue, isInfinite, isPositive, isSingleValue. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 bool Intrinsifier::Double_mulFromInteger(Assembler* assembler) { 262 bool Intrinsifier::Double_mulFromInteger(Assembler* assembler) {
263 return false; 263 return false;
264 } 264 }
265 265
266 266
267 bool Intrinsifier::Double_fromInteger(Assembler* assembler) { 267 bool Intrinsifier::Double_fromInteger(Assembler* assembler) {
268 return false; 268 return false;
269 } 269 }
270 270
271 271
272 bool Intrinsifier::Double_isNaN(Assembler* assembler) { 272 bool Intrinsifier::Double_getIsNaN(Assembler* assembler) {
273 return false; 273 return false;
274 } 274 }
275 275
276 276
277 bool Intrinsifier::Double_isNegative(Assembler* assembler) { 277 bool Intrinsifier::Double_getIsNegative(Assembler* assembler) {
278 return false; 278 return false;
279 } 279 }
280 280
281 281
282 bool Intrinsifier::Math_sqrt(Assembler* assembler) { 282 bool Intrinsifier::Math_sqrt(Assembler* assembler) {
283 return false; 283 return false;
284 } 284 }
285 285
286 286
287 bool Intrinsifier::Math_sin(Assembler* assembler) { 287 bool Intrinsifier::Math_sin(Assembler* assembler) {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 } 324 }
325 325
326 326
327 bool Intrinsifier::String_isEmpty(Assembler* assembler) { 327 bool Intrinsifier::String_isEmpty(Assembler* assembler) {
328 return false; 328 return false;
329 } 329 }
330 330
331 } // namespace dart 331 } // namespace dart
332 332
333 #endif // defined TARGET_ARCH_ARM 333 #endif // defined TARGET_ARCH_ARM
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698