• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:ShadowTy

889   Value *getShadowPtr(Value *Addr, Type *ShadowTy,  in getShadowPtr()
897 return IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0)); in getShadowPtr()
973 Type *ShadowTy = getShadowTy(V); in getCleanShadow() local
974 if (!ShadowTy) in getCleanShadow()
976 return Constant::getNullValue(ShadowTy); in getCleanShadow()
980 Constant *getPoisonedShadow(Type *ShadowTy) { in getPoisonedShadow()
981 assert(ShadowTy); in getPoisonedShadow()
982 if (isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy)) in getPoisonedShadow()
983 return Constant::getAllOnesValue(ShadowTy); in getPoisonedShadow()
984 if (ArrayType *AT = dyn_cast<ArrayType>(ShadowTy)) { in getPoisonedShadow()
989 if (StructType *ST = dyn_cast<StructType>(ShadowTy)) { in getPoisonedShadow()
1000 Type *ShadowTy = getShadowTy(V); in getPoisonedShadow() local
1001 if (!ShadowTy) in getPoisonedShadow()
1003 return getPoisonedShadow(ShadowTy); in getPoisonedShadow()
1135 Type *ShadowTy = Shadow->getType(); in insertShadowCheck() local
1136 assert((isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy)) && in insertShadowCheck()
1205 Type *ShadowTy = getShadowTy(&I); in visitLoadInst() local
1208 Value *ShadowPtr = getShadowPtr(Addr, ShadowTy, IRB); in visitLoadInst()
1513 Type *ShadowTy = getShadowTy(V); in CreateAppToShadowCast() local
1514 if (V->getType() == ShadowTy) in CreateAppToShadowCast()
1517 return IRB.CreatePtrToInt(V, ShadowTy); in CreateAppToShadowCast()
1519 return IRB.CreateBitCast(V, ShadowTy); in CreateAppToShadowCast()
1890 Type *ShadowTy = getShadowTy(&I); in handleVectorLoadIntrinsic() local
1892 Value *ShadowPtr = getShadowPtr(Addr, ShadowTy, IRB); in handleVectorLoadIntrinsic()