Lines Matching defs:Init
40 if (Constant *Init = GVCtor->getInitializer()) {
41 unsigned n = Init->getNumOperands();
44 CurrentCtors.push_back(cast<Constant>(Init->getOperand(i)));
83 SmallSetVector<Constant *, 16> &Init) {
89 Init.insert(cast<Constant>(Op));
95 SmallSetVector<Constant *, 16> Init;
96 collectUsedGlobals(GV, Init);
102 Init.insert(ConstantExpr::getPointerBitCastOrAddrSpaceCast(V, ArrayEltTy));
104 if (Init.empty())
107 ArrayType *ATy = ArrayType::get(ArrayEltTy, Init.size());
109 ConstantArray::get(ATy, Init.getArrayRef()),
128 SmallSetVector<Constant *, 16> Init;
129 collectUsedGlobals(GV, Init);
134 for (Constant *MaybeRemoved : Init) {