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

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

Completed in 166 milliseconds