/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | inst.cpp | 43 return ConditionCode::CC_AE; in GetInverseConditionCode() 48 case ConditionCode::CC_AE: in GetInverseConditionCode() 76 return ConditionCode::CC_AE; in InverseSignednessConditionCode() 84 case ConditionCode::CC_AE: in InverseSignednessConditionCode() 111 case ConditionCode::CC_AE: in IsSignedConditionCode() 140 return ConditionCode::CC_AE; in SwapOperandsConditionCode() 143 case ConditionCode::CC_AE: in SwapOperandsConditionCode()
|
H A D | dump.cpp | 135 case ConditionCode::CC_AE: in GetCondCodeToString()
|
H A D | inst.h | 73 CC_AE, // >= enumerator 116 case ConditionCode::CC_AE: in Compare()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | branch_elimination_test.cpp | 989 ConditionCode::CC_AE); in TEST_F() 1010 ConditionCode::CC_AE); in TEST_F() 1031 ConditionCode::CC_AE); in TEST_F() 1052 ConditionCode::CC_AE); in TEST_F() 1073 ConditionCode::CC_AE); in TEST_F() 1094 ConditionCode::CC_AE); in TEST_F()
|
H A D | dump_test.cpp | 336 IfImmInst second_inst(ConditionCode::CC_AE); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | bounds_analysis_test.cpp | 200 CCTest(ConditionCode::CC_AE, BR(10U, 50U), BR(20U, 60U), BR(20U, 50U), BR(20U, 50U)); in TEST_F() 212 CCTest(ConditionCode::CC_AE, BR(10U, 20U), BR(50U, 60U), BR(INT64_MIN, INT64_MAX), BR(INT64_MIN, INT64_MAX)); in TEST_F() 224 CCTest(ConditionCode::CC_AE, BR(10U, 60U), BR(20U, 50U), BR(20U, 60U), BR(20U, 50U)); in TEST_F() 239 CCTest(ConditionCode::CC_AE, BR(20U, 60U), BR(10U, 50U), BR(20U, 60U), BR(10U, 50U)); in TEST_F() 251 CCTest(ConditionCode::CC_AE, BR(50U, 60U), BR(10U, 20U), BR(50U, 60U), BR(10U, 20U)); in TEST_F() 263 CCTest(ConditionCode::CC_AE, BR(20U, 50U), BR(10U, 60U), BR(20U, 50U), BR(10U, 50U)); in TEST_F()
|
H A D | branch_elimination_test.cpp | 1006 ConditionCode::CC_AE); in TEST_F() 1027 ConditionCode::CC_AE); in TEST_F() 1051 ConditionCode::CC_AE); in TEST_F() 1072 ConditionCode::CC_AE); in TEST_F() 1096 ConditionCode::CC_AE); in TEST_F() 1117 ConditionCode::CC_AE); in TEST_F()
|
H A D | if_conversion_test.cpp | 154 INST(3U, Opcode::Compare).b().CC(CC_AE).Inputs(0U, 1U); in TEST_F() 178 INST(3U, Opcode::Compare).b().CC(CC_AE).Inputs(0U, 1U); in TEST_F()
|
H A D | const_folding_test.cpp | 2718 INST(2U, Opcode::Compare).b().SrcType(DataType::Type::INT64).CC(CC_AE).Inputs(0U, 1U); in TEST_F() 2739 INST(2U, Opcode::Compare).b().SrcType(DataType::Type::INT32).CC(CC_AE).Inputs(0U, 1U); in TEST_F() 2862 for (int ccInt = CC_LT; ccInt <= CC_AE; ++ccInt) { in TEST_F() 2871 case ConditionCode::CC_AE: in TEST_F()
|
H A D | peepholes_test.cpp | 3727 CheckCompare(DataType::UINT32, ConditionCode::CC_GE, ConditionCode::CC_AE); in TEST_F() 3741 CheckCompare(DataType::INT32, ConditionCode::CC_AE, ConditionCode::CC_AE); in TEST_F() 3746 CheckCompare(DataType::UINT64, ConditionCode::CC_GE, ConditionCode::CC_AE); in TEST_F() 3760 CheckCompare(DataType::INT64, ConditionCode::CC_AE, ConditionCode::CC_AE); in TEST_F() 4029 case CC_AE: 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()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | bounds_analysis.cpp | 476 if (cc == ConditionCode::CC_GE || cc == ConditionCode::CC_AE || cc == ConditionCode::CC_EQ) { in NarrowBoundsCase1() 485 cc == ConditionCode::CC_A || cc == ConditionCode::CC_AE) { in NarrowBoundsCase2() 502 if (cc == ConditionCode::CC_GE || cc == ConditionCode::CC_AE) { in NarrowBoundsCase3() 559 if (cc == ConditionCode::CC_GE || cc == ConditionCode::CC_AE) { in NarrowBoundsCase6()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | inst.h | 72 CC_AE, // >= enumerator 108 return ConditionCode::CC_AE; in InverseSignednessConditionCode() 116 case ConditionCode::CC_AE: in InverseSignednessConditionCode() 143 case ConditionCode::CC_AE: in IsSignedConditionCode()
|
H A D | dump.cpp | 127 case ConditionCode::CC_AE: in GetCondCodeToString()
|
/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() 764 result = (cc == CC_EQ || cc == CC_LE || cc == CC_GE || cc == CC_AE || cc == CC_BE); in TEST_F() 1319 result = (cc == CC_EQ || cc == CC_LE || cc == CC_GE || cc == CC_AE || cc == CC_BE); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | const_folding.cpp | 991 case ConditionCode::CC_AE: in ConstFoldingCompareCreateNewConst() 1014 case ConditionCode::CC_AE: in ConstFoldingCompareEqualInputs()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | codegen.cpp | 838 case CC_AE: in ConvertCc()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
H A D | llvm_ir_constructor.cpp | 239 case ConditionCode::CC_AE: in ICmpCodeConvert() 268 case ConditionCode::CC_AE: in FCmpCodeConvert()
|