Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp746 BasicBlock *const LastBlock, in getOrderedBlocks() argument
750 assert(LastBlock && "invalid last block"); in getOrderedBlocks()
751 BasicBlock *CurBlock = LastBlock; in getOrderedBlocks()
803 BasicBlock *LastBlock = nullptr; in processPhi() local
806 if (LastBlock) { in processPhi()
824 LastBlock = Phi.getIncomingBlock(I); in processPhi()
826 if (!LastBlock) { in processPhi()
831 if (LastBlock->getSingleSuccessor() != Phi.getParent()) { in processPhi()
837 getOrderedBlocks(Phi, LastBlock, Phi.getNumIncomingValues()); in processPhi()
H A DDFAJumpThreading.cpp1236 BasicBlock *LastBlock = getClonedBB(BB, NextState, DuplicateMap); in updateLastSuccessor() local
1240 if (!isa<SwitchInst>(LastBlock->getTerminator())) in updateLastSuccessor()
1242 SwitchInst *Switch = cast<SwitchInst>(LastBlock->getTerminator()); in updateLastSuccessor()
1247 for (BasicBlock *Succ : successors(LastBlock)) { in updateLastSuccessor()
1249 DTUpdates.push_back({DominatorTree::Delete, LastBlock, Succ}); in updateLastSuccessor()
1253 BranchInst::Create(NextCase, LastBlock); in updateLastSuccessor()
H A DNewGVN.cpp3402 const BasicBlock *LastBlock = getBlockForValue(InstrFromDFSNum(FirstInstr)); in iterateTouchedInstructions() local
3422 if (CurrBlock != LastBlock) { in iterateTouchedInstructions()
3423 LastBlock = CurrBlock; in iterateTouchedInstructions()
/freebsd/stand/efi/libefi/
H A Defipart.c822 blkio->Media->LastBlock == 0? 0: in efipart_print_common()
823 (unsigned long long) (blkio->Media->LastBlock + 1)); in efipart_print_common()
824 if (blkio->Media->LastBlock != 0) { in efipart_print_common()
845 (blkio->Media->LastBlock + 1), in efipart_print_common()
920 blkio->Media->BlockSize * (blkio->Media->LastBlock + 1), in efipart_open()
989 (pd->pd_blkio->Media->LastBlock + 1); in efipart_ioctl()
1015 if (blk < 0 || blk > blkio->Media->LastBlock) in efipart_readwrite()
1017 if ((blk + nblks - 1) > blkio->Media->LastBlock) in efipart_readwrite()
1121 disk_blocks = blkio->Media->LastBlock + 1 - d_offset; in efipart_realstrategy()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp2928 CFGBlock *LastBlock = Block; in VisitCompoundStmt() local
2937 LastBlock = newBlock; in VisitCompoundStmt()
2945 return LastBlock; in VisitCompoundStmt()
3060 CFGBlock *LastBlock = Block; in VisitDeclSubExpr() local
3064 LastBlock = NewBlock; in VisitDeclSubExpr()
3066 return LastBlock; in VisitDeclSubExpr()
3136 CFGBlock *LastBlock = Block; in VisitDeclSubExpr() local
3144 LastBlock = newBlock; in VisitDeclSubExpr()
3148 LastBlock = newBlock; in VisitDeclSubExpr()
3158 LastBlock = newBlock; in VisitDeclSubExpr()
[all …]
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DBlockIo.h178 EFI_LBA LastBlock; member
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVUtils.cpp733 BasicBlock *LastBlock = &*F.begin(); in sortBlocks() local
735 if (BB != LastBlock && &*LastBlock->getNextNode() != BB) { in sortBlocks()
737 BB->moveAfter(LastBlock); in sortBlocks()
739 LastBlock = BB; in sortBlocks()
/freebsd/stand/efi/gptboot/
H A Dproto.c118 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/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2626 Function::iterator LastBlock = --Caller->end(); in InlineFunction() local
2702 FirstNewBlock = LastBlock; ++FirstNewBlock; in InlineFunction()