Lines Matching refs:AddrLong
668 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
1493 Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong, in createSlowPathCmp() argument
1499 IRB.CreateAnd(AddrLong, ConstantInt::get(IntptrTy, Granularity - 1)); in createSlowPathCmp()
1519 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); in instrumentAddress() local
1525 AddrLong); in instrumentAddress()
1528 {AddrLong, ConstantInt::get(IRB.getInt32Ty(), Exp)}); in instrumentAddress()
1535 AddrLong = IRB.CreateAnd(AddrLong, ~kMyriadCacheBitMask32); in instrumentAddress()
1537 Value *Tag = IRB.CreateLShr(AddrLong, kMyriadTagShift); in instrumentAddress()
1553 Value *ShadowPtr = memToShadow(AddrLong, IRB); in instrumentAddress()
1570 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize); in instrumentAddress()
1584 Instruction *Crash = generateCrashCode(CrashTerm, AddrLong, IsWrite, in instrumentAddress()
1598 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); in instrumentUnusualSizeOrAlignment() local
1602 {AddrLong, Size}); in instrumentUnusualSizeOrAlignment()
1605 {AddrLong, Size, ConstantInt::get(IRB.getInt32Ty(), Exp)}); in instrumentUnusualSizeOrAlignment()
1608 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)), in instrumentUnusualSizeOrAlignment()