Home | History | Annotate | Download | only in IPO

Lines Matching defs:Size

246   for (int i = 0, e = Dead.size(); i != e; ++i) {
564 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
602 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
608 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
722 if (Idxs.size() == GEPI->getNumOperands()-1)
1154 if (FieldNo >= FieldVals.size())
1333 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
1357 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1407 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1495 // If we have a global that is only initialized with a fixed size malloc,
1499 // We cannot optimize the malloc if we cannot determine malloc array size.
1520 // If this is an allocation of a fixed size array of structs, analyze as a
1521 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
1535 // If this is a fixed size array, transform the Malloc to be an alloc of
2024 // int <=> ptr is fine if the int type is the same size as the
2488 ConstantInt *Size = cast<ConstantInt>(II->getArgOperand(0));
2493 if (DL && !Size->isAllOnesValue() &&
2494 Size->getValue().getLimitedValue() >=
2697 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2735 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());