Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DR600FrameLowering.cpp35 unsigned OffsetBytes = 2 * (getStackWidth(MF) * 4); in getFrameIndexReference() local
39 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlignment(i)); in getFrameIndexReference()
40 OffsetBytes += MFI.getObjectSize(i); in getFrameIndexReference()
43 OffsetBytes = alignTo(OffsetBytes, 4); in getFrameIndexReference()
47 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlignment(FI)); in getFrameIndexReference()
49 return 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/swiftshader/third_party/llvm-7.0/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/X86/
DTarget.cpp206 static llvm::MCInst fillStackSpace(unsigned MovOpcode, unsigned OffsetBytes, in fillStackSpace() argument
213 .addImm(OffsetBytes) // Disp in fillStackSpace()