Home
last modified time | relevance | path

Searched refs:LastBlock (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp742 BasicBlock *const LastBlock, in getOrderedBlocks() argument
746 assert(LastBlock && "invalid last block"); in getOrderedBlocks()
747 BasicBlock *CurBlock = LastBlock; in getOrderedBlocks()
799 BasicBlock *LastBlock = nullptr; in processPhi() local
802 if (LastBlock) { in processPhi()
820 LastBlock = Phi.getIncomingBlock(I); in processPhi()
822 if (!LastBlock) { in processPhi()
827 if (LastBlock->getSingleSuccessor() != Phi.getParent()) { in processPhi()
833 getOrderedBlocks(Phi, LastBlock, Phi.getNumIncomingValues()); in processPhi()
H A DDFAJumpThreading.cpp1196 BasicBlock *LastBlock = getClonedBB(BB, NextState, DuplicateMap); in updateLastSuccessor() local
1200 if (!isa<SwitchInst>(LastBlock->getTerminator())) in updateLastSuccessor()
1202 SwitchInst *Switch = cast<SwitchInst>(LastBlock->getTerminator()); in updateLastSuccessor()
1207 for (BasicBlock *Succ : successors(LastBlock)) { in updateLastSuccessor()
1209 DTUpdates.push_back({DominatorTree::Delete, LastBlock, Succ}); in updateLastSuccessor()
1213 BranchInst::Create(NextCase, LastBlock); in updateLastSuccessor()
H A DNewGVN.cpp3371 const BasicBlock *LastBlock = getBlockForValue(InstrFromDFSNum(FirstInstr)); in iterateTouchedInstructions() local
3391 if (CurrBlock != LastBlock) { in iterateTouchedInstructions()
3392 LastBlock = CurrBlock; in iterateTouchedInstructions()
/freebsd/stand/efi/libefi/
H A Defipart.c821 blkio->Media->LastBlock == 0? 0: in efipart_print_common()
822 (unsigned long long) (blkio->Media->LastBlock + 1)); in efipart_print_common()
823 if (blkio->Media->LastBlock != 0) { in efipart_print_common()
844 (blkio->Media->LastBlock + 1), in efipart_print_common()
919 blkio->Media->BlockSize * (blkio->Media->LastBlock + 1), in efipart_open()
988 (pd->pd_blkio->Media->LastBlock + 1); in efipart_ioctl()
1014 if (blk < 0 || blk > blkio->Media->LastBlock) in efipart_readwrite()
1016 if ((blk + nblks - 1) > blkio->Media->LastBlock) in efipart_readwrite()
1120 disk_blocks = blkio->Media->LastBlock + 1 - d_offset; in efipart_realstrategy()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp2819 CFGBlock *LastBlock = Block; in VisitCompoundStmt() local
2828 LastBlock = newBlock; in VisitCompoundStmt()
2836 return LastBlock; in VisitCompoundStmt()
2951 CFGBlock *LastBlock = Block; in VisitDeclSubExpr() local
2955 LastBlock = NewBlock; in VisitDeclSubExpr()
2957 return LastBlock; in VisitDeclSubExpr()
3027 CFGBlock *LastBlock = Block; in VisitDeclSubExpr() local
3035 LastBlock = newBlock; in VisitDeclSubExpr()
3039 LastBlock = newBlock; in VisitDeclSubExpr()
3049 LastBlock = newBlock; in VisitDeclSubExpr()
[all …]
/freebsd/stand/efi/gptboot/
H A Dproto.c116 return (dev->Media->LastBlock + 1); in drvsize()
/freebsd/stand/efi/boot1/
H A Dzfs_module.c49 (devinfo->dev->Media->LastBlock + 1)); in ldi_get_size()
/freebsd/stand/efi/include/
H A Defiprot.h98 EFI_LBA LastBlock; member
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2300 Function::iterator LastBlock = --Caller->end(); in InlineFunction() local
2372 FirstNewBlock = LastBlock; ++FirstNewBlock; in InlineFunction()