Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/ir_builder/
Dets_inst_templates.yaml32 …auto cmp_inst = graph_->CreateInstCompare(DataType::BOOL, GetPc(instruction->GetAddress()), GetDef…
34 AddInstruction(cmp_inst);
35 UpdateDefinitionAcc(cmp_inst);
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml193 …auto cmp_inst = graph_->CreateInstCompare(DataType::BOOL, GetPc(instruction->GetAddress()), Condit…
194 cmp_inst->SetOperandsType(DataType::ANY);
195 cmp_inst->SetInput(0, GetDefinitionAcc());
196 cmp_inst->SetInput(1, cvat);
199 jmp_inst->SetInput(0, cmp_inst);
201 AddInstruction(cmp_inst);
/arkcompiler/runtime_core/static_core/compiler/docs/
Dcodegen_doc.md118 auto cmp_inst = inst->CastToCmp();
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dpeepholes.cpp2740 // We shouldn't check on OSR with Xor, because old_inst and cmp_inst is placed one by one in CreateCompareInsteadOfXorAdd()