summaryrefslogtreecommitdiff
path: root/js/src/builtin/BigInt.cpp
blob: 8a630534a833db9746b519644072a1067d67e28f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "builtin/BigInt.h"

#include "jsapi.h"

#include "builtin/TypedObject.h"
#include "gc/Tracer.h"
#include "js/TracingAPI.h"
#include "vm/ArrayBufferObject.h"
#include "vm/BigIntType.h"
#include "vm/SelfHosting.h"
#include "vm/TaggedProto.h"

#include "vm/NativeObject-inl.h"

using namespace js;

static MOZ_ALWAYS_INLINE bool
IsBigInt(HandleValue v)
{
    return v.isBigInt() || (v.isObject() && v.toObject().is<BigIntObject>());
}

static JSObject*
CreateBigIntPrototype(JSContext* cx, JSProtoKey key)
{
    return GlobalObject::createBlankPrototype<PlainObject>(cx, cx->global());
}

// BigInt proposal section 5.1.3
static bool
BigIntConstructor(JSContext* cx, unsigned argc, Value* vp)
{
    CallArgs args = CallArgsFromVp(argc, vp);

    // Step 1.
    if (args.isConstructing()) {
        JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_NOT_CONSTRUCTOR, "BigInt");
        return false;
    }

    // Step 2.
    RootedValue v(cx, args.get(0));
    if (!ToPrimitive(cx, JSTYPE_NUMBER, &v))
        return false;

    // Steps 3-4.
    BigInt* bi = v.isNumber()
                 ? NumberToBigInt(cx, v.toNumber())
                 : ToBigInt(cx, v);
    if (!bi)
        return false;

    args.rval().setBigInt(bi);
    return true;
}

JSObject*
BigIntObject::create(JSContext* cx, HandleBigInt bigInt)
{
    RootedObject obj(cx, NewBuiltinClassInstance(cx, &class_));
    if (!obj)
        return nullptr;
    BigIntObject& bn = obj->as<BigIntObject>();
    bn.setFixedSlot(PRIMITIVE_VALUE_SLOT, BigIntValue(bigInt));
    return &bn;
}

BigInt*
BigIntObject::unbox() const
{
    return getFixedSlot(PRIMITIVE_VALUE_SLOT).toBigInt();
}

// BigInt proposal section 5.3.4
bool
BigIntObject::valueOf_impl(JSContext* cx, const CallArgs& args)
{
    // Step 1.
    HandleValue thisv = args.thisv();
    MOZ_ASSERT(IsBigInt(thisv));
    RootedBigInt bi(cx, thisv.isBigInt()
                        ? thisv.toBigInt()
                        : thisv.toObject().as<BigIntObject>().unbox());

    args.rval().setBigInt(bi);
    return true;
}

bool
BigIntObject::valueOf(JSContext* cx, unsigned argc, Value* vp)
{
    CallArgs args = CallArgsFromVp(argc, vp);
    return CallNonGenericMethod<IsBigInt, valueOf_impl>(cx, args);
}

// BigInt proposal section 5.3.3
bool
BigIntObject::toString_impl(JSContext* cx, const CallArgs& args)
{
    // Step 1.
    HandleValue thisv = args.thisv();
    MOZ_ASSERT(IsBigInt(thisv));
    RootedBigInt bi(cx, thisv.isBigInt()
                        ? thisv.toBigInt()
                        : thisv.toObject().as<BigIntObject>().unbox());

    // Steps 2-3.
    uint8_t radix = 10;

    // Steps 4-5.
    if (args.hasDefined(0)) {
        double d;
        if (!ToInteger(cx, args.get(0), &d))
            return false;
        if (d < 2 || d > 36) {
            JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_BAD_RADIX);
            return false;
        }
        radix = d;
    }

    // Steps 6-7.
    JSLinearString* str = BigInt::toString(cx, bi, radix);
    if (!str)
        return false;
    args.rval().setString(str);
    return true;
}

bool
BigIntObject::toString(JSContext* cx, unsigned argc, Value* vp)
{
    CallArgs args = CallArgsFromVp(argc, vp);
    return CallNonGenericMethod<IsBigInt, toString_impl>(cx, args);
}

// BigInt proposal section 5.2.1. BigInt.asUintN ( bits, bigint )
bool
BigIntObject::asUintN(JSContext* cx, unsigned argc, Value* vp)
{
    CallArgs args = CallArgsFromVp(argc, vp);

    // Step 1.
    uint64_t bits;
    if (!ToIndex(cx, args.get(0), &bits)) {
        return false;
    }

    // Step 2.
    RootedBigInt bi(cx, ToBigInt(cx, args.get(1)));
    if (!bi) {
        return false;
    }

    // Step 3.
    BigInt* res = BigInt::asUintN(cx, bi, bits);
    if (!res) {
        return false;
    }

    args.rval().setBigInt(res);
    return true;
}

// BigInt proposal section 5.2.2. BigInt.asIntN ( bits, bigint )
bool
BigIntObject::asIntN(JSContext* cx, unsigned argc, Value* vp)
{
    CallArgs args = CallArgsFromVp(argc, vp);

    // Step 1.
    uint64_t bits;
    if (!ToIndex(cx, args.get(0), &bits)) {
        return false;
    }

    // Step 2.
    RootedBigInt bi(cx, ToBigInt(cx, args.get(1)));
    if (!bi) {
        return false;
    }

    // Step 3.
    BigInt* res = BigInt::asIntN(cx, bi, bits);
    if (!res) {
        return false;
    }

    args.rval().setBigInt(res);
    return true;
}

const ClassSpec BigIntObject::classSpec_ = {
    GenericCreateConstructor<BigIntConstructor, 1, gc::AllocKind::FUNCTION>,
    CreateBigIntPrototype,
    BigIntObject::staticMethods,
    nullptr,
    BigIntObject::methods,
    BigIntObject::properties
};

const Class BigIntObject::class_ = {
    "BigInt",
    JSCLASS_HAS_CACHED_PROTO(JSProto_BigInt) |
    JSCLASS_HAS_RESERVED_SLOTS(RESERVED_SLOTS),
    JS_NULL_CLASS_OPS,
    &BigIntObject::classSpec_
};

const JSPropertySpec BigIntObject::properties[] = {
    // BigInt proposal section 5.3.5
    JS_STRING_SYM_PS(toStringTag, "BigInt", JSPROP_READONLY),
    JS_PS_END
};

const JSFunctionSpec BigIntObject::methods[] = {
    JS_FN("valueOf", valueOf, 0, 0),
    JS_FN("toString", toString, 0, 0),
    JS_SELF_HOSTED_FN("toLocaleString", "BigInt_toLocaleString", 0, 0),
    JS_FS_END
};

const JSFunctionSpec BigIntObject::staticMethods[] = {
    JS_FN("asUintN", asUintN, 2, 0),
    JS_FN("asIntN", asIntN, 2, 0),
    JS_FS_END
};