Lines Matching refs:to
14 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
34 // A division that is going to be predicted integer on the first compilation. The
36 // division will be 1, which is too low for the division to be predicted double.
38 // integer but that contains a double. The subsequent addition to x, which is
39 // predicted double, will lead the Fixup phase to inject an Int32ToDouble node on
42 // is to disable constant folding of mispredicted nodes; that allows the normal
43 // process of correcting predictions (OSR exit profiling, exiting to profiled code,
44 // and recompilation with exponential backoff) to take effect so that the next
47 // A pointless loop to force the first compilation to occur before the division got
48 // hot. If this loop was not here then the division would be known to produce doubles
56 // Call foo() enough times to make totally sure that we optimize.