-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
… decrement Merge pull request #5788 from duongnhn:user/duongn/bigint_size_t In this PR, we implement - reallocate space for BigInt if necessary -> make it arbitrarily-precision. - make use of configuration with digit_t - implement increment/decrement operators - native tests for methods in Javascript BigInt class I defer "assign along with inc/dec" `y=x++` and `y=++x` to a future PR
- Loading branch information
Showing
13 changed files
with
627 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
//------------------------------------------------------------------------------------------------------- | ||
// Copyright (C) Microsoft. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. | ||
//------------------------------------------------------------------------------------------------------- | ||
|
||
#include "stdafx.h" | ||
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class | ||
#pragma warning(disable:26439) // Implicit noexcept | ||
#pragma warning(disable:26451) // Arithmetic overflow | ||
#pragma warning(disable:26495) // Uninitialized member variable | ||
#include "catch.hpp" | ||
|
||
#pragma warning(disable:4100) // unreferenced formal parameter | ||
#pragma warning(disable:6387) // suppressing preFAST which raises warning for passing null to the JsRT APIs | ||
#pragma warning(disable:6262) // CATCH is using stack variables to report errors, suppressing the preFAST warning. | ||
|
||
namespace JavascriptBigIntTests | ||
{ | ||
void Test_AddDigit(digit_t digit1, digit_t digit2, digit_t * carry, digit_t expectedResult, digit_t expectedCarry) | ||
{ | ||
REQUIRE(g_testHooksLoaded); | ||
|
||
digit_t res = g_testHooks.pfAddDigit(digit1, digit2, carry); | ||
|
||
//test to check that the result from call to AddDigit is the expected value | ||
REQUIRE(res == expectedResult); | ||
REQUIRE(expectedCarry == *carry); | ||
} | ||
|
||
void Test_SubDigit(digit_t digit1, digit_t digit2, digit_t * borrow, digit_t expectedResult, digit_t expectedBorrow) | ||
{ | ||
REQUIRE(g_testHooksLoaded); | ||
|
||
digit_t res = g_testHooks.pfSubDigit(digit1, digit2, borrow); | ||
|
||
//test to check that the result from call to SubtractDigit is the expected value | ||
REQUIRE(res == expectedResult); | ||
REQUIRE(*borrow == expectedBorrow); | ||
} | ||
|
||
void Test_MulDigit(digit_t digit1, digit_t digit2, digit_t * high, digit_t expectedResult, digit_t expectedHigh) | ||
{ | ||
REQUIRE(g_testHooksLoaded); | ||
|
||
digit_t res = g_testHooks.pfMulDigit(digit1, digit2, high); | ||
|
||
//test to check that the result from call to SubtractDigit is the expected value | ||
REQUIRE(res == expectedResult); | ||
REQUIRE(*high == expectedHigh); | ||
} | ||
|
||
TEST_CASE("AddDigit", "[JavascriptBigIntTests]") | ||
{ | ||
digit_t carry = 0; | ||
Test_AddDigit(1, 2, &carry, 3, 0); | ||
|
||
digit_t d1 = UINTPTR_MAX; | ||
digit_t d2 = UINTPTR_MAX; | ||
carry = 0; | ||
Test_AddDigit(d1, d2, &carry, UINTPTR_MAX-1, 1); | ||
} | ||
|
||
TEST_CASE("SubDigit", "[JavascriptBigIntTests]") | ||
{ | ||
digit_t borrow = 0; | ||
Test_SubDigit(3, 2, &borrow, 1, 0); | ||
|
||
digit_t d1 = 0; | ||
digit_t d2 = 1; | ||
borrow = 0; | ||
Test_SubDigit(d1, d2, &borrow, UINTPTR_MAX, 1); | ||
} | ||
|
||
TEST_CASE("MulDigit", "[JavascriptBigIntTests]") | ||
{ | ||
digit_t high = 0; | ||
Test_MulDigit(3, 2, &high, 6, 0); | ||
|
||
digit_t d1 = UINTPTR_MAX; | ||
digit_t d2 = 2; | ||
high = 0; | ||
Test_MulDigit(d1, d2, &high, UINTPTR_MAX-1, 1); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.