Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/cfi/
H A Dcfi.cpp97 class ShadowValue { class
100 explicit ShadowValue(uptr addr, uint16_t v) : addr(addr), v(v) {} in ShadowValue() function in __cfi::ShadowValue
115 static const ShadowValue load(uptr addr) { in load()
119 return ShadowValue(addr, kInvalidShadow); in load()
121 return ShadowValue( in load()
345 ShadowValue sv = ShadowValue::load(Addr); in CfiSlowPathCommon()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DMemProfiler.cpp445 Value *ShadowValue = IRB.CreateLoad(ShadowTy, ShadowAddr); in instrumentAddress() local
447 ShadowValue = IRB.CreateAdd(ShadowValue, Inc); in instrumentAddress()
448 IRB.CreateStore(ShadowValue, ShadowAddr); in instrumentAddress()
H A DAddressSanitizer.cpp707 Value *ShadowValue, uint32_t TypeSize);
1556 Value *ShadowValue, in createSlowPathCmp() argument
1568 IRB.CreateIntCast(LastAccessedByte, ShadowValue->getType(), false); in createSlowPathCmp()
1570 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue); in createSlowPathCmp()
1637 Value *ShadowValue = in instrumentAddress() local
1640 Value *Cmp = IRB.CreateIsNotNull(ShadowValue); in instrumentAddress()
1652 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize); in instrumentAddress()