Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp326 const uptr AlignedSize = (Alignment > MinAlignment) ? in allocate() local
329 UNLIKELY(AlignedSize >= MaxAllowedMallocSize)) { in allocate()
332 reportAllocationSizeTooBig(Size, AlignedSize, MaxAllowedMallocSize); in allocate()
347 if (PrimaryT::CanAllocate(AlignedSize, MinAlignment)) { in allocate()
348 BackendSize = AlignedSize; in allocate()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp363 unsigned AlignedSize = alignTo(Type.RecordData.size(), 4); in remapType() local
369 DestIdx = Dest.insertRecordAs(H, AlignedSize, DoSerialize); in remapType()
374 RemapStorage.resize(AlignedSize); in remapType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp973 size_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in tagAlloca() local
975 Size = AlignedSize; in tagAlloca()
981 ConstantInt::get(IntptrTy, AlignedSize)}); in tagAlloca()
993 if (Size != AlignedSize) { in tagAlloca()
999 AlignedSize - 1)); in tagAlloca()
1388 uint64_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in sanitizeFunction() local
1391 if (Size != AlignedSize) { in sanitizeFunction()
1399 AllocatedType, ArrayType::get(Int8Ty, AlignedSize - Size)); in sanitizeFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp496 uint64_t AlignedSize = alignTo(Size, kTagGranuleSize); in alignAndPadAlloca() local
497 if (Size == AlignedSize) in alignAndPadAlloca()
508 ArrayType::get(Type::getInt8Ty(F->getContext()), AlignedSize - Size); in alignAndPadAlloca()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp1066 uint64_t AlignedSize = 0; in relaxBoundaryAlign() local
1069 AlignedSize += computeFragmentSize(Layout, *F); in relaxBoundaryAlign()
1072 uint64_t NewSize = needPadding(AlignedOffset, AlignedSize, BoundaryAlignment) in relaxBoundaryAlign()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp147 CharUnits AlignedSize = Size.alignTo(Align); in add() local
148 if (AlignedSize > Offset || Offset.alignTo(Align) != Offset) in add()
150 else if (AlignedSize < Offset) { in add()
446 CharUnits AlignedSize = Size.alignTo(Align); in buildFrom() local
451 if ((DesiredSize < AlignedSize && !AllowOversized) || in buildFrom()
456 } else if (DesiredSize > AlignedSize) { in buildFrom()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp461 uint64_t AlignedSize = in computeAllocationSizeForSections() local
463 TotalSize += AlignedSize; in computeAllocationSizeForSections()