Searched refs:OffsetLong (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | DataFlowSanitizer.cpp | 1905 Value *OffsetLong = IRB.CreatePointerCast(Addr, IntptrTy); in getShadowOffset() local 1909 OffsetLong = in getShadowOffset() 1910 IRB.CreateAnd(OffsetLong, ConstantInt::get(IntptrTy, ~AndMask)); in getShadowOffset() 1914 OffsetLong = IRB.CreateXor(OffsetLong, ConstantInt::get(IntptrTy, XorMask)); in getShadowOffset() 1915 return OffsetLong; in getShadowOffset()
|
H A D | MemorySanitizer.cpp | 1711 Value *OffsetLong = IRB.CreatePointerCast(Addr, IntptrTy); in getShadowPtrOffset() local 1714 OffsetLong = IRB.CreateAnd(OffsetLong, constToIntPtr(IntptrTy, ~AndMask)); in getShadowPtrOffset() 1717 OffsetLong = IRB.CreateXor(OffsetLong, constToIntPtr(IntptrTy, XorMask)); in getShadowPtrOffset() 1718 return OffsetLong; in getShadowPtrOffset()
|