Lines Matching defs:SSPBufferSize
111 Info.SSPBufferSize = F.getFnAttributeAsParsedInteger(
180 LayoutInfo.SSPBufferSize = Fn.getFnAttributeAsParsedInteger(
209 static bool ContainsProtectableArray(Type *Ty, Module *M, unsigned SSPBufferSize,
224 // If an array has more than SSPBufferSize bytes of allocated space, then we
226 if (SSPBufferSize <= M->getDataLayout().getTypeAllocSize(AT)) {
242 if (ContainsProtectableArray(ET, M, SSPBufferSize, IsLarge, Strong, true)) {
243 // If the element is a protectable array and is large (>= SSPBufferSize)
363 /// call alloca with a either a variable size or a size >= SSPBufferSize,
364 /// functions with character buffers larger than SSPBufferSize, and functions
365 /// with aggregates containing character buffers larger than SSPBufferSize. The
382 unsigned SSPBufferSize = F->getFnAttributeAsParsedInteger(
422 if (CI->getLimitedValue(SSPBufferSize) >= SSPBufferSize) {
423 // A call to alloca with size >= SSPBufferSize requires
453 if (ContainsProtectableArray(AI->getAllocatedType(), M, SSPBufferSize,