Home
last modified time | relevance | path

Searched refs:OffsetBytes (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600FrameLowering.cpp31 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 DRuntimeDyldImpl.h90 uint8_t *getAddressWithOffset(unsigned OffsetBytes) const { in getAddressWithOffset() argument
91 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getAddressWithOffset()
92 return Address + OffsetBytes; in getAddressWithOffset()
101 uint64_t getLoadAddressWithOffset(unsigned OffsetBytes) const { in getLoadAddressWithOffset() argument
102 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getLoadAddressWithOffset()
103 return LoadAddress + OffsetBytes; in getLoadAddressWithOffset()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandMemCmp.cpp114 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()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp2035 unsigned OffsetBytes = 0; in selectVaStartAAPCS() local
2052 .addImm(OffsetBytes / PtrSize) in selectVaStartAAPCS()
2054 MMO->getPointerInfo().getWithOffset(OffsetBytes), in selectVaStartAAPCS()
2058 OffsetBytes += PtrSize; in selectVaStartAAPCS()
2087 .addImm(OffsetBytes / IntSize) in selectVaStartAAPCS()
2089 MMO->getPointerInfo().getWithOffset(OffsetBytes), in selectVaStartAAPCS()
2092 OffsetBytes += IntSize; in selectVaStartAAPCS()
2101 assert(OffsetBytes == (STI.isTargetILP32() ? 20 : 32) && "Unexpected offset"); in selectVaStartAAPCS()