Home
last modified time | relevance | path

Searched refs:CountValue (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp396 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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp781 uint64_t CountValue = 0; member
788 CountValue = Value; in setEdgeCount()
796 return (Twine(PGOEdge::infoString()) + " Count=" + Twine(CountValue)) in infoString()
805 uint64_t CountValue = 0; member
815 : BBInfo(IX), CountValue(C), CountValid(true) {} in UseBBInfo()
819 CountValue = Value; in setBBInfoCount()
827 return (Twine(BBInfo::infoString()) + " Count=" + Twine(CountValue)).str(); in infoString()
839 Total += E->CountValue; in sumEdgeCount()
970 uint64_t CountValue = CountFromProfile[I++]; in setInstrumentedCounts() local
972 getBBInfo(InstrBB).setBBInfoCount(CountValue); in setInstrumentedCounts()
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp71 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 __anonfb58bf460111::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/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp99 class CountValue;
195 CountValue *getLoopTripCount(MachineLoop *L,
205 CountValue *computeCount(MachineLoop *Loop, const MachineOperand *Start,
313 class CountValue { class
331 explicit CountValue(CountValueType t, unsigned v, unsigned u = 0) { in CountValue() function in __anon30c66a7e0111::CountValue
566 CountValue *HexagonHardwareLoops::getLoopTripCount(MachineLoop *L, in getLoopTripCount()
725 CountValue *HexagonHardwareLoops::computeCount(MachineLoop *Loop, in computeCount()
817 return new CountValue(CountValue::CV_Immediate, Count); in computeCount()
985 return new CountValue(CountValue::CV_Register, CountR, CountSR); in computeCount()
1206 CountValue *TripCount = getLoopTripCount(L, OldInsts); in convertToHardwareLoop()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h5133 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 …]