Home
last modified time | relevance | path

Searched refs:AddrLong (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DMemProfiler.cpp432 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); in instrumentAddress() local
435 IRB.CreateCall(MemProfMemoryAccessCallback[IsWrite], AddrLong); in instrumentAddress()
443 Value *ShadowPtr = memToShadow(AddrLong, IRB); in instrumentAddress()
H A DAddressSanitizer.cpp706 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
1555 Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong, in createSlowPathCmp() argument
1561 IRB.CreateAnd(AddrLong, ConstantInt::get(IntptrTy, Granularity - 1)); in createSlowPathCmp()
1585 Value *AddrLong = IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()); in instrumentAMDGPUAddress() local
1586 Value *IsShared = IRB.CreateCall(AMDGPUAddressShared, {AddrLong}); in instrumentAMDGPUAddress()
1587 Value *IsPrivate = IRB.CreateCall(AMDGPUAddressPrivate, {AddrLong}); in instrumentAMDGPUAddress()
1622 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); in instrumentAddress() local
1626 AddrLong); in instrumentAddress()
1629 {AddrLong, ConstantInt::get(IRB.getInt32Ty(), Exp)}); in instrumentAddress()
1636 Value *ShadowPtr = memToShadow(AddrLong, IRB); in instrumentAddress()
[all …]
H A DHWAddressSanitizer.cpp802 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); in untagPointerOperand() local
804 IRB.CreateIntToPtr(untagPointer(IRB, AddrLong), Addr->getType()); in untagPointerOperand()
852 Value *AddrLong = untagPointer(IRB, PtrLong); in instrumentMemAccessInline() local
853 Value *Shadow = memToShadow(AddrLong, IRB); in instrumentMemAccessInline()
885 Value *InlineTagAddr = IRB.CreateOr(AddrLong, 15); in instrumentMemAccessInline()