Lines Matching refs:PtrLong
312 Value *tagPointer(IRBuilder<> &IRB, Type *Ty, Value *PtrLong, Value *Tag);
313 Value *untagPointer(IRBuilder<> &IRB, Value *PtrLong);
845 Value *PtrLong = IRB.CreatePointerCast(Ptr, IntptrTy); in instrumentMemAccessInline() local
846 Value *PtrTag = IRB.CreateTrunc(IRB.CreateLShr(PtrLong, PointerTagShift), in instrumentMemAccessInline()
848 Value *AddrLong = untagPointer(IRB, PtrLong); in instrumentMemAccessInline()
871 Value *PtrLowBits = IRB.CreateTrunc(IRB.CreateAnd(PtrLong, 15), Int8Ty); in instrumentMemAccessInline()
896 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false), in instrumentMemAccessInline()
907 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false), in instrumentMemAccessInline()
915 IRB.CreateCall(Asm, PtrLong); in instrumentMemAccessInline()
1082 Value *PtrLong, Value *Tag) { in tagPointer() argument
1090 TaggedPtrLong = IRB.CreateAnd(PtrLong, ShiftedTag); in tagPointer()
1094 TaggedPtrLong = IRB.CreateOr(PtrLong, ShiftedTag); in tagPointer()
1100 Value *HWAddressSanitizer::untagPointer(IRBuilder<> &IRB, Value *PtrLong) { in untagPointer() argument
1106 IRB.CreateOr(PtrLong, ConstantInt::get(PtrLong->getType(), in untagPointer()
1111 IRB.CreateAnd(PtrLong, ConstantInt::get(PtrLong->getType(), in untagPointer()