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 121 MachineBasicBlock *NewMBB);
BranchFolding.cpp 393 MachineBasicBlock *NewMBB) {
400 NewMBB->addLiveIn(i);
431 MachineBasicBlock *NewMBB =MF.CreateMachineBasicBlock(BB);
432 CurMBB.getParent()->insert(++MBBI, NewMBB);
435 NewMBB->transferSuccessors(&CurMBB);
437 // Add an edge from CurMBB to NewMBB for the fall-through.
438 CurMBB.addSuccessor(NewMBB);
441 NewMBB->splice(NewMBB->end(), &CurMBB, BBI1, CurMBB.end());
443 // NewMBB inherits CurMBB's block frequency
    [all...]
  /external/llvm/lib/Target/Mips/
MipsLongBranch.cpp 145 MachineBasicBlock *NewMBB =
148 // Insert NewMBB and fix control flow.
150 NewMBB->transferSuccessors(MBB);
151 NewMBB->removeSuccessor(Tgt);
152 MBB->addSuccessor(NewMBB);
154 MF->insert(std::next(MachineFunction::iterator(MBB)), NewMBB);
156 NewMBB->splice(NewMBB->end(), MBB, (++LastBr).base(), MBB->end());
MipsConstantIslandPass.cpp 401 MachineBasicBlock *&NewMBB);
860 // Next, update WaterList. Specifically, we need to add NewMBB as having
931 // Figure out how large the NewMBB is. As the second half of the original
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 291 MachineBasicBlock *&NewMBB);
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 496 MachineInstr *NewMBB =
498 MBB->insert(I, NewMBB);
500 SHOWNEWINSTR(NewMBB);
501 return NewMBB;
698 MachineBasicBlock *NewMBB = Func->CreateMachineBasicBlock();
699 Func->push_back(NewMBB); //insert to function
703 NewMBB->push_back(MI);
705 return NewMBB;
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]

Completed in 369 milliseconds