Lines Matching defs:BBInfo
136 struct BBInfo { struct in __anonf2ab52600111::IfConverter
137 bool IsDone : 1;
138 bool IsBeingAnalyzed : 1;
139 bool IsAnalyzed : 1;
140 bool IsEnqueued : 1;
141 bool IsBrAnalyzable : 1;
142 bool IsBrReversible : 1;
143 bool HasFallThrough : 1;
144 bool IsUnpredicable : 1;
145 bool CannotBeCopied : 1;
146 bool ClobbersPred : 1;
147 unsigned NonPredSize = 0;
148 unsigned ExtraCost = 0;
149 unsigned ExtraCost2 = 0;
150 MachineBasicBlock *BB = nullptr;
151 MachineBasicBlock *TrueBB = nullptr;
152 MachineBasicBlock *FalseBB = nullptr;
153 SmallVector<MachineOperand, 4> BrCond;
154 SmallVector<MachineOperand, 4> Predicate;
156 BBInfo() : IsDone(false), IsBeingAnalyzed(false), in BBInfo() argument