Searched refs:OffsetBytes (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | R600FrameLowering.cpp | 31 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()
|
| /llvm-project-15.0.7/libc/benchmarks/ |
| H A D | LibcMemoryBenchmark.h | 173 unsigned OffsetBytes : 16; // max : 16 KiB - 1 member 200 return Memcpy(DstBuffer + Parameter.OffsetBytes, in Call() 201 SrcBuffer + Parameter.OffsetBytes, Parameter.SizeBytes); in Call() 220 Buffer + Parameter.OffsetBytes, Parameter.SizeBytes); in Call() 237 return Memset(DstBuffer + Parameter.OffsetBytes, in Call() 238 Parameter.OffsetBytes % 0xFF, Parameter.SizeBytes); in Call() 242 Bzero(DstBuffer + Parameter.OffsetBytes, Parameter.SizeBytes); in Call() 260 return MemcmpOrBcmp(LhsBuffer + Parameter.OffsetBytes, in Call() 261 RhsBuffer + Parameter.OffsetBytes, Parameter.SizeBytes); in Call()
|
| H A D | LibcMemoryBenchmark.cpp | 97 if (P.OffsetBytes + P.SizeBytes >= BufferSize) in checkValid() 100 .concat(llvm::Twine(P.OffsetBytes)) in checkValid()
|
| H A D | LibcMemoryBenchmarkMain.cpp | 174 P.OffsetBytes = OffsetSampler(Gen); in randomize() 211 P.OffsetBytes = OffsetSampler(Gen); in randomize()
|
| H A D | LibcMemoryGoogleBenchmarkMain.cpp | 45 P.OffsetBytes = OffsetSampler(getGenerator()); in Runner()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | ExpandMemCmp.cpp | 110 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned OffsetBytes); 120 unsigned OffsetBytes); 282 unsigned OffsetBytes) { in getLoadPair() argument 288 if (OffsetBytes > 0) { in getLoadPair() 292 OffsetBytes); in getLoadPair() 295 OffsetBytes); in getLoadPair() 296 LhsAlign = commonAlignment(LhsAlign, OffsetBytes); in getLoadPair() 297 RhsAlign = commonAlignment(RhsAlign, OffsetBytes); in getLoadPair() 336 unsigned OffsetBytes) { in emitLoadCompareByteBlock() argument 341 Type::getInt32Ty(CI->getContext()), OffsetBytes); in emitLoadCompareByteBlock()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldImpl.h | 89 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()
|
| /llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/X86/ |
| H A D | Target.cpp | 467 static MCInst fillStackSpace(unsigned MovOpcode, unsigned OffsetBytes, in fillStackSpace() argument 474 .addImm(OffsetBytes) // Disp in fillStackSpace()
|