Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DExpandMemCmp.cpp111 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned OffsetBytes);
121 unsigned OffsetBytes);
283 unsigned OffsetBytes) { in getLoadPair() argument
289 if (OffsetBytes > 0) { in getLoadPair()
293 OffsetBytes); in getLoadPair()
296 OffsetBytes); in getLoadPair()
297 LhsAlign = commonAlignment(LhsAlign, OffsetBytes); in getLoadPair()
298 RhsAlign = commonAlignment(RhsAlign, OffsetBytes); in getLoadPair()
337 unsigned OffsetBytes) { in emitLoadCompareByteBlock() argument
342 Type::getInt32Ty(CI->getContext()), OffsetBytes); in emitLoadCompareByteBlock()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h89 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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/X86/
H A DTarget.cpp471 static MCInst fillStackSpace(unsigned MovOpcode, unsigned OffsetBytes, in fillStackSpace() argument
478 .addImm(OffsetBytes) // Disp in fillStackSpace()