Lines Matching refs:ShadowTy
940 Type *ShadowTy = getShadowTy(OrigTy); in getZeroShadow() local
941 return ConstantAggregateZero::get(ShadowTy); in getZeroShadow()
983 Type *ShadowTy = DFS.getShadowTy(T); in expandFromPrimitiveShadow() local
985 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in expandFromPrimitiveShadow()
989 return DFS.getZeroShadow(ShadowTy); in expandFromPrimitiveShadow()
993 Value *Shadow = UndefValue::get(ShadowTy); in expandFromPrimitiveShadow()
994 Shadow = expandFromPrimitiveShadowRecursive(Shadow, Indices, ShadowTy, in expandFromPrimitiveShadow()
1021 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
1022 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1024 if (ArrayType *AT = dyn_cast<ArrayType>(ShadowTy)) in collapseToPrimitiveShadow()
1026 if (StructType *ST = dyn_cast<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1033 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
1034 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1930 IntegerType *ShadowTy = IntegerType::get(*Ctx, ShadowWidthBits); in getShadowOriginAddress() local
1932 IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0)); in getShadowOriginAddress()
2562 IntegerType *ShadowTy = in storeZeroPrimitiveShadow() local
2564 Value *ExtZeroShadow = ConstantInt::get(ShadowTy, 0); in storeZeroPrimitiveShadow()
3450 Type *ShadowTy = DFSF.DFS.getShadowTy(&PN); in visitPHINode() local
3451 PHINode *ShadowPN = PHINode::Create(ShadowTy, PN.getNumIncomingValues(), "", in visitPHINode()
3455 Value *UndefShadow = UndefValue::get(ShadowTy); in visitPHINode()