HomeSort by relevance Sort by last modified time
    Searched refs:CountValue (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 58 class CountValue;
93 CountValue *getTripCount(MachineLoop *L,
123 // CountValue class - Abstraction for a trip count of a loop. A
126 class CountValue {
143 CountValue(unsigned r, bool neg) : Kind(CV_Register), Contents(r),
145 explicit CountValue(int64_t i) : Kind(CV_Immediate), Contents(i),
153 assert(isReg() && "Wrong CountValue accessor");
160 assert(isImm() && "Wrong CountValue accessor");
289 CountValue *PPCCTRLoops::getTripCount(MachineLoop *L,
390 return new CountValue(count/iv_value)
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 54 class CountValue;
87 CountValue *getTripCount(MachineLoop *L) const;
110 // CountValue class - Abstraction for a trip count of a loop. A
113 class CountValue {
130 CountValue(unsigned r, bool neg) : Kind(CV_Register), Contents(r),
132 explicit CountValue(int64_t i) : Kind(CV_Immediate), Contents(i),
140 assert(isReg() && "Wrong CountValue accessor");
147 assert(isImm() && "Wrong CountValue accessor");
308 CountValue *HexagonHardwareLoops::getTripCount(MachineLoop *L) const {
351 return new CountValue(InitialValue->getReg(), iv_value > 0)
    [all...]

Completed in 1114 milliseconds