HomeSort by relevance Sort by last modified time
    Searched refs:InsertBranch (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/lib/Target/CellSPU/
SPUInstrInfo.h 77 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
SPUInstrInfo.cpp 351 SPUInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
356 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.h 83 unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
MSP430InstrInfo.cpp 260 MSP430InstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
265 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.h 75 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
MipsInstrInfo.cpp 391 InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
396 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 80 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
SparcInstrInfo.cpp 230 SparcInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB,
234 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.h 57 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
XCoreInstrInfo.cpp 183 /// Note that RemoveBranch and InsertBranch must be implemented to support
275 XCoreInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB,
280 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/PTX/
PTXInstrInfo.h 85 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
PTXInstrInfo.cpp 264 InsertBranch(MachineBasicBlock &MBB,
269 DEBUG(dbgs() << "InsertBranch: MBB: " << MBB.getName().str() << "\n");
270 DEBUG(if (TBB) dbgs() << "InsertBranch: TBB: " << TBB->getName().str()
272 else dbgs() << "InsertBranch: TBB: (NULL)\n");
273 DEBUG(if (FBB) dbgs() << "InsertBranch: FBB: " << FBB->getName().str()
275 else dbgs() << "InsertBranch: FBB: (NULL)\n");
276 DEBUG(dbgs() << "InsertBranch: Cond size: " << Cond.size() << "\n");
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.h 114 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 378 TII->InsertBranch(*this, TBB, 0, Cond, dl);
389 TII->InsertBranch(*this, FBB, 0, Cond, dl);
392 TII->InsertBranch(*this, TBB, 0, Cond, dl);
416 TII->InsertBranch(*this, TBB, 0, Cond, dl);
425 TII->InsertBranch(*this, FallthroughBB, 0, Cond, dl);
429 TII->InsertBranch(*this, FallthroughBB, 0, Cond, dl);
432 TII->InsertBranch(*this, TBB, FallthroughBB, Cond, dl);
660 MF->getTarget().getInstrInfo()->InsertBranch(*NMBB, Succ, NULL, Cond, dl);
    [all...]
BranchFolding.cpp 473 TII->InsertBranch(*CurMBB, SuccBB, NULL, Cond, dl);
478 TII->InsertBranch(*CurMBB, SuccBB, NULL,
    [all...]
IfConversion.cpp 432 TII->InsertBranch(*BBI.BB, BBI.FalseBB, BBI.TrueBB, BBI.BrCond, dl);
    [all...]
TargetInstrInfoImpl.cpp 54 InsertBranch(*MBB, NewDest, 0, SmallVector<MachineOperand, 0>(),
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.h 64 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
HexagonHardwareLoops.cpp 530 TII->InsertBranch(*LastMBB, BranchTarget, 0, Cond, dl);
HexagonInstrInfo.cpp 121 HexagonInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB,
129 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
156 return InsertBranch(MBB, TBB, 0, Cond, DL);
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeInstrInfo.h 202 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
MBlazeInstrInfo.cpp 187 InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
192 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/X86/
X86InstrInfo.h 217 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 66 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 265 /// Note that RemoveBranch and InsertBranch must be implemented to support
285 /// InsertBranch - Insert branch code into the end of the specified
295 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
299 llvm_unreachable("Target didn't implement TargetInstrInfo::InsertBranch!");
    [all...]

Completed in 872 milliseconds

1 2