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

  /external/llvm/lib/CodeGen/
ExpandISelPseudos.cpp 60 MachineBasicBlock *NewMBB =
63 if (NewMBB != MBB) {
64 MBB = NewMBB;
65 I = NewMBB;
66 MBBI = NewMBB->begin();
67 MBBE = NewMBB->end();
BranchFolding.h 99 MachineBasicBlock *NewMBB);
BranchFolding.cpp 378 MachineBasicBlock *NewMBB) {
387 NewMBB->addLiveIn(i);
418 MachineBasicBlock *NewMBB =MF.CreateMachineBasicBlock(BB);
419 CurMBB.getParent()->insert(++MBBI, NewMBB);
422 NewMBB->transferSuccessors(&CurMBB);
424 // Add an edge from CurMBB to NewMBB for the fall-through.
425 CurMBB.addSuccessor(NewMBB);
428 NewMBB->splice(NewMBB->end(), &CurMBB, BBI1, CurMBB.end());
431 MaintainLiveIns(&CurMBB, NewMBB);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsLongBranch.cpp 148 MachineBasicBlock *NewMBB =
151 // Insert NewMBB and fix control flow.
153 NewMBB->transferSuccessors(MBB);
154 NewMBB->removeSuccessor(Tgt);
155 MBB->addSuccessor(NewMBB);
157 MF->insert(llvm::next(MachineFunction::iterator(MBB)), NewMBB);
159 NewMBB->splice(NewMBB->end(), MBB, (++LastBr).base(), MBB->end());
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 289 MachineBasicBlock *&NewMBB);
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 489 MachineInstr *NewMBB =
491 MBB->insert(I, NewMBB);
493 SHOWNEWINSTR(NewMBB);
494 return NewMBB;
691 MachineBasicBlock *NewMBB = Func->CreateMachineBasicBlock();
692 Func->push_back(NewMBB); //insert to function
696 NewMBB->push_back(MI);
698 return NewMBB;
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]

Completed in 742 milliseconds