Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/compiler/tests/
Diterators_test.cpp212 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()
Ddump_test.cpp483 auto inst = graph->CreateInst(Opcode::SaveState); in __anon51f1233e0802()
Dcompiler_regalloc_test.cpp527 auto inst = graph->CreateInst(Opcode::SaveState); in __anonfa4f11eb0d02()
/arkcompiler/runtime_core/docs/
Dir_format.md342 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/compiler/optimizer/ir/
Dgraph.h830 [[nodiscard]] Inst* CreateInst(Opcode opc) const in CreateInst() function
853 [[nodiscard]] BASE* CreateInst##OPCODE(Args&&... args) const { \
Dinst.cpp266 auto clone = targetGraph->CreateInst(GetOpcode()); in Clone()
Dir_constructor.h120 auto inst = graph_->CreateInst(std::forward<Args>(args)...); in NewInst()