Searched refs:ShadowValue (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/cfi/ |
| H A D | cfi.cpp | 101 class ShadowValue { class 104 explicit ShadowValue(uptr addr, uint16_t v) : addr(addr), v(v) {} in ShadowValue() function in __cfi::ShadowValue 119 static const ShadowValue load(uptr addr) { in load() 123 return ShadowValue(addr, kInvalidShadow); in load() 125 return ShadowValue( in load() 349 ShadowValue sv = ShadowValue::load(Addr); in CfiSlowPathCommon()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemProfiler.cpp | 460 Value *ShadowValue = IRB.CreateLoad(ShadowTy, ShadowAddr); in instrumentAddress() local 462 ShadowValue = IRB.CreateAdd(ShadowValue, Inc); in instrumentAddress() 463 IRB.CreateStore(ShadowValue, ShadowAddr); in instrumentAddress()
|
| H A D | AddressSanitizer.cpp | 719 Value *ShadowValue, uint32_t TypeStoreSize); 1688 Value *ShadowValue, in createSlowPathCmp() argument 1700 IRB.CreateIntCast(LastAccessedByte, ShadowValue->getType(), false); in createSlowPathCmp() 1702 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue); in createSlowPathCmp() 1795 Value *ShadowValue = IRB.CreateAlignedLoad( in instrumentAddress() local 1798 Value *Cmp = IRB.CreateIsNotNull(ShadowValue); in instrumentAddress() 1806 auto *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeStoreSize); in instrumentAddress() 1818 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeStoreSize); in instrumentAddress()
|