Searched defs:LiveBundles (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp107 // Numbered LiveBundle structs. LiveBundles[0] is used for all CFG edges
109 SmallVector<LiveBundle, 8> LiveBundles; member in struct:__anon26189::FPS
111 // The edge bundle analysis provides indices into the LiveBundles vector.
127 // Partition all the CFG edges into LiveBundles.
381 LiveBundles.clear();
392 assert(LiveBundles.empty() && "Stale data in LiveBundles");
393 LiveBundles.resize(Bundles->getNumBundles());
402 LiveBundles[Bundles->getBundle(MBB->getNumber(), false)].Mask |= Mask;
504 LiveBundles[Bundle
[all...]
/external/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp257 BitVector LiveBundles; member in struct:__anon25792::RAGreedy::GlobalSplitCandidate
264 LiveBundles.clear();
271 for (int i = LiveBundles.find_first(); i >= 0;
272 i = LiveBundles.find_next(i))
1050 SpillPlacer->prepare(Cand.LiveBundles);
1062 if (!Cand.LiveBundles.any()) {
1068 for (int i = Cand.LiveBundles.find_first(); i>=0;
1069 i = Cand.LiveBundles.find_next(i))
1095 /// pattern in LiveBundles. This cost should be added to the local cost of the
1100 const BitVector &LiveBundles local
[all...]

Completed in 61 milliseconds