Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600FrameLowering.cpp34 unsigned OffsetBytes = 2 * (getStackWidth(MF) * 4); in getFrameIndexReference() local
38 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlignment(i)); in getFrameIndexReference()
39 OffsetBytes += MFI.getObjectSize(i); in getFrameIndexReference()
42 OffsetBytes = alignTo(OffsetBytes, 4); in getFrameIndexReference()
46 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlignment(FI)); in getFrameIndexReference()
48 return OffsetBytes / (getStackWidth(MF) * 4); in getFrameIndexReference()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DR600FrameLowering.cpp34 unsigned OffsetBytes = 2 * (getStackWidth(MF) * 4); in getFrameIndexReference() local
38 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlign(i)); in getFrameIndexReference()
39 OffsetBytes += MFI.getObjectSize(i); in getFrameIndexReference()
42 OffsetBytes = alignTo(OffsetBytes, Align(4)); in getFrameIndexReference()
46 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlign(FI)); in getFrameIndexReference()
48 return StackOffset::getFixed(OffsetBytes / (getStackWidth(MF) * 4)); in getFrameIndexReference()
/external/llvm/lib/Target/AMDGPU/
DAMDGPUFrameLowering.cpp88 unsigned OffsetBytes = 2 * (getStackWidth(MF) * 4); in getFrameIndexReference() local
92 OffsetBytes = alignTo(OffsetBytes, MFI->getObjectAlignment(i)); in getFrameIndexReference()
93 OffsetBytes += MFI->getObjectSize(i); in getFrameIndexReference()
96 OffsetBytes = alignTo(OffsetBytes, 4); in getFrameIndexReference()
100 OffsetBytes = alignTo(OffsetBytes, MFI->getObjectAlignment(FI)); in getFrameIndexReference()
102 return OffsetBytes / (getStackWidth(MF) * 4); in getFrameIndexReference()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldImpl.h91 uint8_t *getAddressWithOffset(unsigned OffsetBytes) const { in getAddressWithOffset() argument
92 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getAddressWithOffset()
93 return Address + OffsetBytes; in getAddressWithOffset()
102 uint64_t getLoadAddressWithOffset(unsigned OffsetBytes) const { in getLoadAddressWithOffset() argument
103 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!"); in getLoadAddressWithOffset()
104 return LoadAddress + OffsetBytes; in getLoadAddressWithOffset()
/external/llvm-project/llvm/lib/CodeGen/
DExpandMemCmp.cpp103 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned OffsetBytes);
113 unsigned OffsetBytes);
273 unsigned OffsetBytes) { in getLoadPair() argument
279 if (OffsetBytes > 0) { in getLoadPair()
283 OffsetBytes); in getLoadPair()
286 OffsetBytes); in getLoadPair()
287 LhsAlign = commonAlignment(LhsAlign, OffsetBytes); in getLoadPair()
288 RhsAlign = commonAlignment(RhsAlign, OffsetBytes); in getLoadPair()
327 unsigned OffsetBytes) { in emitLoadCompareByteBlock() argument
331 Type::getInt32Ty(CI->getContext()), OffsetBytes); in emitLoadCompareByteBlock()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
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()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DExpandMemCmp.cpp101 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned OffsetBytes);
107 uint64_t OffsetBytes);
268 uint64_t OffsetBytes) { in getPtrToElementAtOffset() argument
269 if (OffsetBytes > 0) { in getPtrToElementAtOffset()
273 OffsetBytes); in getPtrToElementAtOffset()
283 unsigned OffsetBytes) { in emitLoadCompareByteBlock() argument
287 getPtrToElementAtOffset(CI->getArgOperand(0), LoadSizeType, OffsetBytes); in emitLoadCompareByteBlock()
289 getPtrToElementAtOffset(CI->getArgOperand(1), LoadSizeType, OffsetBytes); in emitLoadCompareByteBlock()
/external/llvm-project/llvm/tools/llvm-exegesis/lib/X86/
DTarget.cpp447 static MCInst fillStackSpace(unsigned MovOpcode, unsigned OffsetBytes, in fillStackSpace() argument
454 .addImm(OffsetBytes) // Disp in fillStackSpace()