Home
last modified time | relevance | path

Searched refs:CurrentPacketMIs (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DR600Packetizer.cpp229 if (!isTransSlot && !CurrentPacketMIs.empty()) { in isBundlableWithCurrentPMI()
230 if (getSlot(MI) <= getSlot(*CurrentPacketMIs.back())) { in isBundlableWithCurrentPMI()
245 CurrentPacketMIs.push_back(&MI); in isBundlableWithCurrentPMI()
246 if (!TII->fitsConstReadLimitations(CurrentPacketMIs)) { in isBundlableWithCurrentPMI()
251 for (unsigned i = 0, e = CurrentPacketMIs.size() - 1; i < e; i++) { in isBundlableWithCurrentPMI()
252 CurrentPacketMIs[i]->dump(); in isBundlableWithCurrentPMI()
257 CurrentPacketMIs.pop_back(); in isBundlableWithCurrentPMI()
262 if (!TII->fitsReadPortLimitations(CurrentPacketMIs, in isBundlableWithCurrentPMI()
268 for (unsigned i = 0, e = CurrentPacketMIs.size() - 1; i < e; i++) { in isBundlableWithCurrentPMI()
269 CurrentPacketMIs[i]->dump(); in isBundlableWithCurrentPMI()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp165 if (!CurrentPacketMIs.empty()) { in endPacket()
168 for (MachineInstr *MI : CurrentPacketMIs) { in endPacket()
174 if (CurrentPacketMIs.size() > 1) { in endPacket()
175 MachineInstr &MIFirst = *CurrentPacketMIs.front(); in endPacket()
178 CurrentPacketMIs.clear(); in endPacket()
242 for (auto MJ : CurrentPacketMIs) { in PacketizeMIs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp388 for (auto BI : CurrentPacketMIs) { in cleanUpDotCur()
445 for (auto BI : CurrentPacketMIs) { in canPromoteToDotCur()
673 for (auto I : CurrentPacketMIs) { in canPromoteToNewValueStore()
759 for (auto I : CurrentPacketMIs) { in canPromoteToNewValueStore()
924 for (auto I : CurrentPacketMIs) { in restrictingDepExistInPacket()
994 for (auto I : CurrentPacketMIs) { in arePredicatesComplements()
1324 if (CurrentPacketMIs.size() == 1) in isLegalToPacketizeTogether()
1367 for (MachineInstr *PI : CurrentPacketMIs) { in isLegalToPacketizeTogether()
1680 for (auto MJ : CurrentPacketMIs) { in foundLSInPacket()
1700 if (CurrentPacketMIs.empty()) in addToPacket()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DDFAPacketizer.h121 std::vector<MachineInstr*> CurrentPacketMIs; variable
144 CurrentPacketMIs.push_back(&MI); in addToPacket()