Home
last modified time | relevance | path

Searched full:overflow (Results 1 – 25 of 62) sorted by relevance

123

/arkcompiler/runtime_core/runtime/tests/
Dtlab_test.cpp71 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/
Dstackoverflow.js18 * @tc.desc:test stack overflow
27 print("stack overflow!");
Dexpect_output.txt14 stack overflow!
/arkcompiler/runtime_core/tests/checked/
Dstack_overflow.pa14 #! CHECKER Stack overflow
51 #! CHECKER Stack overflow unhandled
/arkcompiler/runtime_core/verification/
Dverification.yaml31 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/
Dmemory_literals_test.cpp23 // Integer overflow checking for memory literals
/arkcompiler/ets_runtime/test/moduletest/asmstackoverflow/
Dasmstackoverflow.js18 * @tc.desc:test stack overflow in asm
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dloop_unroll.cpp104 // 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/
Dabsint_checks.md41 These checks help to detect issues with unintended truncation/overflow/underflow etc.
/arkcompiler/ets_runtime/ecmascript/mem/
Dmem_common.h40 compile-time error in case of integer overflow
Dmem_map_allocator.cpp30 LOG_GC(ERROR) << "memory map overflow"; in Allocate()
Dmem_map_allocator.h118 LOG_GC(ERROR) << "Freelist pool oom: overflow(" << freeListPoolSize_ << ")"; in GetMemFromList()
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
Ddeoptimizer.cpp275 return "NOT INC OVERFLOW"; in DisplayItems()
277 return "NOT DEC OVERFLOW"; in DisplayItems()
279 return "NOT NEG OVERFLOW"; in DisplayItems()
/arkcompiler/ets_runtime/ecmascript/
Dmessage_string.h35 V(OPCODE_OVERFLOW, "opcode overflow!") \
Djs_thread.cpp355 … 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/
Dfile_entity_cache.h48 static_assert(result != 0, "Overflow! TypeIndex used with more than 255 arguments");
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dmarker.h43 ASSERT_PRINT(current_index_ < MAX_MARKER, "Markers overflow. Please check recursion"); in NewMarker()
Dinstructions.yaml994 …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.
Dgraph_checker.h273 // 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/
DnumericLiteral.test.ts56 it("Integer overflow", function () {
/arkcompiler/runtime_core/libpandabase/mem/
Dpool_map.h164 // Checking overflow in MapNumToAddr()
Dmem.h147 compile-time error in case of integer overflow
/arkcompiler/runtime_core/runtime/include/
Dthread-inl.h98 // after finish throw exception, restore overflow check in StackOverflowCheck()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtype_lowering.cpp1311 Label overflow(&builder_); in LowerNumberNeg() local
1314 builder_.Branch(builder_.Int64Equal(intVal, min), &overflow, &notOverflow); in LowerNumberNeg()
1315 builder_.Bind(&overflow); in LowerNumberNeg()
1476 Label overflow(&builder_); in CalculateNumbers() local
1484 builder_.Branch(builder_.Int64GreaterThan(res, max), &overflow, &notOverflow); in CalculateNumbers()
1487 … builder_.Branch(builder_.Int64LessThan(res, min), &overflow, &notOverflowOrUnderflow); in CalculateNumbers()
1489 builder_.Bind(&overflow); in CalculateNumbers()
1534 Label overflow(&builder_); in ShiftNumber() local
1612 builder_.Branch(condition, &overflow, &notOverflow); in ShiftNumber()
1613 builder_.Bind(&overflow); in ShiftNumber()
[all …]
/arkcompiler/ets_runtime/ecmascript/base/
Datomic_helper.cpp78 THROW_RANGE_ERROR_AND_RETURN(thread, "Index is overflow.", 0); in ValidateAtomicAccess()

123