Searched refs:OffsetLong (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | DataFlowSanitizer.cpp | 1899 Value *OffsetLong = IRB.CreatePointerCast(Addr, IntptrTy); in getShadowOffset() local 1903 OffsetLong = in getShadowOffset() 1904 IRB.CreateAnd(OffsetLong, ConstantInt::get(IntptrTy, ~AndMask)); in getShadowOffset() 1908 OffsetLong = IRB.CreateXor(OffsetLong, ConstantInt::get(IntptrTy, XorMask)); in getShadowOffset() 1909 return OffsetLong; in getShadowOffset()
|
| H A D | MemorySanitizer.cpp | 1787 Value *OffsetLong = IRB.CreatePointerCast(Addr, IntptrTy); in getShadowPtrOffset() local 1790 OffsetLong = IRB.CreateAnd(OffsetLong, constToIntPtr(IntptrTy, ~AndMask)); in getShadowPtrOffset() 1793 OffsetLong = IRB.CreateXor(OffsetLong, constToIntPtr(IntptrTy, XorMask)); in getShadowPtrOffset() 1794 return OffsetLong; in getShadowPtrOffset()
|