Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DExpandMemCmp.cpp91 Value *getCompareLoadPairs(unsigned BlockIndex, unsigned &LoadIndex);
92 void emitLoadCompareBlock(unsigned BlockIndex);
93 void emitLoadCompareBlockMultipleLoads(unsigned BlockIndex,
95 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned GEPIndex);
196 void MemCmpExpansion::emitLoadCompareByteBlock(unsigned BlockIndex, in emitLoadCompareByteBlock() argument
201 Builder.SetInsertPoint(LoadCmpBlocks[BlockIndex]); in emitLoadCompareByteBlock()
224 PhiRes->addIncoming(Diff, LoadCmpBlocks[BlockIndex]); in emitLoadCompareByteBlock()
226 if (BlockIndex < (LoadCmpBlocks.size() - 1)) { in emitLoadCompareByteBlock()
232 BranchInst::Create(EndBlock, LoadCmpBlocks[BlockIndex + 1], Cmp); in emitLoadCompareByteBlock()
244 Value *MemCmpExpansion::getCompareLoadPairs(unsigned BlockIndex, in getCompareLoadPairs() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/MSF/
DIMSFFile.h33 virtual Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
35 virtual Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DIPDBFile.h36 virtual Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
38 virtual Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
DPDBFile.h91 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
93 Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DMergeICmps.cpp641 for (int BlockIndex = NumBlocks - 1; BlockIndex > 0; --BlockIndex) { in getOrderedBlocks() local
645 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex in getOrderedBlocks()
649 Blocks[BlockIndex] = CurBlock; in getOrderedBlocks()
653 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex in getOrderedBlocks()
659 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex in getOrderedBlocks()
DRewriteStatepointsForGC.cpp1056 int BlockIndex = BasePHI->getBasicBlockIndex(InBB); in findBasePointer() local
1057 if (BlockIndex != -1) { in findBasePointer()
1058 Value *OldBase = BasePHI->getIncomingValue(BlockIndex); in findBasePointer()
/external/llvm/lib/DebugInfo/PDB/Raw/
DPDBFile.cpp76 Expected<ArrayRef<uint8_t>> PDBFile::getBlockData(uint32_t BlockIndex, in getBlockData() argument
78 uint64_t StreamBlockOffset = blockToOffset(BlockIndex, getBlockSize()); in getBlockData()
86 Error PDBFile::setBlockData(uint32_t BlockIndex, uint32_t Offset, in setBlockData() argument
97 uint64_t StreamBlockOffset = blockToOffset(BlockIndex, getBlockSize()); in setBlockData()
/external/llvm/unittests/DebugInfo/PDB/
DMappedBlockStreamTest.cpp64 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex, in getBlockData() argument
66 return ArrayRef<uint8_t>(&Data[BlockIndex], NumBytes); in getBlockData()
69 Error setBlockData(uint32_t BlockIndex, uint32_t Offset, in setBlockData() argument
71 if (BlockIndex >= Blocks.size()) in setBlockData()
75 ::memcpy(&Data[BlockIndex] + Offset, SrcData.data(), SrcData.size()); in setBlockData()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DPDBFile.h70 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
72 Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
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
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
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()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/MSF/
DMappedBlockStreamTest.cpp495 MATCHER_P3(BlockIsFilledWith, Layout, BlockIndex, Byte, "succeeded") {
496 uint64_t Offset = msf::blockToOffset(BlockIndex, Layout.SB->BlockSize);
/external/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp926 int BlockIndex = BasePHI->getBasicBlockIndex(InBB); in findBasePointer() local
927 if (BlockIndex != -1) { in findBasePointer()
928 Value *OldBase = BasePHI->getIncomingValue(BlockIndex); in findBasePointer()