Searched refs:PaddedSize (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | SystemZ.cpp | 298 CharUnits PaddedSize = CharUnits::fromQuantity(8); in EmitVAArg() local 299 if (IsVector && UnpaddedSize > PaddedSize) in EmitVAArg() 300 PaddedSize = CharUnits::fromQuantity(16); in EmitVAArg() 301 assert((UnpaddedSize <= PaddedSize) && "Invalid argument size."); in EmitVAArg() 303 CharUnits Padding = (PaddedSize - UnpaddedSize); in EmitVAArg() 307 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity()); in EmitVAArg() 329 assert(PaddedSize.getQuantity() == 8); in EmitVAArg() 364 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity() in EmitVAArg() 374 CGF.Int8Ty, PaddedSize); in EmitVAArg() 392 CGF.Int8Ty, PaddedSize); in EmitVAArg()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyMCCodeEmitter.cpp | 154 size_t PaddedSize = 5; in encodeInstruction() local 163 PaddedSize = 10; in encodeInstruction() 176 PaddedSize = 10; in encodeInstruction() 189 encodeULEB128(0, OS, PaddedSize); in encodeInstruction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Allocator.h | 185 size_t PaddedSize = SizeToAllocate + Alignment.value() - 1; in AllocateSlow() local 186 if (PaddedSize > SizeThreshold) { in AllocateSlow() 188 this->getAllocator().Allocate(PaddedSize, alignof(std::max_align_t)); in AllocateSlow() 191 __asan_poison_memory_region(NewSlab, PaddedSize); in AllocateSlow() 192 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize)); in AllocateSlow() 195 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize); in AllocateSlow()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewReader.cpp | 359 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() local 360 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAsmStreamer.cpp | 1017 uint32_t PaddedSize = alignTo(MetadataSize, WordSize); in emitXCOFFCInfoSym() local 1018 uint32_t PaddingSize = PaddedSize - MetadataSize; in emitXCOFFCInfoSym() 1047 assert(PaddedSize - Index == WordSize); in emitXCOFFCInfoSym()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 1171 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() local 1172 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
|
| H A D | ELFDumper.cpp | 5528 uint64_t PaddedSize = alignTo(DataSize, sizeof(typename ELFT::uint)); in getGNUPropertyList() local 5531 if (Arr.size() < PaddedSize) { in getGNUPropertyList() 5537 Type, DataSize, Arr.take_front(PaddedSize), EMachine)); in getGNUPropertyList() 5538 Arr = Arr.drop_front(PaddedSize); in getGNUPropertyList()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 3938 unsigned PaddedSize = Size + ((RequiredPadding == 4) ? 0 : RequiredPadding); in promoteToConstantPool() local 3947 if (AFI->getPromotedConstpoolIncrease() + PaddedSize - 4 >= in promoteToConstantPool() 3977 PaddedSize - 4); in promoteToConstantPool()
|