arkcompiler_ets_runtime/ecmascript/js_bigint.h
wengchangcheng 99934b9037 add Wextra and Werror in gn args
1. add -Wextra and -Werror to check code format error
2. modify all compiler error

issue: https://gitee.com/openharmony/ark_js_runtime/issues/I4ZDQE

Signed-off-by: wengchangcheng <wengchangcheng@huawei.com>
Change-Id: If5fdd1980494269b4c06bf1bb38a8eba7952adea
2022-03-24 21:45:19 +08:00

138 lines
7.6 KiB
C++

/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ECMASCRIPT_JS_BIGINT_H
#define ECMASCRIPT_JS_BIGINT_H
#include "ecmascript/ecma_macros.h"
#include "ecmascript/js_handle.h"
#include "ecmascript/js_thread.h"
#include "js_object.h"
namespace panda::ecmascript {
enum class Operate : uint32_t { AND = 0, OR, XOR };
enum class Comparestr : uint32_t { EQUAL = 0, GREATER, LESS };
class BigInt : public TaggedObject {
public:
Comparestr static ComString(std::string &a, std::string &b);
static constexpr uint32_t DATEBITS = sizeof(uint32_t) * 8; // 8 : one-bit number of bytes
static constexpr uint32_t MAXBITS = 1024 * 1024; // 1024 * 1024 : Maximum space that can be opened up
static constexpr uint32_t MAXSIZE = MAXBITS / DATEBITS; // the maximum value of size
static constexpr uint32_t MAXOCTALVALUE = 7; // 7 : max octal value
static constexpr uint32_t BINARY = 2; // 2 : binary
static constexpr uint32_t OCTAL = 8; // 8 : octal
static constexpr uint32_t DECIMAL = 10; // 10 : decimal
static constexpr uint32_t HEXADECIMAL = 16; // 16 : hexadecimal
CAST_CHECK(BigInt, IsBigInt);
static JSHandle<BigInt> CreateBigint(JSThread *thread, uint32_t size);
static bool Equal(const JSTaggedValue &x, const JSTaggedValue &y);
static bool SameValue(const JSTaggedValue &x, const JSTaggedValue &y);
static bool SameValueZero(const JSTaggedValue &x, const JSTaggedValue &y);
static void InitializationZero(JSThread *thread, JSHandle<BigInt> bigint);
static JSHandle<BigInt> BitwiseOp(JSThread *thread, Operate op, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> BitwiseAND(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> BitwiseXOR(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> BitwiseOR(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> BitwiseSubOne(JSThread *thread, JSHandle<BigInt> bigint, uint32_t maxLen);
static JSHandle<BigInt> BitwiseAddOne(JSThread *thread, JSHandle<BigInt> bigint);
static JSHandle<EcmaString> ToString(JSThread *thread, JSHandle<BigInt> bigint,
uint32_t conversionToRadix = BigInt::DECIMAL);
std::string ToStdString(uint32_t conversionToRadix) const;
static JSHandle<BigInt> UnaryMinus(JSThread *thread, JSHandle<BigInt> x);
static JSHandle<BigInt> BitwiseNOT(JSThread *thread, JSHandle<BigInt> x);
static JSHandle<BigInt> Exponentiate(JSThread *thread, JSHandle<BigInt> base, JSHandle<BigInt> exponent);
static JSHandle<BigInt> Multiply(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> Divide(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> Remainder(JSThread *thread, JSHandle<BigInt> n, JSHandle<BigInt> d);
static JSHandle<BigInt> BigintAddOne(JSThread *thread, JSHandle<BigInt> x);
static JSHandle<BigInt> BigintSubOne(JSThread *thread, JSHandle<BigInt> x);
static JSHandle<BigInt> Copy(JSThread *thread, JSHandle<BigInt> x);
static JSHandle<BigInt> Add(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> Subtract(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static bool LessThan(const JSTaggedValue &x, const JSTaggedValue &y);
static ComparisonResult Compare(const JSTaggedValue &x, const JSTaggedValue &y);
static JSHandle<BigInt> SignedRightShift(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> RightShiftHelper(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSTaggedValue UnsignedRightShift(JSThread *thread);
static JSHandle<BigInt> LeftShift(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> LeftShiftHelper(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static JSHandle<BigInt> BigintAdd(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y, bool resultSign);
static JSHandle<BigInt> BigintSub(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y, bool resultSign);
static JSTaggedValue NumberToBigInt(JSThread *thread, JSHandle<JSTaggedValue> number);
static JSHandle<BigInt> Int32ToBigInt(JSThread *thread, const int &number);
static JSHandle<BigInt> Int64ToBigInt(JSThread *thread, const int64_t &number);
static JSHandle<BigInt> Uint64ToBigInt(JSThread *thread, const uint64_t &number);
static void BigIntToInt64(JSThread *thread, JSHandle<JSTaggedValue> bigint, int64_t *cValue, bool *lossless);
static void BigIntToUint64(JSThread *thread, JSHandle<JSTaggedValue> bigint, uint64_t *cValue, bool *lossless);
static JSHandle<BigInt> CreateBigWords(JSThread *thread, bool sign, uint32_t size, const uint64_t* words);
static JSHandle<BigInt> FloorMod(JSThread *thread, JSHandle<BigInt> leftVal, JSHandle<BigInt> rightVal);
static JSTaggedValue AsUintN(JSThread *thread, JSTaggedNumber &bits, JSHandle<BigInt> bigint);
static JSTaggedValue AsintN(JSThread *thread, JSTaggedNumber &bits, JSHandle<BigInt> bigint);
static JSTaggedNumber BigIntToNumber(JSHandle<BigInt> bigint);
static ComparisonResult CompareWithNumber(JSHandle<BigInt> bigint, JSHandle<JSTaggedValue> number);
inline bool IsZero()
{
return GetLength() == 1 && !GetDigit(0);
}
uint32_t GetDigit(uint32_t index) const;
static void SetDigit(JSThread* thread, JSHandle<BigInt> bigint, uint32_t index, uint32_t digit);
uint32_t GetLength() const;
static constexpr size_t DATA_OFFSET = TaggedObjectSize();
ACCESSORS(Data, DATA_OFFSET, BIT_FIELD_OFFSET);
ACCESSORS_BIT_FIELD(BitField, BIT_FIELD_OFFSET, LAST_OFFSET)
DEFINE_ALIGN_SIZE(LAST_OFFSET);
// define BitField
static constexpr size_t SIGN_BITS = 1;
FIRST_BIT_FIELD(BitField, Sign, bool, SIGN_BITS)
DECL_VISIT_OBJECT(DATA_OFFSET, BIT_FIELD_OFFSET)
DECL_DUMP()
private:
static bool Equal(const BigInt *x, const BigInt *y);
static bool LessThan(const BigInt *x, const BigInt *y);
};
class BigIntHelper {
public:
static std::string Conversion(const std::string &num, uint32_t conversionToRadix, uint32_t currentRadix);
static JSHandle<BigInt> SetBigInt(JSThread *thread, const std::string &numStr,
uint32_t currentRadix = BigInt::DECIMAL);
static std::string GetBinary(const BigInt *bigint);
static JSHandle<BigInt> RightTruncate(JSThread *thread, JSHandle<BigInt> x);
static JSHandle<BigInt> DivideImpl(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
static std::string MultiplyImpl(std::string &a, std::string &b);
static std::string DeZero(std::string &a);
static std::string Minus(std::string &a, std::string &b);
static std::string DevStr(std::string &strValue);
static std::string Divide(std::string &a, std::string &b);
static uint32_t AddHelper(uint32_t x, uint32_t y, uint32_t &bigintCarry);
static uint32_t SubHelper(uint32_t x, uint32_t y, uint32_t &bigintCarry);
};
} // namespace panda::ecmascript
#endif // ECMASCRIPT_TAGGED_BIGINT_H