Home
last modified time | relevance | path

Searched refs:sf_inst (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_resolver.cpp125 SpillFillInst *sf_inst {}; in AddMoveToFixedLocation() local
127 sf_inst = inst->GetPrev()->CastToSpillFill(); in AddMoveToFixedLocation()
129 sf_inst = GetGraph()->CreateInstSpillFill(); in AddMoveToFixedLocation()
130 sf_inst->SetSpillFillType(SpillFillType::INPUT_FILL); in AddMoveToFixedLocation()
131 inst->InsertBefore(sf_inst); in AddMoveToFixedLocation()
140 sf_inst->AddSpillFill(input_location, fixed_location, type); in AddMoveToFixedLocation()
/arkcompiler/runtime_core/bytecode_optimizer/
Dreg_encoder.cpp326 auto sf_inst = inst->GetBasicBlock()->GetGraph()->CreateInstSpillFill(); in AddMoveBefore() local
329 sf_inst->AddMove(src, dst.reg, GetRegType(dst.type)); in AddMoveBefore()
333 inst->GetBasicBlock()->InsertBefore(sf_inst, inst); in AddMoveBefore()