Home
last modified time | relevance | path

Searched refs:BlockBegin (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h83 void *BlockBegin = Allocator::getBlockBegin(Ptr, &Header); in recycle() local
84 SizeClassAllocator.deallocate(Header.ClassId, BlockBegin); in recycle()
542 void *BlockBegin = getBlockBegin(OldTaggedPtr, &Header); variable
547 BlockEnd = reinterpret_cast<uptr>(BlockBegin) +
551 BlockEnd = SecondaryT::getBlockEnd(BlockBegin);
1273 void *BlockBegin; in quarantineOrDeallocateChunk() local
1278 BlockBegin = getBlockBegin(Ptr, Header); in quarantineOrDeallocateChunk()
1280 BlockBegin = retagBlock(Options, TaggedPtr, Ptr, Header, Size, true); in quarantineOrDeallocateChunk()
1289 TSD->getSizeClassAllocator().deallocate(ClassId, BlockBegin); in quarantineOrDeallocateChunk()
1298 Secondary.deallocate(Options, BlockBegin); in quarantineOrDeallocateChunk()
[all …]
H A Dsecondary.h90 uptr BlockBegin = 0; member
111 UNUSED uptr CommitSize, UNUSED uptr BlockBegin, in store() argument
259 uptr BlockBegin, MemMapT MemMap) EXCLUDES(Mutex) { in store() argument
268 Entry.BlockBegin = BlockBegin; in store()
720 } else if (Entry.BlockBegin < NewBlockBegin) { in tryAllocateFromCache()
721 storeTags(Entry.BlockBegin, NewBlockBegin); in tryAllocateFromCache()
723 storeTags(untagPointer(NewBlockBegin), untagPointer(Entry.BlockBegin)); in tryAllocateFromCache()
H A Dcommon.h224 uptr BlockBegin; member
H A Dprimary64.h1364 B.BlockBegin = B.RegionBegin + uptr(sptr(Ptr - B.RegionBegin) / in findNearestBlock()
1366 while (B.BlockBegin < B.RegionBegin) in findNearestBlock()
1367 B.BlockBegin += B.BlockSize; in findNearestBlock()
1368 while (B.RegionEnd < B.BlockBegin + B.BlockSize) in findNearestBlock()
1369 B.BlockBegin -= B.BlockSize; in findNearestBlock()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp110 BlockBegin enumerator
136 return Cursor::BlockBegin; in skipUntilRecordOrBlock()
179 case Cursor::BlockBegin: in readMetaBlock()
229 case Cursor::BlockBegin: in readDiagnosticBlock()
/freebsd/contrib/llvm-project/llvm/include/llvm/WindowsResource/
H A DResourceScriptTokenList.h25 SHORT_TOKEN(BlockBegin, '{') // Start of the script block; can also be BEGIN.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp274 BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin(); in InsertBinop() local
277 if (IP != BlockBegin) { in InsertBinop()
297 if (IP == BlockBegin) break; in InsertBinop()
373 BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin(); in expandAddToGEP() local
376 if (IP != BlockBegin) { in expandAddToGEP()
388 if (IP == BlockBegin) break; in expandAddToGEP()
H A DLoopUnrollAndJam.cpp341 LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO(); in UnrollAndJamLoop() local
370 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) { in UnrollAndJamLoop()
H A DLoopUnrollRuntime.cpp349 LoopBlocksDFS::RPOIterator BlockBegin = LoopBlocks.beginRPO(); in CloneLoopBlocks() local
357 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) { in CloneLoopBlocks()
H A DLoopUnroll.cpp675 LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO(); in UnrollLoop() local
718 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) { in UnrollLoop()
H A DLoopPeel.cpp847 LoopBlocksDFS::RPOIterator BlockBegin = LoopBlocks.beginRPO(); in cloneLoopBlocks() local
853 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) { in cloneLoopBlocks()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp418 auto BlockBegin = Begin->begin(); in range() local
421 InvokeStateChangeIterator(EHInfo, Begin, End, BlockBegin, BaseState), in range()