Searched defs:ContBB (Results 1 - 11 of 11) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGAtomic.cpp452 llvm::BasicBlock *ContBB = CGF.createBasicBlock("atomic.continue", CGF.CurFn); local
464 CGF.Builder.CreateBr(ContBB);
470 CGF.Builder.CreateBr(ContBB);
480 CGF.Builder.CreateBr(ContBB);
485 CGF.Builder.SetInsertPoint(ContBB);
517 llvm::BasicBlock *ContBB = local
526 CGF.Builder.CreateBr(ContBB);
531 CGF.Builder.CreateBr(ContBB);
533 CGF.Builder.SetInsertPoint(ContBB);
1083 llvm::BasicBlock *ContBB local
1553 auto *ContBB = CGF.createBasicBlock("atomic_cont"); local
1582 auto *ContBB = CGF.createBasicBlock("atomic_cont"); local
1640 auto *ContBB = CGF.createBasicBlock("atomic_cont"); local
1665 auto *ContBB = CGF.createBasicBlock("atomic_cont"); local
[all...]
H A DCGCleanup.cpp520 llvm::BasicBlock *ContBB = nullptr; local
522 ContBB = CGF.createBasicBlock("cleanup.done");
526 CGF.Builder.CreateCondBr(IsActive, CleanupBB, ContBB);
536 CGF.EmitBlock(ContBB);
H A DCGException.cpp1026 llvm::BasicBlock *ContBB = createBasicBlock("try.cont"); local
1030 Builder.CreateBr(ContBB);
1088 Builder.CreateBr(ContBB);
1091 EmitBlock(ContBB);
1148 llvm::BasicBlock *ContBB = CGF.createBasicBlock("finally.cont"); variable
1152 CGF.Builder.CreateCondBr(ShouldRethrow, RethrowBB, ContBB);
1163 CGF.EmitBlock(ContBB);
1841 llvm::BasicBlock *ContBB = createBasicBlock("__try.cont"); local
1845 Builder.CreateBr(ContBB);
1879 Builder.CreateBr(ContBB);
[all...]
H A DCGExprComplex.cpp672 llvm::BasicBlock *ContBB = CGF.createBasicBlock("complex_mul_cont"); local
674 llvm::Instruction *Branch = Builder.CreateCondBr(IsRNaN, INaNBB, ContBB);
686 Branch = Builder.CreateCondBr(IsINaN, LibCallBB, ContBB);
694 Builder.CreateBr(ContBB);
698 CGF.EmitBlock(ContBB);
H A DCGExprCXX.cpp1038 llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end"); local
1049 Builder.CreateCondBr(IsEmpty, ContBB, LoopBB);
1092 Builder.CreateCondBr(IsEnd, ContBB, LoopBB);
1095 EmitBlock(ContBB);
H A DCGBuiltin.cpp1441 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn); local
1458 Builder.SetInsertPoint(ContBB);
1467 Builder.CreateBr(ContBB);
1477 Builder.SetInsertPoint(ContBB);
1509 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn); local
1527 Builder.CreateBr(ContBB);
1534 Builder.SetInsertPoint(ContBB);
1578 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn); local
1581 llvm::SwitchInst *SI = Builder.CreateSwitch(Order, ContBB);
1585 Builder.CreateBr(ContBB);
[all...]
H A DCGExpr.cpp2468 llvm::BasicBlock *ContBB) {
2493 CGF.Builder.CreateBr(ContBB);
2463 emitCheckHandlerCall(CodeGenFunction &CGF, llvm::FunctionType *FnType, ArrayRef<llvm::Value *> FnArgs, StringRef CheckName, CheckRecoverableKind RecoverKind, bool IsFatal, llvm::BasicBlock *ContBB) argument
H A DCGOpenMPRuntime.cpp2346 auto *ContBB = CGF.createBasicBlock(".cancel.continue"); local
2348 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB);
2354 CGF.EmitBlock(ContBB, /*IsFinished=*/true);
4690 auto *ContBB = CGF.createBasicBlock(".cancel.continue"); local
4692 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB);
4700 CGF.EmitBlock(ContBB, /*IsFinished=*/true);
4728 auto *ContBB = CGF.createBasicBlock(".cancel.continue");
4730 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB);
4738 CGF.EmitBlock(ContBB, /*IsFinished=*/true);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1299 BasicBlock *ContBB = local
1308 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1311 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
1335 BranchInst::Create(ContBB, NullPtrBlock);
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp1361 BasicBlock *ContBB = OrigBB->splitBasicBlock(CI, "malloc_cont"); local
1369 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1372 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
1396 BranchInst::Create(ContBB, NullPtrBlock);
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8204 MachineBasicBlock *ContBB = MF->CreateMachineBasicBlock(); local
8205 MF->insert(++MBB->getIterator(), ContBB);
8206 ContBB->splice(ContBB->begin(), MBB,
8208 ContBB->transferSuccessorsAndUpdatePHIs(MBB);
8218 AddDefaultPred(BuildMI(*MBB, MI, DL, TII->get(ARM::t2B)).addMBB(ContBB));
8219 MBB->addSuccessor(ContBB);
8222 return ContBB;

Completed in 264 milliseconds