Lines Matching refs:ShadowTy
936 Type *ShadowTy = getShadowTy(OrigTy); in getZeroShadow() local
937 return ConstantAggregateZero::get(ShadowTy); in getZeroShadow()
979 Type *ShadowTy = DFS.getShadowTy(T); in expandFromPrimitiveShadow() local
981 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in expandFromPrimitiveShadow()
985 return DFS.getZeroShadow(ShadowTy); in expandFromPrimitiveShadow()
989 Value *Shadow = UndefValue::get(ShadowTy); in expandFromPrimitiveShadow()
990 Shadow = expandFromPrimitiveShadowRecursive(Shadow, Indices, ShadowTy, in expandFromPrimitiveShadow()
1017 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
1018 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1020 if (ArrayType *AT = dyn_cast<ArrayType>(ShadowTy)) in collapseToPrimitiveShadow()
1022 if (StructType *ST = dyn_cast<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1029 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
1030 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1925 IntegerType *ShadowTy = IntegerType::get(*Ctx, ShadowWidthBits); in getShadowOriginAddress() local
1927 IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0)); in getShadowOriginAddress()
2548 IntegerType *ShadowTy = in storeZeroPrimitiveShadow() local
2550 Value *ExtZeroShadow = ConstantInt::get(ShadowTy, 0); in storeZeroPrimitiveShadow()
3435 Type *ShadowTy = DFSF.DFS.getShadowTy(&PN); in visitPHINode() local
3437 PHINode::Create(ShadowTy, PN.getNumIncomingValues(), "", &PN); in visitPHINode()
3440 Value *UndefShadow = UndefValue::get(ShadowTy); in visitPHINode()