1 /* Profile counter container type.
2 Copyright (C) 2017-2019 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_PROFILE_COUNT_H
22 #define GCC_PROFILE_COUNT_H
27 /* Quality of the profile count. Because gengtype does not support enums
28 inside of classes, this is in global namespace. */
29 enum profile_quality
{
30 /* Uninitialized value. */
31 profile_uninitialized
,
32 /* Profile is based on static branch prediction heuristics and may
33 or may not match reality. It is local to function and cannot be compared
34 inter-procedurally. Never used by probabilities (they are always local).
36 profile_guessed_local
,
37 /* Profile was read by feedback and was 0, we used local heuristics to guess
38 better. This is the case of functions not run in profile fedback.
39 Never used by probabilities. */
40 profile_guessed_global0
,
42 /* Same as profile_guessed_global0 but global count is adjusted 0. */
43 profile_guessed_global0adjusted
,
45 /* Profile is based on static branch prediction heuristics. It may or may
46 not reflect the reality but it can be compared interprocedurally
47 (for example, we inlined function w/o profile feedback into function
48 with feedback and propagated from that).
49 Never used by probablities. */
51 /* Profile was determined by autofdo. */
53 /* Profile was originally based on feedback but it was adjusted
54 by code duplicating optimization. It may not precisely reflect the
55 particular code path. */
57 /* Profile was read from profile feedback or determined by accurate static
62 extern const char *profile_quality_as_string (enum profile_quality
);
64 /* The base value for branch probability notes and edge probabilities. */
65 #define REG_BR_PROB_BASE 10000
67 #define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
69 bool slow_safe_scale_64bit (uint64_t a
, uint64_t b
, uint64_t c
, uint64_t *res
);
71 /* Compute RES=(a*b + c/2)/c capping and return false if overflow happened. */
74 safe_scale_64bit (uint64_t a
, uint64_t b
, uint64_t c
, uint64_t *res
)
76 #if (GCC_VERSION >= 5000)
78 if (!__builtin_mul_overflow (a
, b
, &tmp
)
79 && !__builtin_add_overflow (tmp
, c
/2, &tmp
))
90 if (a
< ((uint64_t)1 << 31)
91 && b
< ((uint64_t)1 << 31)
92 && c
< ((uint64_t)1 << 31))
94 *res
= (a
* b
+ (c
/ 2)) / c
;
98 return slow_safe_scale_64bit (a
, b
, c
, res
);
101 /* Data type to hold probabilities. It implements fixed point arithmetics
102 with capping so probability is always in range [0,1] and scaling requiring
103 values greater than 1 needs to be represented otherwise.
105 In addition to actual value the quality of profile is tracked and propagated
106 through all operations. Special value UNINITIALIZED is used for probabilities
107 that has not been determined yet (for example bacause of
108 -fno-guess-branch-probability)
110 Typically probabilities are derived from profile feedback (via
111 probability_in_gcov_type), autoFDO or guessed statically and then propagated
112 thorough the compilation.
114 Named probabilities are available:
115 - never (0 probability)
117 - very_unlikely (1/2000 probability)
118 - unlikely (1/5 probablity)
119 - even (1/2 probability)
120 - likely (4/5 probability)
121 - very_likely (1999/2000 probability)
125 Named probabilities except for never/always are assumed to be statically
126 guessed and thus not necessarily accurate. The difference between never
127 and guessed_never is that the first one should be used only in case that
128 well behaving program will very likely not execute the "never" path.
129 For example if the path is going to abort () call or it exception handling.
131 Always and guessed_always probabilities are symmetric.
133 For legacy code we support conversion to/from REG_BR_PROB_BASE based fixpoint
134 integer arithmetics. Once the code is converted to branch probabilities,
135 these conversions will probably go away because they are lossy.
138 class GTY((user
)) profile_probability
140 static const int n_bits
= 29;
141 /* We can technically use ((uint32_t) 1 << (n_bits - 1)) - 2 but that
142 will lead to harder multiplication sequences. */
143 static const uint32_t max_probability
= (uint32_t) 1 << (n_bits
- 2);
144 static const uint32_t uninitialized_probability
145 = ((uint32_t) 1 << (n_bits
- 1)) - 1;
148 enum profile_quality m_quality
: 3;
150 friend class profile_count
;
153 /* Named probabilities. */
154 static profile_probability
never ()
156 profile_probability ret
;
158 ret
.m_quality
= profile_precise
;
161 static profile_probability
guessed_never ()
163 profile_probability ret
;
165 ret
.m_quality
= profile_guessed
;
168 static profile_probability
very_unlikely ()
170 /* Be consistent with PROB_VERY_UNLIKELY in predict.h. */
171 profile_probability r
172 = profile_probability::guessed_always ().apply_scale (1, 2000);
176 static profile_probability
unlikely ()
178 /* Be consistent with PROB_VERY_LIKELY in predict.h. */
179 profile_probability r
180 = profile_probability::guessed_always ().apply_scale (1, 5);
184 static profile_probability
even ()
186 return profile_probability::guessed_always ().apply_scale (1, 2);
188 static profile_probability
very_likely ()
190 return profile_probability::always () - very_unlikely ();
192 static profile_probability
likely ()
194 return profile_probability::always () - unlikely ();
196 static profile_probability
guessed_always ()
198 profile_probability ret
;
199 ret
.m_val
= max_probability
;
200 ret
.m_quality
= profile_guessed
;
203 static profile_probability
always ()
205 profile_probability ret
;
206 ret
.m_val
= max_probability
;
207 ret
.m_quality
= profile_precise
;
210 /* Probabilities which has not been initialized. Either because
211 initialization did not happen yet or because profile is unknown. */
212 static profile_probability
uninitialized ()
214 profile_probability c
;
215 c
.m_val
= uninitialized_probability
;
216 c
.m_quality
= profile_guessed
;
221 /* Return true if value has been initialized. */
222 bool initialized_p () const
224 return m_val
!= uninitialized_probability
;
226 /* Return true if value can be trusted. */
227 bool reliable_p () const
229 return m_quality
>= profile_adjusted
;
232 /* Conversion from and to REG_BR_PROB_BASE integer fixpoint arithmetics.
233 this is mostly to support legacy code and should go away. */
234 static profile_probability
from_reg_br_prob_base (int v
)
236 profile_probability ret
;
237 gcc_checking_assert (v
>= 0 && v
<= REG_BR_PROB_BASE
);
238 ret
.m_val
= RDIV (v
* (uint64_t) max_probability
, REG_BR_PROB_BASE
);
239 ret
.m_quality
= profile_guessed
;
242 int to_reg_br_prob_base () const
244 gcc_checking_assert (initialized_p ());
245 return RDIV (m_val
* (uint64_t) REG_BR_PROB_BASE
, max_probability
);
248 /* Conversion to and from RTL representation of profile probabilities. */
249 static profile_probability
from_reg_br_prob_note (int v
)
251 profile_probability ret
;
252 ret
.m_val
= ((unsigned int)v
) / 8;
253 ret
.m_quality
= (enum profile_quality
)(v
& 7);
256 int to_reg_br_prob_note () const
258 gcc_checking_assert (initialized_p ());
259 int ret
= m_val
* 8 + m_quality
;
260 gcc_checking_assert (profile_probability::from_reg_br_prob_note (ret
)
265 /* Return VAL1/VAL2. */
266 static profile_probability probability_in_gcov_type
267 (gcov_type val1
, gcov_type val2
)
269 profile_probability ret
;
270 gcc_checking_assert (val1
>= 0 && val2
> 0);
272 ret
.m_val
= max_probability
;
276 safe_scale_64bit (val1
, max_probability
, val2
, &tmp
);
277 gcc_checking_assert (tmp
<= max_probability
);
280 ret
.m_quality
= profile_precise
;
284 /* Basic operations. */
285 bool operator== (const profile_probability
&other
) const
287 return m_val
== other
.m_val
&& m_quality
== other
.m_quality
;
289 profile_probability
operator+ (const profile_probability
&other
) const
291 if (other
== profile_probability::never ())
293 if (*this == profile_probability::never ())
295 if (!initialized_p () || !other
.initialized_p ())
296 return profile_probability::uninitialized ();
298 profile_probability ret
;
299 ret
.m_val
= MIN ((uint32_t)(m_val
+ other
.m_val
), max_probability
);
300 ret
.m_quality
= MIN (m_quality
, other
.m_quality
);
303 profile_probability
&operator+= (const profile_probability
&other
)
305 if (other
== profile_probability::never ())
307 if (*this == profile_probability::never ())
312 if (!initialized_p () || !other
.initialized_p ())
313 return *this = profile_probability::uninitialized ();
316 m_val
= MIN ((uint32_t)(m_val
+ other
.m_val
), max_probability
);
317 m_quality
= MIN (m_quality
, other
.m_quality
);
321 profile_probability
operator- (const profile_probability
&other
) const
323 if (*this == profile_probability::never ()
324 || other
== profile_probability::never ())
326 if (!initialized_p () || !other
.initialized_p ())
327 return profile_probability::uninitialized ();
328 profile_probability ret
;
329 ret
.m_val
= m_val
>= other
.m_val
? m_val
- other
.m_val
: 0;
330 ret
.m_quality
= MIN (m_quality
, other
.m_quality
);
333 profile_probability
&operator-= (const profile_probability
&other
)
335 if (*this == profile_probability::never ()
336 || other
== profile_probability::never ())
338 if (!initialized_p () || !other
.initialized_p ())
339 return *this = profile_probability::uninitialized ();
342 m_val
= m_val
>= other
.m_val
? m_val
- other
.m_val
: 0;
343 m_quality
= MIN (m_quality
, other
.m_quality
);
347 profile_probability
operator* (const profile_probability
&other
) const
349 if (*this == profile_probability::never ()
350 || other
== profile_probability::never ())
351 return profile_probability::never ();
352 if (!initialized_p () || !other
.initialized_p ())
353 return profile_probability::uninitialized ();
354 profile_probability ret
;
355 ret
.m_val
= RDIV ((uint64_t)m_val
* other
.m_val
, max_probability
);
356 ret
.m_quality
= MIN (MIN (m_quality
, other
.m_quality
), profile_adjusted
);
359 profile_probability
&operator*= (const profile_probability
&other
)
361 if (*this == profile_probability::never ()
362 || other
== profile_probability::never ())
363 return *this = profile_probability::never ();
364 if (!initialized_p () || !other
.initialized_p ())
365 return *this = profile_probability::uninitialized ();
368 m_val
= RDIV ((uint64_t)m_val
* other
.m_val
, max_probability
);
369 m_quality
= MIN (MIN (m_quality
, other
.m_quality
), profile_adjusted
);
373 profile_probability
operator/ (const profile_probability
&other
) const
375 if (*this == profile_probability::never ())
376 return profile_probability::never ();
377 if (!initialized_p () || !other
.initialized_p ())
378 return profile_probability::uninitialized ();
379 profile_probability ret
;
380 /* If we get probability above 1, mark it as unreliable and return 1. */
381 if (m_val
>= other
.m_val
)
383 ret
.m_val
= max_probability
;
384 ret
.m_quality
= MIN (MIN (m_quality
, other
.m_quality
),
392 gcc_checking_assert (other
.m_val
);
393 ret
.m_val
= MIN (RDIV ((uint64_t)m_val
* max_probability
,
397 ret
.m_quality
= MIN (MIN (m_quality
, other
.m_quality
), profile_adjusted
);
400 profile_probability
&operator/= (const profile_probability
&other
)
402 if (*this == profile_probability::never ())
403 return *this = profile_probability::never ();
404 if (!initialized_p () || !other
.initialized_p ())
405 return *this = profile_probability::uninitialized ();
408 /* If we get probability above 1, mark it as unreliable
410 if (m_val
> other
.m_val
)
412 m_val
= max_probability
;
413 m_quality
= MIN (MIN (m_quality
, other
.m_quality
),
421 gcc_checking_assert (other
.m_val
);
422 m_val
= MIN (RDIV ((uint64_t)m_val
* max_probability
,
426 m_quality
= MIN (MIN (m_quality
, other
.m_quality
), profile_adjusted
);
431 /* Split *THIS (ORIG) probability into 2 probabilities, such that
432 the returned one (FIRST) is *THIS * CPROB and *THIS is
433 adjusted (SECOND) so that FIRST + FIRST.invert () * SECOND
434 == ORIG. This is useful e.g. when splitting a conditional
437 goto lab; // ORIG probability
440 goto lab; // FIRST = ORIG * CPROB probability
442 goto lab; // SECOND probability
443 such that the overall probability of jumping to lab remains
444 the same. CPROB gives the relative probability between the
446 profile_probability
split (const profile_probability
&cprob
)
448 profile_probability ret
= *this * cprob
;
449 /* The following is equivalent to:
450 *this = cprob.invert () * *this / ret.invert ();
451 Avoid scaling when overall outcome is supposed to be always.
452 Without knowing that one is inverse of toher, the result would be
454 if (!(*this == profile_probability::always ()))
455 *this = (*this - ret
) / ret
.invert ();
459 gcov_type
apply (gcov_type val
) const
461 if (*this == profile_probability::uninitialized ())
463 return RDIV (val
* m_val
, max_probability
);
466 /* Return 1-*THIS. */
467 profile_probability
invert () const
469 return profile_probability::always() - *this;
472 /* Return THIS with quality dropped to GUESSED. */
473 profile_probability
guessed () const
475 profile_probability ret
= *this;
476 ret
.m_quality
= profile_guessed
;
480 /* Return THIS with quality dropped to AFDO. */
481 profile_probability
afdo () const
483 profile_probability ret
= *this;
484 ret
.m_quality
= profile_afdo
;
488 /* Return *THIS * NUM / DEN. */
489 profile_probability
apply_scale (int64_t num
, int64_t den
) const
491 if (*this == profile_probability::never ())
493 if (!initialized_p ())
494 return profile_probability::uninitialized ();
495 profile_probability ret
;
497 safe_scale_64bit (m_val
, num
, den
, &tmp
);
498 ret
.m_val
= MIN (tmp
, max_probability
);
499 ret
.m_quality
= MIN (m_quality
, profile_adjusted
);
503 /* Return true when the probability of edge is reliable.
505 The profile guessing code is good at predicting branch outcome (ie.
506 taken/not taken), that is predicted right slightly over 75% of time.
507 It is however notoriously poor on predicting the probability itself.
508 In general the profile appear a lot flatter (with probabilities closer
509 to 50%) than the reality so it is bad idea to use it to drive optimization
510 such as those disabling dynamic branch prediction for well predictable
513 There are two exceptions - edges leading to noreturn edges and edges
514 predicted by number of iterations heuristics are predicted well. This macro
515 should be able to distinguish those, but at the moment it simply check for
516 noreturn heuristic that is only one giving probability over 99% or bellow
517 1%. In future we might want to propagate reliability information across the
518 CFG if we find this information useful on multiple places. */
520 bool probably_reliable_p () const
522 if (m_quality
>= profile_adjusted
)
524 if (!initialized_p ())
526 return m_val
< max_probability
/ 100
527 || m_val
> max_probability
- max_probability
/ 100;
530 /* Return false if profile_probability is bogus. */
533 gcc_checking_assert (m_quality
!= profile_uninitialized
);
534 if (m_val
== uninitialized_probability
)
535 return m_quality
== profile_guessed
;
536 else if (m_quality
< profile_guessed
)
538 return m_val
<= max_probability
;
541 /* Comparsions are three-state and conservative. False is returned if
542 the inequality cannot be decided. */
543 bool operator< (const profile_probability
&other
) const
545 return initialized_p () && other
.initialized_p () && m_val
< other
.m_val
;
547 bool operator> (const profile_probability
&other
) const
549 return initialized_p () && other
.initialized_p () && m_val
> other
.m_val
;
552 bool operator<= (const profile_probability
&other
) const
554 return initialized_p () && other
.initialized_p () && m_val
<= other
.m_val
;
556 bool operator>= (const profile_probability
&other
) const
558 return initialized_p () && other
.initialized_p () && m_val
>= other
.m_val
;
561 /* Output THIS to F. */
562 void dump (FILE *f
) const;
564 /* Print THIS to stderr. */
567 /* Return true if THIS is known to differ significantly from OTHER. */
568 bool differs_from_p (profile_probability other
) const;
569 /* Return if difference is greater than 50%. */
570 bool differs_lot_from_p (profile_probability other
) const;
571 /* COUNT1 times event happens with *THIS probability, COUNT2 times OTHER
572 happens with COUNT2 probablity. Return probablity that either *THIS or
574 profile_probability
combine_with_count (profile_count count1
,
575 profile_probability other
,
576 profile_count count2
) const;
578 /* LTO streaming support. */
579 static profile_probability
stream_in (struct lto_input_block
*);
580 void stream_out (struct output_block
*);
581 void stream_out (struct lto_output_stream
*);
584 /* Main data type to hold profile counters in GCC. Profile counts originate
585 either from profile feedback, static profile estimation or both. We do not
586 perform whole program profile propagation and thus profile estimation
587 counters are often local to function, while counters from profile feedback
588 (or special cases of profile estimation) can be used inter-procedurally.
590 There are 3 basic types
591 1) local counters which are result of intra-procedural static profile
593 2) ipa counters which are result of profile feedback or special case
594 of static profile estimation (such as in function main).
595 3) counters which counts as 0 inter-procedurally (beause given function
596 was never run in train feedback) but they hold local static profile
599 Counters of type 1 and 3 cannot be mixed with counters of different type
600 within operation (because whole function should use one type of counter)
601 with exception that global zero mix in most operations where outcome is
604 To take local counter and use it inter-procedurally use ipa member function
605 which strips information irelevant at the inter-procedural level.
607 Counters are 61bit integers representing number of executions during the
608 train run or normalized frequency within the function.
610 As the profile is maintained during the compilation, many adjustments are
611 made. Not all transformations can be made precisely, most importantly
612 when code is being duplicated. It also may happen that part of CFG has
613 profile counts known while other do not - for example when LTO optimizing
614 partly profiled program or when profile was lost due to COMDAT merging.
616 For this reason profile_count tracks more information than
617 just unsigned integer and it is also ready for profile mismatches.
618 The API of this data type represent operations that are natural
619 on profile counts - sum, difference and operation with scales and
620 probabilities. All operations are safe by never getting negative counts
621 and they do end up in uninitialized scale if any of the parameters is
624 All comparsions that are three state and handling of probabilities. Thus
625 a < b is not equal to !(a >= b).
627 The following pre-defined counts are available:
629 profile_count::zero () for code that is known to execute zero times at
630 runtime (this can be detected statically i.e. for paths leading to
632 profile_count::one () for code that is known to execute once (such as
634 profile_count::uninitialized () for unknown execution count.
640 class GTY(()) profile_count
643 /* Use 62bit to hold basic block counters. Should be at least
644 64bit. Although a counter cannot be negative, we use a signed
645 type to hold various extra stages. */
647 static const int n_bits
= 61;
648 static const uint64_t max_count
= ((uint64_t) 1 << n_bits
) - 2;
650 static const uint64_t uninitialized_count
= ((uint64_t) 1 << n_bits
) - 1;
652 uint64_t m_val
: n_bits
;
653 enum profile_quality m_quality
: 3;
655 /* Return true if both values can meaningfully appear in single function
656 body. We have either all counters in function local or global, otherwise
657 operations between them are not really defined well. */
658 bool compatible_p (const profile_count other
) const
660 if (!initialized_p () || !other
.initialized_p ())
662 if (*this == profile_count::zero ()
663 || other
== profile_count::zero ())
665 return ipa_p () == other
.ipa_p ();
669 /* Used for counters which are expected to be never executed. */
670 static profile_count
zero ()
672 return from_gcov_type (0);
674 static profile_count
adjusted_zero ()
678 c
.m_quality
= profile_adjusted
;
681 static profile_count
guessed_zero ()
685 c
.m_quality
= profile_guessed
;
688 static profile_count
one ()
690 return from_gcov_type (1);
692 /* Value of counters which has not been initialized. Either because
693 initialization did not happen yet or because profile is unknown. */
694 static profile_count
uninitialized ()
697 c
.m_val
= uninitialized_count
;
698 c
.m_quality
= profile_guessed_local
;
702 /* Conversion to gcov_type is lossy. */
703 gcov_type
to_gcov_type () const
705 gcc_checking_assert (initialized_p ());
709 /* Return true if value has been initialized. */
710 bool initialized_p () const
712 return m_val
!= uninitialized_count
;
714 /* Return true if value can be trusted. */
715 bool reliable_p () const
717 return m_quality
>= profile_adjusted
;
719 /* Return true if vlaue can be operated inter-procedurally. */
722 return !initialized_p () || m_quality
>= profile_guessed_global0
;
724 /* Return true if quality of profile is precise. */
725 bool precise_p () const
727 return m_quality
== profile_precise
;
730 /* Get the quality of the count. */
731 enum profile_quality
quality () const { return m_quality
; }
733 /* When merging basic blocks, the two different profile counts are unified.
734 Return true if this can be done without losing info about profile.
735 The only case we care about here is when first BB contains something
736 that makes it terminate in a way not visible in CFG. */
737 bool ok_for_merging (profile_count other
) const
739 if (m_quality
< profile_adjusted
740 || other
.m_quality
< profile_adjusted
)
742 return !(other
< *this);
745 /* When merging two BBs with different counts, pick common count that looks
746 most representative. */
747 profile_count
merge (profile_count other
) const
749 if (*this == other
|| !other
.initialized_p ()
750 || m_quality
> other
.m_quality
)
752 if (other
.m_quality
> m_quality
758 /* Basic operations. */
759 bool operator== (const profile_count
&other
) const
761 return m_val
== other
.m_val
&& m_quality
== other
.m_quality
;
763 profile_count
operator+ (const profile_count
&other
) const
765 if (other
== profile_count::zero ())
767 if (*this == profile_count::zero ())
769 if (!initialized_p () || !other
.initialized_p ())
770 return profile_count::uninitialized ();
773 gcc_checking_assert (compatible_p (other
));
774 ret
.m_val
= m_val
+ other
.m_val
;
775 ret
.m_quality
= MIN (m_quality
, other
.m_quality
);
778 profile_count
&operator+= (const profile_count
&other
)
780 if (other
== profile_count::zero ())
782 if (*this == profile_count::zero ())
787 if (!initialized_p () || !other
.initialized_p ())
788 return *this = profile_count::uninitialized ();
791 gcc_checking_assert (compatible_p (other
));
792 m_val
+= other
.m_val
;
793 m_quality
= MIN (m_quality
, other
.m_quality
);
797 profile_count
operator- (const profile_count
&other
) const
799 if (*this == profile_count::zero () || other
== profile_count::zero ())
801 if (!initialized_p () || !other
.initialized_p ())
802 return profile_count::uninitialized ();
803 gcc_checking_assert (compatible_p (other
));
805 ret
.m_val
= m_val
>= other
.m_val
? m_val
- other
.m_val
: 0;
806 ret
.m_quality
= MIN (m_quality
, other
.m_quality
);
809 profile_count
&operator-= (const profile_count
&other
)
811 if (*this == profile_count::zero () || other
== profile_count::zero ())
813 if (!initialized_p () || !other
.initialized_p ())
814 return *this = profile_count::uninitialized ();
817 gcc_checking_assert (compatible_p (other
));
818 m_val
= m_val
>= other
.m_val
? m_val
- other
.m_val
: 0;
819 m_quality
= MIN (m_quality
, other
.m_quality
);
824 /* Return false if profile_count is bogus. */
827 gcc_checking_assert (m_quality
!= profile_uninitialized
);
828 return m_val
!= uninitialized_count
|| m_quality
== profile_guessed_local
;
831 /* Comparsions are three-state and conservative. False is returned if
832 the inequality cannot be decided. */
833 bool operator< (const profile_count
&other
) const
835 if (!initialized_p () || !other
.initialized_p ())
837 if (*this == profile_count::zero ())
838 return !(other
== profile_count::zero ());
839 if (other
== profile_count::zero ())
841 gcc_checking_assert (compatible_p (other
));
842 return m_val
< other
.m_val
;
844 bool operator> (const profile_count
&other
) const
846 if (!initialized_p () || !other
.initialized_p ())
848 if (*this == profile_count::zero ())
850 if (other
== profile_count::zero ())
851 return !(*this == profile_count::zero ());
852 gcc_checking_assert (compatible_p (other
));
853 return initialized_p () && other
.initialized_p () && m_val
> other
.m_val
;
855 bool operator< (const gcov_type other
) const
857 gcc_checking_assert (ipa_p ());
858 gcc_checking_assert (other
>= 0);
859 return initialized_p () && m_val
< (uint64_t) other
;
861 bool operator> (const gcov_type other
) const
863 gcc_checking_assert (ipa_p ());
864 gcc_checking_assert (other
>= 0);
865 return initialized_p () && m_val
> (uint64_t) other
;
868 bool operator<= (const profile_count
&other
) const
870 if (!initialized_p () || !other
.initialized_p ())
872 if (*this == profile_count::zero ())
874 if (other
== profile_count::zero ())
875 return (*this == profile_count::zero ());
876 gcc_checking_assert (compatible_p (other
));
877 return m_val
<= other
.m_val
;
879 bool operator>= (const profile_count
&other
) const
881 if (!initialized_p () || !other
.initialized_p ())
883 if (other
== profile_count::zero ())
885 if (*this == profile_count::zero ())
886 return (other
== profile_count::zero ());
887 gcc_checking_assert (compatible_p (other
));
888 return m_val
>= other
.m_val
;
890 bool operator<= (const gcov_type other
) const
892 gcc_checking_assert (ipa_p ());
893 gcc_checking_assert (other
>= 0);
894 return initialized_p () && m_val
<= (uint64_t) other
;
896 bool operator>= (const gcov_type other
) const
898 gcc_checking_assert (ipa_p ());
899 gcc_checking_assert (other
>= 0);
900 return initialized_p () && m_val
>= (uint64_t) other
;
902 /* Return true when value is not zero and can be used for scaling.
903 This is different from *this > 0 because that requires counter to
905 bool nonzero_p () const
907 return initialized_p () && m_val
!= 0;
910 /* Make counter forcingly nonzero. */
911 profile_count
force_nonzero () const
913 if (!initialized_p ())
915 profile_count ret
= *this;
919 ret
.m_quality
= MIN (m_quality
, profile_adjusted
);
924 profile_count
max (profile_count other
) const
926 if (!initialized_p ())
928 if (!other
.initialized_p ())
930 if (*this == profile_count::zero ())
932 if (other
== profile_count::zero ())
934 gcc_checking_assert (compatible_p (other
));
935 if (m_val
< other
.m_val
|| (m_val
== other
.m_val
936 && m_quality
< other
.m_quality
))
941 /* PROB is a probability in scale 0...REG_BR_PROB_BASE. Scale counter
943 profile_count
apply_probability (int prob
) const
945 gcc_checking_assert (prob
>= 0 && prob
<= REG_BR_PROB_BASE
);
948 if (!initialized_p ())
949 return profile_count::uninitialized ();
951 ret
.m_val
= RDIV (m_val
* prob
, REG_BR_PROB_BASE
);
952 ret
.m_quality
= MIN (m_quality
, profile_adjusted
);
956 /* Scale counter according to PROB. */
957 profile_count
apply_probability (profile_probability prob
) const
959 if (*this == profile_count::zero ())
961 if (prob
== profile_probability::never ())
962 return profile_count::zero ();
963 if (!initialized_p ())
964 return profile_count::uninitialized ();
967 safe_scale_64bit (m_val
, prob
.m_val
, profile_probability::max_probability
,
970 ret
.m_quality
= MIN (m_quality
, prob
.m_quality
);
973 /* Return *THIS * NUM / DEN. */
974 profile_count
apply_scale (int64_t num
, int64_t den
) const
978 if (!initialized_p ())
979 return profile_count::uninitialized ();
983 gcc_checking_assert (num
>= 0 && den
> 0);
984 safe_scale_64bit (m_val
, num
, den
, &tmp
);
985 ret
.m_val
= MIN (tmp
, max_count
);
986 ret
.m_quality
= MIN (m_quality
, profile_adjusted
);
989 profile_count
apply_scale (profile_count num
, profile_count den
) const
991 if (*this == profile_count::zero ())
993 if (num
== profile_count::zero ())
995 if (!initialized_p () || !num
.initialized_p () || !den
.initialized_p ())
996 return profile_count::uninitialized ();
999 gcc_checking_assert (den
.m_val
);
1003 safe_scale_64bit (m_val
, num
.m_val
, den
.m_val
, &val
);
1004 ret
.m_val
= MIN (val
, max_count
);
1005 ret
.m_quality
= MIN (MIN (MIN (m_quality
, profile_adjusted
),
1006 num
.m_quality
), den
.m_quality
);
1007 if (num
.ipa_p () && !ret
.ipa_p ())
1008 ret
.m_quality
= MIN (num
.m_quality
, profile_guessed
);
1012 /* Return THIS with quality dropped to GUESSED_LOCAL. */
1013 profile_count
guessed_local () const
1015 profile_count ret
= *this;
1016 if (!initialized_p ())
1018 ret
.m_quality
= profile_guessed_local
;
1022 /* We know that profile is globally 0 but keep local profile if present. */
1023 profile_count
global0 () const
1025 profile_count ret
= *this;
1026 if (!initialized_p ())
1028 ret
.m_quality
= profile_guessed_global0
;
1032 /* We know that profile is globally adjusted 0 but keep local profile
1034 profile_count
global0adjusted () const
1036 profile_count ret
= *this;
1037 if (!initialized_p ())
1039 ret
.m_quality
= profile_guessed_global0adjusted
;
1043 /* Return THIS with quality dropped to GUESSED. */
1044 profile_count
guessed () const
1046 profile_count ret
= *this;
1047 ret
.m_quality
= MIN (ret
.m_quality
, profile_guessed
);
1051 /* Return variant of profile counte which is always safe to compare
1052 acorss functions. */
1053 profile_count
ipa () const
1055 if (m_quality
> profile_guessed_global0adjusted
)
1057 if (m_quality
== profile_guessed_global0
)
1058 return profile_count::zero ();
1059 if (m_quality
== profile_guessed_global0adjusted
)
1060 return profile_count::adjusted_zero ();
1061 return profile_count::uninitialized ();
1064 /* Return THIS with quality dropped to AFDO. */
1065 profile_count
afdo () const
1067 profile_count ret
= *this;
1068 ret
.m_quality
= profile_afdo
;
1072 /* Return probability of event with counter THIS within event with counter
1074 profile_probability
probability_in (const profile_count overall
) const
1076 if (*this == profile_count::zero ()
1077 && !(overall
== profile_count::zero ()))
1078 return profile_probability::never ();
1079 if (!initialized_p () || !overall
.initialized_p ()
1081 return profile_probability::uninitialized ();
1082 if (*this == overall
&& m_quality
== profile_precise
)
1083 return profile_probability::always ();
1084 profile_probability ret
;
1085 gcc_checking_assert (compatible_p (overall
));
1087 if (overall
.m_val
< m_val
)
1089 ret
.m_val
= profile_probability::max_probability
;
1090 ret
.m_quality
= profile_guessed
;
1094 ret
.m_val
= RDIV (m_val
* profile_probability::max_probability
,
1096 ret
.m_quality
= MIN (MAX (MIN (m_quality
, overall
.m_quality
),
1097 profile_guessed
), profile_adjusted
);
1101 int to_frequency (struct function
*fun
) const;
1102 int to_cgraph_frequency (profile_count entry_bb_count
) const;
1103 sreal
to_sreal_scale (profile_count in
, bool *known
= NULL
) const;
1105 /* Output THIS to F. */
1106 void dump (FILE *f
) const;
1108 /* Print THIS to stderr. */
1109 void debug () const;
1111 /* Return true if THIS is known to differ significantly from OTHER. */
1112 bool differs_from_p (profile_count other
) const;
1114 /* We want to scale profile across function boundary from NUM to DEN.
1115 Take care of the side case when NUM and DEN are zeros of incompatible
1117 static void adjust_for_ipa_scaling (profile_count
*num
, profile_count
*den
);
1119 /* THIS is a count of bb which is known to be executed IPA times.
1120 Combine this information into bb counter. This means returning IPA
1121 if it is nonzero, not changing anything if IPA is uninitialized
1122 and if IPA is zero, turning THIS into corresponding local profile with
1124 profile_count
combine_with_ipa_count (profile_count ipa
);
1126 /* The profiling runtime uses gcov_type, which is usually 64bit integer.
1127 Conversions back and forth are used to read the coverage and get it
1128 into internal representation. */
1129 static profile_count
from_gcov_type (gcov_type v
);
1131 /* LTO streaming support. */
1132 static profile_count
stream_in (struct lto_input_block
*);
1133 void stream_out (struct output_block
*);
1134 void stream_out (struct lto_output_stream
*);