/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | inst.cpp | 45 return ConditionCode::CC_A; in GetInverseConditionCode() 46 case ConditionCode::CC_A: in GetInverseConditionCode() 74 return ConditionCode::CC_A; in InverseSignednessConditionCode() 82 case ConditionCode::CC_A: in InverseSignednessConditionCode() 110 case ConditionCode::CC_A: in IsSignedConditionCode() 138 return ConditionCode::CC_A; in SwapOperandsConditionCode() 141 case ConditionCode::CC_A: in SwapOperandsConditionCode()
|
H A D | dump.cpp | 133 case ConditionCode::CC_A: in GetCondCodeToString()
|
H A D | inst.h | 72 CC_A, // > enumerator 114 case ConditionCode::CC_A: in Compare()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | branch_elimination_test.cpp | 987 ConditionCode::CC_A); in TEST_F() 1008 ConditionCode::CC_A); in TEST_F() 1029 ConditionCode::CC_A); in TEST_F() 1050 ConditionCode::CC_A); in TEST_F() 1071 ConditionCode::CC_A); in TEST_F() 1092 ConditionCode::CC_A); in TEST_F()
|
H A D | dump_test.cpp | 332 IfImmInst first_inst(ConditionCode::CC_A); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | bounds_analysis_test.cpp | 198 CCTest(ConditionCode::CC_A, BR(10U, 50U), BR(20U, 60U), BR(21U, 50U), BR(20U, 49U)); in TEST_F() 210 CCTest(ConditionCode::CC_A, BR(10U, 20U), BR(50U, 60U), BR(INT64_MIN, INT64_MAX), BR(INT64_MIN, INT64_MAX)); in TEST_F() 222 CCTest(ConditionCode::CC_A, BR(10U, 60U), BR(20U, 50U), BR(21U, 60U), BR(20U, 50U)); in TEST_F() 237 CCTest(ConditionCode::CC_A, BR(20U, 60U), BR(10U, 50U), BR(20U, 60U), BR(10U, 50U)); in TEST_F() 249 CCTest(ConditionCode::CC_A, BR(50U, 60U), BR(10U, 20U), BR(50U, 60U), BR(10U, 20U)); in TEST_F() 261 CCTest(ConditionCode::CC_A, BR(20U, 50U), BR(10U, 60U), BR(20U, 50U), BR(10U, 49U)); in TEST_F()
|
H A D | branch_elimination_test.cpp | 1004 ConditionCode::CC_A); in TEST_F() 1025 ConditionCode::CC_A); in TEST_F() 1049 ConditionCode::CC_A); in TEST_F() 1070 ConditionCode::CC_A); in TEST_F() 1094 ConditionCode::CC_A); in TEST_F() 1115 ConditionCode::CC_A); in TEST_F()
|
H A D | peepholes_test.cpp | 3726 CheckCompare(DataType::UINT32, ConditionCode::CC_GT, ConditionCode::CC_A); in TEST_F() 3740 CheckCompare(DataType::INT32, ConditionCode::CC_A, ConditionCode::CC_A); in TEST_F() 3745 CheckCompare(DataType::UINT64, ConditionCode::CC_GT, ConditionCode::CC_A); in TEST_F() 3759 CheckCompare(DataType::INT64, ConditionCode::CC_A, ConditionCode::CC_A); in TEST_F() 3853 INST(4U, Opcode::Compare).b().CC(CC_A).Inputs(1U, 2U); in TEST_F() 4027 case CC_A: in CompareBoolWithConst() 4038 for (auto cc : {CC_EQ, CC_NE, CC_LT, CC_LE, CC_GT, CC_GE, CC_B, CC_BE, CC_A, CC_AE}) { in TEST_F()
|
H A D | const_folding_test.cpp | 2677 INST(2U, Opcode::Compare).b().SrcType(DataType::Type::INT64).CC(CC_A).Inputs(0U, 1U); in TEST_F() 2698 INST(2U, Opcode::Compare).b().SrcType(DataType::Type::INT32).CC(CC_A).Inputs(0U, 1U); in TEST_F() 2884 case ConditionCode::CC_A: in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | bounds_analysis.cpp | 469 if (cc == ConditionCode::CC_GT || cc == ConditionCode::CC_A) { in NarrowBoundsCase1() 485 cc == ConditionCode::CC_A || cc == ConditionCode::CC_AE) { in NarrowBoundsCase2() 498 if (cc == ConditionCode::CC_GT || cc == ConditionCode::CC_A) { in NarrowBoundsCase3() 555 if (cc == ConditionCode::CC_GT || cc == ConditionCode::CC_A) { in NarrowBoundsCase6()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | inst.h | 71 CC_A, // > enumerator 106 return ConditionCode::CC_A; in InverseSignednessConditionCode() 114 case ConditionCode::CC_A: in InverseSignednessConditionCode() 142 case ConditionCode::CC_A: in IsSignedConditionCode()
|
H A D | dump.cpp | 125 case ConditionCode::CC_A: in GetCondCodeToString()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | const_folding.cpp | 986 case ConditionCode::CC_A: in ConstFoldingCompareCreateNewConst() 1030 case ConditionCode::CC_A: in ConstFoldingCompareEqualInputs()
|
/arkcompiler/runtime_core/static_core/compiler/tests/codegen/ |
H A D | codegen_test_1.cpp | 753 result = (cc == CC_NE || cc == CC_LT || cc == CC_LE || cc == CC_A || cc == CC_AE); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | codegen.cpp | 836 case CC_A: in ConvertCc()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
H A D | llvm_ir_constructor.cpp | 235 case ConditionCode::CC_A: in ICmpCodeConvert() 264 case ConditionCode::CC_A: in FCmpCodeConvert()
|