Home
last modified time | relevance | path

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

/trueos/contrib/llvm/lib/Transforms/Instrumentation/
HDAddressSanitizer.cpp482 uint64_t AlignedSize = getAlignedAllocaSize(&AI); in visitAllocaInst() local
483 TotalStackSize += AlignedSize; in visitAllocaInst()
1404 uint64_t AlignedSize = getAlignedAllocaSize(AI); in poisonRedZones() local
1405 assert(AlignedSize - SizeInBytes < RedzoneSize()); in poisonRedZones()
1408 Pos += AlignedSize; in poisonRedZones()
1411 if (SizeInBytes < AlignedSize) { in poisonRedZones()
1416 size_t AddressableBytes = RedzoneSize() - (AlignedSize - SizeInBytes); in poisonRedZones()
1542 uint64_t AlignedSize = getAlignedAllocaSize(AI); in poisonStack() local
1543 assert((AlignedSize % RedzoneSize()) == 0); in poisonStack()
1549 Pos += AlignedSize + RedzoneSize(); in poisonStack()