| /arkcompiler/runtime_core/runtime/tests/ |
| D | tlab_test.cpp | 71 bool overflow = false; in TEST_F() local 82 overflow = true; in TEST_F() 85 ASSERT_EQ(overflow, true) << "Increase the size of alloc_count to get overflow"; in TEST_F()
|
| /arkcompiler/ets_runtime/test/moduletest/stackoverflow/ |
| D | stackoverflow.js | 18 * @tc.desc:test stack overflow 27 print("stack overflow!");
|
| D | expect_output.txt | 14 stack overflow!
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | stack_overflow.pa | 14 #! CHECKER Stack overflow 51 #! CHECKER Stack overflow unhandled
|
| /arkcompiler/runtime_core/verification/ |
| D | verification.yaml | 31 sign: Sign mismatch. Possible overflow/underflow issues and other quirks in data-flow. 33 sign_size: Sign and size mismatch. Possible overflow/underflow and truncation issues. 34 … precision: Precision mismatch. Possible overflow/underflow issues and other quirks in data-flow.
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | memory_literals_test.cpp | 23 // Integer overflow checking for memory literals
|
| /arkcompiler/ets_runtime/test/moduletest/asmstackoverflow/ |
| D | asmstackoverflow.js | 18 * @tc.desc:test stack overflow in asm
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | loop_unroll.cpp | 104 // so if (test_value - imm_value) < type_min, it's overflow in ConditionOverFlow() 108 // so if (test_value + imm_value) > type_max, it's overflow in ConditionOverFlow() 283 // for not constant test-instruction we need to insert `overflow-check`: in FixCompareInst() 286 // If overflow-check is failed goto after-loop in FixCompareInst()
|
| /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/mem/ |
| D | mem_common.h | 40 compile-time error in case of integer overflow
|
| D | mem_map_allocator.cpp | 30 LOG_GC(ERROR) << "memory map overflow"; in Allocate()
|
| D | mem_map_allocator.h | 118 LOG_GC(ERROR) << "Freelist pool oom: overflow(" << freeListPoolSize_ << ")"; in GetMemFromList()
|
| /arkcompiler/ets_runtime/ecmascript/deoptimizer/ |
| D | deoptimizer.cpp | 275 return "NOT INC OVERFLOW"; in DisplayItems() 277 return "NOT DEC OVERFLOW"; in DisplayItems() 279 return "NOT NEG OVERFLOW"; in DisplayItems()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | message_string.h | 35 V(OPCODE_OVERFLOW, "opcode overflow!") \
|
| D | js_thread.cpp | 355 … LOG_ECMA(ERROR) << "Stack overflow! Remaining stack size is: " << (sp - glueData_.frameBase_); in DoStackOverflowCheck() 358 …ndle<JSObject> error = factory->GetJSError(base::ErrorType::RANGE_ERROR, "Stack overflow!", false); in DoStackOverflowCheck() 541 …// To avoid too much times of stack overflow checking, we only check stack overflow before push vr… in GetAsmStackLimit()
|
| /arkcompiler/runtime_core/verification/cache/ |
| D | file_entity_cache.h | 48 static_assert(result != 0, "Overflow! TypeIndex used with more than 255 arguments");
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | marker.h | 43 ASSERT_PRINT(current_index_ < MAX_MARKER, "Markers overflow. Please check recursion"); in NewMarker()
|
| D | instructions.yaml | 994 …description: Add two values and check result to Overflow, in case of overflow and CC is EQ jump to… 1001 …description: Sub two values and check result to Overflow, in case of overflow and CC is EQ jump to… 1008 description: Add two values, deoptimize if overflow occurred. 1015 description: Sub two values, deoptimize if overflow occurred.
|
| D | graph_checker.h | 273 // Overflow instruction are used only in dynamic methods. in CheckBinaryOverflowOperation() 277 …ASSERT_DO((cc == CC_EQ || cc == CC_NE), (std::cerr << "overflow instruction are used only CC_EQ or… in CheckBinaryOverflowOperation() 280 (std::cerr << "overflow instruction have INT32 or INT64 types")); in CheckBinaryOverflowOperation()
|
| /arkcompiler/ets_frontend/ts2panda/tests/expression/ |
| D | numericLiteral.test.ts | 56 it("Integer overflow", function () {
|
| /arkcompiler/runtime_core/libpandabase/mem/ |
| D | pool_map.h | 164 // Checking overflow in MapNumToAddr()
|
| D | mem.h | 147 compile-time error in case of integer overflow
|
| /arkcompiler/runtime_core/runtime/include/ |
| D | thread-inl.h | 98 // after finish throw exception, restore overflow check in StackOverflowCheck()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | type_lowering.cpp | 1311 Label overflow(&builder_); in LowerNumberNeg() local 1314 builder_.Branch(builder_.Int64Equal(intVal, min), &overflow, ¬Overflow); in LowerNumberNeg() 1315 builder_.Bind(&overflow); in LowerNumberNeg() 1476 Label overflow(&builder_); in CalculateNumbers() local 1484 builder_.Branch(builder_.Int64GreaterThan(res, max), &overflow, ¬Overflow); in CalculateNumbers() 1487 … builder_.Branch(builder_.Int64LessThan(res, min), &overflow, ¬OverflowOrUnderflow); in CalculateNumbers() 1489 builder_.Bind(&overflow); in CalculateNumbers() 1534 Label overflow(&builder_); in ShiftNumber() local 1612 builder_.Branch(condition, &overflow, ¬Overflow); in ShiftNumber() 1613 builder_.Bind(&overflow); in ShiftNumber() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | atomic_helper.cpp | 78 THROW_RANGE_ERROR_AND_RETURN(thread, "Index is overflow.", 0); in ValidateAtomicAccess()
|