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

Unified Diff: runtime/vm/bootstrap_natives.h

Issue 509153003: New bigint implementation in the vm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/bootstrap_natives.h
===================================================================
--- runtime/vm/bootstrap_natives.h (revision 40060)
+++ runtime/vm/bootstrap_natives.h (working copy)
@@ -55,9 +55,13 @@
V(Mint_bitNegate, 1) \
V(Mint_bitLength, 1) \
V(Mint_shlFromInt, 2) \
- V(Bigint_bitNegate, 1) \
- V(Bigint_bitLength, 1) \
- V(Bigint_shlFromInt, 2) \
+ V(Bigint_getNeg, 1) \
+ V(Bigint_setNeg, 2) \
+ V(Bigint_getUsed, 1) \
+ V(Bigint_setUsed, 2) \
+ V(Bigint_getDigits, 1) \
+ V(Bigint_setDigits, 2) \
+ V(Bigint_allocate, 1) \
V(Double_getIsNegative, 1) \
V(Double_getIsInfinite, 1) \
V(Double_getIsNaN, 1) \

Powered by Google App Engine
This is Rietveld 408576698