search for: a44ad583

Displaying 2 results from an estimated 2 matches for "a44ad583".

2015 Apr 24
2
[LLVMdev] Loss of precision with very large branch weights
...ually frequently. > The efficiency of the interface is a different issue. > > Yeah. I'm looking at the hotness calculation first. Diego. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150424/a44ad583/attachment.html>
2015 Apr 24
5
[LLVMdev] Loss of precision with very large branch weights
In PR 22718, we are looking at issues with long running applications producing non-representative frequencies. For example, in these two loops: int g = 0; __attribute__((noinline)) void bar() { g++; } extern int printf(const char*, ...); int main() { int i, j, k; for (i = 0; i < 1000000; i++) bar(); printf ("g = %d\n", g); g = 0; for (i = 0; i < 500000; i++)