Lines Matching refs:TargetValue
135 instrumentTargetValueImpl(uint64_t TargetValue, void *Data, in instrumentTargetValueImpl() argument
155 if (TargetValue == CurVNode->Value) { in instrumentTargetValueImpl()
199 CurVNode->Value = TargetValue; in instrumentTargetValueImpl()
210 CurVNode->Value = TargetValue; in instrumentTargetValueImpl()
227 __llvm_profile_instrument_target(uint64_t TargetValue, void *Data, in __llvm_profile_instrument_target() argument
229 instrumentTargetValueImpl(TargetValue, Data, CounterIndex, 1); in __llvm_profile_instrument_target()
232 __llvm_profile_instrument_target_value(uint64_t TargetValue, void *Data, in __llvm_profile_instrument_target_value() argument
235 instrumentTargetValueImpl(TargetValue, Data, CounterIndex, CountValue); in __llvm_profile_instrument_target_value()
255 uint64_t TargetValue, void *Data, uint32_t CounterIndex, in __llvm_profile_instrument_range() argument
258 if (LargeValue != INT64_MIN && (int64_t)TargetValue >= LargeValue) in __llvm_profile_instrument_range()
259 TargetValue = LargeValue; in __llvm_profile_instrument_range()
260 else if ((int64_t)TargetValue < PreciseRangeStart || in __llvm_profile_instrument_range()
261 (int64_t)TargetValue > PreciseRangeLast) in __llvm_profile_instrument_range()
262 TargetValue = PreciseRangeLast + 1; in __llvm_profile_instrument_range()
264 __llvm_profile_instrument_target(TargetValue, Data, CounterIndex); in __llvm_profile_instrument_range()