-
Notifications
You must be signed in to change notification settings - Fork 677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix of ToUInt32 (ecma_number_to_uint32) and ToInt32 (ecma_number_to_int32) conversion routines #226
Merged
+235
−26
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,109 @@ | ||
/* Copyright 2015 Samsung Electronics 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. | ||
*/ | ||
|
||
#include "ecma-globals.h" | ||
#include "ecma-helpers.h" | ||
|
||
#include "test-common.h" | ||
|
||
typedef struct | ||
{ | ||
ecma_number_t num; | ||
uint32_t uint32_num; | ||
} uint32_test_case_t; | ||
|
||
typedef struct | ||
{ | ||
ecma_number_t num; | ||
int32_t int32_num; | ||
} int32_test_case_t; | ||
|
||
/** | ||
* Unit test's main function. | ||
*/ | ||
int | ||
main (int __attr_unused___ argc, | ||
char __attr_unused___ **argv) | ||
{ | ||
TEST_INIT (); | ||
|
||
const uint32_test_case_t test_cases_uint32[] = | ||
{ | ||
#define TEST_CASE(num, uint32) { num, uint32 } | ||
TEST_CASE (1.0, 1), | ||
TEST_CASE (0.0, 0), | ||
TEST_CASE (ecma_number_negate (0.0), 0), | ||
TEST_CASE (NAN, 0), | ||
TEST_CASE (-NAN, 0), | ||
TEST_CASE (INFINITY, 0), | ||
TEST_CASE (-INFINITY, 0), | ||
TEST_CASE (0.1, 0), | ||
TEST_CASE (-0.1, 0), | ||
TEST_CASE (1.1, 1), | ||
TEST_CASE (-1.1, 4294967295), | ||
TEST_CASE (4294967295, 4294967295), | ||
TEST_CASE (-4294967295, 1), | ||
TEST_CASE (4294967296, 0), | ||
TEST_CASE (-4294967296, 0), | ||
TEST_CASE (4294967297, 1), | ||
TEST_CASE (-4294967297, 4294967295) | ||
#undef TEST_CASE | ||
}; | ||
|
||
for (uint32_t i = 0; | ||
i < sizeof (test_cases_uint32) / sizeof (test_cases_uint32[0]); | ||
i++) | ||
{ | ||
JERRY_ASSERT (ecma_number_to_uint32 (test_cases_uint32[i].num) == test_cases_uint32[i].uint32_num); | ||
} | ||
|
||
int32_test_case_t test_cases_int32[] = | ||
{ | ||
#define TEST_CASE(num, int32) { num, int32 } | ||
TEST_CASE (1.0, 1), | ||
TEST_CASE (0.0, 0), | ||
TEST_CASE (ecma_number_negate (0.0), 0), | ||
TEST_CASE (NAN, 0), | ||
TEST_CASE (-NAN, 0), | ||
TEST_CASE (INFINITY, 0), | ||
TEST_CASE (-INFINITY, 0), | ||
TEST_CASE (0.1, 0), | ||
TEST_CASE (-0.1, 0), | ||
TEST_CASE (1.1, 1), | ||
TEST_CASE (-1.1, -1), | ||
TEST_CASE (4294967295, -1), | ||
TEST_CASE (-4294967295, 1), | ||
TEST_CASE (4294967296, 0), | ||
TEST_CASE (-4294967296, 0), | ||
TEST_CASE (4294967297, 1), | ||
TEST_CASE (-4294967297, -1), | ||
TEST_CASE (2147483648, -2147483648), | ||
TEST_CASE (-2147483648, -2147483648), | ||
TEST_CASE (2147483647, 2147483647), | ||
TEST_CASE (-2147483647, -2147483647), | ||
TEST_CASE (-2147483649, 2147483647), | ||
TEST_CASE (2147483649, -2147483647) | ||
#undef TEST_CASE | ||
}; | ||
|
||
for (uint32_t i = 0; | ||
i < sizeof (test_cases_int32) / sizeof (test_cases_int32[0]); | ||
i++) | ||
{ | ||
JERRY_ASSERT (ecma_number_to_int32 (test_cases_int32[i].num) == test_cases_int32[i].int32_num); | ||
} | ||
|
||
return 0; | ||
} /* main */ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not fully sure, but isn't the is the same as the original uint32_num? You substract 32 0s, and only keep the lower 32 bit. Should be the same as ret = (int32_t) uint32_num; If this is true, we could remove the whole check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably, it is true for most cases, but according to C++ standard (4.7. Integral conversions):
"If the destination type is signed, the value is unchanged if it can be represented in the destination type (and bit-field width); otherwise, the value is implementation-defined."
From other view point, for cases, where it is true, optimizer should remove unnecessary operations. I'll check this on armv7-hf and x86_32 targets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If
noinline
attribute is put on both functions,g++ 4.8.2
produces the following code forecma_number_to_int32
(-Os
optimization level):So, all conversion operations in
ecma_number_to_int32
, are removed for the targets, and the function, actually, just returns the value, received fromecma_number_to_uint32
.