HomeSort by relevance Sort by last modified time
    Searched refs:NewMBB (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/CodeGen/
ExpandISelPseudos.cpp 61 MachineBasicBlock *NewMBB =
64 if (NewMBB != MBB) {
65 MBB = NewMBB;
66 I = NewMBB;
67 MBBI = NewMBB->begin();
68 MBBE = NewMBB->end();
BranchFolding.h 99 MachineBasicBlock *NewMBB);
BranchFolding.cpp 386 MachineBasicBlock *NewMBB) {
395 NewMBB->addLiveIn(i);
426 MachineBasicBlock *NewMBB =MF.CreateMachineBasicBlock(BB);
427 CurMBB.getParent()->insert(++MBBI, NewMBB);
430 NewMBB->transferSuccessors(&CurMBB);
432 // Add an edge from CurMBB to NewMBB for the fall-through.
433 CurMBB.addSuccessor(NewMBB);
436 NewMBB->splice(NewMBB->end(), &CurMBB, BBI1, CurMBB.end());
439 MaintainLiveIns(&CurMBB, NewMBB);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsLongBranch.cpp 147 MachineBasicBlock *NewMBB =
150 // Insert NewMBB and fix control flow.
152 NewMBB->transferSuccessors(MBB);
153 NewMBB->removeSuccessor(Tgt);
154 MBB->addSuccessor(NewMBB);
156 MF->insert(std::next(MachineFunction::iterator(MBB)), NewMBB);
158 NewMBB->splice(NewMBB->end(), MBB, (++LastBr).base(), MBB->end());
MipsConstantIslandPass.cpp 403 MachineBasicBlock *&NewMBB);
864 // Next, update WaterList. Specifically, we need to add NewMBB as having
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 290 MachineBasicBlock *&NewMBB);
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 493 MachineInstr *NewMBB =
495 MBB->insert(I, NewMBB);
497 SHOWNEWINSTR(NewMBB);
498 return NewMBB;
695 MachineBasicBlock *NewMBB = Func->CreateMachineBasicBlock();
696 Func->push_back(NewMBB); //insert to function
700 NewMBB->push_back(MI);
702 return NewMBB;
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]

Completed in 1159 milliseconds