Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:bundles

89   /// bundles. The weights are all positive block frequencies.
183 bundles = &getAnalysis<EdgeBundles>();
187 nodes = new Node[bundles->getNumBundles()];
189 // Compute total ingoing and outgoing block frequencies for all bundles.
213 // Very large bundles usually come from big switches, indirect branches,
217 // Give a small negative bias to large bundles such that a substantial
222 if (bundles->getBlocks(n).size() > 100) {
238 unsigned ib = bundles->getBundle(I->Number, 0);
245 unsigned ob = bundles->getBundle(I->Number, 1);
259 unsigned ib = bundles->getBundle(*I, 0);
260 unsigned ob = bundles->getBundle(*I, 1);
272 unsigned ib = bundles->getBundle(Number, 0);
273 unsigned ob = bundles->getBundle(Number, 1);
362 ActiveNodes->resize(bundles->getNumBundles());