Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCCodeEmitter.cpp142 size_t PaddedSize = 5; in encodeInstruction() local
149 PaddedSize = 10; in encodeInstruction()
162 PaddedSize = 10; in encodeInstruction()
170 encodeULEB128(0, OS, PaddedSize); in encodeInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DAllocator.h172 size_t PaddedSize = SizeToAllocate + Alignment.value() - 1; in Allocate() local
173 if (PaddedSize > SizeThreshold) { in Allocate()
175 AllocatorT::Allocate(PaddedSize, alignof(std::max_align_t)); in Allocate()
178 __asan_poison_memory_region(NewSlab, PaddedSize); in Allocate()
179 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize)); in Allocate()
182 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize); in Allocate()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DTargetInfo.cpp7438 CharUnits PaddedSize = CharUnits::fromQuantity(8); in EmitVAArg() local
7439 if (IsVector && UnpaddedSize > PaddedSize) in EmitVAArg()
7440 PaddedSize = CharUnits::fromQuantity(16); in EmitVAArg()
7441 assert((UnpaddedSize <= PaddedSize) && "Invalid argument size."); in EmitVAArg()
7443 CharUnits Padding = (PaddedSize - UnpaddedSize); in EmitVAArg()
7447 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity()); in EmitVAArg()
7470 assert(PaddedSize.getQuantity() == 8); in EmitVAArg()
7505 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity() in EmitVAArg()
7515 PaddedSize); in EmitVAArg()
7534 PaddedSize); in EmitVAArg()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp978 uint32_t PaddedSize = alignTo(SubSectionSize, 4); in initializeFileAndStringTables() local
979 if (Error E = Reader.skip(PaddedSize - SubSectionSize)) in initializeFileAndStringTables()
H A DELFDumper.cpp4883 uint64_t PaddedSize = alignTo(DataSize, sizeof(typename ELFT::uint)); in getGNUPropertyList() local
4886 if (Arr.size() < PaddedSize) { in getGNUPropertyList()
4892 getGNUProperty<ELFT>(Type, DataSize, Arr.take_front(PaddedSize))); in getGNUPropertyList()
4893 Arr = Arr.drop_front(PaddedSize); in getGNUPropertyList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp3621 unsigned PaddedSize = Size + ((RequiredPadding == 4) ? 0 : RequiredPadding); in promoteToConstantPool() local
3630 if (AFI->getPromotedConstpoolIncrease() + PaddedSize - 4 >= in promoteToConstantPool()
3660 PaddedSize - 4); in promoteToConstantPool()