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

/freebsd-10.2-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp154 IntegerType *ShadowTy; member in class:__anon2739::DataFlowSanitizer
285 ArgTypes.push_back(ShadowTy);
290 RetType = StructType::get(RetType, ShadowTy, (Type *)0);
300 ArgTypes.push_back(ShadowTy);
322 ArgTypes.push_back(ShadowTy);
336 ShadowTy = IntegerType::get(*Ctx, ShadowWidth);
337 ShadowPtrTy = PointerType::getUnqual(ShadowTy);
339 ZeroShadow = ConstantInt::getSigned(ShadowTy, 0);
343 Type *DFSanUnionArgs[2] = { ShadowTy, ShadowTy };
1007 IntegerType *ShadowTy = IntegerType::get(*DFS.Ctx, Size * DFS.ShadowWidth); local
[all...]
H A DMemorySanitizer.cpp750 Value *getShadowPtr(Value *Addr, Type *ShadowTy, argument
755 return IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0));
827 Type *ShadowTy = getShadowTy(V); local
828 if (!ShadowTy)
830 return Constant::getNullValue(ShadowTy);
834 Constant *getPoisonedShadow(Type *ShadowTy) { argument
835 assert(ShadowTy);
836 if (isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy))
837 return Constant::getAllOnesValue(ShadowTy);
847 Type *ShadowTy = getShadowTy(V); local
1028 Type *ShadowTy = getShadowTy(&I); local
1648 Type *ShadowTy = getShadowTy(&I); local
[all...]
H A DAddressSanitizer.cpp786 Type *ShadowTy = IntegerType::get( local
788 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
790 Value *CmpVal = Constant::getNullValue(ShadowTy);

Completed in 103 milliseconds