Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DSystemZ.cpp285 CharUnits PaddedSize = CharUnits::fromQuantity(8); in EmitVAArg() local
286 if (IsVector && UnpaddedSize > PaddedSize) in EmitVAArg()
287 PaddedSize = CharUnits::fromQuantity(16); in EmitVAArg()
288 assert((UnpaddedSize <= PaddedSize) && "Invalid argument size."); in EmitVAArg()
290 CharUnits Padding = (PaddedSize - UnpaddedSize); in EmitVAArg()
294 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity()); in EmitVAArg()
316 assert(PaddedSize.getQuantity() == 8); in EmitVAArg()
351 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity() in EmitVAArg()
361 CGF.Int8Ty, PaddedSize); in EmitVAArg()
379 CGF.Int8Ty, PaddedSize); in EmitVAArg()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCCodeEmitter.cpp151 size_t PaddedSize = 5; in encodeInstruction() local
158 PaddedSize = 10; in encodeInstruction()
171 PaddedSize = 10; in encodeInstruction()
179 encodeULEB128(0, OS, PaddedSize); in encodeInstruction()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DAllocator.h177 size_t PaddedSize = SizeToAllocate + Alignment.value() - 1; in Allocate() local
178 if (PaddedSize > SizeThreshold) { in Allocate()
180 this->getAllocator().Allocate(PaddedSize, alignof(std::max_align_t)); in Allocate()
183 __asan_poison_memory_region(NewSlab, PaddedSize); in Allocate()
184 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize)); in Allocate()
187 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize); in Allocate()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp364 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() local
365 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp993 uint32_t PaddedSize = alignTo(MetadataSize, WordSize); in emitXCOFFCInfoSym() local
994 uint32_t PaddingSize = PaddedSize - MetadataSize; in emitXCOFFCInfoSym()
1023 assert(PaddedSize - Index == WordSize); in emitXCOFFCInfoSym()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1123 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() local
1124 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
H A DELFDumper.cpp5252 uint64_t PaddedSize = alignTo(DataSize, sizeof(typename ELFT::uint)); in getGNUPropertyList() local
5255 if (Arr.size() < PaddedSize) { in getGNUPropertyList()
5261 getGNUProperty<ELFT>(Type, DataSize, Arr.take_front(PaddedSize))); in getGNUPropertyList()
5262 Arr = Arr.drop_front(PaddedSize); in getGNUPropertyList()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp3852 unsigned PaddedSize = Size + ((RequiredPadding == 4) ? 0 : RequiredPadding); in promoteToConstantPool() local
3861 if (AFI->getPromotedConstpoolIncrease() + PaddedSize - 4 >= in promoteToConstantPool()
3891 PaddedSize - 4); in promoteToConstantPool()