Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:MBB

59   /// For every basic block, MBB, one of these conditions shall be true:
61 /// 1. !Seen.count(MBB->getNumber())
63 /// 2. LiveOut[MBB].second.getNode() == MBB
64 /// The live-out value is defined in MBB.
65 /// 3. forall P in preds(MBB): LiveOut[P] == LiveOut[MBB]
66 /// The live-out value passses through MBB. All predecessors must carry
205 /// setLiveOutValue - Indicate that VNI is live out from MBB. The
206 /// calculateValues() function will not add liveness for MBB, the caller
209 /// VNI may be null only if MBB is a live-through block also passed to
211 void setLiveOutValue(MachineBasicBlock *MBB, VNInfo *VNI) {
212 Seen.set(MBB->getNumber());
213 Map[MBB] = LiveOutPair(VNI, nullptr);
224 /// setLiveOutValue(MBB, 0).