Lines Matching refs:ST
597 if (StructType *ST = dyn_cast<StructType>(OrigTy)) {
599 for (unsigned i = 0, n = ST->getNumElements(); i < n; i++)
600 Elements.push_back(getShadowTy(ST->getElementType(i)));
601 StructType *Res = StructType::get(*MS.C, Elements, ST->isPacked());
602 DEBUG(dbgs() << "getShadowTy: " << *ST << " ===> " << *Res << "\n");
716 StructType *ST = cast<StructType>(ShadowTy);
718 for (unsigned i = 0, n = ST->getNumElements(); i < n; i++)
719 Vals.push_back(getPoisonedShadow(ST->getElementType(i)));
720 return ConstantStruct::get(ST, Vals);