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

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

Issue 821123003: Simplify double to bigint conversion. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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
« runtime/lib/bigint.dart ('K') | « runtime/vm/object.cc ('k') | no next file » | 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) 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_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 V(Error, "Error") \ 141 V(Error, "Error") \
142 V(ApiError, "ApiError") \ 142 V(ApiError, "ApiError") \
143 V(LanguageError, "LanguageError") \ 143 V(LanguageError, "LanguageError") \
144 V(UnhandledException, "UnhandledException") \ 144 V(UnhandledException, "UnhandledException") \
145 V(UnwindError, "UnwindError") \ 145 V(UnwindError, "UnwindError") \
146 V(IntegerImplementation, "_IntegerImplementation") \ 146 V(IntegerImplementation, "_IntegerImplementation") \
147 V(Number, "num") \ 147 V(Number, "num") \
148 V(_Smi, "_Smi") \ 148 V(_Smi, "_Smi") \
149 V(_Mint, "_Mint") \ 149 V(_Mint, "_Mint") \
150 V(_Bigint, "_Bigint") \ 150 V(_Bigint, "_Bigint") \
151 V(_BigintFromDoubleFactory, "_Bigint._fromDouble") \
152 V(_Double, "_Double") \ 151 V(_Double, "_Double") \
153 V(Bool, "bool") \ 152 V(Bool, "bool") \
154 V(True, "true") \ 153 V(True, "true") \
155 V(False, "false") \ 154 V(False, "false") \
156 V(_List, "_List") \ 155 V(_List, "_List") \
157 V(_ListFactory, "_List.") \ 156 V(_ListFactory, "_List.") \
158 V(_GrowableList, "_GrowableList") \ 157 V(_GrowableList, "_GrowableList") \
159 V(_GrowableListFactory, "_GrowableList.") \ 158 V(_GrowableListFactory, "_GrowableList.") \
160 V(_GrowableListWithData, "_GrowableList.withData") \ 159 V(_GrowableListWithData, "_GrowableList.withData") \
161 V(_ImmutableList, "_ImmutableList") \ 160 V(_ImmutableList, "_ImmutableList") \
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 V(_handleMessage, "_handleMessage") \ 265 V(_handleMessage, "_handleMessage") \
267 V(DotCreate, "._create") \ 266 V(DotCreate, "._create") \
268 V(DotWithType, "._withType") \ 267 V(DotWithType, "._withType") \
269 V(_get, "_get") \ 268 V(_get, "_get") \
270 V(RangeError, "RangeError") \ 269 V(RangeError, "RangeError") \
271 V(ArgumentError, "ArgumentError") \ 270 V(ArgumentError, "ArgumentError") \
272 V(FormatException, "FormatException") \ 271 V(FormatException, "FormatException") \
273 V(UnsupportedError, "UnsupportedError") \ 272 V(UnsupportedError, "UnsupportedError") \
274 V(StackOverflowError, "StackOverflowError") \ 273 V(StackOverflowError, "StackOverflowError") \
275 V(OutOfMemoryError, "OutOfMemoryError") \ 274 V(OutOfMemoryError, "OutOfMemoryError") \
276 V(InternalError, "_InternalError") \
277 V(NullThrownError, "NullThrownError") \ 275 V(NullThrownError, "NullThrownError") \
278 V(IsolateSpawnException, "IsolateSpawnException") \ 276 V(IsolateSpawnException, "IsolateSpawnException") \
279 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 277 V(IsolateUnhandledException, "_IsolateUnhandledException") \
280 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ 278 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
281 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ 279 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \
282 V(_setupFullStackTrace, "_setupFullStackTrace") \ 280 V(_setupFullStackTrace, "_setupFullStackTrace") \
283 V(BooleanExpression, "boolean expression") \ 281 V(BooleanExpression, "boolean expression") \
284 V(Malformed, "malformed") \ 282 V(Malformed, "malformed") \
285 V(Malbounded, "malbounded") \ 283 V(Malbounded, "malbounded") \
286 V(MegamorphicMiss, "megamorphic_miss") \ 284 V(MegamorphicMiss, "megamorphic_miss") \
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 friend class SnapshotReader; 573 friend class SnapshotReader;
576 friend class SnapshotWriter; 574 friend class SnapshotWriter;
577 friend class ApiMessageReader; 575 friend class ApiMessageReader;
578 576
579 DISALLOW_COPY_AND_ASSIGN(Symbols); 577 DISALLOW_COPY_AND_ASSIGN(Symbols);
580 }; 578 };
581 579
582 } // namespace dart 580 } // namespace dart
583 581
584 #endif // VM_SYMBOLS_H_ 582 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/lib/bigint.dart ('K') | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698