Home
last modified time | relevance | path

Searched full:createinstadd (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/tests/
Dlive_registers_test.cpp35 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(0U, 42… in TEST_F()
43 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(0U, 10… in TEST_F()
44 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(0U, 2U… in TEST_F()
45 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(2U, 3U… in TEST_F()
46 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(5U, 6U… in TEST_F()
47 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(6U, 8U… in TEST_F()
48 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(8U, 10… in TEST_F()
99 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(0U, 2U… in TEST_F()
100 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(8U, 10… in TEST_F()
136 …intervals.push_back(alloc->New<LifeIntervals>(alloc, GetGraph()->CreateInstAdd(), LiveRange(4U, 6U… in TEST_F()
[all …]
Dsavestate_optimization_tests.cpp122 … auto inst = GetGraph()->CreateInstAdd(DataType::INT32, INVALID_PC, insts[i - 2L], insts[i - 1L]); in TEST_F()
Dinst_generator.cpp790 auto add = graph->CreateInstAdd(); in GeneratePhiOperation()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dloop_idioms.cpp327 … auto add = GetGraph()->CreateInstAdd((*srcEnd)->GetType(), (*srcEnd)->GetPc(), (*srcEnd), one); in PatchRange()
337 … GetGraph()->CreateInstAdd((*srcStart)->GetType(), (*srcStart)->GetPc(), (*srcStart), one); in PatchRange()
338 … auto addEnd = GetGraph()->CreateInstAdd((*srcEnd)->GetType(), (*srcEnd)->GetPc(), (*srcEnd), one); in PatchRange()
348 … auto add = GetGraph()->CreateInstAdd((*srcEnd)->GetType(), (*srcEnd)->GetPc(), (*srcEnd), one); in PatchRange()
376 … GetGraph()->CreateInstAdd(DataType::INT32, load_.inst->GetPc(), loopInfo_.init, load_.idxOffset); in ReplaceLoopCompletely()
378 …Inst *srcEnd = GetGraph()->CreateInstAdd(DataType::INT32, load_.inst->GetPc(), loopInfo_.test, loa… in ReplaceLoopCompletely()
388 …auto dstStart = GetGraph()->CreateInstAdd(DataType::INT32, store_.inst->GetPc(), srcStart, offsDif… in ReplaceLoopCompletely()
Doptimize_string_concat.cpp246 auto add = GetGraph()->CreateInstAdd(DataType::INT32, pc, induction, step); in CreateAppendArgsLoop()
Dloop_unroll.cpp294 …test = GetGraph()->CreateInstAdd(preHeaderCmp->CastToCompare()->GetOperandsType(), preHeaderCmp->G… in CreateNewTestInst()
Dlowering.cpp294 auto add = graph->CreateInstAdd(inst->GetType(), inst->GetPc(), shr, input0); in ReplaceSignedDivPowerOfTwo()
443 addInst = graph->CreateInstAdd(inst, input0, valueMinus1Cnst); in ReplaceSignedModPowerOfTwo()
Dchecks_elimination.cpp1068 …subValue = GetGraph()->CreateInstAdd(DataType::INT32, INVALID_PC, lower, GetGraph()->FindOrCreateC… in TryInsertDeoptimizationForLargeStep()
/arkcompiler/runtime_core/compiler/docs/
Dir_builder.md130 auto inst = graph_->CreateInstAdd(DataType::INT32, GetPc(instruction->GetAddress()));
/arkcompiler/runtime_core/static_core/compiler/docs/
Dir_builder.md130 auto inst = graph_->CreateInstAdd(DataType::INT32, GetPc(instruction->GetAddress()));
/arkcompiler/runtime_core/libabckit/src/irbuilder_dynamic/templates/
Dinst_templates.yaml41 … auto inst = graph_->CreateInstAdd(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddress()));
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml45 … auto inst = graph_->CreateInstAdd(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddress()));
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml80 … auto inst = graph_->CreateInstAdd(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddress()));
Dinst_builder-inl.h460 … auto inst4 = GetGraph()->CreateInstAdd(DataType::UINT16, GetPc(bcInst->GetAddress()), arg, inst3); in BuildCharToUpperCaseIntrinsic()
511 … auto inst4 = GetGraph()->CreateInstAdd(DataType::UINT16, GetPc(bcInst->GetAddress()), arg, inst3); in BuildCharToLowerCaseIntrinsic()
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/
Dets_intrinsics_peephole.cpp477 …auto indexInst = graph->CreateInstAdd(DataType::INT32, pc, cpOffsetForClass, strIndexInAnnotConst); in BuildLoadPropertyChain()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dbasicblock.cpp1224 newInst = GetGraph()->CreateInstAdd(inst->GetType(), inst->GetPc()); in RemoveOverflowCheck()
/arkcompiler/runtime_core/libabckit/src/adapter_static/
Dir_static_instr_1.cpp2236 … auto addImpl = graph->impl->CreateInstAdd(input0->impl->GetType(), 0, input0->impl, input1->impl); in IcreateAddStatic()