Home
last modified time | relevance | path

Searched refs:CheckCompareLenArrayWithZeroTest (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/tests/
Dpeepholes_test.cpp359 …void CheckCompareLenArrayWithZeroTest(int64_t constant, ConditionCode cc, std::optional<bool> expe… in CheckCompareLenArrayWithZeroTest() function in ark::compiler::PeepholesTest
4917 CheckCompareLenArrayWithZeroTest(0U, CC_GE, true); in TEST_F()
4918 CheckCompareLenArrayWithZeroTest(0U, CC_LT, false); in TEST_F()
4919 CheckCompareLenArrayWithZeroTest(0U, CC_LE, std::nullopt); in TEST_F()
4920 CheckCompareLenArrayWithZeroTest(1U, CC_GE, std::nullopt); in TEST_F()
4921 CheckCompareLenArrayWithZeroTest(1U, CC_LT, std::nullopt); in TEST_F()
4926 CheckCompareLenArrayWithZeroTest(0U, CC_LE, true, true); in TEST_F()
4927 CheckCompareLenArrayWithZeroTest(0U, CC_GT, false, true); in TEST_F()
4928 CheckCompareLenArrayWithZeroTest(0U, CC_GE, std::nullopt, true); in TEST_F()
4929 CheckCompareLenArrayWithZeroTest(1U, CC_LE, std::nullopt, true); in TEST_F()
[all …]