HomeSort by relevance Sort by last modified time
    Searched defs:NextMI (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/CodeGen/
StackSlotColoring.cpp 394 MachineBasicBlock::iterator NextMI = std::next(I);
395 if (NextMI == MBB->end()) continue;
401 if (!(StoreReg = TII->isStoreToStackSlot(*NextMI, SecondSS)))
408 if (NextMI->findRegisterUseOperandIdx(LoadReg, true, nullptr) != -1) {
413 toErase.push_back(&*NextMI);
  /external/llvm/lib/Target/AMDGPU/
SIShrinkInstructions.cpp 252 MachineInstr &NextMI = *Next;
257 uint8_t Nop1 = NextMI.getOperand(0).getImm() + 1;
261 NextMI.getOperand(0).setImm(Nop0 + Nop1 - 1);
  /external/llvm/lib/Target/ARM/
MLxExpansionPass.cpp 252 MachineInstr *NextMI = LastMIs[Idx];
253 if (!NextMI)
256 if (TII->canCauseFpMLxStall(NextMI->getOpcode())) {
262 if (i <= Limit2 && hasRAWHazard(getDefReg(MI), NextMI))
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
MLxExpansionPass.cpp 186 MachineInstr *NextMI = LastMIs[Idx];
187 if (!NextMI)
190 if (TII->canCauseFpMLxStall(NextMI->getOpcode())) {
196 if (i <= Limit2 && hasRAWHazard(getDefReg(MI), NextMI))
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
StackSlotColoring.cpp 683 MachineBasicBlock::iterator NextMI = llvm::next(I);
684 if (NextMI == MBB->end()) continue;
690 if (!(StoreReg = TII->isStoreToStackSlot(NextMI, SecondSS))) continue;
696 if (NextMI->findRegisterUseOperandIdx(LoadReg, true, 0) != -1) {
701 toErase.push_back(NextMI);
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]

Completed in 181 milliseconds