Searched refs:OffsetBytes (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600FrameLowering.cpp33 unsigned OffsetBytes = 2 * (getStackWidth(MF) * 4); local
37 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlign(i));
38 OffsetBytes += MFI.getObjectSize(i);
41 OffsetBytes = alignTo(OffsetBytes, Align(4));
45 OffsetBytes = alignTo(OffsetBytes, MFI.getObjectAlign(FI));
47 return OffsetBytes / (getStackWidth(MF) * 4);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h89 uint8_t *getAddressWithOffset(unsigned OffsetBytes) const {
90 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
91 return Address + OffsetBytes;
100 uint64_t getLoadAddressWithOffset(unsigned OffsetBytes) const {
101 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
102 return LoadAddress + OffsetBytes;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandMemCmp.cpp103 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned OffsetBytes);
113 unsigned OffsetBytes);
273 unsigned OffsetBytes) {
274 // Get the memory source at offset `OffsetBytes`.
279 if (OffsetBytes > 0) {
283 OffsetBytes);
286 OffsetBytes);
287 LhsAlign = commonAlignment(LhsAlign, OffsetBytes);
288 RhsAlign = commonAlignment(RhsAlign, OffsetBytes);
327 unsigned OffsetBytes) {
270 getLoadPair(Type *LoadSizeType, bool NeedsBSwap, Type *CmpSizeType, unsigned OffsetBytes) argument
326 emitLoadCompareByteBlock(unsigned BlockIndex, unsigned OffsetBytes) argument
[all...]

Completed in 185 milliseconds