| /arkcompiler/runtime_core/compiler/tests/ |
| D | iterators_test.cpp | 212 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 228 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 248 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 250 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 258 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 260 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 269 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 271 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 280 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 282 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F()
|
| D | dump_test.cpp | 483 auto inst = graph->CreateInst(Opcode::SaveState); in __anon32f033400802()
|
| D | compiler_regalloc_test.cpp | 527 auto inst = graph->CreateInst(Opcode::SaveState); in __anonbbc8952d0d02()
|
| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| D | iterators_test.cpp | 233 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 249 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 269 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 271 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 279 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 281 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 290 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 292 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F() 301 inst = GetGraph()->CreateInst(Opcode::Phi); in TEST_F() 303 inst = GetGraph()->CreateInst(Opcode::Add); in TEST_F()
|
| D | inst_generator.cpp | 572 auto newInst = pack.graph->CreateInst(pack.opcode); in CreateCheckInstByPackArgs()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
| D | inst_templates.yaml | 20 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 41 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 65 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 75 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 241 …auto inst = graph_->CreateInst<%= opcode %>(GetCurrentMethodReturnType(), GetPc(instruction->GetAd…
|
| /arkcompiler/runtime_core/libabckit/src/irbuilder_dynamic/templates/ |
| D | inst_templates.yaml | 20 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 33 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 134 …auto inst = graph_->CreateInst<%= opcode %>(GetCurrentMethodReturnType(), GetPc(instruction->GetAd…
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | inst_templates.yaml | 20 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 37 …auto inst = graph_->CreateInst<%= opc %>(<%= get_type(inst.dtype) %>, GetPc(instruction->GetAddres… 166 …auto inst = graph_->CreateInst<%= opcode %>(GetCurrentMethodReturnType(), GetPc(instruction->GetAd…
|
| /arkcompiler/runtime_core/docs/ |
| D | ir_format.md | 342 Inst* phi1 = graph->CreateInst(Opcode::Phi); 343 Inst* ph2 = graph->CreateInst(Opcode::Phi); 344 Inst* compare = graph->CreateInst(Opcode::Compare); 345 Inst* add = graph->CreateInst(Opcode::Add);
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | adjust_arefs.cpp | 208 ldst = GetGraph()->CreateInst(Opcode::Store); in InsertMem() 212 ldst = GetGraph()->CreateInst(Opcode::Load); in InsertMem()
|
| D | lowering.cpp | 989 auto newInst = static_cast<T *>(graph->CreateInst(newOpcode)); in LowerOperationWithShiftedOperand() 1153 auto newInst = graph->CreateInst(lowLevelOpcode); in LowerConstArrayIndex()
|
| D | checks_elimination.cpp | 932 newLeft = GetGraph()->CreateInst(newLeftOpcode); in InsertBoundsCheckDeoptimization()
|
| D | peepholes.cpp | 1650 auto newInst = graph->CreateInst(newOpc); in CreateAndInsertInst()
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | ir_format.md | 351 Inst* phi1 = graph->CreateInst(Opcode::Phi); 352 Inst* ph2 = graph->CreateInst(Opcode::Phi); 353 Inst* compare = graph->CreateInst(Opcode::Compare); 354 Inst* add = graph->CreateInst(Opcode::Add);
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| D | graph.h | 1057 [[nodiscard]] Inst* CreateInst(Opcode opc) const in CreateInst() function 1081 [[nodiscard]] BASE* CreateInst##OPCODE(Args&&... args) const { \ 1097 [[nodiscard]] BASE* CreateInst##OPCODE(Inst* inst, Args&&... args) const { \ 1098 …auto new_inst = CreateInst##OPCODE(inst->GetType(), inst->GetPc(), std::forward<Args>(args)...); \ 1109 [[nodiscard]] BASE* CreateInst##OPCODE(Inst* inst, Args&&... args) const { \ in OPCODE_LIST() 1110 …auto new_inst = CreateInst##OPCODE(inst->GetType(), inst->GetPc(), std::forward<Args>(args)...); \ in OPCODE_LIST()
|
| D | inst.cpp | 546 auto clone = targetGraph->CreateInst(GetOpcode()); in Clone()
|
| D | ir_constructor.h | 125 auto inst = graph_->CreateInst(std::forward<Args>(args)...); in NewInst()
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | bytecodeopt_peepholes.cpp | 58 auto *initObject = static_cast<CallInst *>(graph->CreateInst(compiler::Opcode::InitObject)); in CreateInitObject()
|
| /arkcompiler/runtime_core/static_core/compiler/tests/codegen/ |
| D | codegen_test_1.cpp | 128 auto stArr = graph->CreateInst(Opcode::StoreArray); in SRC_GRAPH() 134 auto ret = graph->CreateInst(Opcode::ReturnVoid); in SRC_GRAPH() 203 auto ldArr = graph->CreateInst(Opcode::LoadArray); in SRC_GRAPH() 208 auto ret = graph->CreateInst(Opcode::Return); in SRC_GRAPH() 285 auto ret = graph->CreateInst(Opcode::ReturnVoid); in SRC_GRAPH() 371 auto sum = graph->CreateInst(Opcode::Add); in SRC_GRAPH() 377 auto ret = graph->CreateInst(Opcode::Return); in SRC_GRAPH() 451 auto ret = graph->CreateInst(Opcode::Return); in SRC_GRAPH() 516 auto fcmp = graph->CreateInst(Opcode::Cmp); in SRC_GRAPH() 525 auto ret = graph->CreateInst(Opcode::Return); in SRC_GRAPH()
|
| /arkcompiler/runtime_core/static_core/irtoc/lang/ |
| D | ir_generator.rb | 111 …Output << "auto* #{var_name} = graph->CreateInst#{inst.name}(DataType::#{inst.get_type_for_cpp}, p…
|
| D | instruction.rb | 266 …Output.println("auto* #{local_var_name} = graph->CreateInst#{@name}(DataType::#{get_type_for_cpp},…
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | graph.h | 832 [[nodiscard]] Inst* CreateInst(Opcode opc) const in CreateInst() function 855 [[nodiscard]] BASE* CreateInst##OPCODE(Args&&... args) const { \
|
| D | inst.cpp | 266 auto clone = targetGraph->CreateInst(GetOpcode()); in Clone()
|
| D | ir_constructor.h | 120 auto inst = graph_->CreateInst(std::forward<Args>(args)...); in NewInst()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/ |
| D | ets_intrinsics_peephole.cpp | 31 auto compare = graph->CreateInst(Opcode::Compare)->CastToCompare(); in ReplaceWithCompareEQ()
|