Searched defs:HardwareLoopInfo (Results 1 – 2 of 2) sorted by relevance
98 struct HardwareLoopInfo { struct101 Loop *L = nullptr;102 BasicBlock *ExitBlock = nullptr;103 BranchInst *ExitBranch = nullptr;104 const SCEV *ExitCount = nullptr;105 IntegerType *CountType = nullptr;106 Value *LoopDecrement = nullptr; // Decrement the loop counter by this108 bool IsNestingLegal = false; // Can a hardware loop be a parent to110 bool CounterInReg = false; // Should loop counter be updated in112 bool PerformEntryTest = false; // Generate the intrinsic which also performs
116 HardwareLoopInfo::HardwareLoopInfo(Loop *L) : L(L) { in HardwareLoopInfo() function in HardwareLoopInfo