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

  /external/llvm/lib/Target/AArch64/
AArch64BranchRelaxation.cpp 213 MachineBasicBlock *OrigBB = MI->getParent();
215 // Create a new MBB for the code after the OrigBB.
217 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock());
218 MachineFunction::iterator MBBI = OrigBB;
223 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end());
225 // Add an unconditional branch from OrigBB to NewBB.
229 BuildMI(OrigBB, DebugLoc(), TII->get(AArch64::B)).addMBB(NewBB);
234 // Figure out how large the OrigBB is. As the first half of the original
239 computeBlockSize(*OrigBB);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp 881 MachineBasicBlock *OrigBB = MI->getParent();
883 // Create a new MBB for the code after the OrigBB.
885 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock());
886 MachineFunction::iterator MBBI = OrigBB; ++MBBI;
890 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end());
892 // Add an unconditional branch from OrigBB to NewBB.
896 BuildMI(OrigBB, DebugLoc(), TII->get(Mips::Bimm16)).addMBB(NewBB);
899 // Update the CFG. All succs of OrigBB are now succs of NewBB.
900 NewBB->transferSuccessors(OrigBB);
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 543 BasicBlock *OrigBB = TheCall->getParent();
544 Function *Caller = OrigBB->getParent();
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 267 milliseconds