Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp894 size_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in tagAlloca() local
896 Size = AlignedSize; in tagAlloca()
902 ConstantInt::get(IntptrTy, AlignedSize)}); in tagAlloca()
914 if (Size != AlignedSize) { in tagAlloca()
920 AlignedSize - 1)); in tagAlloca()
1289 uint64_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in sanitizeFunction() local
1292 if (Size != AlignedSize) { in sanitizeFunction()
1300 AllocatedType, ArrayType::get(Int8Ty, AlignedSize - Size)); in sanitizeFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp494 uint64_t AlignedSize = alignTo(Size, kTagGranuleSize); in alignAndPadAlloca() local
495 if (Size == AlignedSize) in alignAndPadAlloca()
506 ArrayType::get(Type::getInt8Ty(F->getContext()), AlignedSize - Size); in alignAndPadAlloca()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCAssembler.cpp1085 uint64_t AlignedSize = 0; in relaxBoundaryAlign() local
1088 AlignedSize += computeFragmentSize(Layout, *F); in relaxBoundaryAlign()
1091 uint64_t NewSize = needPadding(AlignedOffset, AlignedSize, BoundaryAlignment) in relaxBoundaryAlign()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp461 uint64_t AlignedSize = in computeAllocationSizeForSections() local
463 TotalSize += AlignedSize; in computeAllocationSizeForSections()