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()
1065 if (NewInsnID >= OutMIs.size()) in executeMatchTable()
1066 OutMIs.resize(NewInsnID + 1); in executeMatchTable()
1071 OutMIs[NewInsnID] = MachineInstrBuilder(*OldMI->getMF(), OldMI); in executeMatchTable()
1072 OutMIs[NewInsnID]->setDesc(TII.get(NewOpcode)); in executeMatchTable()
1086 if (NewInsnID >= OutMIs.size()) in executeMatchTable()
1087 OutMIs.resize(NewInsnID + 1); in executeMatchTable()
1089 OutMIs[NewInsnID] = Builder.buildInstr(Opcode); in executeMatchTable()
1113 assert(OutMIs[NewInsnID] && "Attempted to add to undefined instruction"); in executeMatchTable()
[all …]
H A DGIMatchTableExecutor.h727 NewMIVector &OutMIs) const { in runCustomAction() argument