Lines Matching refs:ShadowTy
869 Type *ShadowTy = getShadowTy(OrigTy); in getZeroShadow() local
870 return ConstantAggregateZero::get(ShadowTy); in getZeroShadow()
912 Type *ShadowTy = DFS.getShadowTy(T); in expandFromPrimitiveShadow() local
914 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in expandFromPrimitiveShadow()
918 return DFS.getZeroShadow(ShadowTy); in expandFromPrimitiveShadow()
922 Value *Shadow = UndefValue::get(ShadowTy); in expandFromPrimitiveShadow()
923 Shadow = expandFromPrimitiveShadowRecursive(Shadow, Indices, ShadowTy, in expandFromPrimitiveShadow()
950 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
951 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
953 if (ArrayType *AT = dyn_cast<ArrayType>(ShadowTy)) in collapseToPrimitiveShadow()
955 if (StructType *ST = dyn_cast<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
962 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
963 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1735 IntegerType *ShadowTy = IntegerType::get(*Ctx, ShadowWidthBits); in getShadowOriginAddress() local
1737 IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0)); in getShadowOriginAddress()
2354 IntegerType *ShadowTy = in storeZeroPrimitiveShadow() local
2356 Value *ExtZeroShadow = ConstantInt::get(ShadowTy, 0); in storeZeroPrimitiveShadow()
2359 IRB.CreateBitCast(ShadowAddr, PointerType::getUnqual(ShadowTy)); in storeZeroPrimitiveShadow()
3078 Type *ShadowTy = DFSF.DFS.getShadowTy(&PN); in visitPHINode() local
3080 PHINode::Create(ShadowTy, PN.getNumIncomingValues(), "", &PN); in visitPHINode()
3083 Value *UndefShadow = UndefValue::get(ShadowTy); in visitPHINode()