Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2133 uint64_t RightRedzoneSize = RZ; in InstrumentGlobals() local
2135 if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ); in InstrumentGlobals()
2136 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0); in InstrumentGlobals()
2137 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize); in InstrumentGlobals()
2228 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize), in InstrumentGlobals()