Searched refs:IsFcmpg (Results 1 - 17 of 17) sorted by relevance
/arkcompiler/runtime_core/compiler/tests/ |
H A D | inst_test.cpp | 463 ASSERT_EQ(inst4->IsFcmpg(), false); in TEST_F() 466 ASSERT_EQ(inst4->IsFcmpg(), false); in TEST_F() 469 ASSERT_EQ(inst4->IsFcmpg(), true); in TEST_F() 472 ASSERT_EQ(inst5->IsFcmpg(), true); in TEST_F() 475 ASSERT_EQ(inst5->IsFcmpg(), true); in TEST_F() 478 ASSERT_EQ(inst5->IsFcmpg(), false); in TEST_F()
|
H A D | graph_comparator.h | 246 return cmp1->IsFcmpg() == cmp2->IsFcmpg(); in CompareFcmpgInst()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | inst_test.cpp | 469 ASSERT_EQ(inst4->IsFcmpg(), false); in TEST_F() 472 ASSERT_EQ(inst4->IsFcmpg(), false); in TEST_F() 475 ASSERT_EQ(inst4->IsFcmpg(), true); in TEST_F() 478 ASSERT_EQ(inst5->IsFcmpg(), true); in TEST_F() 481 ASSERT_EQ(inst5->IsFcmpg(), true); in TEST_F() 484 ASSERT_EQ(inst5->IsFcmpg(), false); in TEST_F()
|
H A D | graph_comparator.h | 325 if (cmp1->IsFcmpg() != cmp2->IsFcmpg()) { in Compare()
|
H A D | const_folding_test.cpp | 59 ASSERT_EQ(INS(2U).CastToCmp()->IsFcmpg(), fcmpg); in CmpTest()
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
H A D | common.h | 404 if (cmp1->IsFcmpg() != cmp2->IsFcmpg()) { in Compare()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
H A D | common.h | 422 if (cmp1->IsFcmpg() != cmp2->IsFcmpg()) { in Compare()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | inst.cpp | 171 vn_obj->Add(static_cast<uint32_t>(IsFcmpg())); in SetVnObject()
|
H A D | dump.cpp | 358 (*out) << std::setw(INDENT_OPCODE) << ArenaString(IsFcmpg() ? "Fcmpg" : "Fcmpl", adapter) + suffix; in DumpOpcode()
|
H A D | inst.h | 2617 bool IsFcmpg() const in IsFcmpg() function in CmpInst
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | inst.cpp | 374 vnObj->Add(static_cast<uint32_t>(IsFcmpg())); in SetVnObject()
|
H A D | dump.cpp | 568 (*out) << std::setw(INDENT_OPCODE) << ArenaString(IsFcmpg() ? "Fcmpg" : "Fcmpl", adapter) + suffix; in DumpOpcode()
|
H A D | inst.h | 4723 bool IsFcmpg() const
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | const_folding.cpp | 854 if (cmp->IsFcmpg()) { in GetResult() 910 if (inst->CastToCmp()->IsFcmpg()) { in ConstFoldingCmpFloatNan()
|
H A D | lowering.cpp | 1266 if (input->IsFcmpg()) { in JoinFcmpInst()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | encode_visitor.cpp | 396 cc = cmpInst->IsFcmpg() ? (Condition::MI) : (Condition::LT); in VisitCmp()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
H A D | llvm_ir_constructor.cpp | 1617 if (cmpInst->IsFcmpg()) { in CreateFloatComparison()
|
Completed in 61 milliseconds