Searched refs:CountValue (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/Transforms/Instrumentation/ |
D | PGOInstrumentation.cpp | 396 uint64_t CountValue; member 398 : PGOEdge(Src, Dest, W), CountValid(false), CountValue(0) {} in PGOUseEdge() 402 CountValue = Value; in setEdgeCount() 410 return (Twine(PGOEdge::infoString()) + " Count=" + Twine(CountValue)) in infoString() 419 uint64_t CountValue; member 426 : BBInfo(IX), CountValue(0), CountValid(false), UnknownCountInEdge(0), in UseBBInfo() 429 : BBInfo(IX), CountValue(C), CountValid(true), UnknownCountInEdge(0), in UseBBInfo() 434 CountValue = Value; in setBBInfoCount() 442 return (Twine(BBInfo::infoString()) + " Count=" + Twine(CountValue)).str(); in infoString() 452 Total += E->CountValue; in sumEdgeCount() [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonHardwareLoops.cpp | 71 class CountValue; 168 CountValue *getLoopTripCount(MachineLoop *L, 178 CountValue *computeCount(MachineLoop *Loop, const MachineOperand *Start, 286 class CountValue { class 303 explicit CountValue(CountValueType t, unsigned v, unsigned u = 0) { in CountValue() function in __anon8d5d78250111::CountValue 533 CountValue *HexagonHardwareLoops::getLoopTripCount(MachineLoop *L, in getLoopTripCount() 686 CountValue *HexagonHardwareLoops::computeCount(MachineLoop *Loop, in computeCount() 778 return new CountValue(CountValue::CV_Immediate, Count); in computeCount() 945 return new CountValue(CountValue::CV_Register, CountR, CountSR); in computeCount() 1167 CountValue *TripCount = getLoopTripCount(L, OldInsts); in convertToHardwareLoop()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringX86BaseImpl.h | 5133 const uint32_t CountValue = IsCountConst ? CountConst->getValue() : 0; 5136 CountValue <= BytesPerStorep * Traits::MEMCPY_UNROLL_LIMIT) { 5138 if (CountValue == 0) 5148 Type Ty = largestTypeInSize(CountValue); 5151 uint32_t RemainingBytes = CountValue; 5152 int32_t Offset = (CountValue & ~(TyWidth - 1)) - TyWidth; 5165 Offset = CountValue - typeWidthInBytes(LeftOverTy); 5187 const uint32_t CountValue = IsCountConst ? CountConst->getValue() : 0; 5190 CountValue <= BytesPerStorep * Traits::MEMMOVE_UNROLL_LIMIT) { 5192 if (CountValue == 0) [all …]
|