| /arkcompiler/ets_runtime/test/moduletest/asmstackoverflow/ |
| D | expect_output.txt | 15 stack overflow! 35 callarg0_with_callthis stack overflow! 36 callarg1_with_callthis stack overflow! 37 callarg2_with_callthis stack overflow! 38 callarg3_with_callthis stack overflow! 39 callrange_with_callthis stack overflow!
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | tlab_test.cpp | 76 bool overflow = false; in TEST_F() local 87 overflow = true; in TEST_F() 90 ASSERT_EQ(overflow, true) << "Increase the size of alloc_count to get overflow"; in TEST_F()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | lcr_circuit_builder.h | 146 Label overflow(env_); in DoubleToInt() 158 Branch(Int32LessThan(exp, bits), exit, &overflow); in DoubleToInt() 160 Bind(&overflow); in DoubleToInt() 176 Label overflow(env_); in DoubleToInt() 183 Branch(Int32Equal(xInt, Int32(0x80000000)), &overflow, &exit); in DoubleToInt() 192 Branch(Int32LessThan(exp, bits), &exit, &overflow); in DoubleToInt() 194 Bind(&overflow); in DoubleToInt()
|
| D | typed_array_stub_builder.cpp | 368 Label overflow(env); in GetValueFromBuffer() local 375 Branch(condition, &overflow, ¬Overflow); in GetValueFromBuffer() 376 Bind(&overflow); in GetValueFromBuffer()
|
| D | array_bounds_check_elimination.cpp | 229 bool overflow = ((constValue < 0 && (newLower > lower)) || in DoBinaryArithmeticOp() local 231 if (overflow) { in DoBinaryArithmeticOp() 272 bool overflow = ((constValue < 0 && (newLower > lower)) || in DoUnaryArithmeticOp() local 274 if (overflow) { in DoUnaryArithmeticOp()
|
| D | operations_stub_builder.cpp | 792 Label overflow(env); in Shr() local 864 Branch(condition, &overflow, ¬Overflow); in Shr() 865 Bind(&overflow); in Shr()
|
| D | new_object_stub_builder.cpp | 151 Label overflow(env); in NewTaggedArrayChecked() local 153 Branch(Int32UnsignedGreaterThan(len, Int32(INT32_MAX)), &overflow, ¬Overflow); in NewTaggedArrayChecked() 154 Bind(&overflow); in NewTaggedArrayChecked()
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/test-lists/hermes/ |
| D | hermes-ignored-JIT-ASAN-repeats.txt | 5 setter-stack-overflow.js
|
| D | hermes-excluded.txt | 12 stack-overflow.js 13 stack-overflow-apply.js # 0:03:06.849030 238 regress-exp-overflow.js
|
| /arkcompiler/runtime_core/static_core/tests/checked/ |
| D | stack_overflow.pa | 14 #! CHECKER Stack overflow 48 #! CHECKER Stack overflow unhandled
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | stack_overflow.pa | 14 #! CHECKER Stack overflow 51 #! CHECKER Stack overflow unhandled
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| D | aarch64_cc.def | 24 CONDCODE(VS, 0x6) /* overflow */ 25 CONDCODE(VC, 0x7) /* no overflow */
|
| /arkcompiler/ets_runtime/test/aottest/exception_case13/ |
| D | expect_output.txt | 14 stack overflow
|
| /arkcompiler/ets_runtime/test/moduletest/stackoverflow/ |
| D | expect_output.txt | 14 stack overflow!
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/19.unary_expressions/06.unary_minus_operator/ |
| D | unary_minus_onbound.ets | 19 desc: Unary minus operator (onbound) (these are special cases for numeric overflow behavior. Specia…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | BigInt.ets | 703 let overflow = 0; 707 res.set(i, res.at(i) | overflow); 708 overflow = (temp & BigInt.MASKS_LEFT_SHIFT[r]) >> (8 - r) 709 overflow = overflow % 256 712 if (overflow > 0) { 713 res.pushBack(overflow); 751 let overflow = 0; 753 overflow = BigInt.MASKS_LEFT_SHIFT[r]; 759 res.set(i, res.at(i) | overflow); 760 overflow = ((temp & BigInt.MASKS_RIGHT_SHIFT[r]) << (8 - r)) % 256;
|
| /arkcompiler/runtime_core/static_core/docs/bc_verification/ |
| D | absint_checks.md | 41 These checks help to detect issues with unintended truncation/overflow/underflow etc.
|
| /arkcompiler/runtime_core/docs/bc_verification/ |
| D | absint_checks.md | 41 These checks help to detect issues with unintended truncation/overflow/underflow etc.
|
| /arkcompiler/ets_runtime/ecmascript/regexp/ |
| D | regexp_parser.cpp | 635 bool overflow = false; in ParseDecimalDigits() local 640 if (!overflow) { in ParseDecimalDigits() 642 overflow = true; in ParseDecimalDigits() 649 if (overflow) { in ParseDecimalDigits()
|
| /arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/ |
| D | regexp_parser.cpp | 685 bool overflow = false; in ParseDecimalDigits() local 690 if (!overflow) { in ParseDecimalDigits() 692 overflow = true; in ParseDecimalDigits() 699 if (overflow) { in ParseDecimalDigits()
|
| /arkcompiler/ets_frontend/ets2panda/linter/ |
| D | README.md | 54 To prevent command line buffer overflow, response file may be used. It is specified by adding `@` p…
|
| /arkcompiler/ets_frontend/ets2panda/linter-4.2/ |
| D | README.md | 54 To prevent command line buffer overflow, response file may be used. It is specified by adding `@` p…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/coroutines/ |
| D | CMakeLists.txt | 206 # AddressSanitizer: stack-buffer-overflow #12611
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 7_expressions.rst | 3018 In that case, an overflow occurs but throws no exception or error. 3044 overflow 3208 If overflow occurs during integer multiplication, then: 3260 possible overflow, underflow, or loss of information. 3273 overflow 3320 Only a single special case does not comply with this rule: the integer overflow 3325 This case throws no exception or error despite the overflow. However, if in 3340 integer overflow 3347 overflow 3393 despite possible overflow, underflow, division by zero, or loss of information. [all …]
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/test-lists/test262/ |
| D | test262-excluded.txt | 3451 built-ins/Temporal/Calendar/prototype/dateAdd/overflow-invalid-string.js 3452 built-ins/Temporal/Calendar/prototype/dateAdd/overflow-undefined.js 3453 built-ins/Temporal/Calendar/prototype/dateAdd/overflow-wrong-type.js 3470 built-ins/Temporal/Calendar/prototype/dateFromFields/overflow-invalid-string.js 3471 built-ins/Temporal/Calendar/prototype/dateFromFields/overflow-undefined.js 3472 built-ins/Temporal/Calendar/prototype/dateFromFields/overflow-wrong-type.js 3870 built-ins/Temporal/Calendar/prototype/monthDayFromFields/overflow-constrain.js 3871 built-ins/Temporal/Calendar/prototype/monthDayFromFields/overflow-invalid-string.js 3872 built-ins/Temporal/Calendar/prototype/monthDayFromFields/overflow-reject.js 3873 built-ins/Temporal/Calendar/prototype/monthDayFromFields/overflow-undefined.js [all …]
|