Home | History | Annotate | Download | only in AMDGPU

Lines Matching full:blocks

25 /// to enter WQM at the top of the function and surrounds blocks of Exact
37 /// Basic blocks are always exited in WQM as long as some successor needs WQM.
45 /// (2) when entire regions (e.g. if-else blocks or entire loops) only
99 DenseMap<MachineBasicBlock *, BlockInfo> Blocks;
202 Blocks[&MBB].OutNeeds = StateExact;
215 BlockInfo &BI = Blocks[MBB];
283 BlockInfo BI = Blocks[&MBB]; // Make a copy to prevent dangling references.
295 // Predecessor blocks must provide for our WQM/Exact needs.
297 BlockInfo &PredBI = Blocks[Pred];
308 BlockInfo &SuccBI = Blocks[Succ];
364 auto BII = Blocks.find(&MBB);
365 if (BII == Blocks.end())
462 Blocks.clear();
505 for (auto BII : Blocks)