Home
last modified time | relevance | path

Searched refs:BlockIndex (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DExpandMemCmp.cpp87 void emitLoadCompareBlock(unsigned BlockIndex);
88 void emitLoadCompareBlockMultipleLoads(unsigned BlockIndex,
280 Builder.SetInsertPoint(LoadCmpBlocks[BlockIndex]); in emitLoadCompareByteBlock()
294 PhiRes->addIncoming(Diff, LoadCmpBlocks[BlockIndex]); in emitLoadCompareByteBlock()
296 if (BlockIndex < (LoadCmpBlocks.size() - 1)) { in emitLoadCompareByteBlock()
328 Builder.SetInsertPoint(LoadCmpBlocks[BlockIndex]); in getCompareLoadPairs()
417 if (BlockIndex == LoadCmpBlocks.size() - 1) { in emitLoadCompareBlockMultipleLoads()
419 PhiRes->addIncoming(Zero, LoadCmpBlocks[BlockIndex]); in emitLoadCompareBlockMultipleLoads()
446 Builder.SetInsertPoint(LoadCmpBlocks[BlockIndex]); in emitLoadCompareBlock()
488 if (BlockIndex == LoadCmpBlocks.size() - 1) { in emitLoadCompareBlock()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/MSF/
H A DIMSFFile.h33 virtual Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
35 virtual Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp709 for (int BlockIndex = NumBlocks - 1; BlockIndex > 0; --BlockIndex) { in getOrderedBlocks() local
713 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex in getOrderedBlocks()
717 Blocks[BlockIndex] = CurBlock; in getOrderedBlocks()
721 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex in getOrderedBlocks()
727 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex in getOrderedBlocks()
H A DRewriteStatepointsForGC.cpp1057 int BlockIndex = BasePHI->getBasicBlockIndex(InBB); in findBasePointer() local
1058 if (BlockIndex != -1) { in findBasePointer()
1059 Value *OldBase = BasePHI->getIncomingValue(BlockIndex); in findBasePointer()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h70 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
72 Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp104 Expected<ArrayRef<uint8_t>> PDBFile::getBlockData(uint32_t BlockIndex, in getBlockData() argument
106 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize()); in getBlockData()
114 Error PDBFile::setBlockData(uint32_t BlockIndex, uint32_t Offset, in setBlockData() argument
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp234 uint32_t BlockIndex = FileOffset / BlockSize; in getOffsetInStream() local
235 uint32_t OffsetInBlock = FileOffset - BlockIndex * BlockSize; in getOffsetInStream()
237 auto Iter = llvm::find(StreamBlocks, BlockIndex); in getOffsetInStream()