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

/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp54 class CountValue;
87 CountValue *getTripCount(MachineLoop *L) const;
110 // CountValue class - Abstraction for a trip count of a loop. A
113 class CountValue { class in namespace:__anon7582
130 CountValue(unsigned r, bool neg) : Kind(CV_Register), Contents(r), function in class:__anon7582::CountValue
132 explicit CountValue(int64_t i) : Kind(CV_Immediate), Contents(i), function in class:__anon7582::CountValue
140 assert(isReg() && "Wrong CountValue accessor");
147 assert(isImm() && "Wrong CountValue accessor");
308 CountValue *HexagonHardwareLoops::getTripCount(MachineLoop *L) const {
348 return new CountValue(InitialValu
[all...]

Completed in 66 milliseconds