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

1 2

  /external/llvm/lib/Target/BPF/
BPFInstrInfo.cpp 133 unsigned BPFInstrInfo::InsertBranch(MachineBasicBlock &MBB,
139 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinInstrInfo.cpp 79 InsertBranch(MachineBasicBlock &MBB,
85 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyInstrInfo.cpp 164 unsigned WebAssemblyInstrInfo::InsertBranch(MachineBasicBlock &MBB,
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 263 unsigned MSP430InstrInfo::InsertBranch(MachineBasicBlock &MBB,
269 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/NVPTX/
NVPTXInstrInfo.cpp 146 /// Note that RemoveBranch and InsertBranch must be implemented to support
232 unsigned NVPTXInstrInfo::InsertBranch(MachineBasicBlock &MBB,
238 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaInstrInfo.cpp 87 unsigned AlphaInstrInfo::InsertBranch(MachineBasicBlock &MBB,
92 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeInstrInfo.cpp 187 InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
192 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430InstrInfo.cpp 266 MSP430InstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
271 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/Sparc/
SparcInstrInfo.cpp 219 SparcInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB,
223 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZInstrInfo.cpp 320 SystemZInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
325 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/AVR/
AVRInstrInfo.cpp 376 unsigned AVRInstrInfo::InsertBranch(MachineBasicBlock &MBB,
382 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.cpp 115 unsigned MipsInstrInfo::InsertBranch(MachineBasicBlock &MBB,
121 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUInstrInfo.cpp 351 SPUInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
356 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsInstrInfo.cpp 370 InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
375 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
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/Lanai/
LanaiInstrInfo.cpp 563 // to insert in InsertBranch;
663 unsigned LanaiInstrInfo::InsertBranch(MachineBasicBlock &MBB,
669 assert(TrueBlock && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.cpp 243 unsigned SparcInstrInfo::InsertBranch(MachineBasicBlock &MBB,
248 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.cpp 187 /// Note that RemoveBranch and InsertBranch must be implemented to support
272 unsigned XCoreInstrInfo::InsertBranch(MachineBasicBlock &MBB,
278 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetInstrInfo.h 264 /// 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 assert(0 && "Target didn't implement TargetInstrInfo::InsertBranch!");
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXInstrInfo.cpp 266 InsertBranch(MachineBasicBlock &MBB,
271 DEBUG(dbgs() << "InsertBranch: MBB: " << MBB.getName().str() << "\n");
272 DEBUG(if (TBB) dbgs() << "InsertBranch: TBB: " << TBB->getName().str()
274 else dbgs() << "InsertBranch: TBB: (NULL)\n");
275 DEBUG(if (FBB) dbgs() << "InsertBranch: FBB: " << FBB->getName().str()
277 else dbgs() << "InsertBranch: FBB: (NULL)\n");
278 DEBUG(dbgs() << "InsertBranch: Cond size: " << Cond.size() << "\n");
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCInstrInfo.cpp 276 PPCInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
281 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
  /external/v8/src/compiler/
schedule.cc 286 void Schedule::InsertBranch(BasicBlock* block, BasicBlock* end, Node* branch,
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 638 unsigned PPCInstrInfo::InsertBranch(MachineBasicBlock &MBB,
644 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
    [all...]
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 462 /// Note that RemoveBranch and InsertBranch must be implemented to support
542 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
546 llvm_unreachable("Target didn't implement TargetInstrInfo::InsertBranch!");
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIInstrInfo.cpp     [all...]

Completed in 771 milliseconds

1 2