Home
last modified time | relevance | path

Searched full:cmp_inst (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml213 …auto cmp_inst = graph_->CreateInstCompare(DataType::BOOL, GetPc(instruction->GetAddress()), Condit…
214 cmp_inst->SetOperandsType(DataType::ANY);
215 cmp_inst->SetInput(0, GetDefinitionAcc());
216 cmp_inst->SetInput(1, cvat);
219 jmp_inst->SetInput(0, cmp_inst);
221 AddInstruction(cmp_inst);
/arkcompiler/runtime_core/compiler/docs/
Dcodegen_doc.md118 auto cmp_inst = inst->CastToCmp();
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Dcodegen.cpp2739 auto cmp_inst = inst->CastToCmp(); in VisitCmp() local
2740 auto type = cmp_inst->GetOperandsType(); in VisitCmp()
2749 cc = cmp_inst->IsFcmpg() ? (Condition::MI) : (Condition::LT); in VisitCmp()