Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.cpp333 Inst *new_cnst = nullptr; in Clone() local
337new_cnst = targetGraph->CreateInstConstant(static_cast<int32_t>(GetIntValue()), is_support_int32); in Clone()
340 new_cnst = targetGraph->CreateInstConstant(GetIntValue(), is_support_int32); in Clone()
343 new_cnst = targetGraph->CreateInstConstant(GetFloatValue(), is_support_int32); in Clone()
346 new_cnst = targetGraph->CreateInstConstant(GetDoubleValue(), is_support_int32); in Clone()
349 new_cnst = targetGraph->CreateInstConstant(GetRawValue(), is_support_int32); in Clone()
350 new_cnst->SetType(DataType::ANY); in Clone()
356 new_cnst->SetDstReg(GetDstReg()); in Clone()
358 return new_cnst; in Clone()