Home | History | Annotate | Download | only in Linker

Lines Matching defs:Elements

207   SmallVector<Type*, 16> Elements;
223 Elements.resize(SrcSTy->getNumElements());
224 for (unsigned i = 0, e = Elements.size(); i != e; ++i)
225 Elements[i] = getImpl(SrcSTy->getElementType(i));
227 DstSTy->setBody(Elements, SrcSTy->isPacked());
262 // If this is not a named struct type, then just map all of the elements and
270 // Remap all of the elements, keeping track of whether any of them change.
1136 SmallVector<Constant*, 16> Elements;
1137 getArrayElements(AVI.DstInit, Elements);
1140 getArrayElements(SrcInit, Elements);
1143 AVI.NewGV->setInitializer(ConstantArray::get(NewType, Elements));
1231 // Add Src elements into Dest node.