Searched refs:RDIV (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/gcc/
H A Dcfg.c79 #define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
930 int scale = RDIV (65536 * REG_BR_PROB_BASE, prob);
934 c->probability = RDIV (c->probability * scale, 65536);
968 bbs[i]->frequency = RDIV (bbs[i]->frequency * num, den);
969 bbs[i]->count = RDIV (bbs[i]->count * num, den);
971 e->count = RDIV (e->count * num, den);
988 gcov_type fraction = RDIV (num * 65536, den);
996 bbs[i]->frequency = RDIV (bbs[i]->frequency * num, den);
998 bbs[i]->count = RDIV (bbs[i]->count * num, den);
1000 bbs[i]->count = RDIV (bb
77 #define RDIV macro
[all...]
H A Dcfgloopmanip.c52 #define RDIV(X,Y) (((X) + (Y) / 2) / (Y)) macro
851 prob_pass_thru = RDIV (REG_BR_PROB_BASE * freq_le, freq_in);
853 RDIV (REG_BR_PROB_BASE * (freq_le + freq_out_orig), freq_in);
876 scale_act = RDIV (wanted_freq * REG_BR_PROB_BASE, freq_in);
880 wanted_freq = RDIV (wanted_freq * scale_step[i], REG_BR_PROB_BASE);
881 scale_main = RDIV (wanted_freq * REG_BR_PROB_BASE, freq_in);
893 p = RDIV (p * scale_step[i], REG_BR_PROB_BASE);
895 scale_main = RDIV (REG_BR_PROB_BASE * REG_BR_PROB_BASE, scale_main);
896 scale_act = RDIV (scale_main * prob_pass_main, REG_BR_PROB_BASE);
902 scale_main = RDIV (scale_mai
[all...]
/freebsd-10.1-release/contrib/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h348 enum ClassificationKind { ZIV, SIV, RDIV, MIV, NonLinear } Classification; enumerator in enum:llvm::DependenceAnalysis::Subscript::ClassificationKind
571 /// and classifies it as either ZIV, SIV, RDIV, MIV, or Nonlinear.
605 /// testRDIV - Tests the RDIV subscript pair (Src and Dst) for dependence.
715 /// exactRDIVtest - Tests the RDIV subscript pair for dependence.
731 /// symbolicRDIVtest - Tests the RDIV subscript pair for dependence.
/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp23 // coupled RDIV subscripts and lacks a multi-subscript MIV test.
93 STATISTIC(ExactRDIVapplications, "Exact RDIV applications");
94 STATISTIC(ExactRDIVindependence, "Exact RDIV independence");
95 STATISTIC(SymbolicRDIVapplications, "Symbolic RDIV applications");
96 STATISTIC(SymbolicRDIVindependence, "Symbolic RDIV independence");
841 // and classifies it as either ZIV, SIV, RDIV, MIV, or Nonlinear.
863 return Subscript::RDIV;
1771 // exactRDIVtest - Tests the RDIV subscript pair for dependence.
1785 DEBUG(dbgs() << "\tExact RDIV test\n");
1883 // Extreme-Value Test) that can handle some of the SIV and RDIV case
[all...]

Completed in 63 milliseconds