Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGIMatchTableExecutorImpl.h58 NewMIVector OutMIs; in executeMatchTable() local
80 for (auto MIB : OutMIs) { in executeMatchTable()
1027 if (NewInsnID >= OutMIs.size()) in executeMatchTable()
1028 OutMIs.resize(NewInsnID + 1); in executeMatchTable()
1033 OutMIs[NewInsnID] = MachineInstrBuilder(*OldMI->getMF(), OldMI); in executeMatchTable()
1034 OutMIs[NewInsnID]->setDesc(TII.get(NewOpcode)); in executeMatchTable()
1048 if (NewInsnID >= OutMIs.size()) in executeMatchTable()
1049 OutMIs.resize(NewInsnID + 1); in executeMatchTable()
1051 OutMIs[NewInsnID] = Builder.buildInstr(Opcode); in executeMatchTable()
1075 assert(OutMIs[NewInsnID] && "Attempted to add to undefined instruction"); in executeMatchTable()
[all …]
H A DGIMatchTableExecutor.h691 NewMIVector &OutMIs) const { in runCustomAction() argument