Lines Matching refs:PtrLong
264 Value *tagPointer(IRBuilder<> &IRB, Type *Ty, Value *PtrLong, Value *Tag);
265 Value *untagPointer(IRBuilder<> &IRB, Value *PtrLong);
836 Value *PtrLong = IRB.CreatePointerCast(Ptr, IntptrTy); in instrumentMemAccessInline() local
837 Value *PtrTag = IRB.CreateTrunc(IRB.CreateLShr(PtrLong, PointerTagShift), in instrumentMemAccessInline()
839 Value *AddrLong = untagPointer(IRB, PtrLong); in instrumentMemAccessInline()
862 Value *PtrLowBits = IRB.CreateTrunc(IRB.CreateAnd(PtrLong, 15), Int8Ty); in instrumentMemAccessInline()
887 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false), in instrumentMemAccessInline()
898 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false), in instrumentMemAccessInline()
906 IRB.CreateCall(Asm, PtrLong); in instrumentMemAccessInline()
1083 Value *PtrLong, Value *Tag) { in tagPointer() argument
1091 TaggedPtrLong = IRB.CreateAnd(PtrLong, ShiftedTag); in tagPointer()
1095 TaggedPtrLong = IRB.CreateOr(PtrLong, ShiftedTag); in tagPointer()
1101 Value *HWAddressSanitizer::untagPointer(IRBuilder<> &IRB, Value *PtrLong) { in untagPointer() argument
1107 IRB.CreateOr(PtrLong, ConstantInt::get(PtrLong->getType(), in untagPointer()
1112 IRB.CreateAnd(PtrLong, ConstantInt::get(PtrLong->getType(), in untagPointer()