Searched refs:OffsetBytes (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | R600FrameLowering.cpp | 31 unsigned OffsetBytes = 2 * (getStackWidth(MF) * 4); in getFrameIndexReference() local 35 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlign(i)); in getFrameIndexReference() 36 OffsetBytes += MFI.getObjectSize(i); in getFrameIndexReference() 39 OffsetBytes = alignTo(OffsetBytes, Align(4)); in getFrameIndexReference() 43 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlign(FI)); in getFrameIndexReference() 45 return StackOffset::getFixed(OffsetBytes / (getStackWidth(MF) * 4)); in getFrameIndexReference()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldImpl.h | 89 uint8_t *getAddressWithOffset(unsigned OffsetBytes) const { in getAddressWithOffset() argument 90 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getAddressWithOffset() 91 return Address + OffsetBytes; in getAddressWithOffset() 100 uint64_t getLoadAddressWithOffset(unsigned OffsetBytes) const { in getLoadAddressWithOffset() argument 101 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getLoadAddressWithOffset() 102 return LoadAddress + OffsetBytes; in getLoadAddressWithOffset()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ExpandMemCmp.cpp | 114 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned OffsetBytes); 124 Type *CmpSizeType, unsigned OffsetBytes); 323 unsigned OffsetBytes) { in getLoadPair() argument 329 if (OffsetBytes > 0) { in getLoadPair() 331 LhsSource = Builder.CreateConstGEP1_64(ByteType, LhsSource, OffsetBytes); in getLoadPair() 332 RhsSource = Builder.CreateConstGEP1_64(ByteType, RhsSource, OffsetBytes); in getLoadPair() 333 LhsAlign = commonAlignment(LhsAlign, OffsetBytes); in getLoadPair() 334 RhsAlign = commonAlignment(RhsAlign, OffsetBytes); in getLoadPair() 377 unsigned OffsetBytes) { in emitLoadCompareByteBlock() argument 382 Type::getInt32Ty(CI->getContext()), OffsetBytes); in emitLoadCompareByteBlock()
|