Searched refs:PaddedSize (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | SystemZ.cpp | 285 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/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
H A D | WebAssemblyMCCodeEmitter.cpp | 151 size_t PaddedSize = 5; in encodeInstruction() 158 PaddedSize = 10; in encodeInstruction() 171 PaddedSize = 10; in encodeInstruction() 179 encodeULEB128(0, OS, PaddedSize); in encodeInstruction() 147 size_t PaddedSize = 5; encodeInstruction() local
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Allocator.h | 182 size_t PaddedSize = SizeToAllocate + Alignment.value() - 1; in AllocateSlow() local 183 if (PaddedSize > SizeThreshold) { in AllocateSlow() 185 this->getAllocator().Allocate(PaddedSize, alignof(std::max_align_t)); in AllocateSlow() 188 __asan_poison_memory_region(NewSlab, PaddedSize); in AllocateSlow() 189 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize)); in AllocateSlow() 192 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize); in AllocateSlow()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
H A D | LVCodeViewReader.cpp | 364 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() 365 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables() 366 uint32_t PaddedSize = alignTo(SubSectionSize, 4); initializeFileAndStringTables() local
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCAsmStreamer.cpp | 1009 uint32_t PaddedSize = alignTo(MetadataSize, WordSize); in emitXCOFFCInfoSym() local 1010 uint32_t PaddingSize = PaddedSize - MetadataSize; in emitXCOFFCInfoSym() 1039 assert(PaddedSize - Index == WordSize); in emitXCOFFCInfoSym()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | COFFDumper.cpp | 1126 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() local 1127 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
|
H A D | ELFDumper.cpp | 5430 uint64_t PaddedSize = alignTo(DataSize, sizeof(typename ELFT::uint)); in getGNUPropertyList() local 5433 if (Arr.size() < PaddedSize) { in getGNUPropertyList() 5439 getGNUProperty<ELFT>(Type, DataSize, Arr.take_front(PaddedSize))); in getGNUPropertyList() 5440 Arr = Arr.drop_front(PaddedSize); in getGNUPropertyList()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 3868 unsigned PaddedSize = Size + ((RequiredPadding == 4) ? 0 : RequiredPadding); in promoteToConstantPool() local 3877 if (AFI->getPromotedConstpoolIncrease() + PaddedSize - 4 >= in promoteToConstantPool() 3907 PaddedSize - 4); in promoteToConstantPool()
|