Home
last modified time | relevance | path

Searched refs:ReadSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp362 const uint64_t ReadSize = 4; in lowerPrintfForGpu() local
367 uint64_t ReadNow = std::min(ReadSize, S.size() - Offset.tell()); in lowerPrintfForGpu()
388 APInt IntVal(8 * ReadSize, ReadBytes); in lowerPrintfForGpu()
391 if (ReadNow < ReadSize) in lowerPrintfForGpu()
392 IntVal = IntVal.zext(8 * ReadSize); in lowerPrintfForGpu()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DAMDGPUEmitPrintf.cpp317 const uint64_t ReadSize = 4; in processConstantStringArg() local
318 uint64_t ReadNow = std::min(ReadSize, Str.size() - Offset.tell()); in processConstantStringArg()
338 APInt IntVal(8 * ReadSize, ReadBytes); in processConstantStringArg()
341 if (ReadNow < ReadSize) in processConstantStringArg()
342 IntVal = IntVal.zext(8 * ReadSize); in processConstantStringArg()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp584 uint64_t ReadSize = ReadSizeExpr.getValue(); in evalLoadExpr() local
585 if (ReadSize < 1 || ReadSize > 8) in evalLoadExpr()
608 EvalResult(Checker.readMemoryAtAddr(LoadAddr, ReadSize)), in evalLoadExpr()