Home | History | Annotate | Download | only in IPO

Lines Matching defs:Ctors

56 STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
2206 const std::vector<Function*> &Ctors) {
2218 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
2219 if (Ctors[i]) {
2220 CSVals[1] = Ctors[i];
2258 if (Ctors.size())
3004 /// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
3007 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
3009 if (Ctors.empty()) return false;
3011 // Loop over global ctors, optimizing them when we can.
3012 for (unsigned i = 0; i != Ctors.size(); ++i) {
3013 Function *F = Ctors[i];
3017 if (i != Ctors.size()-1) {
3018 Ctors.resize(i+1);
3030 Ctors.erase(Ctors.begin()+i);
3040 GCL = InstallGlobalCtors(GCL, Ctors);
3392 // TODO: Move all global ctors functions to the end of the module for code