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

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 1160453003: Fix 23563: double unary- operator unstable for NANs (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: c Created 5 years, 6 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
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 #ifndef VM_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 V(Double_doubleFromInteger, 2) \ 82 V(Double_doubleFromInteger, 2) \
83 V(Double_round, 1) \ 83 V(Double_round, 1) \
84 V(Double_floor, 1) \ 84 V(Double_floor, 1) \
85 V(Double_ceil, 1) \ 85 V(Double_ceil, 1) \
86 V(Double_truncate, 1) \ 86 V(Double_truncate, 1) \
87 V(Double_toInt, 1) \ 87 V(Double_toInt, 1) \
88 V(Double_parse, 3) \ 88 V(Double_parse, 3) \
89 V(Double_toStringAsFixed, 2) \ 89 V(Double_toStringAsFixed, 2) \
90 V(Double_toStringAsExponential, 2) \ 90 V(Double_toStringAsExponential, 2) \
91 V(Double_toStringAsPrecision, 2) \ 91 V(Double_toStringAsPrecision, 2) \
92 V(Double_flipSignBit, 1) \
92 V(JSSyntaxRegExp_factory, 4) \ 93 V(JSSyntaxRegExp_factory, 4) \
93 V(JSSyntaxRegExp_getPattern, 1) \ 94 V(JSSyntaxRegExp_getPattern, 1) \
94 V(JSSyntaxRegExp_getIsMultiLine, 1) \ 95 V(JSSyntaxRegExp_getIsMultiLine, 1) \
95 V(JSSyntaxRegExp_getIsCaseSensitive, 1) \ 96 V(JSSyntaxRegExp_getIsCaseSensitive, 1) \
96 V(JSSyntaxRegExp_getGroupCount, 1) \ 97 V(JSSyntaxRegExp_getGroupCount, 1) \
97 V(JSSyntaxRegExp_ExecuteMatch, 3) \ 98 V(JSSyntaxRegExp_ExecuteMatch, 3) \
98 V(List_allocate, 2) \ 99 V(List_allocate, 2) \
99 V(List_getIndexed, 2) \ 100 V(List_getIndexed, 2) \
100 V(List_setIndexed, 3) \ 101 V(List_setIndexed, 3) \
101 V(List_getLength, 1) \ 102 V(List_getLength, 1) \
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 static void DN_##name(Dart_NativeArguments args); 397 static void DN_##name(Dart_NativeArguments args);
397 398
398 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 399 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
399 400
400 #undef DECLARE_BOOTSTRAP_NATIVE 401 #undef DECLARE_BOOTSTRAP_NATIVE
401 }; 402 };
402 403
403 } // namespace dart 404 } // namespace dart
404 405
405 #endif // VM_BOOTSTRAP_NATIVES_H_ 406 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698