Tobias von Koch
2014-Jan-28 19:47 UTC
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan, Sorry for the delay. It's great that you are working on MergeFunctions as well and I agree, we should definitely try to combine our efforts to improve MergeFunctions. Just to give you some context, the pass (with the similar function merging patch) is already being used in a production setting. From my point of view, it would be better if we focus on improving its capability of merging functions at this stage rather than on reduction of compilation time. I'll give a brief overview of how our similar function merging algorithm works (you can also watch the presentation from the US LLVM conference to hear me explain it using an animation). 1. Hash all functions into buckets In each bucket, separately: 2. Compare functions pair-wise and determine a similarity metric for each pair (%age of equivalent instructions) 3. Merge identical functions (with similarity = 100%), update call sites for those functions. 4. If the updates of call sites have touched other functions, go back to step 2 and re-compare *only* those functions to all others in their buckets. Finally, 5. Form groups of similar functions for merging: a) Pick most similar pair (A,B) b) Find all functions C that are also similar to B but are not more similar to some other function D. c) Merge A with B and all the C's. Repeat until there are no more functions to merge. As you can see, we need to compute a similarity measure for each pair of functions in a bucket. If I understand correctly, your patch reduces compile-time by avoiding comparisons of functions that cannot be identical. That's exactly what you want to do if you only want to merge identical functions. However, because we also need to determine whether functions are merely *similar*, I can't see how your idea could be applied in that case. Looking at your statistics, I see that you are considering a very large number of functions. I don't know which benchmarks you are using, but I doubt that many of these are worth merging. For instance, you rarely gain a code size benefit from merging functions with just a few instructions. Our patch takes care of this using thresholds. It's worth looking at actual code size reductions, rather than just numbers of functions merged/ compilation time spent comparing functions. It turns out that the number of functions in each bucket is really quite small once you apply some heuristics (and could still be further reduced!). Given your experience with MergeFunctions, it would be really great if you could review our patch and also try it out on your benchmarks. Tobias On 24/01/2014 19:11, Stepan Dyatkovskiy wrote:> Hi Tobias. > > So, what do you think? > > If it means to much extra-job for your team, may be I can help you > somehow? I really would like to. > > -Stepan > > Stepan Dyatkovskiy wrote: >> Hi Tobias, >> >>> I can't really see a way to combine our approach with your patch. What >>> are your thoughts? >> >> I think it is possible. Even more - we need to combine our efforts, in >> order to bring this pass into real live. >> I'have read your presentation file, and unfortunately read your patch >> only a little. >> How exactly you scan functions on 2nd stage? Could you explain the >> algorithm in few words, how you compare workflow? Is it possible to >> scan binary tree instead of hash table? ...OK. >> >> That's how I see the modification. Now its important to explain idea, >> so consider the simplest case: you need to catch two functions that >> are differs with single instruction somewhere. >> >> 1. Imagine, that IR *module* contents is represented as binary tree: >> Each line (trace) from root to terminal node is a function. >> Each node - is function's primitive (instruction opcode, for example). >> Down - is direction to terminal nodes, up - is direction to the root. >> >> 2. Now you are standing on some node. And you have two directions >> down-left and down-right. >> >> 3. If you are able to find two equal sub-traces down (at left and at >> right), then the only difference lies in this node. Then we catch that >> case. >> >> 4. Even more, if two subtrees at left and at right are equal, than you >> catch at once all the cases that are represented by these subtrees. >> >> I still didn't look at you patch carefully. Sorry.. But I hope that >> helps, and I'll try look at it in nearest time and perhaps its not the >> best solution I gave in this post. >> >> -Stepan >> >> 22.01.2014, 20:53, "Tobias von Koch" <tobias.von.koch at gmail.com>: >>> Hi Stepan, >>> >>> As you've seen we have recently implemented a significant enhancement to >>> the MergeFunctions pass that also allows merging of functions that are >>> only similar but not identical >>> (http://llvm-reviews.chandlerc.com/D2591). >>> >>> Our patch also changes the way that functions are compared quite >>> significantly. This is necessary because we need to compare all >>> functions in a bucket in order to get a similarity measure for each >>> pair, so we can then decide which 'groups' of functions to merge. >>> >>> I can't really see a way to combine our approach with your patch. What >>> are your thoughts? >>> >>> Another way to improve the performance of MergeFunctions might be to >>> make the hash function better. I've already added the size of the first >>> BB to it, and perhaps there are other factors we could try... if we >>> don't have to compare functions in the first place (because they're in >>> different buckets) then that's obviously a much bigger win. >>> >>> Thanks, >>> Tobias >>> >>> On 17/01/2014 20:25, Stepan Dyatkovskiy wrote: >>> >>>> Hi all, >>>> >>>> I propose simple improvement for MergeFunctions pass, that reduced >>>> its >>>> complexity from O(N^2) to O(log(N)), where N is number of >>>> functions in >>>> module. >>>> >>>> The idea, is to replace the result of comparison from "bool" to >>>> "-1,0,1". In another words: define order relation on functions set. >>>> To be sure, that functions could be comparable that way, we have to >>>> prove that order relation is possible on all comparison stage. >>>> >>>> The last one is possible, if for each comparison stage we >>>> implement has >>>> next properties: >>>> * reflexivity (a <= a, a == a, a >= a), >>>> * antisymmetry (if a <= b and b <= a then a == b), >>>> * transitivity (a <= b and b <= c, then a <= c) >>>> * asymmetry (if a < b, then a > b or a == b). >>>> >>>> Once we have defined order relation we can store all the functions in >>>> binary tree and perform lookup in O(log(N)) time. >>>> >>>> This post has two attachments: >>>> 1. The patch, that has implementation of this idea. >>>> 2. The MergeFunctions pass detailed description, with explanation how >>>> order relation could be possible. >>>> >>>> Hope it helps to make things better! >>>> >>>> -Stepan. >>>> >>>> _______________________________________________ >>>> LLVM Developers mailing list >>>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >
Stepan Dyatkovskiy
2014-Jan-29 06:30 UTC
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Tobias,> As you can see, we need to compute a similarity measure for each pair of > functions in a bucket. If I understand correctly, your patch reduces > compile-time by avoiding comparisons of functions that cannot be > identical. That's exactly what you want to do if you only want to merge > identical functions. However, because we also need to determine whether > functions are merely *similar*, I can't see how your idea could be > applied in that case.Did you read my previous post to you? What do you thing about tree advantages for your approach that were explained there?> Looking at your statistics, I see that you are considering a very large > number of functions. I don't know which benchmarks you are using, but I > doubt that many of these are worth merging. For instance, you rarely > gain a code size benefit from merging functions with just a few > instructions. Our patch takes care of this using thresholds. It's worth > looking at actual code size reductions, rather than just numbers of > functions merged/ compilation time spent comparing functions. It turns > out that the number of functions in each bucket is really quite small > once you apply some heuristics (and could still be further reduced!).Based on my previous statistics average size of merging function is about 10-20 instructions. Anyway I will present new statistics with sizes included. I also will publish statistics for you approach. -- Truly yours, Stepan Dyatkovskiy 28.01.2014, 23:47, "Tobias von Koch" <tobias.von.koch at gmail.com>:> Hi Stepan, > > Sorry for the delay. It's great that you are working on MergeFunctions > as well and I agree, we should definitely try to combine our efforts to > improve MergeFunctions. > > Just to give you some context, the pass (with the similar function > merging patch) is already being used in a production setting. From my > point of view, it would be better if we focus on improving its > capability of merging functions at this stage rather than on reduction > of compilation time. > > I'll give a brief overview of how our similar function merging algorithm > works (you can also watch the presentation from the US LLVM conference > to hear me explain it using an animation). > > 1. Hash all functions into buckets > > In each bucket, separately: > > 2. Compare functions pair-wise and determine a > similarity metric for each pair (%age of equivalent instructions) > > 3. Merge identical functions (with similarity = 100%), update call > sites for those functions. > > 4. If the updates of call sites have touched other functions, > go back to step 2 and re-compare *only* those functions to all > others in their buckets. > > Finally, > > 5. Form groups of similar functions for merging: > a) Pick most similar pair (A,B) > b) Find all functions C that are also similar to B but are not > more similar to some other function D. > c) Merge A with B and all the C's. > Repeat until there are no more functions to merge. > > As you can see, we need to compute a similarity measure for each pair of > functions in a bucket. If I understand correctly, your patch reduces > compile-time by avoiding comparisons of functions that cannot be > identical. That's exactly what you want to do if you only want to merge > identical functions. However, because we also need to determine whether > functions are merely *similar*, I can't see how your idea could be > applied in that case. > > Looking at your statistics, I see that you are considering a very large > number of functions. I don't know which benchmarks you are using, but I > doubt that many of these are worth merging. For instance, you rarely > gain a code size benefit from merging functions with just a few > instructions. Our patch takes care of this using thresholds. It's worth > looking at actual code size reductions, rather than just numbers of > functions merged/ compilation time spent comparing functions. It turns > out that the number of functions in each bucket is really quite small > once you apply some heuristics (and could still be further reduced!). > > Given your experience with MergeFunctions, it would be really great if > you could review our patch and also try it out on your benchmarks. > > Tobias > > On 24/01/2014 19:11, Stepan Dyatkovskiy wrote: > >> Hi Tobias. >> >> So, what do you think? >> >> If it means to much extra-job for your team, may be I can help you >> somehow? I really would like to. >> >> -Stepan >> >> Stepan Dyatkovskiy wrote: >>> Hi Tobias, >>>> I can't really see a way to combine our approach with your patch. What >>>> are your thoughts? >>> I think it is possible. Even more - we need to combine our efforts, in >>> order to bring this pass into real live. >>> I'have read your presentation file, and unfortunately read your patch >>> only a little. >>> How exactly you scan functions on 2nd stage? Could you explain the >>> algorithm in few words, how you compare workflow? Is it possible to >>> scan binary tree instead of hash table? ...OK. >>> >>> That's how I see the modification. Now its important to explain idea, >>> so consider the simplest case: you need to catch two functions that >>> are differs with single instruction somewhere. >>> >>> 1. Imagine, that IR *module* contents is represented as binary tree: >>> Each line (trace) from root to terminal node is a function. >>> Each node - is function's primitive (instruction opcode, for example). >>> Down - is direction to terminal nodes, up - is direction to the root. >>> >>> 2. Now you are standing on some node. And you have two directions >>> down-left and down-right. >>> >>> 3. If you are able to find two equal sub-traces down (at left and at >>> right), then the only difference lies in this node. Then we catch that >>> case. >>> >>> 4. Even more, if two subtrees at left and at right are equal, than you >>> catch at once all the cases that are represented by these subtrees. >>> >>> I still didn't look at you patch carefully. Sorry.. But I hope that >>> helps, and I'll try look at it in nearest time and perhaps its not the >>> best solution I gave in this post. >>> >>> -Stepan >>> >>> 22.01.2014, 20:53, "Tobias von Koch" <tobias.von.koch at gmail.com>: >>>> Hi Stepan, >>>> >>>> As you've seen we have recently implemented a significant enhancement to >>>> the MergeFunctions pass that also allows merging of functions that are >>>> only similar but not identical >>>> (http://llvm-reviews.chandlerc.com/D2591). >>>> >>>> Our patch also changes the way that functions are compared quite >>>> significantly. This is necessary because we need to compare all >>>> functions in a bucket in order to get a similarity measure for each >>>> pair, so we can then decide which 'groups' of functions to merge. >>>> >>>> I can't really see a way to combine our approach with your patch. What >>>> are your thoughts? >>>> >>>> Another way to improve the performance of MergeFunctions might be to >>>> make the hash function better. I've already added the size of the first >>>> BB to it, and perhaps there are other factors we could try... if we >>>> don't have to compare functions in the first place (because they're in >>>> different buckets) then that's obviously a much bigger win. >>>> >>>> Thanks, >>>> Tobias >>>> >>>> On 17/01/2014 20:25, Stepan Dyatkovskiy wrote: >>>>> Hi all, >>>>> >>>>> I propose simple improvement for MergeFunctions pass, that reduced >>>>> its >>>>> complexity from O(N^2) to O(log(N)), where N is number of >>>>> functions in >>>>> module. >>>>> >>>>> The idea, is to replace the result of comparison from "bool" to >>>>> "-1,0,1". In another words: define order relation on functions set. >>>>> To be sure, that functions could be comparable that way, we have to >>>>> prove that order relation is possible on all comparison stage. >>>>> >>>>> The last one is possible, if for each comparison stage we >>>>> implement has >>>>> next properties: >>>>> * reflexivity (a <= a, a == a, a >= a), >>>>> * antisymmetry (if a <= b and b <= a then a == b), >>>>> * transitivity (a <= b and b <= c, then a <= c) >>>>> * asymmetry (if a < b, then a > b or a == b). >>>>> >>>>> Once we have defined order relation we can store all the functions in >>>>> binary tree and perform lookup in O(log(N)) time. >>>>> >>>>> This post has two attachments: >>>>> 1. The patch, that has implementation of this idea. >>>>> 2. The MergeFunctions pass detailed description, with explanation how >>>>> order relation could be possible. >>>>> >>>>> Hope it helps to make things better! >>>>> >>>>> -Stepan. >>>>> >>>>> _______________________________________________ >>>>> LLVM Developers mailing list >>>>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >>>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
On Tue, Jan 28, 2014 at 2:47 PM, Tobias von Koch <tobias.von.koch at gmail.com>wrote:> Hi Stepan, > > Sorry for the delay. It's great that you are working on MergeFunctions as > well and I agree, we should definitely try to combine our efforts to > improve MergeFunctions. > > Just to give you some context, the pass (with the similar function merging > patch) is already being used in a production setting. From my point of > view, it would be better if we focus on improving its capability of merging > functions at this stage rather than on reduction of compilation time. > > I'll give a brief overview of how our similar function merging algorithm > works (you can also watch the presentation from the US LLVM conference to > hear me explain it using an animation). > > 1. Hash all functions into buckets > > In each bucket, separately: > > 2. Compare functions pair-wise and determine a > similarity metric for each pair (%age of equivalent instructions) > > 3. Merge identical functions (with similarity = 100%), update call > sites for those functions. > > 4. If the updates of call sites have touched other functions, > go back to step 2 and re-compare *only* those functions to all > others in their buckets. > > Finally, > > 5. Form groups of similar functions for merging: > a) Pick most similar pair (A,B) > b) Find all functions C that are also similar to B but are not > more similar to some other function D. > c) Merge A with B and all the C's. > Repeat until there are no more functions to merge. > > As you can see, we need to compute a similarity measure for each pair of > functions in a bucket. If I understand correctly, your patch reduces > compile-time by avoiding comparisons of functions that cannot be identical. > That's exactly what you want to do if you only want to merge identical > functions. However, because we also need to determine whether functions are > merely *similar*, I can't see how your idea could be applied in that case. >Yeah, the existing pass only tries to merge identical functions (identical in machine code). I'm wondering if the "similar" function merging would be better as a separate pass (I'm genuinely wondering; I have no clue). I would wait for Nick's feedback. -- Sean Silva> > Looking at your statistics, I see that you are considering a very large > number of functions. I don't know which benchmarks you are using, but I > doubt that many of these are worth merging. For instance, you rarely gain a > code size benefit from merging functions with just a few instructions. Our > patch takes care of this using thresholds. It's worth looking at actual > code size reductions, rather than just numbers of functions merged/ > compilation time spent comparing functions. It turns out that the number of > functions in each bucket is really quite small once you apply some > heuristics (and could still be further reduced!). > > Given your experience with MergeFunctions, it would be really great if you > could review our patch and also try it out on your benchmarks. > > Tobias > > > On 24/01/2014 19:11, Stepan Dyatkovskiy wrote: > >> Hi Tobias. >> >> So, what do you think? >> >> If it means to much extra-job for your team, may be I can help you >> somehow? I really would like to. >> >> -Stepan >> >> Stepan Dyatkovskiy wrote: >> >>> Hi Tobias, >>> >>> I can't really see a way to combine our approach with your patch. What >>>> are your thoughts? >>>> >>> >>> I think it is possible. Even more - we need to combine our efforts, in >>> order to bring this pass into real live. >>> I'have read your presentation file, and unfortunately read your patch >>> only a little. >>> How exactly you scan functions on 2nd stage? Could you explain the >>> algorithm in few words, how you compare workflow? Is it possible to >>> scan binary tree instead of hash table? ...OK. >>> >>> That's how I see the modification. Now its important to explain idea, >>> so consider the simplest case: you need to catch two functions that >>> are differs with single instruction somewhere. >>> >>> 1. Imagine, that IR *module* contents is represented as binary tree: >>> Each line (trace) from root to terminal node is a function. >>> Each node - is function's primitive (instruction opcode, for example). >>> Down - is direction to terminal nodes, up - is direction to the root. >>> >>> 2. Now you are standing on some node. And you have two directions >>> down-left and down-right. >>> >>> 3. If you are able to find two equal sub-traces down (at left and at >>> right), then the only difference lies in this node. Then we catch that >>> case. >>> >>> 4. Even more, if two subtrees at left and at right are equal, than you >>> catch at once all the cases that are represented by these subtrees. >>> >>> I still didn't look at you patch carefully. Sorry.. But I hope that >>> helps, and I'll try look at it in nearest time and perhaps its not the >>> best solution I gave in this post. >>> >>> -Stepan >>> >>> 22.01.2014, 20:53, "Tobias von Koch" <tobias.von.koch at gmail.com>: >>> >>>> Hi Stepan, >>>> >>>> As you've seen we have recently implemented a significant enhancement to >>>> the MergeFunctions pass that also allows merging of functions that are >>>> only similar but not identical >>>> (http://llvm-reviews.chandlerc.com/D2591). >>>> >>>> Our patch also changes the way that functions are compared quite >>>> significantly. This is necessary because we need to compare all >>>> functions in a bucket in order to get a similarity measure for each >>>> pair, so we can then decide which 'groups' of functions to merge. >>>> >>>> I can't really see a way to combine our approach with your patch. What >>>> are your thoughts? >>>> >>>> Another way to improve the performance of MergeFunctions might be to >>>> make the hash function better. I've already added the size of the first >>>> BB to it, and perhaps there are other factors we could try... if we >>>> don't have to compare functions in the first place (because they're in >>>> different buckets) then that's obviously a much bigger win. >>>> >>>> Thanks, >>>> Tobias >>>> >>>> On 17/01/2014 20:25, Stepan Dyatkovskiy wrote: >>>> >>>> Hi all, >>>>> >>>>> I propose simple improvement for MergeFunctions pass, that reduced >>>>> its >>>>> complexity from O(N^2) to O(log(N)), where N is number of >>>>> functions in >>>>> module. >>>>> >>>>> The idea, is to replace the result of comparison from "bool" to >>>>> "-1,0,1". In another words: define order relation on functions set. >>>>> To be sure, that functions could be comparable that way, we have to >>>>> prove that order relation is possible on all comparison stage. >>>>> >>>>> The last one is possible, if for each comparison stage we >>>>> implement has >>>>> next properties: >>>>> * reflexivity (a <= a, a == a, a >= a), >>>>> * antisymmetry (if a <= b and b <= a then a == b), >>>>> * transitivity (a <= b and b <= c, then a <= c) >>>>> * asymmetry (if a < b, then a > b or a == b). >>>>> >>>>> Once we have defined order relation we can store all the functions in >>>>> binary tree and perform lookup in O(log(N)) time. >>>>> >>>>> This post has two attachments: >>>>> 1. The patch, that has implementation of this idea. >>>>> 2. The MergeFunctions pass detailed description, with explanation how >>>>> order relation could be possible. >>>>> >>>>> Hope it helps to make things better! >>>>> >>>>> -Stepan. >>>>> >>>>> _______________________________________________ >>>>> LLVM Developers mailing list >>>>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >>>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >>>>> >>>> >> > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140129/77b8206b/attachment.html>
Stepan Dyatkovskiy
2014-Jan-30 09:27 UTC
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hello Sean and Tobias, Sean, Thank you. Could you describe Nick's ideas in few words or give me links to your discussion, so I could adapt my ideas to it. Tobias, Your patch fails on several modules in my benchmark (73 of ~1800 tests). I have sent one as attachment. See statistics files for more details, all the .ll files you could simply find in test-suite object directory (after "make TEST=nightly report"). I have attached script that launches benchmark. Example of usage (you need Linux OS): bash test-scipt.sh report.txt opt-no-patch opt-with-patch Some numbers. Total number of functions: 52715 Below, by default, I have excluded modules where your patch fails. Functions merged Original version: 1113 Order relation patch: 1112 Similar merging patch: 541 Functions merged (including failed tests) Original version: 8398 Order relation patch: 8395 Summary files size Initial: 163595634 bytes. After merging with order relation patch: 163147731 bytes. After similar merging patch: 162491905 bytes. Summary files size (including failed tests) Initial: 250242266 bytes. Original version: 247168198 bytes. Order relation: 247175650 bytes. Time. I measured with "time" utility, and used "real (wall clock) time used by the process". Summary time spent With existing version: 28.05 secs. With order relation patch: 28.19 secs. Similar merging patch: 28.61 secs. Summary time spent (including failed tests) With existing version: 41.74 secs. With order relation patch: 36.35 secs. -Stepan Sean Silva wrote:> > > > On Tue, Jan 28, 2014 at 2:47 PM, Tobias von Koch > <tobias.von.koch at gmail.com <mailto:tobias.von.koch at gmail.com>> wrote: > > Hi Stepan, > > Sorry for the delay. It's great that you are working on > MergeFunctions as well and I agree, we should definitely try to > combine our efforts to improve MergeFunctions. > > Just to give you some context, the pass (with the similar function > merging patch) is already being used in a production setting. From > my point of view, it would be better if we focus on improving its > capability of merging functions at this stage rather than on > reduction of compilation time. > > I'll give a brief overview of how our similar function merging > algorithm works (you can also watch the presentation from the US > LLVM conference to hear me explain it using an animation). > > 1. Hash all functions into buckets > > In each bucket, separately: > > 2. Compare functions pair-wise and determine a > similarity metric for each pair (%age of equivalent instructions) > > 3. Merge identical functions (with similarity = 100%), update call > sites for those functions. > > 4. If the updates of call sites have touched other functions, > go back to step 2 and re-compare *only* those functions to all > others in their buckets. > > Finally, > > 5. Form groups of similar functions for merging: > a) Pick most similar pair (A,B) > b) Find all functions C that are also similar to B but are not > more similar to some other function D. > c) Merge A with B and all the C's. > Repeat until there are no more functions to merge. > > As you can see, we need to compute a similarity measure for each > pair of functions in a bucket. If I understand correctly, your patch > reduces compile-time by avoiding comparisons of functions that > cannot be identical. That's exactly what you want to do if you only > want to merge identical functions. However, because we also need to > determine whether functions are merely *similar*, I can't see how > your idea could be applied in that case. > > > Yeah, the existing pass only tries to merge identical functions > (identical in machine code). I'm wondering if the "similar" function > merging would be better as a separate pass (I'm genuinely wondering; I > have no clue). I would wait for Nick's feedback. > > -- Sean Silva > > > Looking at your statistics, I see that you are considering a very > large number of functions. I don't know which benchmarks you are > using, but I doubt that many of these are worth merging. For > instance, you rarely gain a code size benefit from merging functions > with just a few instructions. Our patch takes care of this using > thresholds. It's worth looking at actual code size reductions, > rather than just numbers of functions merged/ compilation time spent > comparing functions. It turns out that the number of functions in > each bucket is really quite small once you apply some heuristics > (and could still be further reduced!). > > Given your experience with MergeFunctions, it would be really great > if you could review our patch and also try it out on your benchmarks. > > Tobias > > > On 24/01/2014 19:11, Stepan Dyatkovskiy wrote: > > Hi Tobias. > > So, what do you think? > > If it means to much extra-job for your team, may be I can help you > somehow? I really would like to. > > -Stepan > > Stepan Dyatkovskiy wrote: > > Hi Tobias, > > I can't really see a way to combine our approach with > your patch. What > are your thoughts? > > > I think it is possible. Even more - we need to combine our > efforts, in > order to bring this pass into real live. > I'have read your presentation file, and unfortunately read > your patch > only a little. > How exactly you scan functions on 2nd stage? Could you > explain the > algorithm in few words, how you compare workflow? Is it > possible to > scan binary tree instead of hash table? ...OK. > > That's how I see the modification. Now its important to > explain idea, > so consider the simplest case: you need to catch two > functions that > are differs with single instruction somewhere. > > 1. Imagine, that IR *module* contents is represented as > binary tree: > Each line (trace) from root to terminal node is a function. > Each node - is function's primitive (instruction opcode, for > example). > Down - is direction to terminal nodes, up - is direction to > the root. > > 2. Now you are standing on some node. And you have two > directions > down-left and down-right. > > 3. If you are able to find two equal sub-traces down (at > left and at > right), then the only difference lies in this node. Then we > catch that > case. > > 4. Even more, if two subtrees at left and at right are > equal, than you > catch at once all the cases that are represented by these > subtrees. > > I still didn't look at you patch carefully. Sorry.. But I > hope that > helps, and I'll try look at it in nearest time and perhaps > its not the > best solution I gave in this post. > > -Stepan > > 22.01.2014, 20:53, "Tobias von Koch" > <tobias.von.koch at gmail.com <mailto:tobias.von.koch at gmail.com>>: > > Hi Stepan, > > As you've seen we have recently implemented a > significant enhancement to > the MergeFunctions pass that also allows merging of > functions that are > only similar but not identical > (http://llvm-reviews.__chandlerc.com/D2591 > <http://llvm-reviews.chandlerc.com/D2591>). > > Our patch also changes the way that functions are > compared quite > significantly. This is necessary because we need to > compare all > functions in a bucket in order to get a similarity > measure for each > pair, so we can then decide which 'groups' of functions > to merge. > > I can't really see a way to combine our approach with > your patch. What > are your thoughts? > > Another way to improve the performance of MergeFunctions > might be to > make the hash function better. I've already added the > size of the first > BB to it, and perhaps there are other factors we could > try... if we > don't have to compare functions in the first place > (because they're in > different buckets) then that's obviously a much bigger win. > > Thanks, > Tobias > > On 17/01/2014 20:25, Stepan Dyatkovskiy wrote: > > Hi all, > > I propose simple improvement for MergeFunctions > pass, that reduced > its > complexity from O(N^2) to O(log(N)), where N is > number of > functions in > module. > > The idea, is to replace the result of comparison > from "bool" to > "-1,0,1". In another words: define order relation > on functions set. > To be sure, that functions could be comparable > that way, we have to > prove that order relation is possible on all > comparison stage. > > The last one is possible, if for each comparison > stage we > implement has > next properties: > * reflexivity (a <= a, a == a, a >= a), > * antisymmetry (if a <= b and b <= a then a == b), > * transitivity (a <= b and b <= c, then a <= c) > * asymmetry (if a < b, then a > b or a == b). > > Once we have defined order relation we can store > all the functions in > binary tree and perform lookup in O(log(N)) time. > > This post has two attachments: > 1. The patch, that has implementation of this idea. > 2. The MergeFunctions pass detailed description, > with explanation how > order relation could be possible. > > Hope it helps to make things better! > > -Stepan. > > _________________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu <mailto:LLVMdev at cs.uiuc.edu> > http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/__mailman/listinfo/llvmdev > <http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev> > > > > _________________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu <mailto:LLVMdev at cs.uiuc.edu> http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/__mailman/listinfo/llvmdev > <http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev> > >-------------- next part -------------- A non-text attachment was scrubbed... Name: test-scipt.sh Type: application/x-sh Size: 2084 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140130/eed1a30d/attachment.sh> -------------- next part -------------- IRFile NumFunctionsTotal InitialSize MergedNoPatch TimeNoPatch SizeNoPatch MergedWithPatch TimeWithPatch SizeWithPatch 2002-04-17-PrintfChar.ll 2 2172 0 0.00 2163 0 0.00 2163 2002-05-02-ArgumentTest.ll 2 3164 0 0.01 3155 0 0.01 3155 2002-05-02-CastTest1.ll 1 2121 0 0.01 2112 0 0.01 2112 2002-05-02-CastTest2.ll 2 3803 0 0.01 3794 0 0.01 3794 2002-05-02-CastTest3.ll 1 2938 0 0.01 2929 0 0.01 2929 2002-05-02-CastTest.ll 2 11291 0 0.01 11282 0 0.01 11282 2002-05-02-ManyArguments.ll 2 4222 0 0.01 4213 0 0.01 4213 2002-05-03-NotTest.ll 3 6111 0 0.01 6102 0 0.01 6102 2002-05-19-DivTest.ll 3 3553 0 0.01 3544 0 0.01 3544 2002-08-02-CastTest2.ll 2 2144 0 0.01 2135 0 0.01 2135 2002-08-02-CastTest.ll 2 1777 0 0.01 1768 0 0.01 1768 2002-08-19-CodegenBug.ll 1 2750 0 0.01 2741 0 0.01 2741 2002-10-09-ArrayResolution.ll 1 2442 0 0.01 2433 0 0.01 2433 2002-10-12-StructureArgs.ll 2 3914 0 0.01 3905 0 0.01 3905 2002-10-12-StructureArgsSimple.ll 2 2813 0 0.01 2804 0 0.01 2804 2002-10-13-BadLoad.ll 2 1695 0 0.01 1686 0 0.01 1686 2002-12-13-MishaTest.ll 2 4568 0 0.01 4559 0 0.01 4559 2003-04-22-Switch.ll 2 3916 0 0.01 3907 0 0.01 3907 2003-05-02-DependentPHI.ll 1 4621 0 0.01 4612 0 0.01 4612 2003-05-07-VarArgs.ll 2 23386 0 0.01 23377 0 0.01 23377 2003-05-12-MinIntProblem.ll 2 1971 0 0.01 1962 0 0.01 1962 2003-05-14-array-init.ll 1 2016 0 0.01 2000 0 0.01 2000 2003-05-14-AtExit.ll 2 1868 0 0.01 1859 0 0.01 1859 2003-05-14-expr_stmt.ll 2 1780 0 0.01 1764 0 0.01 1764 2003-05-14-initialize-string.ll 1 1789 0 0.01 1777 0 0.01 1777 2003-05-21-BitfieldHandling.ll 1 8810 0 0.01 8798 0 0.01 8798 2003-05-21-UnionBitfields.ll 2 3555 0 0.01 3543 0 0.01 3543 2003-05-21-UnionTest.ll 2 2331 0 0.01 2319 0 0.01 2319 2003-05-22-LocalTypeTest.ll 1 3195 0 0.01 3183 0 0.01 3183 2003-05-22-VarSizeArray.ll 2 2389 0 0.01 2377 0 0.01 2377 2003-05-23-TransparentUnion.ll 3 2753 0 0.01 2741 0 0.01 2741 2003-05-26-Shorts.ll 2 22518 0 0.01 22509 0 0.01 22509 2003-05-31-CastToBool.ll 7 6621 0 0.01 6612 0 0.01 6612 2003-05-31-LongShifts.ll 2 5739 0 0.01 5730 0 0.01 5730 2003-06-08-BaseType.ll 3 2098 0 0.01 2082 0 0.01 2082 2003-06-08-VirtualFunctions.ll 4 4118 0 0.01 4102 0 0.01 4102 2003-06-13-Crasher.ll 4 1886 0 0.01 1870 0 0.01 1870 2003-06-16-InvalidInitializer.ll 1 883 0 0.01 871 0 0.01 871 2003-06-16-VolatileError.ll 1 857 0 0.01 845 0 0.01 845 2003-07-06-IntOverflow.ll 5 6583 0 0.01 6574 0 0.01 7412 2003-07-08-BitOpsTest.ll 2 4018 0 0.01 4009 0 0.01 4009 2003-07-09-LoadShorts.ll 2 22686 0 0.01 22677 0 0.01 22677 2003-07-09-SignedArgs.ll 4 19145 0 0.01 19136 0 0.01 19136 2003-07-10-SignConversions.ll 3 4961 0 0.01 4952 0 0.01 4952 2003-08-05-CastFPToUint.ll 4 3762 0 0.01 3753 0 0.01 3753 2003-08-11-VaListArg.ll 4 25506 0 0.01 25497 0 0.01 25497 2003-08-20-EnumSizeProblem.ll 2 1358 0 0.01 1342 0 0.01 1342 2003-08-20-FoldBug.ll 2 2304 0 0.01 2295 0 0.01 2295 2003-09-18-BitFieldTest.ll 2 2547 0 0.01 2538 0 0.01 2538 2003-09-29-NonPODsByValue.ll 4 5850 0 0.01 5834 0 0.01 5834 2003-10-12-GlobalVarInitializers.ll 1 2336 0 0.01 2324 0 0.01 2324 2003-10-13-SwitchTest.ll 1 2458 0 0.01 2449 0 0.01 2449 2003-10-29-ScalarReplBug.ll 3 3638 0 0.01 3629 0 0.01 3629 2004-02-02-NegativeZero.ll 2 2157 0 0.01 2148 0 0.01 2148 2004-02-03-AggregateCopy.ll 1 2672 0 0.01 2660 0 0.01 2660 2004-03-15-IndirectGoto.ll 1 3331 0 0.01 3319 0 0.01 3319 2004-06-20-StaticBitfieldInit.ll 1 1868 0 0.01 1859 0 0.01 1859 2004-08-12-InlinerAndAllocas.ll 2 4031 0 0.01 4019 0 0.01 4019 2004-11-28-GlobalBoolLayout.ll 1 3428 0 0.01 3419 0 0.01 3419 2005-05-06-LongLongSignedShift.ll 1 1924 0 0.01 1912 0 0.01 1912 2005-05-11-Popcount-ffs-fls.ll 6 13763 0 0.01 13754 0 0.01 13754 2005-05-12-Int64ToFP.ll 1 2468 0 0.01 2459 0 0.01 2459 2005-05-13-SDivTwo.ll 1 2235 0 0.01 2226 0 0.01 2226 2005-07-15-Bitfield-ABI.ll 2 2627 0 0.01 2618 0 0.01 2618 2005-07-17-INT-To-FP.ll 1 5565 0 0.01 5556 0 0.01 5556 2005-11-29-LongSwitch.ll 2 2562 0 0.01 2553 0 0.01 2553 2006-01-23-UnionInit.ll 4 15468 0 0.01 15459 0 0.01 15459 2006-01-29-SimpleIndirectCall.ll 3 2514 0 0.01 2505 0 0.01 2505 2006-02-04-DivRem.ll 2 3113 0 0.01 3104 0 0.01 3104 2006-12-01-float_varg.ll 1 1864 0 0.01 1855 0 0.01 1855 2006-12-04-DynAllocAndRestore.ll 5 7012 0 0.01 7001 0 0.01 7001 2006-12-07-Compare64BitConstant.ll 1 2532 0 0.01 2523 0 0.01 2523 2006-12-11-LoadConstants.ll 155 38553 0 0.02 38544 0 0.01 38544 2007-01-04-KNR-Args.ll 3 5681 0 0.01 5672 0 0.01 5672 2007-03-02-VaCopy.ll 2 4199 0 0.01 4190 0 0.01 4190 2007-04-10-BitfieldTest.ll 1 2325 0 0.01 2316 0 0.01 2316 2007-04-25-weak.ll 1 1941 0 0.01 1932 0 0.01 1932 2008-01-07-LongDouble.ll 1 1693 0 0.01 1681 0 0.01 1681 2008-01-29-ParamAliasesReturn.ll 5 7207 0 0.01 7191 0 0.01 7191 2008-04-18-LoopBug.ll 2 5876 0 0.01 5867 0 0.01 5867 2008-04-20-LoopBug2.ll 2 5780 0 0.01 5771 0 0.01 5771 2008-07-13-InlineSetjmp.ll 3 3729 0 0.01 3720 0 0.00 3720 2009-04-16-BitfieldInitialization.ll 1 13564 0 0.01 13555 0 0.01 13555 2009-12-07-StructReturn.ll 3 5862 0 0.01 5853 0 0.01 5853 2010-05-24-BitfieldTest.ll 1 2043 0 0.01 2034 0 0.01 2034 2010-12-08-tls.ll 2 1657 0 0.01 1640 0 0.01 1640 2011-03-28-Bitfield.ll 2 4750 0 0.01 4734 0 0.01 4734 23tree.ll 20 213771 0 0.02 213738 0 0.02 213738 2mm.ll 12 36384 0 0.01 36337 0 0.01 36337 3mm.ll 12 40984 0 0.01 40937 0 0.00 40937 7zAes.ll 66 187046 12 0.02 182102 11 0.03 164419 7zAesRegister.ll 6 12294 1 0.01 12312 0 0.01 12262 7zCompressionMode.ll 0 467 0 0.01 431 0 0.01 431 7zCrc.ll 3 6134 0 0.01 6118 0 0.01 6118 7zCrcOpt.ll 2 6410 0 0.01 6394 0 0.01 6394 7zDecode.ll 29 252150 6 0.03 246797 * * * 7zEncode.ll 54 422010 8 0.03 415640 * * * 7zExtract.ll 12 105769 0 0.02 105733 0 0.01 104790 7zFolderInStream.ll 22 84789 2 0.01 83699 2 0.02 83699 7zFolderOutStream.ll 21 98330 0 0.01 98294 0 0.01 98294 7zHandler.ll 57 498965 3 0.04 497360 * * * 7zHandlerOut.ll 46 360396 3 0.04 358791 * * * 7zHeader.ll 0 533 0 0.01 497 0 0.01 497 7zIn.ll 65 630076 4 0.05 627948 * * * 7zOut.ll 52 422075 4 0.04 419945 * * * 7zProperties.ll 5 69260 0 0.01 69224 0 0.02 69224 7zRegister.ll 3 6435 0 0.01 6399 0 0.01 6399 7zSpecStream.ll 14 42877 0 0.01 42841 0 0.01 42841 7zStream.ll 18 24928 0 0.01 24912 0 0.01 23518 7zUpdate.ll 74 664947 10 0.05 659086 * * * abs.ll 9 15684 1 0.01 15505 1 0.01 15505 access.ll 2 7714 0 0.01 7697 0 0.01 7697 ackermann.ll 3 5129 0 0.01 5110 0 0.01 5110 add.ll 14 30625 0 0.01 30595 0 0.01 30163 addpins.ll 2 33808 0 0.01 33775 0 0.01 33775 adi.ll 12 45742 0 0.01 45709 0 0.01 45709 adpcm.ll 2 23199 0 0.01 23163 0 0.01 23163 aes.ll 3 373486 0 0.04 373451 0 0.03 373451 Aes.ll 8 69129 0 0.01 69113 0 0.01 69113 aesxam.ll 4 42494 0 0.01 42459 0 0.01 42459 ag_dec.ll 9 36584 0 0.01 36561 0 0.01 36561 ag_enc.ll 8 35026 0 0.01 35003 0 0.01 35003 aha.ll 31 88454 0 0.02 88439 0 0.02 88424 alabel.ll 1 7853 0 0.01 7824 0 0.01 7824 ALACBitUtilities.ll 13 33162 0 0.01 33139 0 0.01 33139 ALACDecoder.ll 9 109780 0 0.02 109755 0 0.02 110074 ALACEncoder.ll 14 186571 0 0.02 186546 0 0.02 186546 alias.ll 10 70826 0 0.01 70795 0 0.02 70795 align.ll 9 140707 0 0.02 140688 0 0.02 140688 all.ll 3 27964 0 0.01 27935 0 0.01 27935 allocate.ll 1 2986 0 0.01 2960 0 0.01 2960 Alloc.ll 9 18789 2 0.01 17153 2 0.01 17153 allocvector.ll 4 5235 1 0.01 4852 0 0.01 5210 almabench.ll 4 67269 0 0.02 67247 0 0.01 67247 anagram.ll 18 67232 0 0.01 67207 0 0.01 67207 analyze.ll 4 56216 0 0.01 56183 0 0.01 56183 analyzer.ll 5 89263 0 0.02 89235 0 0.02 89235 annexb.ll 3 15776 0 0.01 15755 0 0.01 15755 aquery.ll 4 37356 0 0.01 37322 0 0.01 37322 archie.ll 4 47557 0 0.01 47523 0 0.01 47523 ArchiveCommandLine.ll 39 503498 1 0.04 502940 * * * ArchiveExtractCallback.ll 34 347752 0 0.03 347717 0 0.03 343678 ArchiveOpenCallback.ll 48 178401 0 0.02 178366 0 0.02 171948 arc.ll 1 6214 0 0.01 6185 0 0.01 6185 arg.ll 7 62944 0 0.02 62931 0 0.02 62931 args.ll 3 6203 0 0.01 6180 0 0.01 6180 arithmetic.ll 10 21782 0 0.01 21752 0 0.01 21752 array.ll 3 13860 0 0.01 13840 0 0.01 13840 ary2.ll 44 73704 1 0.01 73514 1 0.02 73514 ary3.ll 2 7606 0 0.01 7587 0 0.01 7587 ary.ll 44 61905 1 0.02 61715 1 0.02 61715 asearch1.ll 1 44616 0 0.01 44590 0 0.01 44590 asearch.ll 2 86459 0 0.02 86433 0 0.02 86433 assem.ll 1 14439 0 0.01 14409 0 0.01 14409 assign.ll 10 62051 0 0.02 62028 0 0.02 62028 atalloc.ll 3 11357 0 0.01 11323 0 0.01 11323 atax.ll 12 23916 0 0.01 23868 0 0.01 23868 AtomicOps.ll 2 5132 0 0.01 5123 0 0.01 5123 atop.ll 1 12901 0 0.01 12874 0 0.01 12874 badidx.ll 2 5030 0 0.01 5018 0 0.01 5018 basicmath.ll 1 27788 0 0.01 27750 0 0.01 27750 Bcj2Coder.ll 29 231916 0 0.03 231882 0 0.03 231882 Bcj2Register.ll 3 8684 0 0.01 8650 0 0.01 8650 BcjCoder.ll 10 12616 2 0.01 12616 0 0.01 12582 BcjRegister.ll 3 3398 0 0.01 3364 0 0.01 3364 bc.ll 1 125465 0 0.02 125445 0 0.02 125445 beamformer.ll 10 57830 0 0.02 57799 0 0.02 57799 be.ll 44 211535 0 0.02 211519 0 0.02 211513 bellman.ll 1 16559 0 0.01 16526 0 0.01 16526 BenchCon.ll 7 47481 0 0.01 47445 0 0.02 47445 Bench.ll 45 234977 9 0.02 229289 7 0.02 229195 BenchmarkDemo.ll 221 4989042 49 0.74 4980861 24 0.75 4982243 benchmark.ll 2 12300 0 0.01 12275 0 0.01 12275 bf_cbc.ll 1 48342 0 0.01 48307 0 0.01 48307 bf_cfb64.ll 1 21004 0 0.01 20969 0 0.01 20969 bf_ecb.ll 2 9148 0 0.01 9113 0 0.01 9113 bf_enc.ll 1 55485 0 0.01 55450 0 0.01 55450 bf_ofb64.ll 1 17572 0 0.01 17537 0 0.01 17537 bf_skey.ll 1 27891 0 0.01 27856 0 0.01 27856 bftest.ll 3 66992 0 0.01 66957 0 0.01 66957 biaridecod.ll 12 46041 0 0.01 46020 0 0.01 46020 biariencode.ll 14 114832 0 0.02 114811 0 0.02 114811 bicg.ll 12 26496 0 0.01 26448 0 0.00 26448 bigfib.ll 274 491355 29 0.04 492046 9 0.05 493974 bigstack.ll 3 15230 0 0.01 15218 0 0.01 15218 bintree.ll 12 25615 0 0.01 25591 0 0.01 25591 bisect_test.ll 2 10531 0 0.01 10506 0 0.01 10506 bitap.ll 2 32801 0 0.01 32775 0 0.01 32775 bitarray.ll 4 5398 0 0.01 5361 0 0.01 5361 bitboard64.ll 21 43510 0 0.01 43488 0 0.01 43268 bitcnt_1.ll 1 2212 0 0.01 2175 0 0.01 2175 bitcnt_2.ll 1 2502 0 0.01 2465 0 0.01 2465 bitcnt_3.ll 3 9418 0 0.01 9381 0 0.01 9381 bitcnt_4.ll 2 4242 0 0.01 4205 0 0.01 4205 bitcnts.ll 5 11766 0 0.01 11729 0 0.01 11729 bitfiles.ll 4 9732 0 0.01 9695 0 0.01 9695 BitlDecoder.ll 1 3040 0 0.01 3006 0 0.01 3006 bitonic.ll 11 34090 0 0.01 34068 0 0.01 33857 bitstrng.ll 1 4796 0 0.01 4759 0 0.01 4759 bjarne.ll 42 93414 10 0.02 89765 8 0.01 87195 blas.ll 11 90399 0 0.02 90382 0 0.01 90382 block-byref-cxxobj-test.ll 1 824 0 0.01 813 0 0.01 813 block-byref-test.ll 1 815 0 0.01 806 0 0.01 806 block-call-r7674133.ll 1 1314 0 0.01 1303 0 0.01 1303 block-copied-in-cxxobj-1.ll 1 825 0 0.01 814 0 0.01 814 block-copied-in-cxxobj.ll 1 823 0 0.01 812 0 0.01 812 block.ll 19 1004072 0 0.09 1004051 0 0.09 1004051 blockstret.ll 1 1335 0 0.01 1326 0 0.01 1326 bmhasrch.ll 2 14299 0 0.01 14262 0 0.01 14262 bmhisrch.ll 4 18870 0 0.01 18833 0 0.01 18833 bmhsrch.ll 2 11714 0 0.01 11677 0 0.01 11677 bmm.ll 8 20177 0 0.01 20153 0 0.01 20153 bnchmrk.ll 3 11261 0 0.01 11237 0 0.01 11237 box_algebra.ll 3 80260 0 0.02 80231 0 0.02 80231 box_alloc.ll 5 9171 0 0.00 9142 0 0.01 9142 box.ll 20 74530 0 0.01 74501 0 0.01 74501 box_neighbors.ll 5 47073 0 0.01 47044 0 0.01 47044 Bra86.ll 1 9699 0 0.01 9683 0 0.01 9683 BraIA64.ll 1 11962 0 0.01 11946 0 0.01 11946 Bra.ll 4 23795 0 0.01 23779 0 0.01 23779 BranchCoder.ll 8 10742 0 0.01 10708 0 0.01 10708 BranchMisc.ll 25 28368 9 0.01 28685 0 0.01 28334 BranchRegister.ll 11 12023 0 0.01 11989 0 0.01 11989 brhist.ll 0 451 0 0.01 420 0 0.01 420 bstr_i.ll 1 3610 0 0.01 3573 0 0.01 3573 btActivatingCollisionAlgorithm.ll 5 11123 0 0.01 11105 0 0.01 11105 btAlignedAllocator.ll 8 13145 0 0.01 13127 0 0.01 13605 btAxisSweep3.ll 133 531944 21 0.04 526191 9 0.04 524410 btBox2dBox2dCollisionAlgorithm.ll 67 174175 4 0.02 171934 4 0.02 173504 btBox2dShape.ll 53 120802 5 0.02 118517 * * * btBoxBoxCollisionAlgorithm.ll 31 67435 0 0.01 67417 0 0.02 67417 btBoxBoxDetector.ll 34 239530 2 0.03 239266 * * * btBoxShape.ll 53 120248 5 0.02 117967 * * * btBroadphaseProxy.ll 0 449 0 0.01 431 0 0.01 431 btBvhTriangleMeshShape.ll 45 139044 3 0.02 124967 0 0.02 128154 btCapsuleShape.ll 54 128657 5 0.02 123428 * * * btCollisionAlgorithm.ll 3 6540 0 0.01 6522 0 0.01 6522 btCollisionDispatcher.ll 73 145111 3 0.02 145165 0 0.02 145093 btCollisionObject.ll 18 29521 1 0.01 28033 1 0.01 28033 btCollisionShape.ll 30 50815 4 0.01 48523 4 0.02 49415 btCollisionWorld.ll 179 487893 20 0.04 475898 * * * btCompoundCollisionAlgorithm.ll 135 315394 22 0.03 309831 7 0.03 311259 btCompoundShape.ll 90 210823 6 0.02 207856 5 0.02 210218 btConcaveShape.ll 7 9800 0 0.01 9782 0 0.01 9782 btConeShape.ll 45 93005 5 0.02 87742 3 0.02 88742 btConeTwistConstraint.ll 151 582413 16 0.05 582440 12 0.05 576236 btContactConstraint.ll 46 92768 4 0.02 90771 2 0.02 90511 btContactProcessing.ll 58 111001 6 0.02 109787 1 0.02 112377 btContinuousConvexCollision.ll 89 231275 11 0.03 229159 6 0.03 227220 btContinuousDynamicsWorld.ll 33 76264 3 0.01 75439 3 0.01 76151 btConvex2dConvex2dAlgorithm.ll 63 147491 3 0.02 146901 0 0.02 147473 btConvex2dShape.ll 18 28398 0 0.01 28380 0 0.01 27468 btConvexCast.ll 2 4053 0 0.01 4035 0 0.01 4035 btConvexConcaveCollisionAlgorithm.ll 129 282142 2 0.03 280520 2 0.03 281500 btConvexConvexAlgorithm.ll 158 417362 16 0.04 414499 6 0.04 412425 btConvexHull.ll 174 518660 43 0.05 507907 * * * btConvexHullShape.ll 58 99926 4 0.01 97541 3 0.02 97609 btConvexInternalShape.ll 52 116885 3 0.02 114685 3 0.02 113852 btConvexPlaneCollisionAlgorithm.ll 87 193900 8 0.02 193642 4 0.02 190537 btConvexPointCloudShape.ll 35 59583 3 0.02 57919 2 0.02 57970 btConvexShape.ll 67 167361 8 0.02 163873 7 0.02 161649 btConvexTriangleMeshShape.ll 66 179016 7 0.02 174283 3 0.03 176268 btCylinderShape.ll 66 139333 7 0.02 133265 5 0.02 128892 btDbvtBroadphase.ll 127 356879 22 0.03 353099 9 0.05 354125 btDbvt.ll 150 332287 29 0.03 323254 * * * btDefaultCollisionConfiguration.ll 64 193402 11 0.02 181668 * * * btDiscreteDynamicsWorld.ll 360 1073759 58 0.09 1060198 * * * btDispatcher.ll 2 4615 0 0.01 4597 0 0.01 4597 btEmptyCollisionAlgorithm.ll 6 11949 0 0.01 11931 0 0.01 11931 btEmptyShape.ll 17 27644 0 0.01 27626 0 0.01 27797 btGeneric6DofConstraint.ll 107 366734 5 0.03 364381 5 0.04 362124 btGeneric6DofSpringConstraint.ll 16 48848 0 0.01 48830 0 0.01 48830 btGenericPoolAllocator.ll 24 51374 0 0.01 51356 0 0.01 51356 btGeometryUtil.ll 36 74248 2 0.01 73461 2 0.02 74670 btGhostObject.ll 102 212251 11 0.03 209265 7 0.03 208040 btGImpactBvh.ll 143 303559 19 0.03 296208 * * * btGImpactCollisionAlgorithm.ll 227 559786 23 0.05 550822 5 0.05 554260 btGImpactQuantizedBvh.ll 157 341990 20 0.04 334416 * * * btGImpactShape.ll 203 342486 51 0.04 325474 * * * btGjkConvexCast.ll 30 78756 4 0.02 76883 3 0.02 76740 btGjkEpa2.ll 98 440569 5 0.04 445049 2 0.04 439308 btGjkEpaPenetrationDepthSolver.ll 8 23253 0 0.01 23235 0 0.01 23235 btGjkPairDetector.ll 44 131314 2 0.02 129567 2 0.02 129446 btHeightfieldTerrainShape.ll 49 133588 6 0.02 130807 6 0.02 130572 btHinge2Constraint.ll 53 106648 3 0.02 104609 3 0.02 102726 btHingeConstraint.ll 133 484479 16 0.05 482601 12 0.04 478383 btKinematicCharacterController.ll 106 264783 6 0.03 260949 1 0.03 263763 btManifoldResult.ll 40 93288 1 0.02 91856 1 0.02 92020 btMinkowskiPenetrationDepthSolver.ll 51 155516 4 0.02 154982 2 0.02 154941 btMinkowskiSumShape.ll 35 63484 1 0.02 62052 1 0.01 62039 btMultimaterialTriangleMeshShape.ll 1 7145 0 0.01 7127 0 0.01 7127 btMultiSapBroadphase.ll 128 287185 33 0.03 277357 * * * btMultiSphereShape.ll 63 118210 8 0.02 115249 3 0.02 114989 btOptimizedBvh.ll 92 201284 17 0.03 195021 6 0.02 199133 btOverlappingPairCache.ll 113 295360 17 0.03 287439 * * * btPersistentManifold.ll 30 86887 0 0.02 86869 0 0.02 86869 btPoint2PointConstraint.ll 56 157402 3 0.02 155328 3 0.02 155492 btPolyhedralConvexShape.ll 48 113078 4 0.02 109103 3 0.02 110128 btQuantizedBvh.ll 133 441753 20 0.04 435692 * * * btQuickprof.ll 44 62024 0 0.02 62006 0 0.01 62006 btRaycastCallback.ll 62 145251 4 0.02 142395 2 0.02 143225 btRaycastVehicle.ll 186 429284 32 0.04 419660 * * * btRigidBody.ll 129 279054 9 0.03 277227 5 0.03 273712 btScaledBvhTriangleMeshShape.ll 44 110611 8 0.02 107221 7 0.02 106175 btSequentialImpulseConstraintSolver.ll 196 641431 31 0.06 635711 * * * btShapeHull.ll 66 126137 18 0.02 118652 * * * btSimpleBroadphase.ll 59 150857 8 0.02 149567 6 0.02 149474 btSimpleDynamicsWorld.ll 54 110470 6 0.02 108063 5 0.02 108004 btSimulationIslandManager.ll 76 178365 11 0.02 178464 2 0.02 181238 btSliderConstraint.ll 122 428555 5 0.04 426101 5 0.04 425096 btSoftBodyConcaveCollisionAlgorithm.ll 199 418161 26 0.04 411459 8 0.04 415018 btSoftBodyHelpers.ll 167 612232 34 0.06 603001 * * * btSoftBody.ll 817 2529522 223 0.23 2470489 * * * btSoftBodyRigidBodyCollisionConfiguration.ll 30 92334 3 0.01 88333 * * * btSoftRigidCollisionAlgorithm.ll 9 30568 0 0.01 30550 0 0.01 30550 btSoftRigidDynamicsWorld.ll 65 135209 6 0.02 134502 0 0.02 136247 btSoftSoftCollisionAlgorithm.ll 18 43430 0 0.01 43412 0 0.01 43412 btSolve2LinearConstraint.ll 23 87006 0 0.01 86988 0 0.01 85773 btSphereBoxCollisionAlgorithm.ll 56 158480 2 0.02 156610 2 0.02 157490 btSphereShape.ll 33 50652 1 0.01 49174 1 0.01 49353 btSphereSphereCollisionAlgorithm.ll 37 76446 0 0.01 76428 0 0.02 76601 btSphereTriangleCollisionAlgorithm.ll 31 70727 0 0.01 70709 0 0.01 70709 btStaticPlaneShape.ll 32 77879 3 0.02 75833 3 0.02 76012 btStridingMeshInterface.ll 23 77374 0 0.01 77356 0 0.02 77641 btSubSimplexConvexCast.ll 32 83198 3 0.01 81401 3 0.01 81388 btTetrahedronShape.ll 25 59496 0 0.01 59478 0 0.01 59478 btTriangleBuffer.ll 20 31939 0 0.01 31921 0 0.01 31921 btTriangleCallback.ll 4 7256 1 0.01 7125 0 0.01 7238 btTriangleIndexVertexArray.ll 39 62666 5 0.02 57632 5 0.02 57642 btTriangleIndexVertexMaterialArray.ll 31 59155 5 0.01 54029 4 0.01 54409 btTriangleMesh.ll 111 177780 34 0.02 168586 * * * btTriangleMeshShape.ll 63 136266 5 0.02 133535 5 0.02 133563 btTriangleShapeEx.ll 33 97921 1 0.02 97621 1 0.01 97800 btTypedConstraint.ll 21 41626 0 0.01 41608 0 0.01 41608 btUniformScalingShape.ll 23 56966 0 0.02 56948 0 0.02 49323 btUnionFind.ll 28 47280 0 0.01 47262 0 0.01 47262 btUniversalConstraint.ll 53 104617 3 0.02 102578 3 0.02 100695 btVoronoiSimplexSolver.ll 34 199560 1 0.02 198086 1 0.03 198257 btWheelInfo.ll 12 32435 0 0.01 32417 0 0.01 32588 Bubblesort.ll 5 12018 0 0.01 11999 0 0.01 11999 buffer.ll 2 19239 0 0.01 19209 0 0.01 19209 build2.ll 16 20435 0 0.01 20419 0 0.01 20419 build.ll 2 5879 0 0.01 5863 0 0.01 5863 BuiltinTypeInfo.ll 2 4549 0 0.01 4533 0 0.01 4533 burs.ll 3 20477 0 0.01 20461 0 0.01 20461 buster.ll 1 41179 0 0.01 41146 0 0.01 41146 BwtSort.ll 2 49184 0 0.01 49168 0 0.01 49168 ByteSwap.ll 16 19464 4 0.01 17270 3 0.01 17246 byval-alignment.ll 2 4010 0 0.01 4001 0 0.01 4001 Bz2Handler.ll 43 220458 0 0.02 220425 0 0.02 202933 BZip2Crc.ll 2 7341 0 0.01 7307 0 0.01 7307 BZip2Decoder.ll 62 373471 0 0.03 373437 0 0.04 367204 BZip2Encoder.ll 47 404407 0 0.03 404373 0 0.03 404373 BZip2Register.ll 3 7943 0 0.01 7909 0 0.01 7909 c4.ll 5 39463 0 0.01 39442 0 0.01 39442 cabac.ll 29 322411 1 0.03 321765 0 0.03 322390 CabBlockInStream.ll 10 42338 0 0.01 42301 0 0.01 42301 CabHandler.ll 80 522100 3 0.05 520638 3 0.04 517881 CabHeader.ll 0 544 0 0.01 507 0 0.01 507 CabIn.ll 12 195283 0 0.02 195246 0 0.02 195246 CabRegister.ll 15 46995 1 0.01 46437 1 0.02 44024 CAFFileALAC.ll 16 83561 0 0.01 83536 0 0.01 83536 calc.ll 5 10613 0 0.01 10587 0 0.01 10587 calcMetricsData.ll 1 20183 0 0.01 20158 0 0.01 20158 Calignm1.ll 3 124521 0 0.02 124506 0 0.02 124506 callargs.ll 2 6287 0 0.01 6275 0 0.01 6275 cast2.ll 2 3199 0 0.01 3174 0 0.01 3174 cast-bug.ll 1 2687 0 0.01 2664 0 0.01 2664 cast.ll 1 78636 0 0.02 78605 0 0.01 78605 casts.ll 3 27187 0 0.01 27175 0 0.01 27175 ccc.ll 6 6276 0 0.01 6253 0 0.01 6253 cdecl.ll 32 463043 0 0.04 463017 0 0.05 463017 cdjpeg.ll 4 7876 0 0.01 7843 0 0.01 7843 cfrac.ll 5 41611 0 0.01 41584 0 0.01 41584 changraph.ll 5 131968 0 0.02 131935 0 0.02 101238 channel.ll 4 28216 0 0.01 28193 0 0.01 28193 charsequence.ll 4 11437 0 0.01 11410 0 0.01 11410 checkfile.ll 2 4464 0 0.01 4438 0 0.01 4438 check_functions.ll 31 55439 0 0.02 55410 0 0.02 53091 checkpen.ll 2 40913 0 0.01 40880 0 0.00 40880 ch.ll 7 37798 0 0.01 37776 0 0.01 37776 cholesky.ll 12 23832 0 0.01 23780 0 0.01 23780 chomp.ll 23 62942 0 0.01 62925 0 0.01 62925 chooseEntry.ll 1 5370 0 0.01 5345 0 0.01 5345 circle.ll 1 1997 0 0.01 1968 0 0.01 1968 cjpeg.ll 4 84029 0 0.01 83996 0 0.01 83996 clamscan_clamscan.ll 2 61399 0 0.01 61381 0 0.01 61381 clamscan_manager.ll 12 213915 0 0.03 213897 0 0.02 213897 clamscan_others.ll 4 16909 0 0.01 16891 0 0.01 16891 clamscan_treewalk.ll 6 72998 0 0.02 72980 0 0.02 72980 class.ll 13 182292 1 0.02 182113 0 0.03 182275 clause.ll 301 644053 13 0.06 642371 * * * clearLine.ll 1 3175 0 0.01 3150 0 0.01 3150 clock.ll 7 3985 2 0.01 3810 0 0.01 3968 closeFiles.ll 1 4699 0 0.01 4674 0 0.01 4674 closepl.ll 1 1057 0 0.01 1028 0 0.01 1028 closure.ll 5 28114 0 0.01 28088 0 0.01 28088 cnf.ll 222 772426 10 0.06 768498 2 0.07 767823 coarsen.ll 3 107852 0 0.02 107823 0 0.01 107823 code.ll 1 10232 0 0.01 10202 0 0.01 10202 CoderMixer2.ll 14 83683 4 0.01 81571 4 0.02 81571 CoderMixer2MT.ll 50 274089 5 0.02 266795 * * * cofactor.ll 9 103705 0 0.02 103675 0 0.02 103675 color.ll 1 2069 0 0.01 2040 0 0.01 2040 cols.ll 13 64095 0 0.02 64065 0 0.02 64065 CommandLineParser.ll 11 112348 0 0.02 112321 0 0.02 112321 command.ll 5 18344 0 0.01 18327 0 0.01 18327 comment.ll 14 39393 1 0.01 37610 0 0.01 38745 common.ll 10 113372 0 0.02 113343 0 0.02 113343 communication_info.ll 3 187732 0 0.02 187703 0 0.02 187703 communication.ll 15 164724 0 0.02 164695 0 0.02 164695 compare.ll 3 3894 0 0.01 3882 0 0.01 3882 compat.ll 1 9568 0 0.01 9542 0 0.01 9542 compl.ll 12 180252 0 0.02 180222 0 0.03 180222 component.ll 28 48061 2 0.01 47623 0 0.01 48044 compress.ll 5 29438 0 0.01 29408 0 0.01 29408 computation.ll 5 30860 0 0.01 30831 0 0.01 30831 compute.ll 12 78850 0 0.01 78829 0 0.01 78829 condensing.ll 31 22770 1 0.00 22362 0 0.00 22753 ConditionalExpr.ll 7 10447 0 0.01 10428 0 0.01 10428 conditional-gnu-ext-cxx.ll 5 6879 0 0.00 6868 0 0.00 6868 conditional-gnu-ext.ll 3 5048 0 0.00 5039 0 0.00 5039 config1.ll 1 16579 0 0.01 16546 0 0.01 16546 config2.ll 1 36954 0 0.01 36921 0 0.01 36921 config3.ll 2 35228 0 0.01 35195 0 0.01 35195 configfile.ll 17 322639 0 0.03 322618 0 0.03 322618 conflicts.ll 13 110041 0 0.02 110015 0 0.02 110015 consistent.ll 2 9625 0 0.01 9600 0 0.01 9600 ConsoleClose.ll 6 10504 0 0.01 10468 0 0.01 10468 constants.ll 6 468828 0 0.05 468813 0 0.05 468813 ConstructorDestructorAttributes.ll 3 1742 0 0.01 1730 0 0.01 1730 contain.ll 18 76106 0 0.02 76076 0 0.02 72452 context_ini.ll 12 306158 0 0.03 306137 0 0.03 306137 context.ll 2 20575 0 0.01 20557 0 0.01 20557 cont.ll 1 5257 0 0.01 5228 0 0.01 5228 convert.ll 5 15405 0 0.01 15375 0 0.01 15375 CopyCoder.ll 15 42021 0 0.01 41987 0 0.01 41987 CopyRegister.ll 2 3609 0 0.01 3575 0 0.01 3575 correct.ll 29 246517 0 0.03 246486 0 0.03 246486 correlation.ll 12 36342 0 0.01 36299 0 0.01 36299 countlib.ll 1 3445 0 0.01 3419 0 0.01 3419 count.ll 1 17310 0 0.01 17284 0 0.01 17284 covariance.ll 12 27739 0 0.01 27697 0 0.01 27697 cp.ll 4 45311 0 0.01 45294 0 0.01 45294 crc_32.ll 5 15359 0 0.01 15327 0 0.01 15327 crc32.ll 4 11042 0 0.01 11011 0 0.01 11011 CRC.ll 1 1050 0 0.01 1023 0 0.01 1023 CreateCoder.ll 8 48907 0 0.01 48875 0 0.01 48875 createDataObject.ll 1 9984 0 0.01 9959 0 0.01 9959 createIndexEntry.ll 1 7529 0 0.01 7504 0 0.01 7504 createIndexNode.ll 1 4633 0 0.01 4608 0 0.01 4608 CrossThreadProgress.ll 7 16441 0 0.01 16401 0 0.01 16401 Crystal_Cholesky.ll 1 22269 0 0.01 22238 0 0.01 22238 Crystal_div.ll 1 18924 0 0.01 18893 0 0.01 18893 Crystal_pow.ll 1 6330 0 0.01 6299 0 0.01 6299 csr_matrix.ll 10 81632 0 0.01 81605 0 0.02 81605 csr_matvec.ll 3 83424 0 0.01 83397 0 0.01 83397 ctor_dtor_count-2.ll 6 10768 0 0.01 10749 0 0.01 10749 ctor_dtor_count.ll 6 8159 0 0.01 8140 0 0.01 8140 cubestr.ll 4 52286 0 0.01 52256 0 0.02 52256 cubic.ll 1 11181 0 0.01 11143 0 0.01 11143 cvrin.ll 13 303053 0 0.03 303023 0 0.03 303023 cvrmisc.ll 8 28494 0 0.01 28464 0 0.01 28464 cvrm.ll 20 123658 0 0.02 123628 0 0.02 119731 cvrout.ll 18 168322 0 0.02 168292 0 0.02 168292 CWrappers.ll 21 34690 1 0.01 34587 1 0.01 34587 cyclic_reduction.ll 7 577661 0 0.06 577632 0 0.05 577632 d1-pushc.ll 7 30837 0 0.01 30820 0 0.01 30820 d2-pushl.ll 3 19923 0 0.01 19906 0 0.01 19906 d3-popl.ll 7 53525 0 0.02 53508 0 0.02 53508 d4-array.ll 11 45477 0 0.01 45460 0 0.01 45460 d5-stack.ll 3 7815 0 0.01 7798 0 0.01 7798 d6-arith.ll 8 50399 0 0.02 50382 0 0.02 50382 d7-cntrl.ll 8 41349 0 0.01 41332 0 0.00 41332 d8-ret.ll 6 26849 0 0.01 26832 0 0.01 26832 d9-swtch.ll 4 31905 0 0.01 31888 0 0.01 31888 da-field.ll 9 70113 0 0.01 70096 0 0.02 70096 dbisect.ll 2 25498 0 0.01 25473 0 0.01 25473 db-meth.ll 8 72703 0 0.02 72686 0 0.02 72686 dc-misc.ll 7 26604 0 0.01 26587 0 0.01 26587 dct64_i386.ll 2 133032 0 0.02 133001 0 0.02 133001 dead_try_block.ll 2 2794 0 0.01 2775 0 0.01 2775 debugger.ll 19 116833 0 0.02 116803 0 0.02 116803 debug.ll 0 449 0 0.01 419 0 0.01 419 decode_i386.ll 2 40058 0 0.01 40027 0 0.01 40027 decode.ll 2 12247 0 0.01 12217 0 0.01 12217 decoder.ll 14 196940 0 0.03 196919 0 0.02 196919 decomp.ll 22 116470 2 0.02 116206 0 0.02 116453 dec_viterbi_F.ll 3 42251 0 0.01 42232 0 0.01 42232 DefaultInitDynArrays.ll 2 4579 0 0.01 4568 0 0.01 4568 DefaultName.ll 7 62842 0 0.02 62807 0 0.02 62807 Deflate64Register.ll 37 66816 1 0.01 66858 0 0.01 66449 DeflateDecoder.ll 51 266084 0 0.03 266050 0 0.03 252633 DeflateEncoder.ll 60 470588 13 0.04 444840 13 0.04 442812 DeflateProps.ll 5 59635 0 0.02 59602 0 0.02 59602 DeflateRegister.ll 37 66598 1 0.01 66640 0 0.01 66231 defmt.ll 13 134433 0 0.02 134402 0 0.02 133190 defs.ll 0 5483 0 0.01 5468 0 0.01 5468 deleteDataObject.ll 1 6265 0 0.01 6240 0 0.01 6240 deleteEntry.ll 1 21420 0 0.01 21395 0 0.01 21395 deleteIndexEntry.ll 1 4506 0 0.01 4481 0 0.01 4481 deleteIndexNode.ll 1 4392 0 0.01 4367 0 0.01 4367 delete.ll 1 10117 0 0.01 10092 0 0.01 10092 deliver.ll 3 56004 0 0.01 55973 0 0.01 55973 DeltaFilter.ll 38 59247 3 0.02 59111 1 0.02 55856 delta.ll 7 27231 0 0.01 27215 0 0.01 26664 Delta.ll 3 17328 0 0.01 17312 0 0.01 17312 density.ll 1 76524 0 0.02 76491 0 0.02 76491 derives.ll 2 11936 0 0.01 11910 0 0.01 11910 des_enc.ll 4 92589 0 0.02 92562 0 0.02 86661 des.ll 11 277788 0 0.03 277761 0 0.03 277761 dfgparser.ll 121 371364 5 0.03 369879 2 0.04 370667 dfgscanner.ll 21 221750 0 0.02 221733 0 0.03 221733 dijkstra.ll 6 24357 0 0.01 24323 0 0.01 24323 direction.ll 22 19450 0 0.01 19421 0 0.01 19421 dirsend.ll 8 107105 0 0.02 107071 0 0.01 107071 display.ll 0 456 0 0.01 421 0 0.01 421 distray.ll 9 86112 0 0.02 86085 0 0.02 86085 divides.ll 3 8241 0 0.01 8225 0 0.01 8225 div.ll 18 13898 7 0.01 11319 7 0.01 11319 Divsol.ll 4 29265 0 0.01 29243 0 0.01 29243 djpeg.ll 5 90842 0 0.01 90811 0 0.01 90811 doborder.ll 2 45439 0 0.01 45406 0 0.01 45406 doc-proof.ll 29 56444 0 0.01 56427 0 0.02 56427 does_x_win.ll 5 91600 0 0.01 91581 0 0.02 91581 doitgen.ll 12 30417 0 0.01 30366 0 0.01 30366 dominate.ll 2 34437 0 0.01 34407 0 0.01 34407 dot.ll 1 1874 0 0.01 1845 0 0.01 1845 doublecheck.ll 1 32093 0 0.01 32060 0 0.01 32060 dp_dec.ll 2 62131 0 0.02 62108 0 0.02 62108 dp_enc.ll 4 65607 0 0.01 65584 0 0.02 65584 draw_line.ll 1 1792 0 0.01 1763 0 0.01 1763 driver.ll 3 14850 0 0.01 14823 0 0.01 14823 drop3.ll 3 32092 0 0.01 32068 0 0.01 32068 dry.ll 13 30290 0 0.01 30270 0 0.01 30270 dt.ll 2 7389 0 0.01 7374 0 0.01 7374 DuffsDevice.ll 2 9522 0 0.01 9510 0 0.01 9510 dummy.ll 1 2092 0 0.01 2064 0 0.01 2064 DummyOutStream.ll 6 13577 0 0.01 13537 0 0.01 13537 dump.ll 5 25664 0 0.01 25633 0 0.01 25633 durbin.ll 12 32611 0 0.01 32561 0 0.01 32561 dynprog.ll 12 25271 0 0.01 25220 0 0.01 25220 ecb_enc.ll 2 18267 0 0.01 18240 0 0.01 18240 em3d.ll 1 10207 0 0.01 10187 0 0.01 10187 emfloat.ll 19 104508 0 0.02 104492 0 0.02 104092 emitter.ll 1 25010 0 0.01 24981 0 0.01 24981 encode.ll 2 15460 0 0.01 15424 0 0.01 15424 endgame.ll 1 17397 0 0.01 17371 0 0.01 17371 EndianPortable.ll 13 15174 5 0.01 10262 3 0.01 11696 EnumDirItems.ll 22 358170 0 0.03 358135 0 0.04 358135 equiv.ll 2 31731 0 0.01 31701 0 0.01 31701 erase.ll 1 765 0 0.01 736 0 0.01 736 erc_api.ll 10 68842 0 0.01 68821 0 0.01 68821 erc_do_i.ll 6 90863 0 0.02 90842 0 0.02 90842 erc_do_p.ll 34 342346 0 0.03 342325 0 0.03 341133 err.ll 1 4487 0 0.01 4470 0 0.01 4470 errorconcealment.ll 3 19583 0 0.01 19562 0 0.01 19562 error.ll 1 6566 0 0.01 6537 0 0.01 6537 Error.ll 1 38944 0 0.01 38916 0 0.01 38916 errorMessage.ll 2 7982 0 0.01 7957 0 0.01 7957 errorp.ll 1 3289 0 0.01 3262 0 0.01 3262 errors.ll 6 19314 0 0.01 19296 0 0.01 19296 espresso.ll 1 28727 0 0.01 28697 0 0.01 28697 essen.ll 4 35838 0 0.01 35808 0 0.01 35808 eval.ll 1 4135 0 0.01 4109 0 0.01 4109 exact.ll 4 47736 0 0.01 47706 0 0.02 47706 exambord.ll 1 7624 0 0.01 7598 0 0.01 7598 exception_spec_test.ll 6 12901 0 0.01 12882 0 0.01 12882 except.ll 22 34884 1 0.01 34475 0 0.01 34856 execute.ll 9 103710 0 0.02 103690 0 0.02 103690 expand.ll 12 165069 0 0.03 165039 0 0.02 165039 explicit_gop.ll 9 132820 0 0.02 132799 0 0.02 132799 exp.ll 9 74590 0 0.02 74573 0 0.01 74573 exptree.ll 14 45103 0 0.01 45086 0 0.01 45669 ExtractCallbackConsole.ll 23 69339 0 0.01 69303 0 0.01 69303 ExtractingFilePath.ll 10 43215 0 0.01 43180 0 0.01 43180 Extract.ll 16 222180 2 0.02 221097 2 0.02 220070 factor.ll 2 9199 0 0.01 9176 0 0.01 9176 Falign.ll 10 474854 0 0.04 474839 0 0.05 474839 family.ll 11 23080 0 0.01 23049 0 0.01 23049 fannkuch.ll 2 16822 0 0.01 16798 0 0.01 16798 fasta.ll 6 19924 0 0.01 19894 0 0.01 19894 fbench.ll 3 40167 0 0.01 40152 0 0.01 40152 fdtd-2d.ll 12 37045 0 0.01 37008 0 0.00 37008 fdtd-apml.ll 12 90288 0 0.02 90249 0 0.02 90249 fe.ll 21 73735 0 0.01 73719 0 0.02 73446 ffbench.ll 2 38643 0 0.01 38628 0 0.01 38628 fftbench.ll 81 162362 4 0.02 161595 2 0.02 163177 fftFunctions.ll 16 176353 0 0.02 176338 0 0.03 176338 fft.ll 3 32602 0 0.01 32587 0 0.01 32587 FFT.ll 6 26717 0 0.01 26697 0 0.01 26697 fftmisc.ll 4 8115 0 0.01 8085 0 0.01 8085 fftsg.ll 37 694548 0 0.07 694523 0 0.08 677578 Fheap.ll 16 55029 0 0.02 55009 0 0.02 55009 fib2.ll 2 3596 0 0.01 3577 0 0.01 3577 fibo.ll 11 15159 0 0.01 15134 0 0.01 15134 FileDir.ll 30 298591 0 0.03 298563 0 0.03 298021 FileFind.ll 33 384904 0 0.04 384876 0 0.04 361202 filehandle.ll 5 30313 0 0.01 30292 0 0.01 30292 FileIO.ll 21 88816 0 0.02 88788 0 0.01 88788 FileName.ll 3 42850 0 0.01 42822 0 0.01 42822 FilePathAutoRename.ll 4 59272 0 0.02 59240 0 0.01 59240 files.ll 5 24689 0 0.01 24663 0 0.01 24663 FileStreams.ll 36 57297 6 0.01 54252 5 0.01 54210 fill.ll 1 2623 0 0.01 2594 0 0.01 2594 FilterCoder.ll 83 193349 0 0.02 193317 * * * finalout.ll 2 24085 0 0.01 24052 0 0.01 24052 finalpin.ll 1 187303 0 0.02 187270 0 0.02 187270 findcheck.ll 2 49408 0 0.01 49375 0 0.01 49375 findcolr.ll 1 11459 0 0.01 11433 0 0.01 11433 findcost.ll 1 37566 0 0.01 37533 0 0.01 37533 findloc.ll 1 111778 0 0.01 111745 0 0.02 111745 findnext.ll 2 25722 0 0.01 25696 0 0.01 25696 findnodes.ll 5 103604 0 0.01 103571 0 0.01 103571 findopen.ll 1 24241 0 0.01 24215 0 0.01 24215 findpatn.ll 1 19561 0 0.01 19535 0 0.01 19535 findsavr.ll 1 7260 0 0.01 7234 0 0.01 7234 findside.ll 2 13436 0 0.01 13403 0 0.01 13403 FindSignature.ll 1 16445 0 0.01 16405 0 0.01 16405 findwinr.ll 1 15575 0 0.00 15549 0 0.01 15549 fioe.ll 1 16999 0 0.01 16973 0 0.01 16973 five11.ll 12 29027 0 0.01 29002 0 0.01 29002 fixoutput.ll 2 32311 0 0.01 32281 0 0.01 32281 fixpenal.ll 3 97288 0 0.02 97255 0 0.01 97255 fixups.ll 8 13196 0 0.01 13180 0 0.01 13180 flags.ll 31 51827 1 0.02 51596 * * * fldry.ll 13 32438 0 0.01 32418 0 0.01 32418 float.ll 11 117871 0 0.02 117854 0 0.02 117854 FloatMM.ll 6 12850 0 0.01 12831 0 0.01 12831 FloatPrecision.ll 2 2147 0 0.01 2138 0 0.01 2138 floatrep.ll 2 2588 0 0.01 2571 0 0.01 2571 flops-1.ll 1 10454 0 0.01 10439 0 0.01 10439 flops-2.ll 1 10782 0 0.01 10767 0 0.01 10767 flops-3.ll 1 10676 0 0.01 10661 0 0.01 10661 flops-4.ll 1 12150 0 0.01 12135 0 0.01 12135 flops-5.ll 1 12874 0 0.01 12859 0 0.01 12859 flops-6.ll 1 12866 0 0.01 12851 0 0.01 12851 flops-7.ll 1 10239 0 0.01 10224 0 0.01 10224 flops-8.ll 1 13031 0 0.01 13016 0 0.01 13016 flops.ll 2 82106 0 0.02 82091 0 0.02 82091 floyd-warshall.ll 12 21456 0 0.01 21414 0 0.01 21414 fmo.ll 23 94259 0 0.02 94238 0 0.02 94238 foldfg.ll 190 393484 5 0.04 391567 2 0.04 389988 follow.ll 4 20779 0 0.01 20753 0 0.01 20753 fontname.ll 2 10674 0 0.01 10645 0 0.01 10645 fontsize.ll 1 1218 0 0.01 1189 0 0.01 1189 formatBitstream.ll 21 90029 0 0.01 89998 0 0.02 89998 format.ll 2 27843 0 0.01 27813 0 0.01 27813 fourierf.ll 2 22660 0 0.01 22630 0 0.01 22630 fourinarow.ll 18 123903 0 0.02 123873 0 0.02 111785 fp-convert.ll 2 8282 0 0.01 8267 0 0.01 8267 Fsanity.ll 4 15484 0 0.01 15464 0 0.01 15464 fsm.ll 12 28052 0 0.01 28024 0 0.01 28024 ft.ll 4 18132 0 0.01 18112 0 0.01 18112 fulllink.ll 5 30012 0 0.01 29979 0 0.01 27957 fuloop.ll 1 29948 0 0.01 29915 0 0.01 29915 functionobjects.ll 114 305253 1 0.03 300379 1 0.04 275083 function_try_block.ll 7 23756 0 0.01 23737 0 0.01 23737 functs.ll 5 64545 0 0.01 64517 0 0.02 64517 g711.ll 7 16305 0 0.01 16269 0 0.01 16269 g721.ll 2 17014 0 0.01 16978 0 0.01 16978 g723_24.ll 2 16931 0 0.01 16895 0 0.01 16895 g723_40.ll 2 17754 0 0.01 17718 0 0.01 17718 g72x.ll 11 88468 0 0.01 88432 0 0.02 88432 Galign11.ll 5 85622 0 0.01 85607 0 0.01 85607 garage.ll 25 32013 0 0.01 31982 0 0.01 31982 gasp.ll 6 51262 0 0.01 51232 0 0.01 51232 gcc-loops.ll 99 215027 3 0.02 214260 3 0.03 214260 gdevmem.ll 27 181881 0 0.02 181857 0 0.03 179175 gdevs.ll 1 1879 0 0.01 1855 0 0.01 1855 gemm.ll 12 28028 0 0.01 27980 0 0.01 27980 gemver.ll 12 35733 0 0.01 35683 0 0.01 35683 genalign11.ll 3 69116 0 0.01 69101 0 0.02 69101 gen_c.ll 40 303014 2 0.03 297916 2 0.03 283690 gen_cpp.ll 21 186423 3 0.02 172496 3 0.02 172496 gen_cs.ll 13 137612 2 0.02 128367 2 0.02 128367 general.ll 1 2295 0 0.01 2266 0 0.01 2266 genGalign11.ll 3 65594 0 0.01 65579 0 0.01 65579 gen_java.ll 33 230976 2 0.02 221580 2 0.03 207347 gen.ll 12 112038 0 0.01 112020 0 0.02 112020 genmove.ll 1 16012 0 0.01 15986 0 0.01 15986 genorient.ll 1 179023 0 0.02 178990 0 0.02 178990 gen_php.ll 30 209617 2 0.02 200573 2 0.03 185846 gen_ruby.ll 29 183851 4 0.02 169929 4 0.02 169929 gentwf.ll 1 55799 0 0.01 55766 0 0.01 55766 gesummv.ll 12 24932 0 0.01 24881 0 0.01 24881 getargs.ll 1 8175 0 0.01 8149 0 0.01 8149 get_audio.ll 19 84570 0 0.01 84539 0 0.01 84539 getbits.ll 8 20663 0 0.01 20628 0 0.01 20628 getblk.ll 4 82909 0 0.02 82874 0 0.01 82874 getDeleteCommand.ll 1 21890 0 0.01 21865 0 0.01 21865 getFloat.ll 1 6791 0 0.01 6766 0 0.01 6766 gethdr.ll 20 71934 0 0.01 71899 0 0.02 71899 getij.ll 1 8281 0 0.01 8255 0 0.01 8255 getInitCommand.ll 1 5634 0 0.01 5609 0 0.01 5609 getInsertCommand.ll 1 17537 0 0.01 17512 0 0.01 17512 getInt.ll 1 6401 0 0.01 6376 0 0.01 6376 getKeyAttribute.ll 1 4040 0 0.01 4015 0 0.01 4015 getmove.ll 1 11920 0 0.01 11894 0 0.01 11894 getNextCommandCode.ll 1 7510 0 0.01 7485 0 0.01 7485 getNonKeyAttribute.ll 1 4957 0 0.01 4932 0 0.01 4932 getopt.ll 1 20083 0 0.01 20052 0 0.01 20052 getpath.ll 1 17914 0 0.01 17883 0 0.01 17883 get_pauth.ll 1 5096 0 0.01 5062 0 0.01 5062 getpic.ll 16 131184 0 0.02 131149 0 0.02 131149 getQueryCommand.ll 1 21880 0 0.00 21855 0 0.01 21855 getString.ll 1 11001 0 0.01 10976 0 0.01 10976 get_vdir.ll 1 66358 0 0.01 66324 0 0.02 66324 getvlc.ll 15 82573 0 0.01 82538 0 0.02 81286 ggenorien.ll 1 65674 0 0.02 65641 0 0.02 65641 gglobals.ll 0 4616 0 0.01 4583 0 0.01 4583 gim_box_set.ll 32 89479 1 0.01 89157 1 0.01 87942 gim_contact.ll 46 97523 3 0.01 95999 1 0.02 96837 gim_memory.ll 13 9669 0 0.01 9651 0 0.01 9651 gimpel.ll 1 32442 0 0.01 32412 0 0.01 32412 gim_tri_collision.ll 17 269009 1 0.03 268577 1 0.03 268577 global_ctor.ll 8 5490 0 0.01 5474 0 0.01 5474 global.ll 0 5240 0 0.01 5220 0 0.01 5220 globalrefs.ll 2 7312 0 0.01 7300 0 0.01 7300 globals.ll 0 4538 0 0.01 4505 0 0.01 4505 global_type.ll 1 1090 0 0.01 1074 0 0.01 1074 gmain.ll 1 31824 0 0.01 31791 0 0.01 31791 good.ll 5 53954 0 0.01 53923 0 0.02 53923 goverlapf.ll 1 48177 0 0.01 48144 0 0.01 48144 goverlap.ll 1 45091 0 0.01 45058 0 0.01 45058 goverlapx.ll 1 51380 0 0.01 51347 0 0.01 51347 gpass2.ll 1 70148 0 0.01 70115 0 0.02 70115 gpkplotting.ll 0 456 0 0.00 425 0 0.01 425 gp_unix.ll 4 8419 0 0.01 8395 0 0.01 8395 gram.ll 0 1317 0 0.01 1291 0 0.01 1291 grammar.g.ll 51 977676 1 0.07 974702 * * * gramschmidt.ll 12 38451 0 0.01 38396 0 0.01 38396 graph.ll 10 27992 0 0.01 27972 0 0.01 27972 grdcell.ll 1 117458 0 0.02 117425 0 0.02 117425 grepair.ll 1 9799 0 0.01 9766 0 0.01 9766 grow.ll 2 21304 0 0.01 21275 0 0.01 21275 gschar.ll 34 144866 1 0.02 144214 1 0.02 144195 gscolor.ll 18 66728 0 0.02 66704 0 0.02 66704 gscoord.ll 13 36076 0 0.01 36052 0 0.01 34222 gsdevice.ll 26 67030 4 0.01 65511 1 0.02 66148 gsfile.ll 1 20471 0 0.01 20447 0 0.01 20447 gsfont.ll 13 44042 1 0.01 43603 1 0.01 43603 gsim2out.ll 8 67436 0 0.01 67412 0 0.01 67412 gsimage.ll 15 164706 0 0.02 164682 0 0.02 164682 gsline.ll 12 25004 0 0.01 24980 0 0.01 24980 gs.ll 9 34248 0 0.01 34224 0 0.01 34224 gsmain.ll 3 18785 0 0.01 18761 0 0.01 18761 gsmatrix.ll 14 76302 0 0.02 76278 0 0.01 76373 gsm_create.ll 1 3343 0 0.01 3313 0 0.01 3313 gsm_decode.ll 1 44688 0 0.01 44658 0 0.01 44658 gsm_destroy.ll 1 1940 0 0.01 1910 0 0.01 1910 gsm_encode.ll 1 34706 0 0.01 34676 0 0.01 34676 gsm_explode.ll 1 56625 0 0.01 56595 0 0.01 56595 gsm_implode.ll 1 46766 0 0.01 46736 0 0.01 46736 gsmisc.ll 2 4510 0 0.01 4486 0 0.01 4486 gsm_option.ll 1 2008 0 0.01 1978 0 0.01 1978 gsm_print.ll 1 59766 0 0.02 59736 0 0.01 59736 gspaint.ll 9 35176 0 0.01 35152 0 0.01 35152 gspath2.ll 12 40677 0 0.01 40653 0 0.01 40653 gspath.ll 14 63917 0 0.02 63893 0 0.02 62064 gsstate.ll 11 46775 0 0.01 46751 0 0.02 46751 gstype1.ll 6 217441 0 0.02 217417 0 0.03 217417 gtkanal.ll 0 452 0 0.01 421 0 0.01 421 gutil.ll 140 388775 55 0.03 410686 13 0.04 372305 gxcache.ll 7 60928 0 0.01 60904 0 0.01 60904 gxcolor.ll 5 32678 0 0.01 32654 0 0.01 32654 gxdither.ll 1 45152 0 0.01 45128 0 0.01 45128 gxdraw.ll 8 71594 0 0.01 71570 0 0.01 71570 gxfill.ll 9 140929 0 0.02 140905 0 0.02 140905 gxht.ll 4 31379 0 0.01 31355 0 0.01 31355 gxpath2.ll 13 88470 0 0.02 88446 0 0.02 88446 gxpath.ll 13 64557 0 0.01 64533 0 0.01 64533 gxstroke.ll 8 138736 0 0.02 138712 0 0.02 138712 GzHandler.ll 82 370584 1 0.03 370627 * * * hack.ll 9 187860 0 0.02 187830 0 0.03 187830 Halignmm.ll 9 209305 0 0.03 209290 0 0.02 209290 HandlerOut.ll 19 324670 0 0.03 324630 0 0.03 323596 hash2.ll 137 294380 11 0.03 291977 6 0.03 292753 hasharray.ll 18 29950 0 0.01 29933 0 0.01 29933 hash.ll 8 25776 0 0.01 25757 0 0.01 25757 hbd.ll 1 4647 0 0.01 4630 0 0.01 4630 hcg.ll 6 20173 0 0.01 20150 0 0.01 20150 header.ll 6 133355 0 0.02 133334 0 0.02 133334 headers.ll 15 92894 0 0.02 92863 0 0.01 92863 health.ll 9 62043 0 0.01 62021 0 0.01 62021 heapsort.ll 4 12482 0 0.01 12463 0 0.01 12463 hello.ll 1 1223 0 0.01 1204 0 0.01 1204 help.ll 1 12790 0 0.01 12762 0 0.01 12762 hexxagonboard.ll 31 109799 1 0.02 109764 0 0.02 109677 hexxagongame.ll 13 41133 0 0.01 41111 0 0.01 40646 hexxagon.ll 10 90051 0 0.01 90029 0 0.01 90029 hexxagonmove.ll 14 36287 0 0.01 36265 0 0.01 36265 himenobmtxpa.ll 10 108193 0 0.02 108178 0 0.02 108178 HmacSha1.ll 5 23167 0 0.01 23135 0 0.01 23135 horners.ll 2 4611 0 0.01 4582 0 0.01 4582 hprobes.ll 2 94570 0 0.02 94537 0 0.02 94537 huffbench.ll 5 55230 0 0.01 55208 0 0.01 55208 HuffEnc.ll 1 19291 0 0.01 19275 0 0.01 19275 hypre_error.ll 5 5986 0 0.01 5959 0 0.01 5959 hypre_memory.ll 5 8202 0 0.01 8175 0 0.01 8175 HYPRE_pcg.ll 12 13957 0 0.01 13928 0 0.01 14270 HYPRE_struct_grid.ll 5 10244 0 0.01 10215 0 0.01 10215 HYPRE_struct_matrix.ll 12 27807 0 0.01 27778 0 0.01 22107 HYPRE_struct_pcg.ll 14 82644 0 0.01 82615 0 0.01 82854 HYPRE_struct_smg.ll 15 15541 0 0.01 15512 0 0.01 15512 HYPRE_struct_stencil.ll 3 7068 0 0.01 7039 0 0.01 7039 HYPRE_struct_vector.ll 16 35666 0 0.01 35637 0 0.01 26422 ialloc.ll 15 86903 0 0.01 86879 0 0.01 86879 iaparser.ll 74 137971 4 0.02 136825 1 0.02 137604 iascanner.ll 19 84100 0 0.02 84083 0 0.02 84083 id3tag.ll 4 36173 0 0.01 36142 0 0.01 36142 idct.ll 4 29032 0 0.01 28997 0 0.01 28997 idctref.ll 2 13404 0 0.01 13369 0 0.01 13369 idebug.ll 5 30092 0 0.01 30068 0 0.01 30068 idict.ll 10 43366 0 0.01 43342 0 0.01 43342 id.ll 0 4211 0 0.01 4194 0 0.01 4194 ieeefloat.ll 6 42929 0 0.01 42898 0 0.01 42898 iinit.ll 5 12359 0 0.01 12335 0 0.01 12335 image.ll 40 681667 0 0.06 681646 0 0.06 681646 img_chroma.ll 5 38306 0 0.01 38285 0 0.01 38285 img_luma.ll 10 124530 0 0.02 124509 0 0.02 124509 ImplodeDecoder.ll 20 131688 0 0.02 131654 0 0.02 131654 ImplodeHuffmanDecoder.ll 4 19555 0 0.01 19521 0 0.01 19521 iname.ll 6 24818 0 0.01 24794 0 0.01 24794 InBuffer.ll 7 16214 0 0.01 16182 0 0.01 16182 indep.ll 2 33146 0 0.01 33116 0 0.01 33116 initbb.ll 2 32361 0 0.01 32328 0 0.01 32328 init.ll 1 9382 0 0.01 9353 0 0.01 9353 initmark.ll 1 2732 0 0.01 2706 0 0.01 2706 initMetricsData.ll 1 12051 0 0.01 12026 0 0.01 12026 initp1.ll 17 34153 0 0.01 34142 0 0.01 34142 init_viterbi.ll 1 23176 0 0.01 23157 0 0.01 23157 inlined_cleanup.ll 4 6692 0 0.01 6673 0 0.01 6673 InOutTempBuffer.ll 16 53069 1 0.01 52495 1 0.01 52495 input.ll 12 131470 0 0.02 131452 0 0.02 131452 insertEntry.ll 1 17371 0 0.01 17346 0 0.01 17346 insert.ll 1 18148 0 0.01 18123 0 0.01 18123 InStreamWithCRC.ll 13 27970 2 0.01 27147 2 0.01 26592 instruct2.ll 12 80841 0 0.02 80811 0 0.02 80811 instruct.ll 33 142160 0 0.02 142130 * * * interface.ll 8 37990 0 0.01 37959 0 0.01 37959 interp.ll 5 83872 0 0.01 83848 0 0.02 83848 intersec.ll 7 17559 0 0.01 17537 0 0.01 17537 intersection.ll 23 77339 0 0.02 77310 * * * interupt.ll 1 2094 0 0.01 2064 0 0.01 2064 IntMM.ll 6 12214 0 0.01 12195 0 0.01 12195 intrarefresh.ll 4 18704 0 0.01 18683 0 0.01 18683 IntToString.ll 7 41828 0 0.01 41801 0 0.01 41801 io.ll 88 1103275 2 0.10 1094991 1 0.11 1080539 IOtestA.ll 3 6815 0 0.01 6790 0 0.01 6790 IOtestB.ll 9 7975 1 0.01 7775 * * * IOtestC.ll 9 8086 1 0.01 7885 * * * IOtest.ll 10 8062 0 0.01 8037 0 0.01 8158 irred.ll 10 115710 0 0.02 115680 0 0.02 115680 iscan.ll 8 168960 0 0.02 168936 0 0.02 168936 is.ll 6 44696 0 0.01 44673 0 0.01 44673 ispell.ll 9 179504 0 0.02 179473 0 0.03 179473 isqrt.ll 1 3774 0 0.01 3736 0 0.01 3736 item.ll 3 3871 0 0.01 3851 0 0.01 3851 ItemNameUtils.ll 5 20927 1 0.01 18555 1 0.01 18555 itop.ll 1 5520 0 0.01 5493 0 0.01 5493 iutil.ll 10 55529 0 0.01 55505 0 0.01 55505 jacobi-1d-imper.ll 12 18897 0 0.01 18852 0 0.01 18852 jacobi-2d-imper.ll 12 25281 0 0.01 25236 0 0.01 25236 Jacobi.ll 2 17391 0 0.01 17369 0 0.01 17369 jcapimin.ll 7 49449 0 0.01 49416 0 0.01 49416 jcapistd.ll 3 35825 0 0.01 35792 0 0.01 35792 jccoefct.ll 6 85032 0 0.02 84999 0 0.01 84999 jccolor.ll 8 82739 0 0.01 82706 0 0.01 82706 jcdctmgr.ll 4 62756 0 0.01 62723 0 0.02 62723 jchuff.ll 14 141140 0 0.02 141107 0 0.02 141107 jcinit.ll 1 14873 0 0.01 14840 0 0.01 14840 jcmainct.ll 3 27525 0 0.01 27492 0 0.01 27492 jcmarker.ll 18 83232 0 0.02 83199 0 0.02 83199 jcmaster.ll 8 154685 0 0.02 154652 0 0.02 154652 jcomapi.ll 4 9668 0 0.01 9635 0 0.01 10218 jcparam.ll 13 104349 0 0.01 104316 0 0.02 104316 jcphuff.ll 15 135194 0 0.02 135161 0 0.02 135161 jcprepct.ll 6 66882 0 0.01 66849 0 0.01 66849 jcsample.ll 10 92605 0 0.02 92572 0 0.01 92572 jctrans.ll 7 83622 0 0.02 83589 0 0.02 83589 jdapimin.ll 10 76843 0 0.01 76810 0 0.01 74872 jdapistd.ll 6 62628 0 0.01 62595 0 0.01 62595 jdatadst.ll 4 22334 0 0.01 22301 0 0.01 22301 jdatasrc.ll 5 25127 0 0.01 25094 0 0.01 25094 jdcoefct.ll 10 148968 0 0.02 148935 0 0.02 148935 jdcolor.ll 7 68724 0 0.01 68691 0 0.02 68691 jddctmgr.ll 2 36578 0 0.01 36545 0 0.00 36545 jdhuff.ll 7 118444 0 0.02 118411 0 0.01 118411 jdinput.ll 8 84668 0 0.02 84635 0 0.02 84635 jdmainct.ll 9 80512 0 0.01 80479 0 0.02 80479 jdmarker.ll 17 330651 0 0.03 330618 0 0.03 330618 jdmaster.ll 8 110499 0 0.02 110466 0 0.01 110466 jdmerge.ll 7 70266 0 0.01 70233 0 0.02 70233 jdphuff.ll 7 154511 0 0.02 154478 0 0.02 154478 jdpostct.ll 5 51697 0 0.01 51664 0 0.01 51664 jdsample.ll 10 82774 0 0.01 82741 0 0.01 82741 jdtrans.ll 2 28853 0 0.01 28820 0 0.01 28820 jerror.ll 6 46027 0 0.01 45994 0 0.01 45994 jfdctflt.ll 1 20150 0 0.01 20117 0 0.01 20117 jfdctfst.ll 1 20298 0 0.01 20265 0 0.01 20265 jfdctint.ll 1 23623 0 0.01 23590 0 0.01 23590 jidctflt.ll 1 39322 0 0.01 39289 0 0.01 39289 jidctfst.ll 1 42115 0 0.01 42082 0 0.01 42082 jidctint.ll 1 45956 0 0.01 45923 0 0.01 45923 jidctred.ll 3 50470 0 0.01 50437 0 0.01 50437 jmemmgr.ll 15 170588 0 0.02 170555 0 0.02 167207 jmemnobs.ll 8 9152 2 0.01 8383 2 0.01 8383 jquant1.ll 17 125661 0 0.02 125628 0 0.01 125628 jquant2.ll 18 189959 0 0.02 189926 0 0.03 189926 jutils.ll 5 7661 0 0.01 7628 0 0.01 7628 kbo.ll 39 93480 1 0.01 93248 0 0.02 93463 kernel.ll 5 27252 0 0.01 27232 0 0.01 27232 keyUnion.ll 2 18655 0 0.01 18630 0 0.01 18630 kimwl.ll 82 359944 1 0.04 359757 1 0.04 359757 kimwy.ll 370 1447814 104 0.11 1433689 * * * k.ll 2937 7485503 989 0.86 6584270 * * * KS-1.ll 6 38618 0 0.01 38598 0 0.01 38598 KS-2.ll 8 68887 0 0.01 68867 0 0.01 68867 l3bitstream.ll 11 167472 0 0.02 167441 0 0.02 167441 label.ll 1 1425 0 0.01 1396 0 0.01 1396 Lalign11.ll 3 57428 0 0.01 57413 0 0.01 57413 Lalignmm.ll 6 255613 0 0.03 255598 0 0.04 255598 lalr.ll 17 114241 0 0.02 114215 0 0.02 114943 lambda.ll 3 52003 0 0.01 51978 0 0.01 51978 lame.ll 13 261262 0 0.03 261231 0 0.03 261231 lapi.ll 74 242562 0 0.03 242547 0 0.03 242547 laplace.ll 1 30865 0 0.01 30838 0 0.01 30838 lauxlib.ll 43 110129 0 0.02 110114 0 0.02 110114 layer3.ll 13 435128 0 0.04 435097 0 0.04 435097 lbaselib.ll 43 99233 0 0.02 99218 0 0.02 99218 L_canny.ll 5 57717 0 0.02 57695 0 0.02 57695 lcode.ll 56 172913 0 0.02 172898 0 0.03 172898 ldblib.ll 24 83768 0 0.02 83753 0 0.02 83753 ldebug.ll 32 162976 0 0.02 162961 0 0.02 162961 ldecod.ll 14 149907 0 0.02 149886 0 0.02 149886 ldo.ll 24 152277 0 0.02 152262 0 0.02 152262 ldump.ll 11 32964 0 0.01 32949 0 0.01 32949 leaky_bucket.ll 5 54568 0 0.01 54547 0 0.01 54547 lemon.ll 112 1102968 0 0.10 1102951 0 0.11 1103447 lencod.ll 37 651236 0 0.06 651215 0 0.06 651215 lexer.ll 5 29789 0 0.01 29760 0 0.01 29705 lex.ll 5 53297 0 0.01 53271 0 0.01 53271 lfunc.ll 11 48526 0 0.01 48511 0 0.01 48511 lgc.ll 30 199994 0 0.03 199979 0 0.03 199979 libclamav_aspack.ll 8 105717 0 0.02 105699 0 0.01 105699 libclamav_autoit.ll 11 187044 0 0.02 187026 0 0.03 187026 libclamav_binhex.ll 2 17270 0 0.01 17252 0 0.01 17252 libclamav_blob.ll 22 76107 0 0.02 76089 0 0.01 76089 libclamav_cab.ll 9 141729 0 0.02 141711 0 0.02 141711 libclamav_chmunpack.ll 20 158353 0 0.02 158335 0 0.02 158335 libclamav_cvd.ll 10 77651 0 0.01 77633 0 0.01 77633 libclamav_dconf.ll 5 268564 0 0.03 268546 0 0.03 268546 libclamav_dsig.ll 0 446 0 0.01 428 0 0.01 428 libclamav_elf.ll 5 91347 0 0.01 91329 0 0.01 91329 libclamav_entconv.ll 21 500393 0 0.04 500375 0 0.05 500375 libclamav_filetypes.ll 3 102477 0 0.02 102459 0 0.01 102459 libclamav_fsg.ll 2 24468 0 0.01 24450 0 0.01 24450 libclamav_hashtab.ll 11 52955 0 0.01 52937 0 0.02 52937 libclamav_htmlnorm.ll 21 404257 0 0.04 404239 0 0.04 404239 libclamav_is_tar.ll 2 16818 0 0.01 16800 0 0.01 16800 libclamav_jscript.ll 1 1750 0 0.01 1732 0 0.01 1732 libclamav_line.ll 4 7046 0 0.01 7028 0 0.01 7028 libclamav_lockdb.ll 4 1923 1 0.01 1742 1 0.01 1742 libclamav_matcher-ac.ll 15 250664 0 0.03 250646 0 0.03 250646 libclamav_matcher-bm.ll 4 56561 0 0.01 56543 0 0.01 56543 libclamav_matcher.ll 8 115723 0 0.02 115705 0 0.02 115705 libclamav_mbox.ll 36 497205 0 0.05 497187 0 0.05 497187 libclamav_md5.ll 4 91532 0 0.02 91514 0 0.01 91514 libclamav_message.ll 50 375931 0 0.04 375913 0 0.04 375913 libclamav_mew.ll 12 166000 0 0.02 165982 0 0.02 165982 libclamav_msexpand.ll 1 15843 0 0.01 15825 0 0.01 15825 libclamav_mspack.ll 22 680495 0 0.06 680477 0 0.06 681192 libclamav_nsis_bzlib.ll 12 341616 0 0.03 341598 0 0.04 341598 libclamav_nsis_infblock.ll 3 231466 0 0.03 231448 0 0.02 231448 libclamav_nsis_LZMADecode.ll 3 120231 0 0.02 120213 0 0.02 120213 libclamav_nsis_nulsft.ll 10 123050 0 0.02 123032 0 0.02 123032 libclamav_ole2_extract.ll 14 130730 0 0.02 130712 0 0.02 130712 libclamav_others.ll 32 99680 0 0.02 99662 0 0.02 99662 libclamav_packlibs.ll 3 64575 0 0.02 64557 0 0.01 64557 libclamav_pdf.ll 9 119397 0 0.02 119379 0 0.02 119379 libclamav_pe.ll 7 695545 0 0.06 695527 0 0.06 695527 libclamav_petite.ll 2 124940 0 0.02 124922 0 0.02 124922 libclamav_phishcheck.ll 45 248027 0 0.03 248009 * * * libclamav_phish_domaincheck_db.ll 5 17494 0 0.01 17476 0 0.01 17476 libclamav_phish_whitelist.ll 5 11402 0 0.01 11384 0 0.01 11384 libclamav_pst.ll 1 1776 0 0.01 1758 0 0.01 1758 libclamav_readdb.ll 28 371618 0 0.04 371600 0 0.04 368914 libclamav_rebuildpe.ll 1 24112 0 0.01 24094 0 0.01 24094 libclamav_regex_list.ll 33 243558 0 0.03 243540 0 0.03 243540 libclamav_regex_regcomp.ll 40 331604 1 0.05 331228 1 0.04 331228 libclamav_regex_regerror.ll 2 17527 0 0.01 17509 0 0.01 17509 libclamav_regex_regexec.ll 13 346136 1 0.04 297722 0 0.04 280917 libclamav_regex_regfree.ll 1 7301 0 0.01 7283 0 0.01 7283 libclamav_regex_strlcpy.ll 1 4693 0 0.01 4675 0 0.01 4675 libclamav_rtf.ll 12 145833 0 0.02 145815 0 0.02 145815 libclamav_scanners.ll 30 350019 0 0.04 350001 0 0.04 346273 libclamav_sis.ll 5 121197 0 0.02 121179 0 0.02 121179 libclamav_snprintf.ll 0 450 0 0.01 432 0 0.01 432 libclamav_special.ll 7 43879 0 0.01 43861 0 0.01 43861 libclamav_spin.ll 3 112836 0 0.02 112818 0 0.02 112818 libclamav_str.ll 14 69535 0 0.02 69517 0 0.02 69517 libclamav_suecrypt.ll 1 24263 0 0.01 24245 0 0.01 24245 libclamav_table.ll 7 25850 0 0.01 25832 0 0.01 25832 libclamav_text.ll 11 44243 0 0.01 44225 0 0.01 44599 libclamav_tnef.ll 5 43837 0 0.01 43819 0 0.01 43819 libclamav_unarj.ll 21 171609 0 0.02 171591 0 0.03 164144 libclamav_unsp.ll 10 86405 0 0.02 86387 0 0.02 86387 libclamav_untar.ll 2 37032 0 0.01 37014 0 0.01 37014 libclamav_unzip.ll 12 118858 0 0.02 118840 0 0.02 118840 libclamav_upack.ll 2 194679 0 0.02 194661 0 0.03 194661 libclamav_upx.ll 6 122073 0 0.02 122055 0 0.02 122055 libclamav_uuencode.ll 2 17049 0 0.01 17031 0 0.01 17031 libclamav_vba_extract.ll 26 201027 0 0.02 201009 0 0.02 201009 libclamav_wwunpack.ll 4 74681 0 0.02 74663 0 0.02 74663 libclamav_yc.ll 2 29945 0 0.01 29927 0 0.01 29927 life.ll 19 56067 0 0.01 56038 0 0.02 56038 light.ll 17 23094 0 0.01 23065 0 0.01 23065 LimitedStreams.ll 28 76886 8 0.02 70249 8 0.01 68584 line.ll 1 1899 0 0.01 1870 0 0.01 1870 linemod.ll 1 50101 0 0.01 50072 0 0.01 50072 linit.ll 1 5624 0 0.01 5609 0 0.01 5609 linpack-pc.ll 13 145271 0 0.02 145253 0 0.02 145253 liolib.ll 41 84096 0 0.02 84081 0 0.01 84081 ListFileUtils.ll 8 79532 0 0.01 79505 0 0.01 79505 list.ll 2 7747 0 0.01 7725 0 0.01 7725 List.ll 20 323082 0 0.03 323046 0 0.03 320565 lists1.ll 88 152101 9 0.02 150705 3 0.02 151455 lists.ll 17 45370 0 0.01 45351 0 0.01 45351 literal.ll 1 12664 0 0.01 12646 0 0.01 12646 llex.ll 19 155435 0 0.02 155420 0 0.02 155420 llubenchmark.ll 5 27605 0 0.01 27583 0 0.01 27583 lmathlib.ll 29 34963 0 0.01 34948 0 0.02 33539 lmem.ll 3 12468 0 0.01 12453 0 0.00 12453 loadbins.ll 1 74518 0 0.01 74485 0 0.01 74485 LoadCodecs.ll 20 151022 0 0.02 150987 0 0.02 149972 loadexe.ll 1 16807 0 0.01 16777 0 0.01 16777 loadlib.ll 24 68858 0 0.01 68843 0 0.01 68843 load.ll 5 38589 0 0.01 38569 0 0.01 38569 loadpg.ll 2 73982 0 0.01 73949 0 0.01 73949 lobject.ll 12 62363 0 0.01 62348 0 0.01 62348 LockedStream.ll 7 16832 0 0.01 16800 0 0.01 16800 long_term.ll 4 66031 0 0.01 66001 0 0.01 66001 lookup.ll 2 68844 0 0.01 68813 0 0.01 68813 loopFilter.ll 8 157592 0 0.02 157571 0 0.02 157571 loop_unroll.ll 602 1276589 8 0.29 1276255 * * * lopcodes.ll 0 5630 0 0.01 5615 0 0.01 5615 loslib.ll 17 46260 0 0.01 46245 0 0.02 46245 lowercase.ll 4 10513 0 0.01 10498 0 0.01 10498 lparser.ll 69 259824 0 0.03 259809 0 0.03 259809 lpbench.ll 8 51184 0 0.02 51162 0 0.02 51162 lpc.ll 5 97839 0 0.02 97809 0 0.02 97809 LR0.ll 13 75095 0 0.01 75069 0 0.02 75069 lr.ll 28 171193 0 0.02 171180 0 0.02 171180 lstate.ll 10 51152 0 0.01 51137 0 0.02 51137 lstring.ll 4 34379 0 0.01 34364 0 0.01 34364 lstrlib.ll 45 196047 0 0.02 196032 0 0.02 193453 ltable.ll 26 120256 0 0.02 120241 0 0.02 120241 ltablib.ll 14 43214 0 0.01 43199 0 0.01 43199 ltm.ll 3 18146 0 0.01 18131 0 0.01 18131 lua.ll 23 81489 0 0.01 81474 0 0.01 81474 lu.ll 12 21812 0 0.01 21766 0 0.01 21766 LU.ll 3 17827 0 0.01 17807 0 0.01 17807 lundump.ll 13 58663 0 0.01 58648 0 0.01 58648 lvm.ll 17 299068 0 0.03 299053 0 0.03 299053 LzFind.ll 29 150162 0 0.02 150146 0 0.02 150146 LzFindMt.ll 36 115911 0 0.02 115895 0 0.02 115895 lzio.ll 5 16946 0 0.01 16931 0 0.01 16931 Lzma2Dec.ll 6 34672 0 0.01 34656 0 0.01 33573 Lzma2Decoder.ll 47 123195 0 0.02 123161 * * * Lzma2Enc.ll 9 50651 0 0.01 50635 0 0.01 50635 Lzma2Encoder.ll 26 63272 0 0.02 63238 0 0.02 64897 Lzma2Register.ll 3 5428 0 0.01 5394 0 0.01 5394 LzmaDec.ll 12 174036 0 0.02 174020 0 0.02 174020 LzmaDecoder.ll 54 144150 0 0.02 144116 0 0.02 128998 LzmaEnc.ll 34 561599 0 0.05 561583 0 0.05 561583 LzmaEncoder.ll 26 69074 0 0.01 69040 0 0.01 70595 LzmaHandler.ll 30 172531 0 0.02 172498 0 0.02 172498 LzmaRegister.ll 3 5330 0 0.01 5296 0 0.01 5296 LzOutWindow.ll 1 1744 0 0.00 1710 0 0.01 1710 Lzx86Converter.ll 8 28325 0 0.00 28291 0 0.01 28291 LzxDecoder.ll 30 276485 0 0.03 276451 * * * machine.ll 15 88030 0 0.02 88000 0 0.01 88000 macroblock.ll 48 986275 0 0.09 986254 0 0.09 986254 MainAr.ll 2 33051 0 0.01 33015 0 0.01 33015 main.ll 1 30703 0 0.01 30678 0 0.01 30678 Main.ll 48 507074 2 0.05 503696 * * * makebins.ll 1 24004 0 0.01 23971 0 0.01 23971 makedent.ll 22 116629 0 0.02 116598 0 0.02 116246 make_dparser.ll 2 27868 0 0.01 27855 0 0.01 27855 make_graph.ll 14 58363 0 0.01 58343 0 0.01 57443 makegraph.ll 6 19891 0 0.01 19872 0 0.01 19872 makelink.ll 3 20866 0 0.01 20833 0 0.01 19918 makesite.ll 2 56296 0 0.01 56263 0 0.01 56263 maketree.ll 3 19943 0 0.01 19918 0 0.01 19918 mandel-2.ll 4 9495 0 0.01 9480 0 0.01 9480 mandel.ll 4 10074 0 0.01 10059 0 0.01 10059 mandel-text.ll 1 9372 0 0.01 9351 0 0.01 9351 map.ll 1 7301 0 0.01 7270 0 0.01 7270 maskgen.ll 1 54157 0 0.01 54131 0 0.02 54131 mason.ll 10 49163 1 0.01 48786 * * * matchpat.ll 1 30952 0 0.01 30926 0 0.01 30926 matmul_f64_4x4.ll 3 47703 0 0.01 47688 0 0.01 47688 matrix_dec.ll 9 60244 0 0.02 60221 0 0.02 59501 matrix_enc.ll 6 52336 0 0.01 52313 0 0.02 50612 matrix.ll 6 16895 0 0.01 16876 0 0.01 16876 matrixTranspose.ll 2 11809 0 0.01 11797 0 0.01 11797 maze.ll 18 150317 0 0.02 150294 0 0.02 150294 mb_access.ll 9 109296 0 0.02 109275 0 0.02 107910 mbuffer.ll 72 1035547 0 0.09 1035526 * * * md5.ll 7 107655 0 0.02 107629 0 0.02 107629 md_highfast.ll 1 163560 0 0.02 163539 0 0.02 163539 md_high.ll 1 124678 0 0.02 124657 0 0.02 124657 md_highloss.ll 1 128198 0 0.02 128177 0 0.02 128177 md_low.ll 1 156206 0 0.02 156185 0 0.02 156185 me_distortion.ll 21 382990 0 0.04 382969 0 0.04 380522 me_epzs.ll 26 932551 0 0.08 932530 0 0.09 932530 me_fullfast.ll 10 268886 0 0.03 268865 0 0.03 268865 me_fullsearch.ll 5 205532 0 0.02 205511 0 0.02 205511 memalloc.ll 47 144392 0 0.02 144371 * * * member-function-pointers.ll 6 7652 0 0.01 7641 0 0.01 7641 MemBlocks.ll 16 46800 0 0.01 46768 0 0.01 46768 memory.ll 12 44937 0 0.01 44907 0 0.01 44907 methcall.ll 9 15754 0 0.01 15735 0 0.01 15735 MethodId.ll 1 6496 0 0.01 6464 0 0.01 6464 MethodProps.ll 3 36369 0 0.01 36337 0 0.01 36337 me_umhex.ll 14 589759 0 0.05 589738 0 0.05 589738 me_umhexsmp.ll 12 428141 0 0.04 428120 0 0.04 428120 mgrep.ll 7 78013 0 0.02 77987 0 0.02 77987 miller.ll 1 19639 0 0.01 19622 0 0.01 19622 mincov.ll 5 84617 0 0.02 84587 0 0.01 84587 misc.ll 3 3522 0 0.01 3506 0 0.01 3506 misr.ll 5 37248 0 0.01 37231 0 0.01 37231 mltaln9.ll 97 1219770 0 0.12 1219755 0 0.12 1214359 MM.ll 10 26286 0 0.01 26264 0 0.01 26778 mode_decision.ll 13 310026 0 0.03 310005 0 0.03 310005 moments.ll 85 189321 2 0.02 188809 2 0.02 188809 MonteCarlo.ll 2 4623 0 0.01 4603 0 0.01 4603 motion.ll 4 29116 0 0.01 29081 0 0.01 29081 move_gen.ll 4 19525 0 0.01 19506 0 0.01 15333 move.ll 1 1779 0 0.01 1750 0 0.01 1750 move_sort.ll 1 13296 0 0.01 13277 0 0.01 13277 mpeg2dec.ll 12 68101 0 0.02 68066 0 0.02 68066 mpglib_main.ll 5 28228 0 0.00 28197 0 0.01 28197 mpistubs.ll 45 34470 16 0.01 28963 9 0.01 29751 MSalign11.ll 5 115701 0 0.02 115686 0 0.02 115686 MSalignmm.ll 5 185410 0 0.03 185395 0 0.02 185395 mshortest.ll 3 106701 0 0.01 106668 0 0.02 106668 ms_struct-bitfield-1.ll 1 2844 0 0.01 2835 0 0.01 2835 ms_struct-bitfield-init-1.ll 1 9535 0 0.01 9526 0 0.01 9526 ms_struct-bitfield-init.ll 1 5713 0 0.01 5704 0 0.01 5704 ms_struct-bitfield.ll 1 2461 0 0.01 2452 0 0.01 2452 ms_struct_pack_layout-1.ll 1 822 0 0.01 813 0 0.01 813 ms_struct_pack_layout.ll 1 16282 0 0.01 16273 0 0.01 16273 MtCoder.ll 13 53065 0 0.01 53049 0 0.02 53049 mt.ll 15 105859 0 0.02 105826 0 0.02 106105 mtxutl.ll 37 73859 3 0.02 73479 * * * multiplies.ll 2 13779 0 0.01 13763 0 0.01 13763 MultiStream.ll 11 33506 0 0.01 33466 0 0.01 33466 mv-search.ll 15 596890 0 0.05 596869 0 0.06 596869 mvt.ll 12 25713 0 0.01 25666 0 0.01 25666 myAddExeFlag.ll 1 3824 0 0.01 3794 0 0.01 3794 MyAes.ll 26 38212 4 0.01 38282 2 0.01 38794 myGetTickCount.ll 1 1173 0 0.01 1143 0 0.01 1143 mySplitCommandLine.ll 2 29158 0 0.01 29128 0 0.01 29128 MyString.ll 12 24293 0 0.01 24266 0 0.01 24266 MyVector.ll 12 20857 0 0.01 20830 0 0.01 20830 MyWindows.ll 8 14356 0 0.01 14329 0 0.01 14329 nal.ll 4 34109 0 0.01 34088 0 0.01 34088 nal_part.ll 1 8911 0 0.01 8890 0 0.01 8890 nalucommon.ll 2 12804 0 0.01 12783 0 0.01 12783 nalu.ll 1 13726 0 0.01 13705 0 0.01 13705 nbench0.ll 15 99749 0 0.02 99733 0 0.02 99733 nbench1.ll 66 433216 0 0.05 433200 0 0.04 433200 n-body.ll 4 27716 0 0.01 27692 0 0.01 27692 negamax.ll 4 187684 0 0.02 187665 0 0.02 187665 nestedloop.ll 2 7958 0 0.01 7939 0 0.01 7939 neural.ll 12 88340 0 0.02 88314 0 0.01 88314 newbh.ll 30 205828 0 0.02 205810 0 0.02 205810 newmdct.ll 5 165314 0 0.02 165283 0 0.03 165283 neworient.ll 1 18392 0 0.01 18359 0 0.01 18359 newton.ll 1 5663 0 0.01 5634 0 0.01 5634 newvor.ll 32 132156 0 0.02 132133 0 0.02 131127 node.ll 2 6852 0 0.01 6829 0 0.01 6829 nonterminal.ll 3 8374 0 0.01 8358 0 0.01 8358 NP.ll 8 8046 0 0.01 8019 0 0.01 8019 nsieve-bits.ll 1 8138 0 0.01 8114 0 0.01 8114 nullable.ll 2 19056 0 0.01 19030 0 0.01 19030 number.ll 24 189849 0 0.03 189829 0 0.03 189829 object.ll 26 138839 0 0.02 138816 0 0.02 126097 objects.ll 42 87564 0 0.02 87532 0 0.01 87532 objinst.ll 9 18016 0 0.01 17997 0 0.01 17997 obsequi.ll 14 67366 0 0.02 67347 0 0.01 67347 occur.ll 25 259711 8 0.03 264072 * * * ocean.ll 58 124487 7 0.02 124319 3 0.02 122000 office.ll 17 43233 0 0.01 43202 0 0.01 43202 OffsetStream.ll 9 18147 0 0.01 18115 0 0.01 18115 ofstream_ctor.ll 13 28636 0 0.01 28620 0 0.01 28620 oggenc.ll 432 6252845 1 0.50 6251994 * * * oopack_v1p8.ll 48 93691 0 0.02 93670 0 0.01 94249 oourafft.ll 12 212077 0 0.03 212062 0 0.03 212062 OpenArchive.ll 24 360906 0 0.03 360871 0 0.03 360871 OpenCallbackConsole.ll 7 19402 1 0.01 19174 1 0.01 19174 openFiles.ll 1 27101 0 0.01 27076 0 0.01 27076 opening.ll 1 8978 0 0.01 8952 0 0.01 8952 openpl.ll 1 1382 0 0.01 1353 0 0.01 1353 openregn.ll 1 5488 0 0.01 5462 0 0.01 5462 operator.ll 4 6969 0 0.01 6953 0 0.01 6953 oper.ll 17 142262 0 0.02 142244 0 0.02 142244 op.ll 0 6366 0 0.01 6349 0 0.01 6349 opo.ll 10 154964 0 0.02 154934 0 0.02 154934 op_tab.ll 1 21908 0 0.01 21878 0 0.01 21878 option.ll 1 2602 0 0.01 2579 0 0.01 2579 options.ll 20 132186 0 0.02 132168 * * * order.ll 34 90612 2 0.01 90188 0 0.02 90595 Oscar.ll 10 39764 0 0.01 39745 0 0.01 39745 outbig.ll 1 39877 0 0.01 39844 0 0.01 39844 OutBuffer.ll 8 20835 0 0.01 20803 0 0.01 20803 outgeo.ll 1 47164 0 0.01 47131 0 0.01 47131 OutMemStream.ll 14 48489 0 0.01 48457 0 0.01 48457 outpin.ll 1 28776 0 0.01 28743 0 0.01 28743 output.ll 28 165079 0 0.02 165053 0 0.02 164667 outputMetricsData.ll 1 12715 0 0.01 12690 0 0.01 12690 outputQuery.ll 3 11755 0 0.01 11730 0 0.01 11730 outsmall.ll 1 34758 0 0.01 34725 0 0.01 34725 OutStreamWithCRC.ll 6 14726 0 0.01 14686 0 0.01 14686 pabs.ll 1 6194 0 0.01 6167 0 0.01 6167 packet.ll 2 119802 0 0.02 119771 0 0.02 119771 padd.ll 1 19100 0 0.01 19073 0 0.01 19073 pair.ll 16 163777 0 0.02 163747 0 0.02 163747 pairlocalalign.ll 15 177485 0 0.02 177470 0 0.03 177470 paq8p.ll 213 1199141 39 0.11 1182342 * * * par-alloc.ll 1 4233 0 0.01 4210 0 0.01 4210 parse.ll 10 66101 0 0.01 66075 0 0.02 66075 ParseProperties.ll 7 32916 0 0.01 32876 0 0.01 32876 parser.ll 20 150841 0 0.02 150812 0 0.02 150812 parse_settings.ll 2 11472 0 0.01 11444 0 0.01 11444 parsetcommon.ll 4 13392 0 0.01 13371 0 0.01 13371 parset.ll 14 227825 0 0.03 227804 0 0.03 227804 partialsums.ll 3 14658 0 0.01 14634 0 0.01 14634 partitionEntries.ll 1 22312 0 0.01 22287 0 0.01 22287 partition.ll 17 27400 0 0.01 27383 0 0.01 27383 part.ll 4 26410 0 0.01 26380 0 0.01 26380 partQalignmm.ll 10 259060 0 0.03 259045 0 0.03 259045 partSalignmm.ll 10 223543 0 0.03 223528 0 0.03 223528 pass1.ll 1 21929 0 0.01 21902 0 0.01 21902 pass2.ll 1 24560 0 0.01 24533 0 0.01 24533 pat.ll 90 562306 42 0.04 593315 15 0.04 573788 patricia.ll 5 56037 0 0.01 56003 0 0.01 56003 patricia_test.ll 1 18675 0 0.01 18641 0 0.01 18641 pattern.ll 2 8589 0 0.01 8573 0 0.01 8573 Pbkdf2HmacSha1.ll 2 20030 0 0.01 19998 0 0.01 19998 pbmsrch.ll 4 199017 0 0.02 198980 0 0.02 198980 pc1cod.ll 4 30661 0 0.01 30635 0 0.01 30635 pcfrac.ll 17 134568 0 0.02 134541 0 0.02 134541 pcg.ll 17 72576 0 0.01 72547 * * * pcg_struct.ll 16 19663 0 0.01 19634 0 0.01 19634 pcmp.ll 2 17108 0 0.01 17081 0 0.01 17081 pcompress2.ll 1 5430 0 0.01 5400 0 0.01 5400 pconst.ll 0 1193 0 0.01 1166 0 0.01 1166 pdivmod.ll 1 56092 0 0.01 56065 0 0.02 56065 penalty.ll 1 2377 0 0.01 2352 0 0.01 2352 PercentPrinter.ll 6 21343 0 0.01 21307 0 0.01 19541 perimeter.ll 1 12967 0 0.01 12934 0 0.01 12934 perlin.ll 6 22935 0 0.01 22920 0 0.01 22920 Perm.ll 7 10057 0 0.01 10038 0 0.01 10038 perrmesg.ll 4 56145 0 0.01 56111 0 0.01 52565 pfloat.ll 2 11043 0 0.01 11016 0 0.01 11016 pgcd.ll 1 9321 0 0.01 9294 0 0.01 9294 pgm.ll 10 51048 0 0.01 51026 0 0.01 51026 phalf.ll 1 1984 0 0.01 1957 0 0.01 1957 picmp.ll 1 8188 0 0.01 8161 0 0.01 8161 pidiv.ll 1 13345 0 0.01 13318 0 0.01 13318 pifft.ll 39 263480 0 0.03 263455 0 0.03 256056 pi.ll 2 7771 0 0.01 7756 0 0.01 7756 pimod.ll 1 8853 0 0.01 8826 0 0.01 8826 pio.ll 5 29189 0 0.01 29162 0 0.01 29162 placepads.ll 1 117622 0 0.02 117589 0 0.02 117589 placepin.ll 1 45215 0 0.01 45182 0 0.01 45182 plank.ll 27 190719 0 0.02 190703 0 0.03 190703 play.ll 6 16483 0 0.01 16462 0 0.01 16462 plot.ll 7 123729 0 0.02 123700 0 0.02 123700 pmul.ll 1 19536 0 0.01 19509 0 0.01 19509 pneg.ll 1 7311 0 0.01 7284 0 0.01 7284 podd.ll 1 3991 0 0.01 3964 0 0.01 3964 pointer_arithmetic.ll 3 1706 1 0.01 1731 0 0.01 1694 pointer_member.ll 1 2820 0 0.01 2804 0 0.01 2804 pointer_method2.ll 12 17118 0 0.01 17102 0 0.01 17102 pointer_method.ll 4 5767 0 0.01 5751 0 0.01 5751 pointlis.ll 7 36345 0 0.01 36323 0 0.01 36323 point.ll 1 1705 0 0.01 1676 0 0.01 1676 point_relax.ll 12 306051 0 0.03 306022 0 0.03 305834 poisson.ll 1 2668 0 0.01 2646 0 0.01 2646 pops.ll 10 21600 0 0.01 21573 0 0.01 21573 portableio.ll 28 30128 1 0.01 29385 1 0.01 30170 position_values.ll 2 25543 0 0.01 25524 0 0.01 25524 Ppmd7Dec.ll 6 36050 0 0.01 36034 0 0.01 36034 Ppmd7Enc.ll 3 56172 0 0.02 56156 0 0.02 56156 Ppmd7.ll 14 127258 0 0.02 127242 0 0.02 127242 Ppmd8Dec.ll 2 42218 0 0.01 42202 0 0.01 42202 Ppmd8Enc.ll 2 39910 0 0.01 39894 0 0.01 39894 Ppmd8.ll 17 218813 0 0.02 218797 0 0.02 218797 PpmdDecoder.ll 40 81362 0 0.02 81328 * * * PpmdEncoder.ll 24 73540 0 0.02 73506 0 0.02 70726 PpmdHandler.ll 34 195865 0 0.02 195832 0 0.03 195832 PpmdRegister.ll 5 14936 0 0.01 14902 0 0.01 14902 PpmdZip.ll 18 67245 3 0.01 64946 3 0.01 64946 ppowmod.ll 1 11109 0 0.01 11082 0 0.01 11082 PR1386.ll 1 2570 0 0.01 2558 0 0.01 2558 PR491.ll 3 4997 0 0.01 4985 0 0.01 4985 PR640.ll 4 19066 0 0.01 19054 0 0.01 19054 prboard.ll 1 24762 0 0.01 24729 0 0.01 24729 prepair.ll 1 8790 0 0.01 8757 0 0.01 8757 preprocess.ll 1 12481 0 0.01 12451 0 0.01 12451 prestrict.ll 1 16735 0 0.01 16702 0 0.01 16702 primes.ll 9 14036 0 0.01 14005 0 0.01 14005 printargs.ll 1 2837 0 0.01 2828 0 0.01 2828 printgph.ll 1 12861 0 0.01 12828 0 0.01 12828 print.ll 4 23223 0 0.01 23193 0 0.01 23193 printnets.ll 1 17393 0 0.01 17360 0 0.01 17360 procesnet.ll 3 102636 0 0.02 102603 0 0.02 102603 procquery.ll 2 37292 0 0.01 37258 0 0.01 37258 ProgressMt.ll 9 27557 0 0.01 27525 0 0.01 27525 ProgressUtils.ll 10 28959 0 0.01 28927 0 0.01 28927 project.ll 3 13384 0 0.01 13355 0 0.01 13355 proofcheck.ll 122 207733 8 0.02 206375 0 0.03 207716 PropIDUtils.ll 2 65132 0 0.01 65097 0 0.01 65097 PropVariantConversions.ll 4 45669 0 0.01 45641 0 0.01 45641 PropVariant.ll 23 90547 2 0.01 84417 2 0.01 82355 pseudo.ll 11 132106 0 0.02 132076 0 0.01 132076 psqrt.ll 1 7056 0 0.01 7029 0 0.00 7029 psub.ll 1 20187 0 0.00 20160 0 0.01 20160 psymodel.ll 2 270891 0 0.03 270860 0 0.03 270860 ptalloc.ll 3 6768 0 0.01 6734 0 0.01 6734 ptoa.ll 1 16862 0 0.01 16835 0 0.01 16835 ptou.ll 1 7432 0 0.01 7405 0 0.01 7405 puzzle.ll 7 13008 0 0.01 12984 0 0.01 12984 Puzzle.ll 8 59672 0 0.01 59653 0 0.01 59653 pw.ll 6 31350 0 0.01 31319 0 0.01 28916 Qalignmm.ll 14 343623 0 0.04 343608 0 0.04 343608 q_matrix.ll 8 180117 0 0.02 180096 0 0.03 180096 q_offsets.ll 9 107882 0 0.02 107861 0 0.02 107861 QRfact.ll 4 32855 0 0.01 32833 0 0.01 32833 quantize.ll 9 203265 0 0.03 203234 0 0.03 203234 quantize-pvt.ll 14 149399 0 0.02 149368 0 0.02 149368 QuantumDecoder.ll 29 168313 0 0.02 168279 0 0.02 165422 queens.ll 4 24087 0 0.01 24070 0 0.01 24070 Queens.ll 6 16571 0 0.01 16552 0 0.01 16552 query.ll 1 16747 0 0.01 16722 0 0.01 16722 queue.ll 4 8925 0 0.01 8909 0 0.01 8909 Quicksort.ll 6 14846 0 0.01 14827 0 0.01 14827 rad2deg.ll 2 2052 0 0.01 2014 0 0.01 2014 Ralignmm.ll 8 207016 0 0.03 207001 0 0.03 207001 RandGen.ll 4 16724 0 0.01 16692 0 0.01 16692 random.ll 3 4973 0 0.01 4954 0 0.01 4954 Random.ll 7 22081 0 0.01 22061 0 0.01 22061 ratectl.ll 9 51434 0 0.01 51413 0 0.02 51413 rawcaudio.ll 1 5109 0 0.01 5073 0 0.01 5073 rawdaudio.ll 1 5091 0 0.01 5055 0 0.01 5055 ray.ll 79 139066 5 0.02 139086 2 0.02 139360 rc4.ll 3 19957 0 0.01 19931 0 0.01 19931 rc_quadratic.ll 33 606928 0 0.06 606907 0 0.06 606907 rdbmp.ll 8 101085 0 0.02 101052 0 0.02 101052 rdcolmap.ll 6 48834 0 0.01 48803 0 0.01 48803 rdgif.ll 15 124563 0 0.02 124530 0 0.02 124530 rdopt_coding_state.ll 4 55171 0 0.01 55150 0 0.01 55150 rdopt.ll 36 1039504 0 0.09 1039483 0 0.10 1039483 rdpicdecision.ll 2 29320 0 0.01 29299 0 0.01 29299 rdppm.ll 12 88765 0 0.02 88732 0 0.01 88732 rdrle.ll 0 452 0 0.01 419 0 0.01 419 rdswitch.ll 7 56495 0 0.01 56462 0 0.01 56462 rdtarga.ll 13 92778 0 0.02 92745 0 0.01 92745 readcells.ll 1 326607 0 0.03 326574 0 0.03 326574 read_dmatrix.ll 4 14275 0 0.01 14256 0 0.01 14256 reader.ll 23 204451 0 0.03 204425 0 0.03 204425 readgeo.ll 1 60074 0 0.01 60041 0 0.01 60041 readgraph.ll 1 46378 0 0.01 46345 0 0.01 46345 readlist.ll 1 10110 0 0.01 10085 0 0.01 10085 readnets.ll 1 36282 0 0.01 36249 0 0.01 36249 readpar.ll 1 177341 0 0.02 177308 0 0.03 177308 readpnode.ll 1 137417 0 0.02 137384 0 0.02 137384 RealMM.ll 6 12579 0 0.01 12560 0 0.01 12560 rebin.ll 1 19627 0 0.01 19594 0 0.01 19594 recon.ll 3 88529 0 0.02 88494 0 0.02 88494 record.ll 6 17092 0 0.01 17062 0 0.01 17062 recursive.ll 6 10689 0 0.01 10665 0 0.01 10665 recursive-throw.ll 7 10633 2 0.01 10757 1 0.01 10495 reduceg.ll 1 194285 0 0.02 194252 0 0.02 194252 reduce.ll 6 67159 0 0.01 67129 0 0.02 67129 ReedSolomon.ll 7 105688 0 0.02 105673 0 0.02 105673 refbuf.ll 7 17781 0 0.01 17760 0 0.01 17760 reg_detect.ll 12 35131 0 0.01 35093 0 0.01 35093 regex.ll 0 453 0 0.01 419 0 0.01 419 relax.ll 1 15238 0 0.01 15211 0 0.01 15211 rem.ll 2 86540 0 0.01 86517 0 0.01 86517 renaming.ll 96 315158 5 0.03 313834 0 0.03 302813 reservoir.ll 4 16376 0 0.01 16345 0 0.01 16345 resolution.ll 24 37915 0 0.01 37898 0 0.01 37898 resolve.ll 2 31249 0 0.01 31218 0 0.01 31218 reversefile.ll 117 191493 10 0.02 190376 6 0.02 191097 rglobals.ll 0 2330 0 0.01 2297 0 0.01 2297 richards_benchmark.ll 15 42180 0 0.01 42165 0 0.01 42165 rk.ll 387 1950440 103 0.17 1871681 * * * rmain.ll 1 44611 0 0.01 44578 0 0.01 44578 rmatmult3.ll 1 44876 0 0.01 44849 0 0.01 44849 rna.ll 7 143455 0 0.02 143440 0 0.02 134851 roadlet.ll 10 18018 0 0.01 17989 0 0.01 17989 rotate.ll 1 1688 0 0.01 1659 0 0.01 1659 routenet.ll 2 119348 0 0.02 119315 0 0.02 119315 rows.ll 13 64096 0 0.01 64066 0 0.01 64066 rpe.ll 8 58758 0 0.01 58728 0 0.01 58728 rpos.ll 50 98419 1 0.01 98187 0 0.01 98402 rtp.ll 3 19364 0 0.01 19333 0 0.01 19333 rule.ll 3 7985 0 0.01 7969 0 0.01 7969 rules-inf.ll 205 681850 13 0.05 681793 2 0.06 678552 rules-red.ll 240 699484 15 0.06 702599 2 0.07 693655 rules-sort.ll 137 323874 10 0.03 320965 2 0.03 323149 rules-split.ll 63 98876 3 0.01 100267 0 0.02 98859 rules-ur.ll 88 112031 7 0.02 109646 2 0.02 111316 SAalignmm.ll 3 87431 0 0.02 87416 0 0.01 87416 Salignmm.ll 14 266793 0 0.03 266778 0 0.03 266778 salsa20.ll 3 36062 0 0.01 36047 0 0.01 36047 savewolf.ll 2 130823 0 0.02 130790 0 0.01 130790 scan_line.ll 7 36711 0 0.01 36681 0 0.01 36681 scan.ll 12 90419 0 0.02 90399 0 0.02 90399 scimark2.ll 3 31764 0 0.01 31744 0 0.01 31744 scrapnet.ll 1 9001 0 0.01 8968 0 0.01 8968 scrappin.ll 1 5020 0 0.01 4987 0 0.01 4987 SearchGame.ll 23 69760 0 0.02 69735 0 0.01 69735 search.ll 8 56463 0 0.01 56432 0 0.01 56432 seed.ll 1 1269 0 0.01 1243 0 0.01 1243 seidel-2d.ll 12 23212 0 0.01 23173 0 0.01 23173 sei.ll 53 230283 0 0.03 230262 0 0.03 233470 selectpin.ll 1 26752 0 0.01 26719 0 0.01 26719 semi_interp.ll 4 139971 0 0.02 139942 0 0.02 139942 semi_restrict.ll 4 107446 0 0.02 107417 0 0.02 107417 setc.ll 13 101613 0 0.01 101583 0 0.02 98831 sethand.ll 1 8398 0 0.01 8372 0 0.01 8372 set_key.ll 5 31563 0 0.01 31536 0 0.01 31536 set.ll 50 180298 0 0.03 180268 0 0.02 175676 setMetricsData.ll 1 5580 0 0.01 5555 0 0.01 5555 SetProperties.ll 7 71034 0 0.01 70999 0 0.01 70999 setpwates.ll 1 9223 0 0.01 9190 0 0.01 9190 sgefa.ll 1 16061 0 0.01 16044 0 0.01 16044 sgesl.ll 1 20330 0 0.01 20313 0 0.01 20313 sgrep.ll 17 183695 0 0.03 183669 0 0.03 183669 Sha1.ll 8 64276 0 0.02 64244 0 0.01 64244 Sha256.ll 4 31088 0 0.01 31072 0 0.01 31072 sha_driver.ll 1 5455 0 0.01 5425 0 0.01 5425 sha.ll 7 35560 0 0.01 35530 0 0.01 35530 shared_cdiff.ll 13 144745 0 0.02 144727 0 0.02 144727 shared_cfgparser.ll 8 135576 1 0.02 133035 1 0.02 133035 shared_getopt.ll 0 445 0 0.01 427 0 0.01 427 shared_misc.ll 8 46212 0 0.01 46194 0 0.02 46194 shared_network.ll 1 4089 0 0.01 4071 0 0.01 4071 shared_options.ll 7 47416 0 0.01 47398 0 0.01 47398 shared_output.ll 5 33691 0 0.01 33673 0 0.01 33673 shared_sha256.ll 6 147998 0 0.02 147980 0 0.02 147980 sharing.ll 99 136835 5 0.02 137142 3 0.02 134461 sharp.ll 10 64523 0 0.01 64493 0 0.02 62377 shell.ll 32 530015 0 0.05 529996 0 0.05 529996 short_circuit_dtor.ll 6 7899 0 0.01 7883 0 0.01 7883 shortpath.ll 1 11220 0 0.01 11187 0 0.01 11187 short_term.ll 10 77386 0 0.01 77356 0 0.01 76416 showbord.ll 1 61149 0 0.01 61123 0 0.02 61123 showinst.ll 2 10883 0 0.01 10857 0 0.01 10857 ShrinkDecoder.ll 8 60165 0 0.02 60131 0 0.02 60131 shr.ll 17 14329 0 0.01 14306 0 0.01 14429 sieve.ll 2 7338 0 0.01 7319 0 0.01 7319 sig.ll 3 54374 0 0.01 54357 0 0.01 54357 sim4b1.ll 41 612189 0 0.06 612170 0 0.06 612170 sim4.init.ll 14 155560 0 0.02 155541 0 0.02 155541 sim_debug.ll 1 10622 0 0.01 10592 0 0.01 10592 sim.ll 16 297969 0 0.03 297956 0 0.03 297956 simple.ll 3 13217 0 0.01 13201 0 0.01 13201 simple_rethrow.ll 4 7766 0 0.01 7747 0 0.01 7747 simple_throw.ll 3 4769 0 0.01 4750 0 0.01 4750 simple_types_constant_folding.ll 892 1318975 228 0.40 1097834 * * * simple_types_loop_invariant.ll 510 1079518 16 0.15 1071531 * * * simulate.ll 56 78172 4 0.01 76069 2 0.01 76246 siod.ll 1 3136 0 0.01 3120 0 0.01 3120 skeleton.ll 3 27643 0 0.01 27625 0 0.01 27625 skels.ll 0 22939 0 0.01 22921 0 0.01 22921 sliba.ll 152 607878 0 0.06 607862 0 0.07 594324 slib.ll 216 650836 1 0.07 648958 * * * slibu.ll 124 377451 0 0.04 377435 0 0.04 376389 slice.ll 17 324369 0 0.03 324348 0 0.03 324348 smallpt.ll 17 81662 0 0.02 81642 0 0.02 81914 smg2000.ll 3 151681 0 0.02 151652 0 0.02 151652 smg2_setup_rap.ll 5 499522 0 0.04 499493 0 0.04 499493 smg3_setup_rap.ll 5 1137824 0 0.10 1137795 0 0.10 1137795 smg_axpy.ll 1 53194 0 0.01 53165 0 0.01 53165 smg.ll 15 86226 0 0.01 86197 * * * smg_relax.ll 26 133927 0 0.02 133898 * * * smg_residual.ll 5 144063 0 0.02 144034 0 0.02 144034 smg_setup_interp.ll 2 82572 0 0.02 82543 0 0.01 82543 smg_setup.ll 1 125658 0 0.02 125629 0 0.02 125629 smg_setup_rap.ll 2 16139 0 0.01 16110 0 0.01 16110 smg_setup_restrict.ll 2 4625 0 0.01 4596 0 0.01 4596 smg_solve.ll 1 54745 0 0.01 54716 0 0.01 54716 sminterf.ll 1 12591 0 0.01 12561 0 0.01 12561 solution.ll 7 17336 0 0.01 17306 0 0.01 17306 Solver.ll 173 422515 23 0.05 414120 11 0.05 410962 SOR.ll 2 8689 0 0.01 8669 0 0.01 8669 sort.ll 12 187687 0 0.03 187658 0 0.02 163059 Sort.ll 1 9528 0 0.01 9512 0 0.01 9512 SortUtils.ll 3 14655 0 0.01 14620 0 0.01 14620 space.ll 1 4127 0 0.01 4098 0 0.01 4098 SparseCompRow.ll 2 6976 0 0.01 6956 0 0.01 6956 sparse.ll 2 33570 0 0.01 33540 0 0.01 33540 spatscal.ll 7 61533 0 0.01 61498 0 0.01 61498 spectral-norm.ll 6 15472 0 0.01 15448 0 0.01 13901 SPEdriver.ll 1 11399 0 0.01 11368 0 0.01 11368 spellcheck.ll 111 213987 7 0.02 213104 6 0.03 212910 sphereflake.ll 44 94579 0 0.02 94552 0 0.02 95263 SphereTriangleDetector.ll 50 138184 3 0.02 136305 3 0.02 136863 spiff.ll 4 36523 0 0.01 36506 0 0.01 36506 spirit.ll 3606 8267982 1639 2.68 7833264 * * * splay2.ll 10 63551 0 0.01 63529 0 0.01 63529 splay.ll 8 36831 0 0.01 36809 0 0.01 36809 SplitHandler.ll 36 338819 1 0.04 336120 1 0.03 335133 splitNode.ll 1 8360 0 0.01 8335 0 0.01 8335 sqlite3.ll 1054 7247672 4 0.71 7245842 * * * sse.expandfft.ll 9 75273 0 0.02 75253 0 0.01 75253 sse.isamax.ll 13 32431 0 0.00 32411 0 0.00 32411 sse.shift.ll 6 7035 0 0.01 7015 0 0.01 7015 sse.stepfft.ll 11 53308 0 0.01 53288 0 0.02 53288 stack.ll 0 552 0 0.01 535 0 0.01 535 stats.ll 7 153843 0 0.02 153814 0 0.02 154514 stcopy.ll 3 7686 0 0.01 7652 0 0.01 7652 StdInStream.ll 9 29832 0 0.01 29805 0 0.01 29805 StdOutStream.ll 12 18089 0 0.01 18062 0 0.01 18062 stepanov_abstraction.ll 188 481183 24 0.05 489762 0 0.05 448404 stepanov_container.ll 330 668695 30 0.06 672872 * * * stepanov_v1p2.ll 127 172226 25 0.02 166489 0 0.02 178347 stepanov_vector.ll 209 521683 6 0.04 522153 * * * st.ll 113 202063 3 0.03 200965 0 0.03 179793 stmtexpr.ll 11 22838 1 0.01 22853 0 0.01 22827 Stopwatch.ll 8 10525 0 0.01 10505 0 0.01 10505 storage.ll 25 115739 0 0.02 115719 0 0.02 115719 store.ll 11 112741 0 0.02 112706 0 0.02 112706 strcat.ll 2 8533 0 0.01 8514 0 0.01 8514 StreamBinder.ll 19 43821 3 0.01 41530 3 0.01 41530 stream.ll 27 79123 1 0.02 78972 0 0.01 79099 StreamObjects.ll 39 82708 10 0.02 76284 10 0.02 77205 StreamUtils.ll 4 10104 0 0.01 10072 0 0.01 9117 StringConvert.ll 3 44398 0 0.01 44371 0 0.01 44371 stringI.ll 2 5591 0 0.01 5561 0 0.01 5561 string.ll 4 13069 0 0.01 13053 0 0.01 13053 strings.ll 9 14102 0 0.01 14085 0 0.01 14085 StringToInt.ll 5 10573 0 0.01 10546 0 0.01 10546 str.ll 2 14960 0 0.01 14929 0 0.01 14929 struct_axpy.ll 1 47495 0 0.01 47466 0 0.01 47466 struct_copy.ll 1 47195 0 0.01 47166 0 0.01 47166 struct_grid.ll 13 128736 0 0.02 128707 0 0.01 128707 struct_innerprod.ll 1 48675 0 0.01 48646 0 0.01 48646 struct_io.ll 2 73939 0 0.01 73910 0 0.02 73910 struct_matrix.ll 14 261655 0 0.02 261626 0 0.03 261626 struct_matrix_mask.ll 1 25141 0 0.01 25112 0 0.01 25112 struct_matvec.ll 5 699941 0 0.06 699912 0 0.06 699912 StructModifyTest.ll 2 5693 0 0.01 5684 0 0.01 5684 struct_scale.ll 1 32911 0 0.01 32882 0 0.01 32882 struct_stencil.ll 5 29224 0 0.01 29195 0 0.01 29195 struct_vector.ll 19 328103 0 0.03 328074 0 0.03 328074 student2.ll 32 70920 2 0.01 70847 0 0.01 70866 student3.ll 35 147276 1 0.02 147172 0 0.02 147183 suboptalign11.ll 4 103224 0 0.02 103209 0 0.01 103209 subspic.ll 6 36624 0 0.01 36589 0 0.01 36589 subst.ll 79 104379 6 0.02 103147 0 0.02 102930 subsumption.ll 129 312529 7 0.03 310822 0 0.03 306700 suicide.ll 1 7123 0 0.01 7097 0 0.01 7097 sumarray2d.ll 2 7997 0 0.01 7985 0 0.01 7985 sumarray-dbl.ll 2 7099 0 0.01 7083 0 0.01 7083 sumarray.ll 2 5552 0 0.01 5536 0 0.01 5536 sumarraymalloc.ll 5 8625 0 0.01 8613 0 0.01 8613 sumcol.ll 15 21294 0 0.01 21269 0 0.01 21269 support.ll 10 85089 0 0.01 85055 0 0.01 85055 susan.ll 21 617846 0 0.06 617812 0 0.06 617812 symbol.ll 10 28263 0 0.01 28234 0 0.01 28521 symm.ll 12 28959 0 0.01 28911 0 0.01 28911 sym_tab.ll 3 9832 0 0.01 9802 0 0.01 9802 symtab.ll 5 13680 0 0.01 13654 0 0.01 13654 Synchronization.ll 2 8448 0 0.01 8420 0 0.01 8420 syr2k.ll 12 29029 0 0.01 28980 0 0.01 28980 syrk.ll 12 25741 0 0.01 25693 0 0.01 25693 sysspec.ll 13 18074 0 0.01 18058 0 0.01 18058 System.ll 2 951 0 0.01 923 0 0.01 923 systems.ll 4 21729 0 0.01 21694 0 0.01 21694 t0.ll 0 3318 0 0.01 3289 0 0.01 3289 t1.ll 5 13744 0 0.01 13715 0 0.01 13715 t2.ll 1 1804 0 0.01 1775 0 0.01 1775 t3.ll 3 25197 0 0.01 25168 0 0.01 25168 t4.ll 3 56996 0 0.01 56967 0 0.01 56967 t5.ll 6 43209 0 0.01 43180 0 0.01 43180 t6.ll 3 66686 0 0.02 66657 0 0.02 66657 t7.ll 5 36589 0 0.01 36560 0 0.01 36560 t8.ll 5 90129 0 0.02 90100 0 0.01 90100 t9.ll 2 19777 0 0.01 19748 0 0.01 19748 tabinit.ll 1 14119 0 0.01 14088 0 0.01 14088 tableau.ll 84 143254 2 0.02 143678 0 0.02 143237 table.ll 0 1579 0 0.01 1549 0 0.01 1549 tables.ll 0 138426 0 0.03 138395 0 0.03 138395 takehiro.ll 13 142905 0 0.02 142874 0 0.02 135038 TarHandler.ll 47 276066 0 0.03 276029 0 0.03 277983 TarHandlerOut.ll 10 111777 0 0.02 111740 0 0.02 111740 TarHeader.ll 0 1646 0 0.01 1609 0 0.01 1609 TarIn.ll 2 174170 0 0.02 174133 0 0.02 174133 TarOut.ll 12 129179 0 0.02 129142 0 0.02 129142 TarRegister.ll 3 5838 0 0.01 5801 0 0.01 5801 TarUpdate.ll 4 114936 0 0.02 114899 0 0.02 114899 tb.ll 5 19696 0 0.01 19667 0 0.01 19667 tc.ll 2 14780 0 0.01 14751 0 0.01 14751 tddis.ll 30 182849 0 0.02 182834 0 0.02 182834 te.ll 4 12099 0 0.01 12070 0 0.01 12070 TempFiles.ll 1 3553 0 0.01 3518 0 0.01 3518 terminator.ll 85 104938 7 0.01 102553 2 0.02 104223 term.ll 12 29629 0 0.01 29598 0 0.01 29598 test2loop.ll 1 50498 0 0.01 50465 0 0.01 50465 testbench.ll 1 8198 0 0.01 8172 0 0.01 8172 test_indvars.ll 2 11043 0 0.01 11031 0 0.01 11031 test.ll 7 16845 0 0.01 16826 0 0.01 16826 testloop.ll 1 49203 0 0.01 49170 0 0.01 49170 TestLoop.ll 2 3938 0 0.01 3929 0 0.01 3929 testtrace.ll 3 7048 0 0.01 7036 0 0.01 7036 textloc.ll 13 155311 0 0.02 155289 0 0.02 155289 tf.ll 7 10532 0 0.01 10503 0 0.01 10503 tg.ll 2 22589 0 0.01 22560 0 0.01 22560 tgood.ll 9 106366 0 0.02 106335 0 0.01 106335 threading.ll 0 452 0 0.01 423 0 0.01 423 Threads.ll 17 20611 1 0.01 19977 1 0.01 19977 throw_rethrow_test.ll 5 14502 0 0.01 14483 0 0.01 14483 ti.ll 3 16281 0 0.01 16252 0 0.01 16252 time.ll 1 1170 0 0.01 1149 0 0.00 1149 Time.ll 6 10667 0 0.00 10639 0 0.00 10639 timer.ll 2 2331 0 0.01 2306 0 0.01 2306 timestatus.ll 4 18765 0 0.01 18734 0 0.01 18734 timing.ll 7 55245 0 0.01 55216 0 0.02 55216 t..ll 0 445 0 0.01 416 0 0.01 416 tls.ll 2 3273 0 0.01 3256 0 0.01 3256 tm.ll 2 14509 0 0.01 14480 0 0.01 14480 toast_alaw.ll 2 18530 0 0.01 18500 0 0.01 18500 toast_audio.ll 4 15882 0 0.01 15852 0 0.01 15852 toast_lin.ll 2 2526 0 0.01 2496 0 0.01 2496 toast.ll 29 108797 0 0.02 108767 0 0.02 108767 toast_ulaw.ll 2 31971 0 0.01 31941 0 0.01 31941 toggle_move.ll 10 43960 0 0.01 43941 0 0.02 44005 token.ll 1 2866 0 0.01 2849 0 0.01 2849 token_stream.ll 10 54298 0 0.01 54273 0 0.01 54273 tol.ll 14 27300 0 0.01 27283 0 0.01 27283 top.ll 137 311177 6 0.03 308747 2 0.03 310415 Towers.ll 12 18539 0 0.01 18520 0 0.01 18520 trace.ll 11 34795 0 0.01 34779 0 0.01 34779 traits.ll 7 25582 0 0.01 25563 0 0.01 25563 tramp3d-v4.ll 9738 17955754 2880 4.83 17589374 * * * transform8x8.ll 12 491518 0 0.04 491497 0 0.05 491497 trans.ll 9 27788 0 0.01 27767 0 0.01 27767 tree.ll 29 75173 0 0.02 75143 0 0.01 75143 Treesort.ll 8 20035 0 0.01 20016 0 0.01 20016 Triang.ll 4 30696 0 0.01 30674 0 0.01 30674 trie.ll 12 33266 0 0.01 33243 0 0.01 33243 trig.ll 9 38056 0 0.01 38033 0 0.01 38242 trim.ll 7 106745 0 0.02 106729 0 0.02 106729 trisolv.ll 12 21126 0 0.01 21075 0 0.01 21075 trmm.ll 12 21556 0 0.01 21508 0 0.01 21508 tsc.ll 16 903509 0 0.08 903481 0 0.09 903481 ts.ll 7 10154 0 0.01 10125 0 0.01 10125 tsp.ll 6 47043 0 0.01 47024 0 0.01 47024 tt.ll 8 20968 0 0.01 20939 0 0.01 20939 tu.ll 8 54279 0 0.02 54250 0 0.02 54250 tv.ll 4 33827 0 0.01 33798 0 0.01 33798 twstats.ll 1 9163 0 0.01 9130 0 0.01 9130 types.ll 5 28646 0 0.01 28618 0 0.01 28618 uaspect.ll 1 131956 0 0.02 131923 0 0.02 131923 ufixnet.ll 1 20191 0 0.01 20158 0 0.01 20158 ufixpin.ll 1 12269 0 0.01 12236 0 0.01 12236 uint64_to_float.ll 3 28545 0 0.01 28533 0 0.01 28533 uloop.ll 5 166780 0 0.02 166747 0 0.03 166747 unarithmetic.ll 7 23924 0 0.01 23894 0 0.01 23894 unate.ll 9 108265 0 0.02 108235 0 0.02 108235 unbust.ll 14 96676 0 0.02 96643 0 0.02 92375 uncompress.ll 3 21767 0 0.01 21737 0 0.01 21737 unify.ll 63 143248 2 0.02 142595 0 0.02 143231 unpk.ll 1582 8373017 433 0.64 8067066 * * * UpdateAction.ll 0 1327 0 0.00 1292 0 0.01 1292 UpdateCallbackConsole.ll 20 72676 0 0.02 72640 0 0.01 72640 UpdateCallback.ll 39 176590 1 0.02 176018 1 0.02 174095 Update.ll 47 658165 5 0.05 655500 * * * updateMetricsData.ll 1 9252 0 0.01 9227 0 0.01 9227 UpdatePair.ll 9 112528 0 0.02 112493 0 0.01 112493 UpdateProduce.ll 1 13440 0 0.01 13405 0 0.01 13405 upin.ll 1 56064 0 0.02 56031 0 0.02 56031 upinswap.ll 1 60644 0 0.01 60611 0 0.01 60611 url.ll 3 12115 0 0.01 12084 0 0.01 12084 userfun.ll 1 1367 0 0.01 1352 0 0.01 1352 UserInputUtils.ll 4 41300 0 0.01 41264 0 0.01 41264 usite0.ll 1 14171 0 0.01 14138 0 0.01 14138 usite1.ll 1 16955 0 0.01 16922 0 0.01 16922 usite2.ll 1 23364 0 0.01 23331 0 0.01 23331 usiteo1.ll 1 15007 0 0.01 14974 0 0.01 14974 usiteo2.ll 1 23854 0 0.01 23821 0 0.01 23821 usoftnet.ll 1 21867 0 0.01 21834 0 0.01 21834 usoftpin.ll 1 16314 0 0.01 16281 0 0.01 16281 utemp.ll 1 13367 0 0.01 13334 0 0.01 13334 UTFConvert.ll 2 42558 0 0.01 42531 0 0.01 42531 utilities.ll 9 21629 0 0.01 21603 0 0.01 21603 utility.ll 3 4801 0 0.01 4771 0 0.01 4771 util.ll 22 79529 0 0.02 79509 0 0.02 79509 utils.ll 1 3560 0 0.01 3529 0 0.01 3529 utop.ll 1 4937 0 0.01 4910 0 0.01 4910 utrace.ll 9 6657 3 0.01 6196 0 0.01 6633 uudecode.ll 6 23057 0 0.01 23030 0 0.01 23030 uuencode.ll 7 28770 0 0.01 28743 0 0.01 28743 valid.ll 2 13666 0 0.01 13641 0 0.01 13641 vbrquantize.ll 5 67602 0 0.01 67571 0 0.02 67571 VbrTag.ll 8 51601 0 0.01 51570 0 0.01 51570 vcg.ll 18 130799 0 0.02 130776 0 0.02 128377 vcirc.ll 14 15860 0 0.01 15830 0 0.01 15830 vector.ll 7 7822 0 0.01 7799 0 0.01 8727 vehicle.ll 23 44862 0 0.01 44833 0 0.01 44833 verify.ll 0 455 0 0.01 420 0 0.01 420 version.ll 4 4038 0 0.01 4007 0 0.01 4007 VirtThread.ll 5 14767 0 0.01 14735 0 0.01 14735 visual.ll 2 1713 0 0.01 1696 0 0.01 1696 vla.ll 5 9414 0 0.01 9405 0 0.01 9405 vlalloc.ll 3 15326 0 0.01 15292 0 0.01 15292 vlc.ll 33 148671 0 0.02 148650 0 0.02 142630 vl_comp.ll 2 15625 0 0.01 15591 0 0.01 15591 volume.ll 1 4513 0 0.01 4488 0 0.01 4488 vor.ll 12 87187 0 0.02 87165 0 0.02 87165 vprobes.ll 2 94612 0 0.01 94579 0 0.01 94579 walksub.ll 1 7504 0 0.01 7486 0 0.01 7486 warshall.ll 2 9631 0 0.01 9605 0 0.01 9605 watesides.ll 1 20153 0 0.01 20120 0 0.01 20120 wc.ll 21 30760 0 0.01 30735 0 0.01 30735 weighted_prediction.ll 8 238338 0 0.03 238317 0 0.02 238317 whetstone.ll 6 48962 0 0.01 48947 0 0.02 48947 Wildcard.ll 43 294055 0 0.03 294028 0 0.03 291611 wine_date_and_time.ll 9 28490 0 0.01 28460 0 0.01 27935 wirecosts.ll 1 15973 0 0.01 15940 0 0.01 15940 wireest.ll 2 15356 0 0.01 15323 0 0.01 19306 wireratio.ll 25 112740 0 0.02 112707 0 0.02 110112 wordfreq.ll 147 330838 9 0.03 330149 4 0.03 331225 woverlapf.ll 1 51817 0 0.01 51784 0 0.01 51784 woverlap.ll 1 48945 0 0.01 48912 0 0.01 48912 woverlapx.ll 1 55231 0 0.01 55198 0 0.02 55198 wrbmp.ll 8 92126 0 0.01 92095 0 0.01 92095 wrgif.ll 14 82861 0 0.02 82830 0 0.02 82830 write_ctables.ll 29 420986 0 0.04 420973 0 0.04 421299 wrppm.ll 7 43643 0 0.01 43612 0 0.01 43612 wrrle.ll 0 450 0 0.01 419 0 0.01 419 wrtarga.ll 7 49294 0 0.01 49263 0 0.01 49263 WzAes.ll 45 109290 7 0.02 101956 7 0.02 96933 xgets.ll 1 11709 0 0.01 11678 0 0.01 11678 xgraph.ll 1 83713 0 0.01 83680 0 0.02 83680 XzCrc64.ll 3 6787 0 0.01 6771 0 0.01 6771 XzDec.ll 22 116114 0 0.02 116098 0 0.02 116098 XzEnc.ll 14 42487 0 0.01 42471 0 0.02 42471 XzHandler.ll 68 314940 3 0.03 315018 0 0.03 313654 XzIn.ll 9 45789 0 0.01 45773 0 0.01 45773 Xz.ll 7 10667 0 0.01 10651 0 0.01 10651 ygraph.ll 1 83322 0 0.02 83289 0 0.01 83289 y.tab.ll 2 57202 0 0.01 57281 0 0.02 57281 z01.ll 4 249374 0 0.03 249340 0 0.03 249340 z02.ll 10 358729 0 0.03 358695 0 0.03 358695 z03.ll 26 255270 0 0.03 255236 0 0.03 255236 z04.ll 3 31114 0 0.01 31080 0 0.01 31080 z05.ll 6 789376 0 0.07 789342 0 0.07 789342 z06.ll 8 1511562 0 0.12 1511528 0 0.12 1511528 z07.ll 9 621070 0 0.05 621036 0 0.05 621036 z08.ll 9 2429711 0 0.19 2429677 0 0.19 2429677 z09.ll 7 224791 0 0.03 224757 0 0.02 224757 z10.ll 11 687914 0 0.06 687880 0 0.06 687880 z11.ll 6 201196 0 0.03 201162 0 0.02 182154 z12.ll 5 1299812 0 0.11 1299778 0 0.11 1299778 z13.ll 4 350569 0 0.03 350535 0 0.03 350535 z14.ll 1 819014 0 0.06 818980 0 0.07 818980 z15.ll 10 235166 0 0.03 235132 0 0.03 235132 z16.ll 4 216158 0 0.02 216124 0 0.02 216124 z17.ll 4 71142 0 0.01 71108 0 0.02 71108 z18.ll 5 586018 0 0.05 585984 0 0.05 585984 z19.ll 5 904309 0 0.08 904275 0 0.08 904275 z20.ll 2 777109 0 0.06 777075 0 0.06 777075 z21.ll 1 443111 0 0.04 443077 0 0.04 443077 z22.ll 12 1244660 0 0.09 1244626 0 0.10 1244626 z23.ll 3 656308 0 0.06 656274 0 0.05 656274 z24.ll 0 34384 0 0.01 34350 0 0.01 34350 z25.ll 0 451 0 0.01 417 0 0.01 417 z26.ll 3 51862 0 0.01 51828 0 0.01 51828 z27.ll 0 451 0 0.01 417 0 0.01 417 z28.ll 7 31253 0 0.01 31219 0 0.01 31219 z29.ll 22 359555 0 0.04 359521 0 0.03 359521 z30.ll 7 47515 0 0.01 47481 0 0.01 47481 z31.ll 2 20707 0 0.01 20673 0 0.01 20673 z32.ll 1 53550 0 0.01 53516 0 0.01 53516 z33.ll 13 328775 0 0.03 328741 0 0.04 328741 z34.ll 1 20742 0 0.01 20708 0 0.01 20708 z35.ll 3 410621 0 0.03 410587 0 0.04 410587 z36.ll 12 354997 0 0.03 354963 0 0.04 354963 z37.ll 20 786388 0 0.07 786354 0 0.07 781506 z38.ll 13 419389 0 0.04 419355 0 0.04 419355 z39.ll 7 53303 0 0.01 53269 0 0.01 53269 z40.ll 6 135810 0 0.02 135776 0 0.02 135776 z41.ll 8 197252 0 0.02 197218 0 0.03 197218 z42.ll 7 66774 0 0.01 66740 0 0.01 66740 z43.ll 10 162291 0 0.02 162257 0 0.02 162257 z44.ll 7 714200 0 0.06 714166 0 0.06 714166 z45.ll 6 22350 0 0.01 22316 0 0.01 22316 z46.ll 4 463428 0 0.04 463394 0 0.04 463394 z47.ll 5 216156 0 0.03 216122 0 0.02 216122 z48.ll 59 296891 0 0.04 296857 0 0.04 295314 z49.ll 32 342979 0 0.04 342945 0 0.04 342945 z50.ll 23 102145 1 0.02 101702 1 0.02 101702 z51.ll 23 53684 1 0.01 53243 1 0.01 53243 zalloc.ll 3 4819 0 0.01 4803 0 0.01 4803 zarith.ll 12 55152 0 0.02 55128 0 0.02 54189 zarray.ll 5 18535 0 0.01 18511 0 0.01 18511 zchar.ll 20 100759 0 0.02 100735 0 0.02 99275 zcolor.ll 4 8759 0 0.01 8735 0 0.01 8735 zcontrol.ll 18 61047 0 0.02 61023 0 0.02 61023 ZDecoder.ll 16 73858 0 0.01 73824 0 0.01 73824 zdevice.ll 12 52562 0 0.01 52538 0 0.01 52538 zdict.ll 15 47575 0 0.01 47551 0 0.01 47551 zfile.ll 39 184764 1 0.03 184664 0 0.03 184740 zfont.ll 15 83724 0 0.02 83700 0 0.02 83700 zgeneric.ll 12 74542 0 0.01 74518 0 0.01 74518 zgstate.ll 30 64508 0 0.01 64484 * * * ZHandler.ll 18 62274 0 0.01 62241 0 0.01 62241 zht.ll 4 19770 0 0.01 19746 0 0.01 19746 ZipAddCommon.ll 14 182600 0 0.02 182563 0 0.02 182563 ZipCrypto.ll 31 55274 10 0.01 47008 8 0.01 47349 ZipHandler.ll 77 505949 0 0.05 505912 0 0.04 504648 ZipHandlerOut.ll 13 253045 0 0.03 253008 0 0.02 253008 ZipHeader.ll 0 1047 0 0.01 1010 0 0.01 1010 ZipIn.ll 42 340057 0 0.03 340020 0 0.03 340020 ZipItem.ll 11 23327 0 0.01 23290 0 0.01 23290 ZipOut.ll 19 204488 0 0.02 204451 0 0.02 204451 ZipRegister.ll 3 5750 0 0.01 5713 0 0.01 5713 ZipStrong.ll 22 63584 0 0.01 63552 0 0.01 63552 ZipUpdate.ll 71 615978 10 0.05 609329 * * * zmath.ll 14 33739 0 0.01 33715 0 0.01 30643 zmatrix.ll 15 47367 0 0.01 47343 0 0.01 47343 zmisc.ll 9 35142 0 0.01 35118 0 0.01 35118 zpacked.ll 4 10164 0 0.01 10140 0 0.01 10140 zpaint.ll 10 43874 0 0.01 43850 0 0.00 43850 zpath2.ll 12 29303 0 0.01 29279 0 0.01 29279 zpath.ll 18 28489 0 0.01 28465 0 0.01 28465 zrelbit.ll 15 50741 0 0.01 50717 * * * zstack.ll 10 28745 0 0.01 28721 0 0.01 28721 zstring.ll 5 36071 0 0.01 36047 0 0.01 36047 ztype.ll 16 67049 0 0.01 67025 0 0.02 65567 zvmem.ll 5 24208 0 0.01 24184 0 0.01 24184 -------------- next part -------------- IRFile NumFunctionsTotal InitialSize MergedNoPatch TimeNoPatch SizeNoPatch MergedWithPatch TimeWithPatch SizeWithPatch 2002-04-17-PrintfChar.ll 2 2172 0 0.01 2163 0 0.01 2163 2002-05-02-ArgumentTest.ll 2 3164 0 0.00 3155 0 0.00 3155 2002-05-02-CastTest1.ll 1 2121 0 0.01 2112 0 0.01 2112 2002-05-02-CastTest2.ll 2 3803 0 0.01 3794 0 0.01 3794 2002-05-02-CastTest3.ll 1 2938 0 0.01 2929 0 0.01 2929 2002-05-02-CastTest.ll 2 11291 0 0.01 11282 0 0.01 11282 2002-05-02-ManyArguments.ll 2 4222 0 0.01 4213 0 0.01 4213 2002-05-03-NotTest.ll 3 6111 0 0.01 6102 0 0.01 6102 2002-05-19-DivTest.ll 3 3553 0 0.01 3544 0 0.01 3544 2002-08-02-CastTest2.ll 2 2144 0 0.01 2135 0 0.01 2135 2002-08-02-CastTest.ll 2 1777 0 0.01 1768 0 0.01 1768 2002-08-19-CodegenBug.ll 1 2750 0 0.01 2741 0 0.01 2741 2002-10-09-ArrayResolution.ll 1 2442 0 0.01 2433 0 0.01 2433 2002-10-12-StructureArgs.ll 2 3914 0 0.01 3905 0 0.01 3905 2002-10-12-StructureArgsSimple.ll 2 2813 0 0.01 2804 0 0.01 2804 2002-10-13-BadLoad.ll 2 1695 0 0.01 1686 0 0.01 1686 2002-12-13-MishaTest.ll 2 4568 0 0.01 4559 0 0.01 4559 2003-04-22-Switch.ll 2 3916 0 0.01 3907 0 0.01 3907 2003-05-02-DependentPHI.ll 1 4621 0 0.01 4612 0 0.01 4612 2003-05-07-VarArgs.ll 2 23386 0 0.01 23377 0 0.01 23377 2003-05-12-MinIntProblem.ll 2 1971 0 0.01 1962 0 0.01 1962 2003-05-14-array-init.ll 1 2016 0 0.01 2000 0 0.01 2000 2003-05-14-AtExit.ll 2 1868 0 0.01 1859 0 0.01 1859 2003-05-14-expr_stmt.ll 2 1780 0 0.01 1764 0 0.01 1764 2003-05-14-initialize-string.ll 1 1789 0 0.01 1777 0 0.01 1777 2003-05-21-BitfieldHandling.ll 1 8810 0 0.01 8798 0 0.01 8798 2003-05-21-UnionBitfields.ll 2 3555 0 0.01 3543 0 0.01 3543 2003-05-21-UnionTest.ll 2 2331 0 0.01 2319 0 0.01 2319 2003-05-22-LocalTypeTest.ll 1 3195 0 0.01 3183 0 0.01 3183 2003-05-22-VarSizeArray.ll 2 2389 0 0.01 2377 0 0.01 2377 2003-05-23-TransparentUnion.ll 3 2753 0 0.01 2741 0 0.01 2741 2003-05-26-Shorts.ll 2 22518 0 0.01 22509 0 0.01 22509 2003-05-31-CastToBool.ll 7 6621 0 0.01 6612 0 0.01 6612 2003-05-31-LongShifts.ll 2 5739 0 0.01 5730 0 0.01 5730 2003-06-08-BaseType.ll 3 2098 0 0.01 2082 0 0.01 2082 2003-06-08-VirtualFunctions.ll 4 4118 0 0.01 4102 0 0.01 4102 2003-06-13-Crasher.ll 4 1886 0 0.01 1870 0 0.01 1870 2003-06-16-InvalidInitializer.ll 1 883 0 0.01 871 0 0.01 871 2003-06-16-VolatileError.ll 1 857 0 0.01 845 0 0.01 845 2003-07-06-IntOverflow.ll 5 6583 0 0.01 6574 0 0.01 6574 2003-07-08-BitOpsTest.ll 2 4018 0 0.01 4009 0 0.01 4009 2003-07-09-LoadShorts.ll 2 22686 0 0.01 22677 0 0.01 22677 2003-07-09-SignedArgs.ll 4 19145 0 0.01 19136 0 0.01 19136 2003-07-10-SignConversions.ll 3 4961 0 0.01 4952 0 0.01 4952 2003-08-05-CastFPToUint.ll 4 3762 0 0.01 3753 0 0.01 3753 2003-08-11-VaListArg.ll 4 25506 0 0.01 25497 0 0.01 25497 2003-08-20-EnumSizeProblem.ll 2 1358 0 0.01 1342 0 0.01 1342 2003-08-20-FoldBug.ll 2 2304 0 0.01 2295 0 0.01 2295 2003-09-18-BitFieldTest.ll 2 2547 0 0.01 2538 0 0.01 2538 2003-09-29-NonPODsByValue.ll 4 5850 0 0.01 5834 0 0.01 5834 2003-10-12-GlobalVarInitializers.ll 1 2336 0 0.01 2324 0 0.01 2324 2003-10-13-SwitchTest.ll 1 2458 0 0.01 2449 0 0.01 2449 2003-10-29-ScalarReplBug.ll 3 3638 0 0.01 3629 0 0.01 3629 2004-02-02-NegativeZero.ll 2 2157 0 0.01 2148 0 0.01 2148 2004-02-03-AggregateCopy.ll 1 2672 0 0.01 2660 0 0.01 2660 2004-03-15-IndirectGoto.ll 1 3331 0 0.01 3319 0 0.01 3319 2004-06-20-StaticBitfieldInit.ll 1 1868 0 0.01 1859 0 0.01 1859 2004-08-12-InlinerAndAllocas.ll 2 4031 0 0.01 4019 0 0.01 4019 2004-11-28-GlobalBoolLayout.ll 1 3428 0 0.01 3419 0 0.01 3419 2005-05-06-LongLongSignedShift.ll 1 1924 0 0.01 1912 0 0.01 1912 2005-05-11-Popcount-ffs-fls.ll 6 13763 0 0.01 13754 0 0.01 13754 2005-05-12-Int64ToFP.ll 1 2468 0 0.01 2459 0 0.01 2459 2005-05-13-SDivTwo.ll 1 2235 0 0.01 2226 0 0.01 2226 2005-07-15-Bitfield-ABI.ll 2 2627 0 0.01 2618 0 0.01 2618 2005-07-17-INT-To-FP.ll 1 5565 0 0.01 5556 0 0.01 5556 2005-11-29-LongSwitch.ll 2 2562 0 0.01 2553 0 0.01 2553 2006-01-23-UnionInit.ll 4 15468 0 0.01 15459 0 0.01 15459 2006-01-29-SimpleIndirectCall.ll 3 2514 0 0.01 2505 0 0.01 2505 2006-02-04-DivRem.ll 2 3113 0 0.01 3104 0 0.01 3104 2006-12-01-float_varg.ll 1 1864 0 0.01 1855 0 0.01 1855 2006-12-04-DynAllocAndRestore.ll 5 7012 0 0.01 7001 0 0.01 7001 2006-12-07-Compare64BitConstant.ll 1 2532 0 0.01 2523 0 0.01 2523 2006-12-11-LoadConstants.ll 155 38553 0 0.02 38544 0 0.01 38544 2007-01-04-KNR-Args.ll 3 5681 0 0.01 5672 0 0.01 5672 2007-03-02-VaCopy.ll 2 4199 0 0.01 4190 0 0.01 4190 2007-04-10-BitfieldTest.ll 1 2325 0 0.01 2316 0 0.01 2316 2007-04-25-weak.ll 1 1941 0 0.01 1932 0 0.01 1932 2008-01-07-LongDouble.ll 1 1693 0 0.01 1681 0 0.01 1681 2008-01-29-ParamAliasesReturn.ll 5 7207 0 0.01 7191 0 0.01 7191 2008-04-18-LoopBug.ll 2 5876 0 0.01 5867 0 0.01 5867 2008-04-20-LoopBug2.ll 2 5780 0 0.01 5771 0 0.01 5771 2008-07-13-InlineSetjmp.ll 3 3729 0 0.01 3720 0 0.01 3720 2009-04-16-BitfieldInitialization.ll 1 13564 0 0.01 13555 0 0.01 13555 2009-12-07-StructReturn.ll 3 5862 0 0.00 5853 0 0.01 5853 2010-05-24-BitfieldTest.ll 1 2043 0 0.01 2034 0 0.01 2034 2010-12-08-tls.ll 2 1657 0 0.01 1640 0 0.01 1640 2011-03-28-Bitfield.ll 2 4750 0 0.01 4734 0 0.01 4734 23tree.ll 20 213771 0 0.02 213738 0 0.03 213738 2mm.ll 12 36384 0 0.01 36337 0 0.01 36337 3mm.ll 12 40984 0 0.01 40937 0 0.01 40937 7zAes.ll 66 187046 12 0.02 182102 12 0.03 182102 7zAesRegister.ll 6 12294 1 0.01 12312 1 0.01 12312 7zCompressionMode.ll 0 467 0 0.01 431 0 0.01 431 7zCrc.ll 3 6134 0 0.01 6118 0 0.01 6118 7zCrcOpt.ll 2 6410 0 0.01 6394 0 0.01 6394 7zDecode.ll 29 252150 6 0.02 246797 6 0.02 246797 7zEncode.ll 54 422010 8 0.04 415640 8 0.04 415640 7zExtract.ll 12 105769 0 0.02 105733 0 0.01 105733 7zFolderInStream.ll 22 84789 2 0.02 83699 2 0.02 83699 7zFolderOutStream.ll 21 98330 0 0.01 98294 0 0.01 98294 7zHandler.ll 57 498965 3 0.04 497360 3 0.04 497360 7zHandlerOut.ll 46 360396 3 0.04 358791 3 0.03 358791 7zHeader.ll 0 533 0 0.01 497 0 0.01 497 7zIn.ll 65 630076 4 0.05 627948 4 0.05 627948 7zOut.ll 52 422075 4 0.04 419945 4 0.04 419945 7zProperties.ll 5 69260 0 0.01 69224 0 0.01 69224 7zRegister.ll 3 6435 0 0.01 6399 0 0.01 6399 7zSpecStream.ll 14 42877 0 0.01 42841 0 0.01 42841 7zStream.ll 18 24928 0 0.01 24912 0 0.01 24912 7zUpdate.ll 74 664947 10 0.05 659086 10 0.05 659086 abs.ll 9 15684 1 0.01 15505 1 0.01 15505 access.ll 2 7714 0 0.01 7697 0 0.01 7697 ackermann.ll 3 5129 0 0.01 5110 0 0.01 5110 add.ll 14 30625 0 0.01 30595 0 0.01 30595 addpins.ll 2 33808 0 0.01 33775 0 0.01 33775 adi.ll 12 45742 0 0.01 45709 0 0.01 45709 adpcm.ll 2 23199 0 0.01 23163 0 0.01 23163 aes.ll 3 373486 0 0.04 373451 0 0.04 373451 Aes.ll 8 69129 0 0.01 69113 0 0.02 69113 aesxam.ll 4 42494 0 0.01 42459 0 0.01 42459 ag_dec.ll 9 36584 0 0.01 36561 0 0.01 36561 ag_enc.ll 8 35026 0 0.01 35003 0 0.01 35003 aha.ll 31 88454 0 0.01 88439 0 0.01 88439 alabel.ll 1 7853 0 0.01 7824 0 0.01 7824 ALACBitUtilities.ll 13 33162 0 0.01 33139 0 0.01 33139 ALACDecoder.ll 9 109780 0 0.01 109755 0 0.02 109755 ALACEncoder.ll 14 186571 0 0.03 186546 0 0.02 186546 alias.ll 10 70826 0 0.01 70795 0 0.01 70795 align.ll 9 140707 0 0.02 140688 0 0.02 140688 all.ll 3 27964 0 0.01 27935 0 0.01 27935 allocate.ll 1 2986 0 0.01 2960 0 0.01 2960 Alloc.ll 9 18789 2 0.01 17153 2 0.01 17153 allocvector.ll 4 5235 1 0.01 4852 1 0.01 4852 almabench.ll 4 67269 0 0.02 67247 0 0.02 67247 anagram.ll 18 67232 0 0.01 67207 0 0.01 67207 analyze.ll 4 56216 0 0.01 56183 0 0.02 56183 analyzer.ll 5 89263 0 0.02 89235 0 0.01 89235 annexb.ll 3 15776 0 0.01 15755 0 0.01 15755 aquery.ll 4 37356 0 0.01 37322 0 0.01 37322 archie.ll 4 47557 0 0.01 47523 0 0.01 47523 ArchiveCommandLine.ll 39 503498 1 0.05 502940 1 0.04 502940 ArchiveExtractCallback.ll 34 347752 0 0.03 347717 0 0.03 347717 ArchiveOpenCallback.ll 48 178401 0 0.02 178366 0 0.03 178366 arc.ll 1 6214 0 0.01 6185 0 0.01 6185 arg.ll 7 62944 0 0.01 62931 0 0.02 62931 args.ll 3 6203 0 0.01 6180 0 0.01 6180 arithmetic.ll 10 21782 0 0.01 21752 0 0.00 21752 array.ll 3 13860 0 0.01 13840 0 0.01 13840 ary2.ll 44 73704 1 0.02 73514 1 0.02 73514 ary3.ll 2 7606 0 0.01 7587 0 0.01 7587 ary.ll 44 61905 1 0.01 61715 1 0.02 61715 asearch1.ll 1 44616 0 0.01 44590 0 0.01 44590 asearch.ll 2 86459 0 0.02 86433 0 0.02 86433 assem.ll 1 14439 0 0.01 14409 0 0.01 14409 assign.ll 10 62051 0 0.02 62028 0 0.02 62028 atalloc.ll 3 11357 0 0.01 11323 0 0.01 11323 atax.ll 12 23916 0 0.01 23868 0 0.01 23868 AtomicOps.ll 2 5132 0 0.01 5123 0 0.01 5123 atop.ll 1 12901 0 0.01 12874 0 0.01 12874 badidx.ll 2 5030 0 0.01 5018 0 0.01 5018 basicmath.ll 1 27788 0 0.01 27750 0 0.01 27750 Bcj2Coder.ll 29 231916 0 0.03 231882 0 0.03 231882 Bcj2Register.ll 3 8684 0 0.01 8650 0 0.01 8650 BcjCoder.ll 10 12616 2 0.01 12616 2 0.01 12616 BcjRegister.ll 3 3398 0 0.01 3364 0 0.01 3364 bc.ll 1 125465 0 0.02 125445 0 0.02 125445 beamformer.ll 10 57830 0 0.02 57799 0 0.01 57799 be.ll 44 211535 0 0.03 211519 0 0.03 211519 bellman.ll 1 16559 0 0.01 16526 0 0.01 16526 BenchCon.ll 7 47481 0 0.02 47445 0 0.02 47445 Bench.ll 45 234977 9 0.02 229289 9 0.03 229289 BenchmarkDemo.ll 221 4989042 49 0.75 4980861 49 0.72 4980861 benchmark.ll 2 12300 0 0.01 12275 0 0.01 12275 bf_cbc.ll 1 48342 0 0.01 48307 0 0.01 48307 bf_cfb64.ll 1 21004 0 0.01 20969 0 0.01 20969 bf_ecb.ll 2 9148 0 0.01 9113 0 0.01 9113 bf_enc.ll 1 55485 0 0.01 55450 0 0.01 55450 bf_ofb64.ll 1 17572 0 0.01 17537 0 0.01 17537 bf_skey.ll 1 27891 0 0.01 27856 0 0.01 27856 bftest.ll 3 66992 0 0.02 66957 0 0.02 66957 biaridecod.ll 12 46041 0 0.01 46020 0 0.01 46020 biariencode.ll 14 114832 0 0.02 114811 0 0.01 114811 bicg.ll 12 26496 0 0.01 26448 0 0.01 26448 bigfib.ll 274 491355 29 0.04 492046 29 0.04 492046 bigstack.ll 3 15230 0 0.01 15218 0 0.01 15218 bintree.ll 12 25615 0 0.01 25591 0 0.01 25591 bisect_test.ll 2 10531 0 0.01 10506 0 0.01 10506 bitap.ll 2 32801 0 0.01 32775 0 0.01 32775 bitarray.ll 4 5398 0 0.01 5361 0 0.01 5361 bitboard64.ll 21 43510 0 0.01 43488 0 0.01 43488 bitcnt_1.ll 1 2212 0 0.01 2175 0 0.01 2175 bitcnt_2.ll 1 2502 0 0.01 2465 0 0.01 2465 bitcnt_3.ll 3 9418 0 0.01 9381 0 0.01 9381 bitcnt_4.ll 2 4242 0 0.01 4205 0 0.01 4205 bitcnts.ll 5 11766 0 0.01 11729 0 0.01 11729 bitfiles.ll 4 9732 0 0.01 9695 0 0.01 9695 BitlDecoder.ll 1 3040 0 0.01 3006 0 0.01 3006 bitonic.ll 11 34090 0 0.01 34068 0 0.01 34068 bitstrng.ll 1 4796 0 0.01 4759 0 0.01 4759 bjarne.ll 42 93414 10 0.01 89765 10 0.02 89765 blas.ll 11 90399 0 0.02 90382 0 0.02 90382 block-byref-cxxobj-test.ll 1 824 0 0.01 813 0 0.01 813 block-byref-test.ll 1 815 0 0.01 806 0 0.01 806 block-call-r7674133.ll 1 1314 0 0.01 1303 0 0.01 1303 block-copied-in-cxxobj-1.ll 1 825 0 0.01 814 0 0.01 814 block-copied-in-cxxobj.ll 1 823 0 0.01 812 0 0.01 812 block.ll 19 1004072 0 0.09 1004051 0 0.09 1004051 blockstret.ll 1 1335 0 0.01 1326 0 0.01 1326 bmhasrch.ll 2 14299 0 0.01 14262 0 0.01 14262 bmhisrch.ll 4 18870 0 0.01 18833 0 0.01 18833 bmhsrch.ll 2 11714 0 0.01 11677 0 0.01 11677 bmm.ll 8 20177 0 0.01 20153 0 0.01 20153 bnchmrk.ll 3 11261 0 0.01 11237 0 0.01 11237 box_algebra.ll 3 80260 0 0.01 80231 0 0.01 80231 box_alloc.ll 5 9171 0 0.01 9142 0 0.01 9142 box.ll 20 74530 0 0.02 74501 0 0.02 74501 box_neighbors.ll 5 47073 0 0.01 47044 0 0.01 47044 Bra86.ll 1 9699 0 0.01 9683 0 0.01 9683 BraIA64.ll 1 11962 0 0.01 11946 0 0.01 11946 Bra.ll 4 23795 0 0.01 23779 0 0.01 23779 BranchCoder.ll 8 10742 0 0.01 10708 0 0.01 10708 BranchMisc.ll 25 28368 9 0.01 28685 9 0.01 28685 BranchRegister.ll 11 12023 0 0.01 11989 0 0.01 11989 brhist.ll 0 451 0 0.01 420 0 0.01 420 bstr_i.ll 1 3610 0 0.01 3573 0 0.01 3573 btActivatingCollisionAlgorithm.ll 5 11123 0 0.01 11105 0 0.01 11105 btAlignedAllocator.ll 8 13145 0 0.01 13127 0 0.01 13127 btAxisSweep3.ll 133 531944 21 0.05 526191 21 0.04 526191 btBox2dBox2dCollisionAlgorithm.ll 67 174175 4 0.02 171934 4 0.02 171934 btBox2dShape.ll 53 120802 5 0.02 118517 5 0.02 118517 btBoxBoxCollisionAlgorithm.ll 31 67435 0 0.02 67417 0 0.01 67417 btBoxBoxDetector.ll 34 239530 2 0.03 239266 2 0.03 239266 btBoxShape.ll 53 120248 5 0.02 117967 5 0.02 117967 btBroadphaseProxy.ll 0 449 0 0.01 431 0 0.01 431 btBvhTriangleMeshShape.ll 45 139044 3 0.02 124967 3 0.02 124967 btCapsuleShape.ll 54 128657 5 0.02 123428 5 0.02 123428 btCollisionAlgorithm.ll 3 6540 0 0.01 6522 0 0.01 6522 btCollisionDispatcher.ll 73 145111 3 0.02 145165 3 0.02 145165 btCollisionObject.ll 18 29521 1 0.01 28033 1 0.01 28033 btCollisionShape.ll 30 50815 4 0.01 48523 4 0.02 48523 btCollisionWorld.ll 179 487893 20 0.04 475898 20 0.04 475898 btCompoundCollisionAlgorithm.ll 135 315394 22 0.03 309831 22 0.03 309831 btCompoundShape.ll 90 210823 6 0.02 207856 6 0.02 207856 btConcaveShape.ll 7 9800 0 0.01 9782 0 0.01 9782 btConeShape.ll 45 93005 5 0.02 87742 5 0.01 87742 btConeTwistConstraint.ll 151 582413 16 0.05 582440 16 0.06 582440 btContactConstraint.ll 46 92768 4 0.02 90771 4 0.02 90771 btContactProcessing.ll 58 111001 6 0.01 109787 6 0.02 109787 btContinuousConvexCollision.ll 89 231275 11 0.03 229159 11 0.03 229159 btContinuousDynamicsWorld.ll 33 76264 3 0.01 75439 3 0.01 75439 btConvex2dConvex2dAlgorithm.ll 63 147491 3 0.02 146901 3 0.02 146901 btConvex2dShape.ll 18 28398 0 0.01 28380 0 0.01 28380 btConvexCast.ll 2 4053 0 0.01 4035 0 0.01 4035 btConvexConcaveCollisionAlgorithm.ll 129 282142 2 0.03 280520 2 0.03 280520 btConvexConvexAlgorithm.ll 158 417362 16 0.04 414499 16 0.04 414499 btConvexHull.ll 174 518660 43 0.05 507907 43 0.05 507907 btConvexHullShape.ll 58 99926 4 0.02 97541 4 0.01 97541 btConvexInternalShape.ll 52 116885 3 0.02 114685 3 0.02 114685 btConvexPlaneCollisionAlgorithm.ll 87 193900 8 0.02 193642 8 0.03 193642 btConvexPointCloudShape.ll 35 59583 3 0.01 57919 3 0.02 57919 btConvexShape.ll 67 167361 8 0.02 163873 8 0.03 163873 btConvexTriangleMeshShape.ll 66 179016 7 0.02 174283 7 0.03 174283 btCylinderShape.ll 66 139333 7 0.02 133265 7 0.02 133265 btDbvtBroadphase.ll 127 356879 22 0.03 353099 22 0.04 353099 btDbvt.ll 150 332287 29 0.03 323254 29 0.03 323254 btDefaultCollisionConfiguration.ll 64 193402 11 0.02 181668 11 0.03 181668 btDiscreteDynamicsWorld.ll 360 1073759 58 0.09 1060198 58 0.10 1060198 btDispatcher.ll 2 4615 0 0.01 4597 0 0.01 4597 btEmptyCollisionAlgorithm.ll 6 11949 0 0.01 11931 0 0.01 11931 btEmptyShape.ll 17 27644 0 0.01 27626 0 0.01 27626 btGeneric6DofConstraint.ll 107 366734 5 0.04 364381 5 0.04 364381 btGeneric6DofSpringConstraint.ll 16 48848 0 0.01 48830 0 0.01 48830 btGenericPoolAllocator.ll 24 51374 0 0.01 51356 0 0.01 51356 btGeometryUtil.ll 36 74248 2 0.02 73461 2 0.02 73461 btGhostObject.ll 102 212251 11 0.02 209265 11 0.02 209265 btGImpactBvh.ll 143 303559 19 0.03 296208 19 0.03 296208 btGImpactCollisionAlgorithm.ll 227 559786 23 0.05 550822 23 0.05 550822 btGImpactQuantizedBvh.ll 157 341990 20 0.03 334416 20 0.04 334416 btGImpactShape.ll 203 342486 51 0.03 325474 51 0.04 325474 btGjkConvexCast.ll 30 78756 4 0.01 76883 4 0.01 76883 btGjkEpa2.ll 98 440569 5 0.04 445049 5 0.04 445049 btGjkEpaPenetrationDepthSolver.ll 8 23253 0 0.01 23235 0 0.01 23235 btGjkPairDetector.ll 44 131314 2 0.02 129567 2 0.02 129567 btHeightfieldTerrainShape.ll 49 133588 6 0.02 130807 6 0.01 130807 btHinge2Constraint.ll 53 106648 3 0.02 104609 3 0.02 104609 btHingeConstraint.ll 133 484479 16 0.05 482601 16 0.05 482601 btKinematicCharacterController.ll 106 264783 6 0.03 260949 6 0.03 260949 btManifoldResult.ll 40 93288 1 0.02 91856 1 0.02 91856 btMinkowskiPenetrationDepthSolver.ll 51 155516 4 0.02 154982 4 0.02 154982 btMinkowskiSumShape.ll 35 63484 1 0.02 62052 1 0.02 62052 btMultimaterialTriangleMeshShape.ll 1 7145 0 0.01 7127 0 0.01 7127 btMultiSapBroadphase.ll 128 287185 33 0.03 277357 33 0.03 277357 btMultiSphereShape.ll 63 118210 8 0.02 115249 8 0.02 115249 btOptimizedBvh.ll 92 201284 17 0.03 195021 17 0.02 195021 btOverlappingPairCache.ll 113 295360 17 0.03 287439 17 0.03 287439 btPersistentManifold.ll 30 86887 0 0.02 86869 0 0.02 86869 btPoint2PointConstraint.ll 56 157402 3 0.02 155328 3 0.02 155328 btPolyhedralConvexShape.ll 48 113078 4 0.02 109103 4 0.02 109103 btQuantizedBvh.ll 133 441753 20 0.04 435692 20 0.04 435692 btQuickprof.ll 44 62024 0 0.02 62006 0 0.02 62006 btRaycastCallback.ll 62 145251 4 0.02 142395 4 0.02 142395 btRaycastVehicle.ll 186 429284 32 0.04 419660 32 0.04 419660 btRigidBody.ll 129 279054 9 0.03 277227 9 0.03 277227 btScaledBvhTriangleMeshShape.ll 44 110611 8 0.02 107221 8 0.01 107221 btSequentialImpulseConstraintSolver.ll 196 641431 31 0.05 635711 31 0.06 635711 btShapeHull.ll 66 126137 18 0.02 118652 18 0.02 118652 btSimpleBroadphase.ll 59 150857 8 0.02 149567 8 0.02 149567 btSimpleDynamicsWorld.ll 54 110470 6 0.02 108063 6 0.02 108063 btSimulationIslandManager.ll 76 178365 11 0.02 178464 11 0.02 178464 btSliderConstraint.ll 122 428555 5 0.04 426101 5 0.04 426101 btSoftBodyConcaveCollisionAlgorithm.ll 199 418161 26 0.04 411459 26 0.04 411459 btSoftBodyHelpers.ll 167 612232 34 0.06 603001 34 0.06 603001 btSoftBody.ll 817 2529522 223 0.23 2470489 223 0.25 2470489 btSoftBodyRigidBodyCollisionConfiguration.ll 30 92334 3 0.01 88333 3 0.01 88333 btSoftRigidCollisionAlgorithm.ll 9 30568 0 0.01 30550 0 0.01 30550 btSoftRigidDynamicsWorld.ll 65 135209 6 0.02 134502 6 0.02 134502 btSoftSoftCollisionAlgorithm.ll 18 43430 0 0.01 43412 0 0.01 43412 btSolve2LinearConstraint.ll 23 87006 0 0.02 86988 0 0.01 86988 btSphereBoxCollisionAlgorithm.ll 56 158480 2 0.02 156610 2 0.02 156610 btSphereShape.ll 33 50652 1 0.01 49174 1 0.01 49174 btSphereSphereCollisionAlgorithm.ll 37 76446 0 0.02 76428 0 0.02 76428 btSphereTriangleCollisionAlgorithm.ll 31 70727 0 0.01 70709 0 0.01 70709 btStaticPlaneShape.ll 32 77879 3 0.01 75833 3 0.01 75833 btStridingMeshInterface.ll 23 77374 0 0.01 77356 0 0.02 77356 btSubSimplexConvexCast.ll 32 83198 3 0.01 81401 3 0.01 81401 btTetrahedronShape.ll 25 59496 0 0.01 59478 0 0.01 59478 btTriangleBuffer.ll 20 31939 0 0.01 31921 0 0.01 31921 btTriangleCallback.ll 4 7256 1 0.01 7125 1 0.01 7125 btTriangleIndexVertexArray.ll 39 62666 5 0.01 57632 5 0.01 57632 btTriangleIndexVertexMaterialArray.ll 31 59155 5 0.01 54029 5 0.02 54029 btTriangleMesh.ll 111 177780 34 0.02 168586 34 0.03 168586 btTriangleMeshShape.ll 63 136266 5 0.02 133535 5 0.02 133535 btTriangleShapeEx.ll 33 97921 1 0.02 97621 1 0.01 97621 btTypedConstraint.ll 21 41626 0 0.01 41608 0 0.01 41608 btUniformScalingShape.ll 23 56966 0 0.01 56948 0 0.01 56948 btUnionFind.ll 28 47280 0 0.01 47262 0 0.01 47262 btUniversalConstraint.ll 53 104617 3 0.02 102578 3 0.02 102578 btVoronoiSimplexSolver.ll 34 199560 1 0.02 198086 1 0.02 198086 btWheelInfo.ll 12 32435 0 0.01 32417 0 0.01 32417 Bubblesort.ll 5 12018 0 0.01 11999 0 0.01 11999 buffer.ll 2 19239 0 0.01 19209 0 0.01 19209 build2.ll 16 20435 0 0.01 20419 0 0.01 20419 build.ll 2 5879 0 0.01 5863 0 0.01 5863 BuiltinTypeInfo.ll 2 4549 0 0.01 4533 0 0.01 4533 burs.ll 3 20477 0 0.01 20461 0 0.01 20461 buster.ll 1 41179 0 0.01 41146 0 0.01 41146 BwtSort.ll 2 49184 0 0.01 49168 0 0.01 49168 ByteSwap.ll 16 19464 4 0.01 17270 4 0.01 17270 byval-alignment.ll 2 4010 0 0.01 4001 0 0.01 4001 Bz2Handler.ll 43 220458 0 0.02 220425 0 0.03 220425 BZip2Crc.ll 2 7341 0 0.01 7307 0 0.01 7307 BZip2Decoder.ll 62 373471 0 0.03 373437 0 0.04 373437 BZip2Encoder.ll 47 404407 0 0.04 404373 0 0.04 404373 BZip2Register.ll 3 7943 0 0.01 7909 0 0.01 7909 c4.ll 5 39463 0 0.01 39442 0 0.01 39442 cabac.ll 29 322411 1 0.03 321765 1 0.03 321765 CabBlockInStream.ll 10 42338 0 0.01 42301 0 0.01 42301 CabHandler.ll 80 522100 3 0.04 520638 3 0.04 520638 CabHeader.ll 0 544 0 0.01 507 0 0.01 507 CabIn.ll 12 195283 0 0.02 195246 0 0.02 195246 CabRegister.ll 15 46995 1 0.01 46437 1 0.01 46437 CAFFileALAC.ll 16 83561 0 0.01 83536 0 0.01 83536 calc.ll 5 10613 0 0.01 10587 0 0.01 10587 calcMetricsData.ll 1 20183 0 0.01 20158 0 0.01 20158 Calignm1.ll 3 124521 0 0.02 124506 0 0.02 124506 callargs.ll 2 6287 0 0.01 6275 0 0.01 6275 cast2.ll 2 3199 0 0.01 3174 0 0.01 3174 cast-bug.ll 1 2687 0 0.01 2664 0 0.01 2664 cast.ll 1 78636 0 0.01 78605 0 0.02 78605 casts.ll 3 27187 0 0.01 27175 0 0.01 27175 ccc.ll 6 6276 0 0.01 6253 0 0.01 6253 cdecl.ll 32 463043 0 0.04 463017 0 0.05 463017 cdjpeg.ll 4 7876 0 0.01 7843 0 0.01 7843 cfrac.ll 5 41611 0 0.01 41584 0 0.01 41584 changraph.ll 5 131968 0 0.02 131935 0 0.02 131935 channel.ll 4 28216 0 0.01 28193 0 0.01 28193 charsequence.ll 4 11437 0 0.01 11410 0 0.01 11410 checkfile.ll 2 4464 0 0.01 4438 0 0.01 4438 check_functions.ll 31 55439 0 0.01 55410 0 0.01 55410 checkpen.ll 2 40913 0 0.01 40880 0 0.00 40880 ch.ll 7 37798 0 0.01 37776 0 0.01 37776 cholesky.ll 12 23832 0 0.01 23780 0 0.00 23780 chomp.ll 23 62942 0 0.01 62925 0 0.02 62925 chooseEntry.ll 1 5370 0 0.01 5345 0 0.01 5345 circle.ll 1 1997 0 0.01 1968 0 0.01 1968 cjpeg.ll 4 84029 0 0.02 83996 0 0.01 83996 clamscan_clamscan.ll 2 61399 0 0.01 61381 0 0.02 61381 clamscan_manager.ll 12 213915 0 0.03 213897 0 0.03 213897 clamscan_others.ll 4 16909 0 0.01 16891 0 0.01 16891 clamscan_treewalk.ll 6 72998 0 0.02 72980 0 0.02 72980 class.ll 13 182292 1 0.03 182113 1 0.02 182113 clause.ll 301 644053 13 0.06 642371 13 0.06 642371 clearLine.ll 1 3175 0 0.01 3150 0 0.01 3150 clock.ll 7 3985 2 0.01 3810 2 0.01 3810 closeFiles.ll 1 4699 0 0.01 4674 0 0.01 4674 closepl.ll 1 1057 0 0.01 1028 0 0.01 1028 closure.ll 5 28114 0 0.01 28088 0 0.01 28088 cnf.ll 222 772426 10 0.06 768498 10 0.07 768498 coarsen.ll 3 107852 0 0.02 107823 0 0.01 107823 code.ll 1 10232 0 0.01 10202 0 0.01 10202 CoderMixer2.ll 14 83683 4 0.01 81571 4 0.02 81571 CoderMixer2MT.ll 50 274089 5 0.02 266795 5 0.03 266795 cofactor.ll 9 103705 0 0.02 103675 0 0.02 103675 color.ll 1 2069 0 0.01 2040 0 0.01 2040 cols.ll 13 64095 0 0.02 64065 0 0.02 64065 CommandLineParser.ll 11 112348 0 0.02 112321 0 0.02 112321 command.ll 5 18344 0 0.01 18327 0 0.01 18327 comment.ll 14 39393 1 0.01 37610 1 0.01 37610 common.ll 10 113372 0 0.02 113343 0 0.02 113343 communication_info.ll 3 187732 0 0.02 187703 0 0.02 187703 communication.ll 15 164724 0 0.02 164695 0 0.02 164695 compare.ll 3 3894 0 0.01 3882 0 0.01 3882 compat.ll 1 9568 0 0.01 9542 0 0.01 9542 compl.ll 12 180252 0 0.03 180222 0 0.02 180222 component.ll 28 48061 2 0.01 47623 2 0.01 47623 compress.ll 5 29438 0 0.01 29408 0 0.01 29408 computation.ll 5 30860 0 0.01 30831 0 0.01 30831 compute.ll 12 78850 0 0.02 78829 0 0.01 78829 condensing.ll 31 22770 1 0.01 22362 1 0.01 22362 ConditionalExpr.ll 7 10447 0 0.01 10428 0 0.01 10428 conditional-gnu-ext-cxx.ll 5 6879 0 0.01 6868 0 0.01 6868 conditional-gnu-ext.ll 3 5048 0 0.01 5039 0 0.01 5039 config1.ll 1 16579 0 0.01 16546 0 0.01 16546 config2.ll 1 36954 0 0.01 36921 0 0.01 36921 config3.ll 2 35228 0 0.01 35195 0 0.01 35195 configfile.ll 17 322639 0 0.03 322618 0 0.03 322618 conflicts.ll 13 110041 0 0.02 110015 0 0.02 110015 consistent.ll 2 9625 0 0.01 9600 0 0.01 9600 ConsoleClose.ll 6 10504 0 0.01 10468 0 0.01 10468 constants.ll 6 468828 0 0.05 468813 0 0.05 468813 ConstructorDestructorAttributes.ll 3 1742 0 0.01 1730 0 0.01 1730 contain.ll 18 76106 0 0.02 76076 0 0.02 76076 context_ini.ll 12 306158 0 0.03 306137 0 0.03 306137 context.ll 2 20575 0 0.01 20557 0 0.01 20557 cont.ll 1 5257 0 0.01 5228 0 0.01 5228 convert.ll 5 15405 0 0.01 15375 0 0.01 15375 CopyCoder.ll 15 42021 0 0.01 41987 0 0.00 41987 CopyRegister.ll 2 3609 0 0.01 3575 0 0.01 3575 correct.ll 29 246517 0 0.03 246486 0 0.03 246486 correlation.ll 12 36342 0 0.01 36299 0 0.01 36299 countlib.ll 1 3445 0 0.01 3419 0 0.01 3419 count.ll 1 17310 0 0.01 17284 0 0.01 17284 covariance.ll 12 27739 0 0.01 27697 0 0.01 27697 cp.ll 4 45311 0 0.01 45294 0 0.01 45294 crc_32.ll 5 15359 0 0.01 15327 0 0.01 15327 crc32.ll 4 11042 0 0.01 11011 0 0.01 11011 CRC.ll 1 1050 0 0.01 1023 0 0.01 1023 CreateCoder.ll 8 48907 0 0.01 48875 0 0.01 48875 createDataObject.ll 1 9984 0 0.01 9959 0 0.01 9959 createIndexEntry.ll 1 7529 0 0.01 7504 0 0.01 7504 createIndexNode.ll 1 4633 0 0.01 4608 0 0.01 4608 CrossThreadProgress.ll 7 16441 0 0.01 16401 0 0.01 16401 Crystal_Cholesky.ll 1 22269 0 0.01 22238 0 0.01 22238 Crystal_div.ll 1 18924 0 0.01 18893 0 0.01 18893 Crystal_pow.ll 1 6330 0 0.01 6299 0 0.01 6299 csr_matrix.ll 10 81632 0 0.02 81605 0 0.02 81605 csr_matvec.ll 3 83424 0 0.01 83397 0 0.02 83397 ctor_dtor_count-2.ll 6 10768 0 0.01 10749 0 0.01 10749 ctor_dtor_count.ll 6 8159 0 0.01 8140 0 0.01 8140 cubestr.ll 4 52286 0 0.01 52256 0 0.01 52256 cubic.ll 1 11181 0 0.01 11143 0 0.01 11143 cvrin.ll 13 303053 0 0.03 303023 0 0.03 303023 cvrmisc.ll 8 28494 0 0.01 28464 0 0.01 28464 cvrm.ll 20 123658 0 0.02 123628 0 0.02 123628 cvrout.ll 18 168322 0 0.02 168292 0 0.02 168292 CWrappers.ll 21 34690 1 0.01 34587 1 0.01 34587 cyclic_reduction.ll 7 577661 0 0.05 577632 0 0.05 577632 d1-pushc.ll 7 30837 0 0.01 30820 0 0.01 30820 d2-pushl.ll 3 19923 0 0.01 19906 0 0.01 19906 d3-popl.ll 7 53525 0 0.02 53508 0 0.02 53508 d4-array.ll 11 45477 0 0.01 45460 0 0.01 45460 d5-stack.ll 3 7815 0 0.01 7798 0 0.01 7798 d6-arith.ll 8 50399 0 0.01 50382 0 0.01 50382 d7-cntrl.ll 8 41349 0 0.01 41332 0 0.01 41332 d8-ret.ll 6 26849 0 0.01 26832 0 0.01 26832 d9-swtch.ll 4 31905 0 0.01 31888 0 0.01 31888 da-field.ll 9 70113 0 0.02 70096 0 0.02 70096 dbisect.ll 2 25498 0 0.01 25473 0 0.01 25473 db-meth.ll 8 72703 0 0.02 72686 0 0.01 72686 dc-misc.ll 7 26604 0 0.01 26587 0 0.01 26587 dct64_i386.ll 2 133032 0 0.02 133001 0 0.02 133001 dead_try_block.ll 2 2794 0 0.01 2775 0 0.01 2775 debugger.ll 19 116833 0 0.02 116803 0 0.02 116803 debug.ll 0 449 0 0.01 419 0 0.01 419 decode_i386.ll 2 40058 0 0.01 40027 0 0.01 40027 decode.ll 2 12247 0 0.01 12217 0 0.01 12217 decoder.ll 14 196940 0 0.02 196919 0 0.02 196919 decomp.ll 22 116470 2 0.02 116206 2 0.02 116206 dec_viterbi_F.ll 3 42251 0 0.01 42232 0 0.01 42232 DefaultInitDynArrays.ll 2 4579 0 0.01 4568 0 0.01 4568 DefaultName.ll 7 62842 0 0.01 62807 0 0.01 62807 Deflate64Register.ll 37 66816 1 0.02 66858 1 0.02 66858 DeflateDecoder.ll 51 266084 0 0.03 266050 0 0.03 266050 DeflateEncoder.ll 60 470588 13 0.04 444840 13 0.04 444840 DeflateProps.ll 5 59635 0 0.02 59602 0 0.02 59602 DeflateRegister.ll 37 66598 1 0.01 66640 1 0.01 66640 defmt.ll 13 134433 0 0.02 134402 0 0.02 134402 defs.ll 0 5483 0 0.01 5468 0 0.01 5468 deleteDataObject.ll 1 6265 0 0.01 6240 0 0.01 6240 deleteEntry.ll 1 21420 0 0.01 21395 0 0.01 21395 deleteIndexEntry.ll 1 4506 0 0.01 4481 0 0.01 4481 deleteIndexNode.ll 1 4392 0 0.01 4367 0 0.01 4367 delete.ll 1 10117 0 0.01 10092 0 0.01 10092 deliver.ll 3 56004 0 0.01 55973 0 0.01 55973 DeltaFilter.ll 38 59247 3 0.01 59111 3 0.01 59111 delta.ll 7 27231 0 0.01 27215 0 0.01 27215 Delta.ll 3 17328 0 0.01 17312 0 0.01 17312 density.ll 1 76524 0 0.01 76491 0 0.01 76491 derives.ll 2 11936 0 0.00 11910 0 0.01 11910 des_enc.ll 4 92589 0 0.02 92562 0 0.01 92562 des.ll 11 277788 0 0.03 277761 0 0.04 277761 dfgparser.ll 121 371364 5 0.04 369879 5 0.04 369879 dfgscanner.ll 21 221750 0 0.02 221733 0 0.02 221733 dijkstra.ll 6 24357 0 0.01 24323 0 0.01 24323 direction.ll 22 19450 0 0.01 19421 0 0.01 19421 dirsend.ll 8 107105 0 0.02 107071 0 0.02 107071 display.ll 0 456 0 0.01 421 0 0.01 421 distray.ll 9 86112 0 0.01 86085 0 0.02 86085 divides.ll 3 8241 0 0.01 8225 0 0.01 8225 div.ll 18 13898 7 0.01 11319 7 0.01 11319 Divsol.ll 4 29265 0 0.01 29243 0 0.01 29243 djpeg.ll 5 90842 0 0.02 90811 0 0.02 90811 doborder.ll 2 45439 0 0.01 45406 0 0.01 45406 doc-proof.ll 29 56444 0 0.01 56427 0 0.01 56427 does_x_win.ll 5 91600 0 0.02 91581 0 0.02 91581 doitgen.ll 12 30417 0 0.01 30366 0 0.01 30366 dominate.ll 2 34437 0 0.01 34407 0 0.01 34407 dot.ll 1 1874 0 0.01 1845 0 0.01 1845 doublecheck.ll 1 32093 0 0.01 32060 0 0.01 32060 dp_dec.ll 2 62131 0 0.02 62108 0 0.02 62108 dp_enc.ll 4 65607 0 0.01 65584 0 0.01 65584 draw_line.ll 1 1792 0 0.01 1763 0 0.01 1763 driver.ll 3 14850 0 0.01 14823 0 0.01 14823 drop3.ll 3 32092 0 0.01 32068 0 0.01 32068 dry.ll 13 30290 0 0.01 30270 0 0.01 30270 dt.ll 2 7389 0 0.01 7374 0 0.01 7374 DuffsDevice.ll 2 9522 0 0.01 9510 0 0.01 9510 dummy.ll 1 2092 0 0.01 2064 0 0.01 2064 DummyOutStream.ll 6 13577 0 0.01 13537 0 0.01 13537 dump.ll 5 25664 0 0.01 25633 0 0.01 25633 durbin.ll 12 32611 0 0.01 32561 0 0.01 32561 dynprog.ll 12 25271 0 0.01 25220 0 0.01 25220 ecb_enc.ll 2 18267 0 0.01 18240 0 0.01 18240 em3d.ll 1 10207 0 0.01 10187 0 0.01 10187 emfloat.ll 19 104508 0 0.02 104492 0 0.02 104492 emitter.ll 1 25010 0 0.01 24981 0 0.01 24981 encode.ll 2 15460 0 0.01 15424 0 0.01 15424 endgame.ll 1 17397 0 0.01 17371 0 0.01 17371 EndianPortable.ll 13 15174 5 0.01 10262 5 0.01 10262 EnumDirItems.ll 22 358170 0 0.04 358135 0 0.03 358135 equiv.ll 2 31731 0 0.01 31701 0 0.01 31701 erase.ll 1 765 0 0.01 736 0 0.01 736 erc_api.ll 10 68842 0 0.01 68821 0 0.01 68821 erc_do_i.ll 6 90863 0 0.02 90842 0 0.02 90842 erc_do_p.ll 34 342346 0 0.04 342325 0 0.03 342325 err.ll 1 4487 0 0.01 4470 0 0.01 4470 errorconcealment.ll 3 19583 0 0.01 19562 0 0.01 19562 error.ll 1 6566 0 0.01 6537 0 0.01 6537 Error.ll 1 38944 0 0.01 38916 0 0.01 38916 errorMessage.ll 2 7982 0 0.01 7957 0 0.01 7957 errorp.ll 1 3289 0 0.01 3262 0 0.01 3262 errors.ll 6 19314 0 0.01 19296 0 0.01 19296 espresso.ll 1 28727 0 0.01 28697 0 0.01 28697 essen.ll 4 35838 0 0.01 35808 0 0.01 35808 eval.ll 1 4135 0 0.01 4109 0 0.01 4109 exact.ll 4 47736 0 0.01 47706 0 0.01 47706 exambord.ll 1 7624 0 0.01 7598 0 0.01 7598 exception_spec_test.ll 6 12901 0 0.01 12882 0 0.01 12882 except.ll 22 34884 1 0.01 34475 1 0.01 34475 execute.ll 9 103710 0 0.02 103690 0 0.02 103690 expand.ll 12 165069 0 0.02 165039 0 0.02 165039 explicit_gop.ll 9 132820 0 0.02 132799 0 0.02 132799 exp.ll 9 74590 0 0.02 74573 0 0.01 74573 exptree.ll 14 45103 0 0.01 45086 0 0.00 45086 ExtractCallbackConsole.ll 23 69339 0 0.01 69303 0 0.02 69303 ExtractingFilePath.ll 10 43215 0 0.01 43180 0 0.01 43180 Extract.ll 16 222180 2 0.02 221097 2 0.03 221097 factor.ll 2 9199 0 0.01 9176 0 0.01 9176 Falign.ll 10 474854 0 0.05 474839 0 0.04 474839 family.ll 11 23080 0 0.01 23049 0 0.01 23049 fannkuch.ll 2 16822 0 0.01 16798 0 0.01 16798 fasta.ll 6 19924 0 0.01 19894 0 0.01 19894 fbench.ll 3 40167 0 0.01 40152 0 0.01 40152 fdtd-2d.ll 12 37045 0 0.01 37008 0 0.01 37008 fdtd-apml.ll 12 90288 0 0.02 90249 0 0.01 90249 fe.ll 21 73735 0 0.02 73719 0 0.01 73719 ffbench.ll 2 38643 0 0.01 38628 0 0.01 38628 fftbench.ll 81 162362 4 0.02 161595 4 0.02 161595 fftFunctions.ll 16 176353 0 0.02 176338 0 0.02 176338 fft.ll 3 32602 0 0.01 32587 0 0.01 32587 FFT.ll 6 26717 0 0.01 26697 0 0.01 26697 fftmisc.ll 4 8115 0 0.01 8085 0 0.01 8085 fftsg.ll 37 694548 0 0.07 694523 0 0.07 694523 Fheap.ll 16 55029 0 0.01 55009 0 0.01 55009 fib2.ll 2 3596 0 0.01 3577 0 0.01 3577 fibo.ll 11 15159 0 0.01 15134 0 0.01 15134 FileDir.ll 30 298591 0 0.03 298563 0 0.03 298563 FileFind.ll 33 384904 0 0.04 384876 0 0.03 384876 filehandle.ll 5 30313 0 0.01 30292 0 0.01 30292 FileIO.ll 21 88816 0 0.02 88788 0 0.01 88788 FileName.ll 3 42850 0 0.01 42822 0 0.01 42822 FilePathAutoRename.ll 4 59272 0 0.01 59240 0 0.01 59240 files.ll 5 24689 0 0.01 24663 0 0.01 24663 FileStreams.ll 36 57297 6 0.02 54252 6 0.02 54252 fill.ll 1 2623 0 0.01 2594 0 0.01 2594 FilterCoder.ll 83 193349 0 0.02 193317 0 0.03 193317 finalout.ll 2 24085 0 0.01 24052 0 0.01 24052 finalpin.ll 1 187303 0 0.02 187270 0 0.02 187270 findcheck.ll 2 49408 0 0.01 49375 0 0.01 49375 findcolr.ll 1 11459 0 0.01 11433 0 0.01 11433 findcost.ll 1 37566 0 0.01 37533 0 0.01 37533 findloc.ll 1 111778 0 0.01 111745 0 0.02 111745 findnext.ll 2 25722 0 0.01 25696 0 0.01 25696 findnodes.ll 5 103604 0 0.02 103571 0 0.01 103571 findopen.ll 1 24241 0 0.01 24215 0 0.01 24215 findpatn.ll 1 19561 0 0.01 19535 0 0.01 19535 findsavr.ll 1 7260 0 0.01 7234 0 0.01 7234 findside.ll 2 13436 0 0.01 13403 0 0.01 13403 FindSignature.ll 1 16445 0 0.01 16405 0 0.01 16405 findwinr.ll 1 15575 0 0.01 15549 0 0.01 15549 fioe.ll 1 16999 0 0.01 16973 0 0.01 16973 five11.ll 12 29027 0 0.01 29002 0 0.01 29002 fixoutput.ll 2 32311 0 0.01 32281 0 0.01 32281 fixpenal.ll 3 97288 0 0.01 97255 0 0.01 97255 fixups.ll 8 13196 0 0.01 13180 0 0.01 13180 flags.ll 31 51827 1 0.01 51596 1 0.02 51596 fldry.ll 13 32438 0 0.01 32418 0 0.01 32418 float.ll 11 117871 0 0.02 117854 0 0.02 117854 FloatMM.ll 6 12850 0 0.01 12831 0 0.01 12831 FloatPrecision.ll 2 2147 0 0.01 2138 0 0.01 2138 floatrep.ll 2 2588 0 0.01 2571 0 0.01 2571 flops-1.ll 1 10454 0 0.01 10439 0 0.01 10439 flops-2.ll 1 10782 0 0.01 10767 0 0.01 10767 flops-3.ll 1 10676 0 0.01 10661 0 0.01 10661 flops-4.ll 1 12150 0 0.01 12135 0 0.01 12135 flops-5.ll 1 12874 0 0.01 12859 0 0.01 12859 flops-6.ll 1 12866 0 0.01 12851 0 0.01 12851 flops-7.ll 1 10239 0 0.01 10224 0 0.01 10224 flops-8.ll 1 13031 0 0.01 13016 0 0.01 13016 flops.ll 2 82106 0 0.02 82091 0 0.02 82091 floyd-warshall.ll 12 21456 0 0.01 21414 0 0.01 21414 fmo.ll 23 94259 0 0.01 94238 0 0.01 94238 foldfg.ll 190 393484 5 0.03 391567 5 0.04 391567 follow.ll 4 20779 0 0.01 20753 0 0.01 20753 fontname.ll 2 10674 0 0.01 10645 0 0.01 10645 fontsize.ll 1 1218 0 0.01 1189 0 0.01 1189 formatBitstream.ll 21 90029 0 0.01 89998 0 0.01 89998 format.ll 2 27843 0 0.01 27813 0 0.01 27813 fourierf.ll 2 22660 0 0.01 22630 0 0.01 22630 fourinarow.ll 18 123903 0 0.02 123873 0 0.02 123873 fp-convert.ll 2 8282 0 0.01 8267 0 0.01 8267 Fsanity.ll 4 15484 0 0.01 15464 0 0.01 15464 fsm.ll 12 28052 0 0.01 28024 0 0.01 28024 ft.ll 4 18132 0 0.01 18112 0 0.01 18112 fulllink.ll 5 30012 0 0.01 29979 0 0.01 29979 fuloop.ll 1 29948 0 0.01 29915 0 0.01 29915 functionobjects.ll 114 305253 1 0.03 300379 0 0.03 305231 function_try_block.ll 7 23756 0 0.01 23737 0 0.01 23737 functs.ll 5 64545 0 0.02 64517 0 0.02 64517 g711.ll 7 16305 0 0.01 16269 0 0.01 16269 g721.ll 2 17014 0 0.01 16978 0 0.01 16978 g723_24.ll 2 16931 0 0.01 16895 0 0.01 16895 g723_40.ll 2 17754 0 0.01 17718 0 0.01 17718 g72x.ll 11 88468 0 0.01 88432 0 0.01 88432 Galign11.ll 5 85622 0 0.02 85607 0 0.01 85607 garage.ll 25 32013 0 0.01 31982 0 0.01 31982 gasp.ll 6 51262 0 0.01 51232 0 0.01 51232 gcc-loops.ll 99 215027 3 0.02 214260 3 0.03 214260 gdevmem.ll 27 181881 0 0.02 181857 0 0.02 181857 gdevs.ll 1 1879 0 0.01 1855 0 0.01 1855 gemm.ll 12 28028 0 0.01 27980 0 0.01 27980 gemver.ll 12 35733 0 0.01 35683 0 0.01 35683 genalign11.ll 3 69116 0 0.01 69101 0 0.01 69101 gen_c.ll 40 303014 2 0.03 297916 2 0.03 297916 gen_cpp.ll 21 186423 3 0.02 172496 3 0.02 172496 gen_cs.ll 13 137612 2 0.02 128367 2 0.02 128367 general.ll 1 2295 0 0.01 2266 0 0.01 2266 genGalign11.ll 3 65594 0 0.01 65579 0 0.01 65579 gen_java.ll 33 230976 2 0.02 221580 2 0.03 221580 gen.ll 12 112038 0 0.01 112020 0 0.02 112020 genmove.ll 1 16012 0 0.01 15986 0 0.01 15986 genorient.ll 1 179023 0 0.02 178990 0 0.02 178990 gen_php.ll 30 209617 2 0.02 200573 2 0.03 200573 gen_ruby.ll 29 183851 4 0.02 169929 4 0.02 169929 gentwf.ll 1 55799 0 0.01 55766 0 0.01 55766 gesummv.ll 12 24932 0 0.01 24881 0 0.01 24881 getargs.ll 1 8175 0 0.01 8149 0 0.01 8149 get_audio.ll 19 84570 0 0.01 84539 0 0.01 84539 getbits.ll 8 20663 0 0.01 20628 0 0.01 20628 getblk.ll 4 82909 0 0.01 82874 0 0.01 82874 getDeleteCommand.ll 1 21890 0 0.01 21865 0 0.01 21865 getFloat.ll 1 6791 0 0.01 6766 0 0.01 6766 gethdr.ll 20 71934 0 0.01 71899 0 0.01 71899 getij.ll 1 8281 0 0.01 8255 0 0.01 8255 getInitCommand.ll 1 5634 0 0.01 5609 0 0.01 5609 getInsertCommand.ll 1 17537 0 0.01 17512 0 0.01 17512 getInt.ll 1 6401 0 0.01 6376 0 0.01 6376 getKeyAttribute.ll 1 4040 0 0.01 4015 0 0.01 4015 getmove.ll 1 11920 0 0.01 11894 0 0.01 11894 getNextCommandCode.ll 1 7510 0 0.01 7485 0 0.01 7485 getNonKeyAttribute.ll 1 4957 0 0.01 4932 0 0.01 4932 getopt.ll 1 20083 0 0.01 20052 0 0.01 20052 getpath.ll 1 17914 0 0.01 17883 0 0.01 17883 get_pauth.ll 1 5096 0 0.01 5062 0 0.01 5062 getpic.ll 16 131184 0 0.02 131149 0 0.02 131149 getQueryCommand.ll 1 21880 0 0.01 21855 0 0.01 21855 getString.ll 1 11001 0 0.01 10976 0 0.01 10976 get_vdir.ll 1 66358 0 0.02 66324 0 0.02 66324 getvlc.ll 15 82573 0 0.01 82538 0 0.02 82538 ggenorien.ll 1 65674 0 0.01 65641 0 0.01 65641 gglobals.ll 0 4616 0 0.01 4583 0 0.01 4583 gim_box_set.ll 32 89479 1 0.01 89157 1 0.01 89157 gim_contact.ll 46 97523 3 0.02 95999 3 0.02 95999 gim_memory.ll 13 9669 0 0.01 9651 0 0.01 9651 gimpel.ll 1 32442 0 0.01 32412 0 0.01 32412 gim_tri_collision.ll 17 269009 1 0.03 268577 1 0.03 268577 global_ctor.ll 8 5490 0 0.01 5474 0 0.01 5474 global.ll 0 5240 0 0.01 5220 0 0.01 5220 globalrefs.ll 2 7312 0 0.01 7300 0 0.01 7300 globals.ll 0 4538 0 0.01 4505 0 0.01 4505 global_type.ll 1 1090 0 0.01 1074 0 0.01 1074 gmain.ll 1 31824 0 0.01 31791 0 0.01 31791 good.ll 5 53954 0 0.02 53923 0 0.01 53923 goverlapf.ll 1 48177 0 0.01 48144 0 0.01 48144 goverlap.ll 1 45091 0 0.01 45058 0 0.01 45058 goverlapx.ll 1 51380 0 0.01 51347 0 0.01 51347 gpass2.ll 1 70148 0 0.02 70115 0 0.02 70115 gpkplotting.ll 0 456 0 0.01 425 0 0.01 425 gp_unix.ll 4 8419 0 0.01 8395 0 0.01 8395 gram.ll 0 1317 0 0.01 1291 0 0.01 1291 grammar.g.ll 51 977676 1 0.07 974702 1 0.06 974702 gramschmidt.ll 12 38451 0 0.01 38396 0 0.01 38396 graph.ll 10 27992 0 0.01 27972 0 0.01 27972 grdcell.ll 1 117458 0 0.02 117425 0 0.02 117425 grepair.ll 1 9799 0 0.01 9766 0 0.01 9766 grow.ll 2 21304 0 0.01 21275 0 0.01 21275 gschar.ll 34 144866 1 0.02 144214 1 0.02 144214 gscolor.ll 18 66728 0 0.02 66704 0 0.02 66704 gscoord.ll 13 36076 0 0.01 36052 0 0.01 36052 gsdevice.ll 26 67030 4 0.01 65511 4 0.02 65511 gsfile.ll 1 20471 0 0.01 20447 0 0.01 20447 gsfont.ll 13 44042 1 0.01 43603 1 0.01 43603 gsim2out.ll 8 67436 0 0.01 67412 0 0.01 67412 gsimage.ll 15 164706 0 0.02 164682 0 0.02 164682 gsline.ll 12 25004 0 0.01 24980 0 0.01 24980 gs.ll 9 34248 0 0.01 34224 0 0.01 34224 gsmain.ll 3 18785 0 0.01 18761 0 0.01 18761 gsmatrix.ll 14 76302 0 0.01 76278 0 0.01 76278 gsm_create.ll 1 3343 0 0.01 3313 0 0.01 3313 gsm_decode.ll 1 44688 0 0.01 44658 0 0.01 44658 gsm_destroy.ll 1 1940 0 0.01 1910 0 0.01 1910 gsm_encode.ll 1 34706 0 0.01 34676 0 0.01 34676 gsm_explode.ll 1 56625 0 0.02 56595 0 0.01 56595 gsm_implode.ll 1 46766 0 0.01 46736 0 0.01 46736 gsmisc.ll 2 4510 0 0.01 4486 0 0.01 4486 gsm_option.ll 1 2008 0 0.01 1978 0 0.01 1978 gsm_print.ll 1 59766 0 0.01 59736 0 0.01 59736 gspaint.ll 9 35176 0 0.01 35152 0 0.01 35152 gspath2.ll 12 40677 0 0.01 40653 0 0.01 40653 gspath.ll 14 63917 0 0.01 63893 0 0.01 63893 gsstate.ll 11 46775 0 0.01 46751 0 0.01 46751 gstype1.ll 6 217441 0 0.02 217417 0 0.03 217417 gtkanal.ll 0 452 0 0.01 421 0 0.01 421 gutil.ll 140 388775 55 0.03 410686 55 0.04 410686 gxcache.ll 7 60928 0 0.01 60904 0 0.01 60904 gxcolor.ll 5 32678 0 0.01 32654 0 0.01 32654 gxdither.ll 1 45152 0 0.01 45128 0 0.01 45128 gxdraw.ll 8 71594 0 0.01 71570 0 0.02 71570 gxfill.ll 9 140929 0 0.02 140905 0 0.02 140905 gxht.ll 4 31379 0 0.01 31355 0 0.01 31355 gxpath2.ll 13 88470 0 0.02 88446 0 0.02 88446 gxpath.ll 13 64557 0 0.02 64533 0 0.01 64533 gxstroke.ll 8 138736 0 0.02 138712 0 0.02 138712 GzHandler.ll 82 370584 1 0.04 370627 1 0.03 370627 hack.ll 9 187860 0 0.02 187830 0 0.03 187830 Halignmm.ll 9 209305 0 0.03 209290 0 0.03 209290 HandlerOut.ll 19 324670 0 0.03 324630 0 0.03 324630 hash2.ll 137 294380 11 0.02 291977 11 0.02 291977 hasharray.ll 18 29950 0 0.01 29933 0 0.01 29933 hash.ll 8 25776 0 0.01 25757 0 0.01 25757 hbd.ll 1 4647 0 0.01 4630 0 0.01 4630 hcg.ll 6 20173 0 0.01 20150 0 0.01 20150 header.ll 6 133355 0 0.02 133334 0 0.02 133334 headers.ll 15 92894 0 0.02 92863 0 0.01 92863 health.ll 9 62043 0 0.01 62021 0 0.01 62021 heapsort.ll 4 12482 0 0.01 12463 0 0.01 12463 hello.ll 1 1223 0 0.01 1204 0 0.01 1204 help.ll 1 12790 0 0.01 12762 0 0.01 12762 hexxagonboard.ll 31 109799 1 0.02 109764 1 0.02 109764 hexxagongame.ll 13 41133 0 0.01 41111 0 0.01 41111 hexxagon.ll 10 90051 0 0.02 90029 0 0.01 90029 hexxagonmove.ll 14 36287 0 0.01 36265 0 0.01 36265 himenobmtxpa.ll 10 108193 0 0.02 108178 0 0.02 108178 HmacSha1.ll 5 23167 0 0.01 23135 0 0.01 23135 horners.ll 2 4611 0 0.01 4582 0 0.01 4582 hprobes.ll 2 94570 0 0.02 94537 0 0.02 94537 huffbench.ll 5 55230 0 0.01 55208 0 0.01 55208 HuffEnc.ll 1 19291 0 0.01 19275 0 0.01 19275 hypre_error.ll 5 5986 0 0.01 5959 0 0.01 5959 hypre_memory.ll 5 8202 0 0.01 8175 0 0.01 8175 HYPRE_pcg.ll 12 13957 0 0.01 13928 0 0.01 13928 HYPRE_struct_grid.ll 5 10244 0 0.01 10215 0 0.01 10215 HYPRE_struct_matrix.ll 12 27807 0 0.01 27778 0 0.01 27778 HYPRE_struct_pcg.ll 14 82644 0 0.02 82615 0 0.02 82615 HYPRE_struct_smg.ll 15 15541 0 0.01 15512 0 0.01 15512 HYPRE_struct_stencil.ll 3 7068 0 0.01 7039 0 0.01 7039 HYPRE_struct_vector.ll 16 35666 0 0.01 35637 0 0.01 35637 ialloc.ll 15 86903 0 0.02 86879 0 0.01 86879 iaparser.ll 74 137971 4 0.02 136825 4 0.02 136825 iascanner.ll 19 84100 0 0.02 84083 0 0.01 84083 id3tag.ll 4 36173 0 0.01 36142 0 0.01 36142 idct.ll 4 29032 0 0.01 28997 0 0.01 28997 idctref.ll 2 13404 0 0.01 13369 0 0.01 13369 idebug.ll 5 30092 0 0.01 30068 0 0.01 30068 idict.ll 10 43366 0 0.01 43342 0 0.01 43342 id.ll 0 4211 0 0.01 4194 0 0.01 4194 ieeefloat.ll 6 42929 0 0.01 42898 0 0.01 42898 iinit.ll 5 12359 0 0.01 12335 0 0.01 12335 image.ll 40 681667 0 0.06 681646 0 0.06 681646 img_chroma.ll 5 38306 0 0.01 38285 0 0.01 38285 img_luma.ll 10 124530 0 0.02 124509 0 0.02 124509 ImplodeDecoder.ll 20 131688 0 0.02 131654 0 0.02 131654 ImplodeHuffmanDecoder.ll 4 19555 0 0.01 19521 0 0.01 19521 iname.ll 6 24818 0 0.01 24794 0 0.01 24794 InBuffer.ll 7 16214 0 0.01 16182 0 0.01 16182 indep.ll 2 33146 0 0.01 33116 0 0.01 33116 initbb.ll 2 32361 0 0.01 32328 0 0.01 32328 init.ll 1 9382 0 0.01 9353 0 0.01 9353 initmark.ll 1 2732 0 0.01 2706 0 0.01 2706 initMetricsData.ll 1 12051 0 0.01 12026 0 0.01 12026 initp1.ll 17 34153 0 0.01 34142 0 0.01 34142 init_viterbi.ll 1 23176 0 0.01 23157 0 0.01 23157 inlined_cleanup.ll 4 6692 0 0.01 6673 0 0.01 6673 InOutTempBuffer.ll 16 53069 1 0.01 52495 1 0.01 52495 input.ll 12 131470 0 0.02 131452 0 0.02 131452 insertEntry.ll 1 17371 0 0.01 17346 0 0.01 17346 insert.ll 1 18148 0 0.01 18123 0 0.01 18123 InStreamWithCRC.ll 13 27970 2 0.01 27147 2 0.01 27147 instruct2.ll 12 80841 0 0.02 80811 0 0.01 80811 instruct.ll 33 142160 0 0.02 142130 0 0.02 142130 interface.ll 8 37990 0 0.01 37959 0 0.01 37959 interp.ll 5 83872 0 0.02 83848 0 0.01 83848 intersec.ll 7 17559 0 0.01 17537 0 0.01 17537 intersection.ll 23 77339 0 0.01 77310 0 0.02 77310 interupt.ll 1 2094 0 0.01 2064 0 0.01 2064 IntMM.ll 6 12214 0 0.01 12195 0 0.01 12195 intrarefresh.ll 4 18704 0 0.01 18683 0 0.01 18683 IntToString.ll 7 41828 0 0.01 41801 0 0.01 41801 io.ll 88 1103275 2 0.10 1094991 2 0.11 1094991 IOtestA.ll 3 6815 0 0.01 6790 0 0.01 6790 IOtestB.ll 9 7975 1 0.01 7775 1 0.01 7775 IOtestC.ll 9 8086 1 0.01 7885 1 0.01 7885 IOtest.ll 10 8062 0 0.01 8037 0 0.01 8037 irred.ll 10 115710 0 0.02 115680 0 0.02 115680 iscan.ll 8 168960 0 0.02 168936 0 0.02 168936 is.ll 6 44696 0 0.01 44673 0 0.01 44673 ispell.ll 9 179504 0 0.03 179473 0 0.02 179473 isqrt.ll 1 3774 0 0.01 3736 0 0.01 3736 item.ll 3 3871 0 0.01 3851 0 0.01 3851 ItemNameUtils.ll 5 20927 1 0.01 18555 1 0.01 18555 itop.ll 1 5520 0 0.01 5493 0 0.01 5493 iutil.ll 10 55529 0 0.01 55505 0 0.02 55505 jacobi-1d-imper.ll 12 18897 0 0.01 18852 0 0.01 18852 jacobi-2d-imper.ll 12 25281 0 0.01 25236 0 0.01 25236 Jacobi.ll 2 17391 0 0.01 17369 0 0.01 17369 jcapimin.ll 7 49449 0 0.01 49416 0 0.01 49416 jcapistd.ll 3 35825 0 0.01 35792 0 0.01 35792 jccoefct.ll 6 85032 0 0.02 84999 0 0.02 84999 jccolor.ll 8 82739 0 0.01 82706 0 0.01 82706 jcdctmgr.ll 4 62756 0 0.02 62723 0 0.02 62723 jchuff.ll 14 141140 0 0.02 141107 0 0.02 141107 jcinit.ll 1 14873 0 0.01 14840 0 0.01 14840 jcmainct.ll 3 27525 0 0.01 27492 0 0.01 27492 jcmarker.ll 18 83232 0 0.02 83199 0 0.02 83199 jcmaster.ll 8 154685 0 0.02 154652 0 0.02 154652 jcomapi.ll 4 9668 0 0.01 9635 0 0.01 9635 jcparam.ll 13 104349 0 0.01 104316 0 0.02 104316 jcphuff.ll 15 135194 0 0.02 135161 0 0.02 135161 jcprepct.ll 6 66882 0 0.01 66849 0 0.02 66849 jcsample.ll 10 92605 0 0.01 92572 0 0.01 92572 jctrans.ll 7 83622 0 0.02 83589 0 0.02 83589 jdapimin.ll 10 76843 0 0.01 76810 0 0.01 76810 jdapistd.ll 6 62628 0 0.01 62595 0 0.02 62595 jdatadst.ll 4 22334 0 0.01 22301 0 0.01 22301 jdatasrc.ll 5 25127 0 0.01 25094 0 0.01 25094 jdcoefct.ll 10 148968 0 0.02 148935 0 0.02 148935 jdcolor.ll 7 68724 0 0.01 68691 0 0.01 68691 jddctmgr.ll 2 36578 0 0.01 36545 0 0.01 36545 jdhuff.ll 7 118444 0 0.02 118411 0 0.02 118411 jdinput.ll 8 84668 0 0.02 84635 0 0.02 84635 jdmainct.ll 9 80512 0 0.01 80479 0 0.01 80479 jdmarker.ll 17 330651 0 0.03 330618 0 0.03 330618 jdmaster.ll 8 110499 0 0.02 110466 0 0.01 110466 jdmerge.ll 7 70266 0 0.02 70233 0 0.01 70233 jdphuff.ll 7 154511 0 0.02 154478 0 0.02 154478 jdpostct.ll 5 51697 0 0.01 51664 0 0.01 51664 jdsample.ll 10 82774 0 0.02 82741 0 0.01 82741 jdtrans.ll 2 28853 0 0.01 28820 0 0.01 28820 jerror.ll 6 46027 0 0.01 45994 0 0.01 45994 jfdctflt.ll 1 20150 0 0.01 20117 0 0.01 20117 jfdctfst.ll 1 20298 0 0.01 20265 0 0.01 20265 jfdctint.ll 1 23623 0 0.01 23590 0 0.01 23590 jidctflt.ll 1 39322 0 0.01 39289 0 0.01 39289 jidctfst.ll 1 42115 0 0.01 42082 0 0.01 42082 jidctint.ll 1 45956 0 0.01 45923 0 0.01 45923 jidctred.ll 3 50470 0 0.01 50437 0 0.01 50437 jmemmgr.ll 15 170588 0 0.02 170555 0 0.02 170555 jmemnobs.ll 8 9152 2 0.01 8383 2 0.01 8383 jquant1.ll 17 125661 0 0.02 125628 0 0.01 125628 jquant2.ll 18 189959 0 0.03 189926 0 0.02 189926 jutils.ll 5 7661 0 0.01 7628 0 0.01 7628 kbo.ll 39 93480 1 0.01 93248 1 0.01 93248 kernel.ll 5 27252 0 0.01 27232 0 0.01 27232 keyUnion.ll 2 18655 0 0.01 18630 0 0.01 18630 kimwl.ll 82 359944 1 0.04 359757 1 0.03 359757 kimwy.ll 370 1447814 104 0.11 1433689 104 0.11 1433689 k.ll 2937 7485503 989 0.86 6584270 989 0.64 6584270 KS-1.ll 6 38618 0 0.01 38598 0 0.01 38598 KS-2.ll 8 68887 0 0.02 68867 0 0.02 68867 l3bitstream.ll 11 167472 0 0.02 167441 0 0.02 167441 label.ll 1 1425 0 0.01 1396 0 0.01 1396 Lalign11.ll 3 57428 0 0.01 57413 0 0.01 57413 Lalignmm.ll 6 255613 0 0.03 255598 0 0.03 255598 lalr.ll 17 114241 0 0.02 114215 0 0.02 114215 lambda.ll 3 52003 0 0.01 51978 0 0.01 51978 lame.ll 13 261262 0 0.03 261231 0 0.03 261231 lapi.ll 74 242562 0 0.02 242547 0 0.03 242547 laplace.ll 1 30865 0 0.01 30838 0 0.01 30838 lauxlib.ll 43 110129 0 0.02 110114 0 0.02 110114 layer3.ll 13 435128 0 0.05 435097 0 0.04 435097 lbaselib.ll 43 99233 0 0.02 99218 0 0.02 99218 L_canny.ll 5 57717 0 0.02 57695 0 0.02 57695 lcode.ll 56 172913 0 0.02 172898 0 0.03 172898 ldblib.ll 24 83768 0 0.02 83753 0 0.02 83753 ldebug.ll 32 162976 0 0.02 162961 0 0.02 162961 ldecod.ll 14 149907 0 0.02 149886 0 0.02 149886 ldo.ll 24 152277 0 0.02 152262 0 0.02 152262 ldump.ll 11 32964 0 0.01 32949 0 0.01 32949 leaky_bucket.ll 5 54568 0 0.01 54547 0 0.02 54547 lemon.ll 112 1102968 0 0.11 1102951 0 0.10 1102951 lencod.ll 37 651236 0 0.06 651215 0 0.06 651215 lexer.ll 5 29789 0 0.01 29760 0 0.01 29760 lex.ll 5 53297 0 0.01 53271 0 0.01 53271 lfunc.ll 11 48526 0 0.01 48511 0 0.01 48511 lgc.ll 30 199994 0 0.02 199979 0 0.03 199979 libclamav_aspack.ll 8 105717 0 0.02 105699 0 0.02 105699 libclamav_autoit.ll 11 187044 0 0.03 187026 0 0.02 187026 libclamav_binhex.ll 2 17270 0 0.01 17252 0 0.01 17252 libclamav_blob.ll 22 76107 0 0.02 76089 0 0.02 76089 libclamav_cab.ll 9 141729 0 0.02 141711 0 0.02 141711 libclamav_chmunpack.ll 20 158353 0 0.02 158335 0 0.02 158335 libclamav_cvd.ll 10 77651 0 0.01 77633 0 0.01 77633 libclamav_dconf.ll 5 268564 0 0.03 268546 0 0.03 268546 libclamav_dsig.ll 0 446 0 0.01 428 0 0.01 428 libclamav_elf.ll 5 91347 0 0.02 91329 0 0.02 91329 libclamav_entconv.ll 21 500393 0 0.05 500375 0 0.04 500375 libclamav_filetypes.ll 3 102477 0 0.01 102459 0 0.02 102459 libclamav_fsg.ll 2 24468 0 0.01 24450 0 0.01 24450 libclamav_hashtab.ll 11 52955 0 0.01 52937 0 0.01 52937 libclamav_htmlnorm.ll 21 404257 0 0.04 404239 0 0.04 404239 libclamav_is_tar.ll 2 16818 0 0.01 16800 0 0.01 16800 libclamav_jscript.ll 1 1750 0 0.01 1732 0 0.01 1732 libclamav_line.ll 4 7046 0 0.01 7028 0 0.01 7028 libclamav_lockdb.ll 4 1923 1 0.01 1742 1 0.01 1742 libclamav_matcher-ac.ll 15 250664 0 0.03 250646 0 0.03 250646 libclamav_matcher-bm.ll 4 56561 0 0.01 56543 0 0.01 56543 libclamav_matcher.ll 8 115723 0 0.02 115705 0 0.02 115705 libclamav_mbox.ll 36 497205 0 0.05 497187 0 0.05 497187 libclamav_md5.ll 4 91532 0 0.02 91514 0 0.02 91514 libclamav_message.ll 50 375931 0 0.04 375913 0 0.04 375913 libclamav_mew.ll 12 166000 0 0.02 165982 0 0.02 165982 libclamav_msexpand.ll 1 15843 0 0.01 15825 0 0.01 15825 libclamav_mspack.ll 22 680495 0 0.06 680477 0 0.06 680477 libclamav_nsis_bzlib.ll 12 341616 0 0.03 341598 0 0.03 341598 libclamav_nsis_infblock.ll 3 231466 0 0.03 231448 0 0.03 231448 libclamav_nsis_LZMADecode.ll 3 120231 0 0.02 120213 0 0.02 120213 libclamav_nsis_nulsft.ll 10 123050 0 0.02 123032 0 0.01 123032 libclamav_ole2_extract.ll 14 130730 0 0.02 130712 0 0.02 130712 libclamav_others.ll 32 99680 0 0.02 99662 0 0.01 99662 libclamav_packlibs.ll 3 64575 0 0.02 64557 0 0.02 64557 libclamav_pdf.ll 9 119397 0 0.02 119379 0 0.02 119379 libclamav_pe.ll 7 695545 0 0.06 695527 0 0.06 695527 libclamav_petite.ll 2 124940 0 0.02 124922 0 0.02 124922 libclamav_phishcheck.ll 45 248027 0 0.03 248009 0 0.03 248009 libclamav_phish_domaincheck_db.ll 5 17494 0 0.01 17476 0 0.01 17476 libclamav_phish_whitelist.ll 5 11402 0 0.01 11384 0 0.01 11384 libclamav_pst.ll 1 1776 0 0.01 1758 0 0.01 1758 libclamav_readdb.ll 28 371618 0 0.04 371600 0 0.04 371600 libclamav_rebuildpe.ll 1 24112 0 0.01 24094 0 0.01 24094 libclamav_regex_list.ll 33 243558 0 0.03 243540 0 0.03 243540 libclamav_regex_regcomp.ll 40 331604 1 0.03 331228 1 0.04 331228 libclamav_regex_regerror.ll 2 17527 0 0.01 17509 0 0.01 17509 libclamav_regex_regexec.ll 13 346136 1 0.04 297722 1 0.03 297722 libclamav_regex_regfree.ll 1 7301 0 0.01 7283 0 0.01 7283 libclamav_regex_strlcpy.ll 1 4693 0 0.01 4675 0 0.01 4675 libclamav_rtf.ll 12 145833 0 0.02 145815 0 0.02 145815 libclamav_scanners.ll 30 350019 0 0.04 350001 0 0.04 350001 libclamav_sis.ll 5 121197 0 0.02 121179 0 0.02 121179 libclamav_snprintf.ll 0 450 0 0.01 432 0 0.01 432 libclamav_special.ll 7 43879 0 0.01 43861 0 0.01 43861 libclamav_spin.ll 3 112836 0 0.02 112818 0 0.02 112818 libclamav_str.ll 14 69535 0 0.02 69517 0 0.01 69517 libclamav_suecrypt.ll 1 24263 0 0.01 24245 0 0.01 24245 libclamav_table.ll 7 25850 0 0.01 25832 0 0.01 25832 libclamav_text.ll 11 44243 0 0.01 44225 0 0.01 44225 libclamav_tnef.ll 5 43837 0 0.01 43819 0 0.01 43819 libclamav_unarj.ll 21 171609 0 0.03 171591 0 0.02 171591 libclamav_unsp.ll 10 86405 0 0.01 86387 0 0.01 86387 libclamav_untar.ll 2 37032 0 0.01 37014 0 0.01 37014 libclamav_unzip.ll 12 118858 0 0.02 118840 0 0.01 118840 libclamav_upack.ll 2 194679 0 0.02 194661 0 0.02 194661 libclamav_upx.ll 6 122073 0 0.02 122055 0 0.02 122055 libclamav_uuencode.ll 2 17049 0 0.01 17031 0 0.01 17031 libclamav_vba_extract.ll 26 201027 0 0.02 201009 0 0.02 201009 libclamav_wwunpack.ll 4 74681 0 0.02 74663 0 0.02 74663 libclamav_yc.ll 2 29945 0 0.01 29927 0 0.01 29927 life.ll 19 56067 0 0.01 56038 0 0.01 56038 light.ll 17 23094 0 0.01 23065 0 0.01 23065 LimitedStreams.ll 28 76886 8 0.01 70249 8 0.02 70249 line.ll 1 1899 0 0.01 1870 0 0.01 1870 linemod.ll 1 50101 0 0.01 50072 0 0.01 50072 linit.ll 1 5624 0 0.01 5609 0 0.01 5609 linpack-pc.ll 13 145271 0 0.02 145253 0 0.02 145253 liolib.ll 41 84096 0 0.02 84081 0 0.02 84081 ListFileUtils.ll 8 79532 0 0.02 79505 0 0.01 79505 list.ll 2 7747 0 0.01 7725 0 0.01 7725 List.ll 20 323082 0 0.03 323046 0 0.03 323046 lists1.ll 88 152101 9 0.02 150705 9 0.02 150705 lists.ll 17 45370 0 0.01 45351 0 0.01 45351 literal.ll 1 12664 0 0.01 12646 0 0.01 12646 llex.ll 19 155435 0 0.02 155420 0 0.02 155420 llubenchmark.ll 5 27605 0 0.01 27583 0 0.01 27583 lmathlib.ll 29 34963 0 0.01 34948 0 0.01 34948 lmem.ll 3 12468 0 0.01 12453 0 0.01 12453 loadbins.ll 1 74518 0 0.02 74485 0 0.02 74485 LoadCodecs.ll 20 151022 0 0.02 150987 0 0.02 150987 loadexe.ll 1 16807 0 0.01 16777 0 0.01 16777 loadlib.ll 24 68858 0 0.01 68843 0 0.01 68843 load.ll 5 38589 0 0.01 38569 0 0.00 38569 loadpg.ll 2 73982 0 0.02 73949 0 0.01 73949 lobject.ll 12 62363 0 0.02 62348 0 0.02 62348 LockedStream.ll 7 16832 0 0.01 16800 0 0.01 16800 long_term.ll 4 66031 0 0.02 66001 0 0.02 66001 lookup.ll 2 68844 0 0.01 68813 0 0.01 68813 loopFilter.ll 8 157592 0 0.02 157571 0 0.02 157571 loop_unroll.ll 602 1276589 8 0.30 1276255 8 0.16 1276255 lopcodes.ll 0 5630 0 0.01 5615 0 0.01 5615 loslib.ll 17 46260 0 0.01 46245 0 0.01 46245 lowercase.ll 4 10513 0 0.01 10498 0 0.01 10498 lparser.ll 69 259824 0 0.03 259809 0 0.03 259809 lpbench.ll 8 51184 0 0.01 51162 0 0.02 51162 lpc.ll 5 97839 0 0.01 97809 0 0.02 97809 LR0.ll 13 75095 0 0.02 75069 0 0.02 75069 lr.ll 28 171193 0 0.02 171180 0 0.02 171180 lstate.ll 10 51152 0 0.01 51137 0 0.01 51137 lstring.ll 4 34379 0 0.01 34364 0 0.01 34364 lstrlib.ll 45 196047 0 0.03 196032 0 0.03 196032 ltable.ll 26 120256 0 0.02 120241 0 0.02 120241 ltablib.ll 14 43214 0 0.01 43199 0 0.01 43199 ltm.ll 3 18146 0 0.01 18131 0 0.01 18131 lua.ll 23 81489 0 0.02 81474 0 0.01 81474 lu.ll 12 21812 0 0.01 21766 0 0.01 21766 LU.ll 3 17827 0 0.01 17807 0 0.01 17807 lundump.ll 13 58663 0 0.01 58648 0 0.02 58648 lvm.ll 17 299068 0 0.03 299053 0 0.03 299053 LzFind.ll 29 150162 0 0.02 150146 0 0.02 150146 LzFindMt.ll 36 115911 0 0.02 115895 0 0.02 115895 lzio.ll 5 16946 0 0.01 16931 0 0.01 16931 Lzma2Dec.ll 6 34672 0 0.01 34656 0 0.01 34656 Lzma2Decoder.ll 47 123195 0 0.02 123161 0 0.02 123161 Lzma2Enc.ll 9 50651 0 0.02 50635 0 0.01 50635 Lzma2Encoder.ll 26 63272 0 0.01 63238 0 0.01 63238 Lzma2Register.ll 3 5428 0 0.01 5394 0 0.01 5394 LzmaDec.ll 12 174036 0 0.02 174020 0 0.02 174020 LzmaDecoder.ll 54 144150 0 0.02 144116 0 0.02 144116 LzmaEnc.ll 34 561599 0 0.05 561583 0 0.05 561583 LzmaEncoder.ll 26 69074 0 0.02 69040 0 0.02 69040 LzmaHandler.ll 30 172531 0 0.02 172498 0 0.02 172498 LzmaRegister.ll 3 5330 0 0.01 5296 0 0.01 5296 LzOutWindow.ll 1 1744 0 0.01 1710 0 0.01 1710 Lzx86Converter.ll 8 28325 0 0.01 28291 0 0.01 28291 LzxDecoder.ll 30 276485 0 0.03 276451 0 0.03 276451 machine.ll 15 88030 0 0.01 88000 0 0.02 88000 macroblock.ll 48 986275 0 0.09 986254 0 0.09 986254 MainAr.ll 2 33051 0 0.01 33015 0 0.01 33015 main.ll 1 30703 0 0.01 30678 0 0.01 30678 Main.ll 48 507074 2 0.04 503696 2 0.04 503696 makebins.ll 1 24004 0 0.01 23971 0 0.01 23971 makedent.ll 22 116629 0 0.02 116598 0 0.02 116598 make_dparser.ll 2 27868 0 0.01 27855 0 0.01 27855 make_graph.ll 14 58363 0 0.01 58343 0 0.01 58343 makegraph.ll 6 19891 0 0.01 19872 0 0.01 19872 makelink.ll 3 20866 0 0.01 20833 0 0.01 20833 makesite.ll 2 56296 0 0.01 56263 0 0.01 56263 maketree.ll 3 19943 0 0.01 19918 0 0.01 19918 mandel-2.ll 4 9495 0 0.01 9480 0 0.01 9480 mandel.ll 4 10074 0 0.01 10059 0 0.01 10059 mandel-text.ll 1 9372 0 0.00 9351 0 0.00 9351 map.ll 1 7301 0 0.00 7270 0 0.01 7270 maskgen.ll 1 54157 0 0.02 54131 0 0.01 54131 mason.ll 10 49163 1 0.01 48786 1 0.01 48786 matchpat.ll 1 30952 0 0.01 30926 0 0.01 30926 matmul_f64_4x4.ll 3 47703 0 0.01 47688 0 0.01 47688 matrix_dec.ll 9 60244 0 0.01 60221 0 0.01 60221 matrix_enc.ll 6 52336 0 0.01 52313 0 0.01 52313 matrix.ll 6 16895 0 0.01 16876 0 0.01 16876 matrixTranspose.ll 2 11809 0 0.01 11797 0 0.01 11797 maze.ll 18 150317 0 0.02 150294 0 0.02 150294 mb_access.ll 9 109296 0 0.02 109275 0 0.02 109275 mbuffer.ll 72 1035547 0 0.09 1035526 0 0.09 1035526 md5.ll 7 107655 0 0.02 107629 0 0.02 107629 md_highfast.ll 1 163560 0 0.02 163539 0 0.02 163539 md_high.ll 1 124678 0 0.02 124657 0 0.02 124657 md_highloss.ll 1 128198 0 0.02 128177 0 0.02 128177 md_low.ll 1 156206 0 0.02 156185 0 0.02 156185 me_distortion.ll 21 382990 0 0.04 382969 0 0.04 382969 me_epzs.ll 26 932551 0 0.09 932530 0 0.08 932530 me_fullfast.ll 10 268886 0 0.03 268865 0 0.03 268865 me_fullsearch.ll 5 205532 0 0.03 205511 0 0.02 205511 memalloc.ll 47 144392 0 0.02 144371 0 0.02 144371 member-function-pointers.ll 6 7652 0 0.01 7641 0 0.01 7641 MemBlocks.ll 16 46800 0 0.01 46768 0 0.01 46768 memory.ll 12 44937 0 0.01 44907 0 0.01 44907 methcall.ll 9 15754 0 0.01 15735 0 0.01 15735 MethodId.ll 1 6496 0 0.01 6464 0 0.01 6464 MethodProps.ll 3 36369 0 0.01 36337 0 0.01 36337 me_umhex.ll 14 589759 0 0.05 589738 0 0.06 589738 me_umhexsmp.ll 12 428141 0 0.05 428120 0 0.04 428120 mgrep.ll 7 78013 0 0.02 77987 0 0.01 77987 miller.ll 1 19639 0 0.01 19622 0 0.01 19622 mincov.ll 5 84617 0 0.01 84587 0 0.02 84587 misc.ll 3 3522 0 0.01 3506 0 0.01 3506 misr.ll 5 37248 0 0.01 37231 0 0.01 37231 mltaln9.ll 97 1219770 0 0.12 1219755 0 0.11 1219755 MM.ll 10 26286 0 0.01 26264 0 0.01 26264 mode_decision.ll 13 310026 0 0.03 310005 0 0.04 310005 moments.ll 85 189321 2 0.03 188809 2 0.02 188809 MonteCarlo.ll 2 4623 0 0.01 4603 0 0.01 4603 motion.ll 4 29116 0 0.01 29081 0 0.01 29081 move_gen.ll 4 19525 0 0.01 19506 0 0.01 19506 move.ll 1 1779 0 0.01 1750 0 0.01 1750 move_sort.ll 1 13296 0 0.01 13277 0 0.01 13277 mpeg2dec.ll 12 68101 0 0.01 68066 0 0.01 68066 mpglib_main.ll 5 28228 0 0.01 28197 0 0.01 28197 mpistubs.ll 45 34470 16 0.01 28963 16 0.01 28963 MSalign11.ll 5 115701 0 0.02 115686 0 0.02 115686 MSalignmm.ll 5 185410 0 0.03 185395 0 0.02 185395 mshortest.ll 3 106701 0 0.02 106668 0 0.02 106668 ms_struct-bitfield-1.ll 1 2844 0 0.01 2835 0 0.01 2835 ms_struct-bitfield-init-1.ll 1 9535 0 0.01 9526 0 0.01 9526 ms_struct-bitfield-init.ll 1 5713 0 0.01 5704 0 0.01 5704 ms_struct-bitfield.ll 1 2461 0 0.01 2452 0 0.01 2452 ms_struct_pack_layout-1.ll 1 822 0 0.01 813 0 0.01 813 ms_struct_pack_layout.ll 1 16282 0 0.01 16273 0 0.01 16273 MtCoder.ll 13 53065 0 0.01 53049 0 0.01 53049 mt.ll 15 105859 0 0.02 105826 0 0.01 105826 mtxutl.ll 37 73859 3 0.02 73479 3 0.01 73479 multiplies.ll 2 13779 0 0.01 13763 0 0.01 13763 MultiStream.ll 11 33506 0 0.01 33466 0 0.01 33466 mv-search.ll 15 596890 0 0.05 596869 0 0.05 596869 mvt.ll 12 25713 0 0.01 25666 0 0.01 25666 myAddExeFlag.ll 1 3824 0 0.01 3794 0 0.01 3794 MyAes.ll 26 38212 4 0.01 38282 4 0.01 38282 myGetTickCount.ll 1 1173 0 0.01 1143 0 0.01 1143 mySplitCommandLine.ll 2 29158 0 0.01 29128 0 0.01 29128 MyString.ll 12 24293 0 0.01 24266 0 0.01 24266 MyVector.ll 12 20857 0 0.01 20830 0 0.01 20830 MyWindows.ll 8 14356 0 0.01 14329 0 0.01 14329 nal.ll 4 34109 0 0.01 34088 0 0.00 34088 nal_part.ll 1 8911 0 0.01 8890 0 0.01 8890 nalucommon.ll 2 12804 0 0.01 12783 0 0.01 12783 nalu.ll 1 13726 0 0.01 13705 0 0.01 13705 nbench0.ll 15 99749 0 0.02 99733 0 0.02 99733 nbench1.ll 66 433216 0 0.05 433200 0 0.04 433200 n-body.ll 4 27716 0 0.01 27692 0 0.01 27692 negamax.ll 4 187684 0 0.02 187665 0 0.03 187665 nestedloop.ll 2 7958 0 0.01 7939 0 0.01 7939 neural.ll 12 88340 0 0.02 88314 0 0.01 88314 newbh.ll 30 205828 0 0.02 205810 0 0.02 205810 newmdct.ll 5 165314 0 0.02 165283 0 0.02 165283 neworient.ll 1 18392 0 0.01 18359 0 0.01 18359 newton.ll 1 5663 0 0.01 5634 0 0.01 5634 newvor.ll 32 132156 0 0.02 132133 0 0.02 132133 node.ll 2 6852 0 0.01 6829 0 0.01 6829 nonterminal.ll 3 8374 0 0.00 8358 0 0.01 8358 NP.ll 8 8046 0 0.01 8019 0 0.01 8019 nsieve-bits.ll 1 8138 0 0.01 8114 0 0.01 8114 nullable.ll 2 19056 0 0.01 19030 0 0.01 19030 number.ll 24 189849 0 0.02 189829 0 0.03 189829 object.ll 26 138839 0 0.02 138816 0 0.02 138816 objects.ll 42 87564 0 0.02 87532 0 0.02 87532 objinst.ll 9 18016 0 0.01 17997 0 0.01 17997 obsequi.ll 14 67366 0 0.02 67347 0 0.01 67347 occur.ll 25 259711 8 0.02 264072 8 0.02 264072 ocean.ll 58 124487 7 0.02 124319 7 0.02 124319 office.ll 17 43233 0 0.01 43202 0 0.01 43202 OffsetStream.ll 9 18147 0 0.01 18115 0 0.01 18115 ofstream_ctor.ll 13 28636 0 0.01 28620 0 0.01 28620 oggenc.ll 432 6252845 1 0.50 6251994 1 0.50 6251994 oopack_v1p8.ll 48 93691 0 0.01 93670 0 0.01 93670 oourafft.ll 12 212077 0 0.03 212062 0 0.03 212062 OpenArchive.ll 24 360906 0 0.03 360871 0 0.04 360871 OpenCallbackConsole.ll 7 19402 1 0.01 19174 1 0.01 19174 openFiles.ll 1 27101 0 0.01 27076 0 0.01 27076 opening.ll 1 8978 0 0.01 8952 0 0.01 8952 openpl.ll 1 1382 0 0.01 1353 0 0.01 1353 openregn.ll 1 5488 0 0.01 5462 0 0.01 5462 operator.ll 4 6969 0 0.01 6953 0 0.01 6953 oper.ll 17 142262 0 0.02 142244 0 0.02 142244 op.ll 0 6366 0 0.01 6349 0 0.01 6349 opo.ll 10 154964 0 0.02 154934 0 0.01 154934 op_tab.ll 1 21908 0 0.01 21878 0 0.01 21878 option.ll 1 2602 0 0.01 2579 0 0.01 2579 options.ll 20 132186 0 0.02 132168 0 0.02 132168 order.ll 34 90612 2 0.01 90188 2 0.01 90188 Oscar.ll 10 39764 0 0.01 39745 0 0.01 39745 outbig.ll 1 39877 0 0.01 39844 0 0.01 39844 OutBuffer.ll 8 20835 0 0.01 20803 0 0.01 20803 outgeo.ll 1 47164 0 0.01 47131 0 0.01 47131 OutMemStream.ll 14 48489 0 0.01 48457 0 0.00 48457 outpin.ll 1 28776 0 0.01 28743 0 0.01 28743 output.ll 28 165079 0 0.02 165053 0 0.02 165053 outputMetricsData.ll 1 12715 0 0.01 12690 0 0.01 12690 outputQuery.ll 3 11755 0 0.01 11730 0 0.01 11730 outsmall.ll 1 34758 0 0.01 34725 0 0.01 34725 OutStreamWithCRC.ll 6 14726 0 0.01 14686 0 0.01 14686 pabs.ll 1 6194 0 0.01 6167 0 0.01 6167 packet.ll 2 119802 0 0.02 119771 0 0.02 119771 padd.ll 1 19100 0 0.01 19073 0 0.01 19073 pair.ll 16 163777 0 0.02 163747 0 0.02 163747 pairlocalalign.ll 15 177485 0 0.02 177470 0 0.02 177470 paq8p.ll 213 1199141 39 0.11 1182342 39 0.12 1182342 par-alloc.ll 1 4233 0 0.01 4210 0 0.01 4210 parse.ll 10 66101 0 0.01 66075 0 0.01 66075 ParseProperties.ll 7 32916 0 0.01 32876 0 0.01 32876 parser.ll 20 150841 0 0.02 150812 0 0.02 150812 parse_settings.ll 2 11472 0 0.01 11444 0 0.01 11444 parsetcommon.ll 4 13392 0 0.01 13371 0 0.01 13371 parset.ll 14 227825 0 0.03 227804 0 0.03 227804 partialsums.ll 3 14658 0 0.01 14634 0 0.01 14634 partitionEntries.ll 1 22312 0 0.01 22287 0 0.01 22287 partition.ll 17 27400 0 0.01 27383 0 0.01 27383 part.ll 4 26410 0 0.01 26380 0 0.01 26380 partQalignmm.ll 10 259060 0 0.03 259045 0 0.03 259045 partSalignmm.ll 10 223543 0 0.04 223528 0 0.02 223528 pass1.ll 1 21929 0 0.01 21902 0 0.01 21902 pass2.ll 1 24560 0 0.01 24533 0 0.01 24533 pat.ll 90 562306 42 0.04 593315 42 0.04 593315 patricia.ll 5 56037 0 0.01 56003 0 0.01 56003 patricia_test.ll 1 18675 0 0.01 18641 0 0.01 18641 pattern.ll 2 8589 0 0.01 8573 0 0.01 8573 Pbkdf2HmacSha1.ll 2 20030 0 0.01 19998 0 0.01 19998 pbmsrch.ll 4 199017 0 0.02 198980 0 0.02 198980 pc1cod.ll 4 30661 0 0.01 30635 0 0.01 30635 pcfrac.ll 17 134568 0 0.02 134541 0 0.02 134541 pcg.ll 17 72576 0 0.02 72547 0 0.01 72547 pcg_struct.ll 16 19663 0 0.01 19634 0 0.01 19634 pcmp.ll 2 17108 0 0.01 17081 0 0.01 17081 pcompress2.ll 1 5430 0 0.01 5400 0 0.01 5400 pconst.ll 0 1193 0 0.01 1166 0 0.01 1166 pdivmod.ll 1 56092 0 0.01 56065 0 0.01 56065 penalty.ll 1 2377 0 0.01 2352 0 0.01 2352 PercentPrinter.ll 6 21343 0 0.01 21307 0 0.01 21307 perimeter.ll 1 12967 0 0.01 12934 0 0.01 12934 perlin.ll 6 22935 0 0.01 22920 0 0.01 22920 Perm.ll 7 10057 0 0.01 10038 0 0.01 10038 perrmesg.ll 4 56145 0 0.01 56111 0 0.01 56111 pfloat.ll 2 11043 0 0.01 11016 0 0.01 11016 pgcd.ll 1 9321 0 0.01 9294 0 0.01 9294 pgm.ll 10 51048 0 0.02 51026 0 0.02 51026 phalf.ll 1 1984 0 0.01 1957 0 0.01 1957 picmp.ll 1 8188 0 0.01 8161 0 0.01 8161 pidiv.ll 1 13345 0 0.01 13318 0 0.01 13318 pifft.ll 39 263480 0 0.03 263455 0 0.03 263455 pi.ll 2 7771 0 0.01 7756 0 0.01 7756 pimod.ll 1 8853 0 0.01 8826 0 0.01 8826 pio.ll 5 29189 0 0.01 29162 0 0.01 29162 placepads.ll 1 117622 0 0.02 117589 0 0.02 117589 placepin.ll 1 45215 0 0.01 45182 0 0.01 45182 plank.ll 27 190719 0 0.02 190703 0 0.02 190703 play.ll 6 16483 0 0.01 16462 0 0.01 16462 plot.ll 7 123729 0 0.02 123700 0 0.02 123700 pmul.ll 1 19536 0 0.01 19509 0 0.01 19509 pneg.ll 1 7311 0 0.01 7284 0 0.01 7284 podd.ll 1 3991 0 0.01 3964 0 0.01 3964 pointer_arithmetic.ll 3 1706 1 0.01 1731 1 0.01 1731 pointer_member.ll 1 2820 0 0.01 2804 0 0.01 2804 pointer_method2.ll 12 17118 0 0.01 17102 0 0.01 17102 pointer_method.ll 4 5767 0 0.01 5751 0 0.01 5751 pointlis.ll 7 36345 0 0.01 36323 0 0.01 36323 point.ll 1 1705 0 0.01 1676 0 0.01 1676 point_relax.ll 12 306051 0 0.03 306022 0 0.03 306022 poisson.ll 1 2668 0 0.01 2646 0 0.01 2646 pops.ll 10 21600 0 0.01 21573 0 0.01 21573 portableio.ll 28 30128 1 0.01 29385 1 0.01 29385 position_values.ll 2 25543 0 0.01 25524 0 0.01 25524 Ppmd7Dec.ll 6 36050 0 0.01 36034 0 0.01 36034 Ppmd7Enc.ll 3 56172 0 0.01 56156 0 0.02 56156 Ppmd7.ll 14 127258 0 0.02 127242 0 0.02 127242 Ppmd8Dec.ll 2 42218 0 0.01 42202 0 0.01 42202 Ppmd8Enc.ll 2 39910 0 0.01 39894 0 0.01 39894 Ppmd8.ll 17 218813 0 0.02 218797 0 0.02 218797 PpmdDecoder.ll 40 81362 0 0.02 81328 0 0.01 81328 PpmdEncoder.ll 24 73540 0 0.01 73506 0 0.02 73506 PpmdHandler.ll 34 195865 0 0.02 195832 0 0.03 195832 PpmdRegister.ll 5 14936 0 0.01 14902 0 0.01 14902 PpmdZip.ll 18 67245 3 0.01 64946 3 0.01 64946 ppowmod.ll 1 11109 0 0.01 11082 0 0.01 11082 PR1386.ll 1 2570 0 0.01 2558 0 0.01 2558 PR491.ll 3 4997 0 0.01 4985 0 0.01 4985 PR640.ll 4 19066 0 0.01 19054 0 0.01 19054 prboard.ll 1 24762 0 0.01 24729 0 0.01 24729 prepair.ll 1 8790 0 0.01 8757 0 0.01 8757 preprocess.ll 1 12481 0 0.01 12451 0 0.01 12451 prestrict.ll 1 16735 0 0.01 16702 0 0.01 16702 primes.ll 9 14036 0 0.01 14005 0 0.01 14005 printargs.ll 1 2837 0 0.01 2828 0 0.01 2828 printgph.ll 1 12861 0 0.01 12828 0 0.01 12828 print.ll 4 23223 0 0.01 23193 0 0.01 23193 printnets.ll 1 17393 0 0.01 17360 0 0.01 17360 procesnet.ll 3 102636 0 0.02 102603 0 0.02 102603 procquery.ll 2 37292 0 0.01 37258 0 0.01 37258 ProgressMt.ll 9 27557 0 0.01 27525 0 0.01 27525 ProgressUtils.ll 10 28959 0 0.01 28927 0 0.01 28927 project.ll 3 13384 0 0.01 13355 0 0.01 13355 proofcheck.ll 122 207733 8 0.02 206375 8 0.03 206375 PropIDUtils.ll 2 65132 0 0.01 65097 0 0.01 65097 PropVariantConversions.ll 4 45669 0 0.01 45641 0 0.01 45641 PropVariant.ll 23 90547 2 0.01 84417 2 0.01 84417 pseudo.ll 11 132106 0 0.02 132076 0 0.02 132076 psqrt.ll 1 7056 0 0.01 7029 0 0.01 7029 psub.ll 1 20187 0 0.01 20160 0 0.01 20160 psymodel.ll 2 270891 0 0.03 270860 0 0.03 270860 ptalloc.ll 3 6768 0 0.01 6734 0 0.01 6734 ptoa.ll 1 16862 0 0.01 16835 0 0.01 16835 ptou.ll 1 7432 0 0.01 7405 0 0.01 7405 puzzle.ll 7 13008 0 0.01 12984 0 0.01 12984 Puzzle.ll 8 59672 0 0.01 59653 0 0.02 59653 pw.ll 6 31350 0 0.01 31319 0 0.01 31319 Qalignmm.ll 14 343623 0 0.04 343608 0 0.04 343608 q_matrix.ll 8 180117 0 0.02 180096 0 0.03 180096 q_offsets.ll 9 107882 0 0.02 107861 0 0.02 107861 QRfact.ll 4 32855 0 0.01 32833 0 0.01 32833 quantize.ll 9 203265 0 0.02 203234 0 0.03 203234 quantize-pvt.ll 14 149399 0 0.02 149368 0 0.02 149368 QuantumDecoder.ll 29 168313 0 0.02 168279 0 0.02 168279 queens.ll 4 24087 0 0.01 24070 0 0.01 24070 Queens.ll 6 16571 0 0.01 16552 0 0.01 16552 query.ll 1 16747 0 0.01 16722 0 0.01 16722 queue.ll 4 8925 0 0.01 8909 0 0.01 8909 Quicksort.ll 6 14846 0 0.01 14827 0 0.01 14827 rad2deg.ll 2 2052 0 0.01 2014 0 0.01 2014 Ralignmm.ll 8 207016 0 0.02 207001 0 0.02 207001 RandGen.ll 4 16724 0 0.01 16692 0 0.01 16692 random.ll 3 4973 0 0.01 4954 0 0.01 4954 Random.ll 7 22081 0 0.01 22061 0 0.01 22061 ratectl.ll 9 51434 0 0.01 51413 0 0.01 51413 rawcaudio.ll 1 5109 0 0.01 5073 0 0.01 5073 rawdaudio.ll 1 5091 0 0.01 5055 0 0.01 5055 ray.ll 79 139066 5 0.02 139086 5 0.02 139086 rc4.ll 3 19957 0 0.01 19931 0 0.01 19931 rc_quadratic.ll 33 606928 0 0.06 606907 0 0.05 606907 rdbmp.ll 8 101085 0 0.02 101052 0 0.01 101052 rdcolmap.ll 6 48834 0 0.01 48803 0 0.01 48803 rdgif.ll 15 124563 0 0.02 124530 0 0.02 124530 rdopt_coding_state.ll 4 55171 0 0.02 55150 0 0.02 55150 rdopt.ll 36 1039504 0 0.09 1039483 0 0.09 1039483 rdpicdecision.ll 2 29320 0 0.01 29299 0 0.01 29299 rdppm.ll 12 88765 0 0.02 88732 0 0.02 88732 rdrle.ll 0 452 0 0.01 419 0 0.01 419 rdswitch.ll 7 56495 0 0.01 56462 0 0.01 56462 rdtarga.ll 13 92778 0 0.02 92745 0 0.02 92745 readcells.ll 1 326607 0 0.04 326574 0 0.03 326574 read_dmatrix.ll 4 14275 0 0.01 14256 0 0.01 14256 reader.ll 23 204451 0 0.02 204425 0 0.02 204425 readgeo.ll 1 60074 0 0.01 60041 0 0.02 60041 readgraph.ll 1 46378 0 0.01 46345 0 0.01 46345 readlist.ll 1 10110 0 0.01 10085 0 0.01 10085 readnets.ll 1 36282 0 0.01 36249 0 0.01 36249 readpar.ll 1 177341 0 0.02 177308 0 0.02 177308 readpnode.ll 1 137417 0 0.01 137384 0 0.01 137384 RealMM.ll 6 12579 0 0.01 12560 0 0.01 12560 rebin.ll 1 19627 0 0.01 19594 0 0.01 19594 recon.ll 3 88529 0 0.02 88494 0 0.02 88494 record.ll 6 17092 0 0.01 17062 0 0.01 17062 recursive.ll 6 10689 0 0.01 10665 0 0.01 10665 recursive-throw.ll 7 10633 2 0.01 10757 2 0.01 10757 reduceg.ll 1 194285 0 0.02 194252 0 0.02 194252 reduce.ll 6 67159 0 0.01 67129 0 0.01 67129 ReedSolomon.ll 7 105688 0 0.02 105673 0 0.02 105673 refbuf.ll 7 17781 0 0.01 17760 0 0.01 17760 reg_detect.ll 12 35131 0 0.01 35093 0 0.01 35093 regex.ll 0 453 0 0.01 419 0 0.01 419 relax.ll 1 15238 0 0.01 15211 0 0.01 15211 rem.ll 2 86540 0 0.02 86517 0 0.02 86517 renaming.ll 96 315158 5 0.03 313834 5 0.03 313834 reservoir.ll 4 16376 0 0.01 16345 0 0.01 16345 resolution.ll 24 37915 0 0.01 37898 0 0.01 37898 resolve.ll 2 31249 0 0.01 31218 0 0.01 31218 reversefile.ll 117 191493 10 0.02 190376 10 0.03 190376 rglobals.ll 0 2330 0 0.01 2297 0 0.01 2297 richards_benchmark.ll 15 42180 0 0.01 42165 0 0.01 42165 rk.ll 387 1950440 103 0.17 1871681 103 0.14 1871681 rmain.ll 1 44611 0 0.01 44578 0 0.01 44578 rmatmult3.ll 1 44876 0 0.01 44849 0 0.01 44849 rna.ll 7 143455 0 0.02 143440 0 0.02 143440 roadlet.ll 10 18018 0 0.01 17989 0 0.01 17989 rotate.ll 1 1688 0 0.01 1659 0 0.01 1659 routenet.ll 2 119348 0 0.02 119315 0 0.02 119315 rows.ll 13 64096 0 0.02 64066 0 0.02 64066 rpe.ll 8 58758 0 0.01 58728 0 0.01 58728 rpos.ll 50 98419 1 0.01 98187 1 0.01 98187 rtp.ll 3 19364 0 0.01 19333 0 0.01 19333 rule.ll 3 7985 0 0.01 7969 0 0.01 7969 rules-inf.ll 205 681850 13 0.06 681793 13 0.06 681558 rules-red.ll 240 699484 15 0.06 702599 15 0.06 702599 rules-sort.ll 137 323874 10 0.04 320965 10 0.03 320788 rules-split.ll 63 98876 3 0.02 100267 3 0.01 100267 rules-ur.ll 88 112031 7 0.02 109646 7 0.02 109646 SAalignmm.ll 3 87431 0 0.02 87416 0 0.02 87416 Salignmm.ll 14 266793 0 0.03 266778 0 0.03 266778 salsa20.ll 3 36062 0 0.01 36047 0 0.01 36047 savewolf.ll 2 130823 0 0.02 130790 0 0.02 130790 scan_line.ll 7 36711 0 0.01 36681 0 0.01 36681 scan.ll 12 90419 0 0.02 90399 0 0.01 90399 scimark2.ll 3 31764 0 0.01 31744 0 0.01 31744 scrapnet.ll 1 9001 0 0.00 8968 0 0.01 8968 scrappin.ll 1 5020 0 0.01 4987 0 0.01 4987 SearchGame.ll 23 69760 0 0.02 69735 0 0.02 69735 search.ll 8 56463 0 0.01 56432 0 0.01 56432 seed.ll 1 1269 0 0.01 1243 0 0.01 1243 seidel-2d.ll 12 23212 0 0.01 23173 0 0.01 23173 sei.ll 53 230283 0 0.03 230262 0 0.03 230262 selectpin.ll 1 26752 0 0.01 26719 0 0.01 26719 semi_interp.ll 4 139971 0 0.02 139942 0 0.02 139942 semi_restrict.ll 4 107446 0 0.02 107417 0 0.01 107417 setc.ll 13 101613 0 0.02 101583 0 0.02 101583 sethand.ll 1 8398 0 0.01 8372 0 0.01 8372 set_key.ll 5 31563 0 0.01 31536 0 0.01 31536 set.ll 50 180298 0 0.02 180268 0 0.03 180268 setMetricsData.ll 1 5580 0 0.01 5555 0 0.01 5555 SetProperties.ll 7 71034 0 0.01 70999 0 0.02 70999 setpwates.ll 1 9223 0 0.01 9190 0 0.01 9190 sgefa.ll 1 16061 0 0.01 16044 0 0.01 16044 sgesl.ll 1 20330 0 0.01 20313 0 0.01 20313 sgrep.ll 17 183695 0 0.02 183669 0 0.02 183669 Sha1.ll 8 64276 0 0.01 64244 0 0.01 64244 Sha256.ll 4 31088 0 0.01 31072 0 0.01 31072 sha_driver.ll 1 5455 0 0.01 5425 0 0.01 5425 sha.ll 7 35560 0 0.01 35530 0 0.01 35530 shared_cdiff.ll 13 144745 0 0.02 144727 0 0.02 144727 shared_cfgparser.ll 8 135576 1 0.02 133035 1 0.02 133035 shared_getopt.ll 0 445 0 0.01 427 0 0.01 427 shared_misc.ll 8 46212 0 0.01 46194 0 0.02 46194 shared_network.ll 1 4089 0 0.01 4071 0 0.01 4071 shared_options.ll 7 47416 0 0.01 47398 0 0.01 47398 shared_output.ll 5 33691 0 0.01 33673 0 0.01 33673 shared_sha256.ll 6 147998 0 0.02 147980 0 0.02 147980 sharing.ll 99 136835 5 0.02 137142 5 0.02 137142 sharp.ll 10 64523 0 0.02 64493 0 0.01 64493 shell.ll 32 530015 0 0.05 529996 0 0.05 529996 short_circuit_dtor.ll 6 7899 0 0.01 7883 0 0.01 7883 shortpath.ll 1 11220 0 0.01 11187 0 0.01 11187 short_term.ll 10 77386 0 0.02 77356 0 0.02 77356 showbord.ll 1 61149 0 0.01 61123 0 0.01 61123 showinst.ll 2 10883 0 0.01 10857 0 0.01 10857 ShrinkDecoder.ll 8 60165 0 0.02 60131 0 0.01 60131 shr.ll 17 14329 0 0.01 14306 0 0.01 14306 sieve.ll 2 7338 0 0.01 7319 0 0.01 7319 sig.ll 3 54374 0 0.01 54357 0 0.01 54357 sim4b1.ll 41 612189 0 0.06 612170 0 0.06 612170 sim4.init.ll 14 155560 0 0.02 155541 0 0.02 155541 sim_debug.ll 1 10622 0 0.01 10592 0 0.01 10592 sim.ll 16 297969 0 0.03 297956 0 0.03 297956 simple.ll 3 13217 0 0.01 13201 0 0.01 13201 simple_rethrow.ll 4 7766 0 0.01 7747 0 0.01 7747 simple_throw.ll 3 4769 0 0.01 4750 0 0.01 4750 simple_types_constant_folding.ll 892 1318975 228 0.41 1097834 228 0.20 1097834 simple_types_loop_invariant.ll 510 1079518 16 0.15 1071531 16 0.14 1071531 simulate.ll 56 78172 4 0.02 76069 4 0.02 76069 siod.ll 1 3136 0 0.01 3120 0 0.01 3120 skeleton.ll 3 27643 0 0.01 27625 0 0.01 27625 skels.ll 0 22939 0 0.01 22921 0 0.01 22921 sliba.ll 152 607878 0 0.06 607862 0 0.06 607862 slib.ll 216 650836 1 0.06 648958 1 0.06 648958 slibu.ll 124 377451 0 0.04 377435 0 0.04 377435 slice.ll 17 324369 0 0.04 324348 0 0.03 324348 smallpt.ll 17 81662 0 0.02 81642 0 0.02 81642 smg2000.ll 3 151681 0 0.02 151652 0 0.02 151652 smg2_setup_rap.ll 5 499522 0 0.05 499493 0 0.05 499493 smg3_setup_rap.ll 5 1137824 0 0.10 1137795 0 0.10 1137795 smg_axpy.ll 1 53194 0 0.01 53165 0 0.01 53165 smg.ll 15 86226 0 0.02 86197 0 0.02 86197 smg_relax.ll 26 133927 0 0.02 133898 0 0.02 133898 smg_residual.ll 5 144063 0 0.02 144034 0 0.02 144034 smg_setup_interp.ll 2 82572 0 0.02 82543 0 0.02 82543 smg_setup.ll 1 125658 0 0.02 125629 0 0.02 125629 smg_setup_rap.ll 2 16139 0 0.01 16110 0 0.01 16110 smg_setup_restrict.ll 2 4625 0 0.01 4596 0 0.01 4596 smg_solve.ll 1 54745 0 0.01 54716 0 0.00 54716 sminterf.ll 1 12591 0 0.01 12561 0 0.01 12561 solution.ll 7 17336 0 0.01 17306 0 0.01 17306 Solver.ll 173 422515 23 0.04 414120 23 0.05 414120 SOR.ll 2 8689 0 0.01 8669 0 0.01 8669 sort.ll 12 187687 0 0.02 187658 0 0.02 187658 Sort.ll 1 9528 0 0.01 9512 0 0.01 9512 SortUtils.ll 3 14655 0 0.01 14620 0 0.01 14620 space.ll 1 4127 0 0.01 4098 0 0.01 4098 SparseCompRow.ll 2 6976 0 0.01 6956 0 0.01 6956 sparse.ll 2 33570 0 0.01 33540 0 0.01 33540 spatscal.ll 7 61533 0 0.01 61498 0 0.01 61498 spectral-norm.ll 6 15472 0 0.01 15448 0 0.01 15448 SPEdriver.ll 1 11399 0 0.01 11368 0 0.01 11368 spellcheck.ll 111 213987 7 0.02 213104 7 0.03 213104 sphereflake.ll 44 94579 0 0.02 94552 0 0.02 94552 SphereTriangleDetector.ll 50 138184 3 0.02 136305 3 0.02 136305 spiff.ll 4 36523 0 0.01 36506 0 0.01 36506 spirit.ll 3606 8267982 1639 2.71 7833264 1638 0.75 7835531 splay2.ll 10 63551 0 0.01 63529 0 0.01 63529 splay.ll 8 36831 0 0.01 36809 0 0.01 36809 SplitHandler.ll 36 338819 1 0.03 336120 1 0.03 336120 splitNode.ll 1 8360 0 0.01 8335 0 0.01 8335 sqlite3.ll 1054 7247672 4 0.71 7245842 4 0.71 7245842 sse.expandfft.ll 9 75273 0 0.02 75253 0 0.01 75253 sse.isamax.ll 13 32431 0 0.01 32411 0 0.01 32411 sse.shift.ll 6 7035 0 0.01 7015 0 0.01 7015 sse.stepfft.ll 11 53308 0 0.02 53288 0 0.01 53288 stack.ll 0 552 0 0.01 535 0 0.01 535 stats.ll 7 153843 0 0.02 153814 0 0.02 153814 stcopy.ll 3 7686 0 0.01 7652 0 0.01 7652 StdInStream.ll 9 29832 0 0.01 29805 0 0.01 29805 StdOutStream.ll 12 18089 0 0.01 18062 0 0.01 18062 stepanov_abstraction.ll 188 481183 24 0.05 489762 24 0.05 489762 stepanov_container.ll 330 668695 30 0.06 672872 30 0.06 672872 stepanov_v1p2.ll 127 172226 25 0.03 166489 25 0.02 166489 stepanov_vector.ll 209 521683 6 0.05 522153 6 0.05 522153 st.ll 113 202063 3 0.02 200965 3 0.03 200965 stmtexpr.ll 11 22838 1 0.01 22853 1 0.01 22853 Stopwatch.ll 8 10525 0 0.01 10505 0 0.01 10505 storage.ll 25 115739 0 0.02 115719 0 0.02 115719 store.ll 11 112741 0 0.02 112706 0 0.02 112706 strcat.ll 2 8533 0 0.01 8514 0 0.01 8514 StreamBinder.ll 19 43821 3 0.01 41530 3 0.01 41530 stream.ll 27 79123 1 0.02 78972 1 0.02 78972 StreamObjects.ll 39 82708 10 0.02 76284 10 0.02 76284 StreamUtils.ll 4 10104 0 0.01 10072 0 0.01 10072 StringConvert.ll 3 44398 0 0.01 44371 0 0.01 44371 stringI.ll 2 5591 0 0.01 5561 0 0.01 5561 string.ll 4 13069 0 0.01 13053 0 0.01 13053 strings.ll 9 14102 0 0.01 14085 0 0.01 14085 StringToInt.ll 5 10573 0 0.01 10546 0 0.01 10546 str.ll 2 14960 0 0.01 14929 0 0.01 14929 struct_axpy.ll 1 47495 0 0.01 47466 0 0.01 47466 struct_copy.ll 1 47195 0 0.01 47166 0 0.01 47166 struct_grid.ll 13 128736 0 0.01 128707 0 0.02 128707 struct_innerprod.ll 1 48675 0 0.01 48646 0 0.01 48646 struct_io.ll 2 73939 0 0.01 73910 0 0.02 73910 struct_matrix.ll 14 261655 0 0.02 261626 0 0.02 261626 struct_matrix_mask.ll 1 25141 0 0.01 25112 0 0.01 25112 struct_matvec.ll 5 699941 0 0.06 699912 0 0.06 699912 StructModifyTest.ll 2 5693 0 0.01 5684 0 0.01 5684 struct_scale.ll 1 32911 0 0.01 32882 0 0.01 32882 struct_stencil.ll 5 29224 0 0.01 29195 0 0.01 29195 struct_vector.ll 19 328103 0 0.03 328074 0 0.03 328074 student2.ll 32 70920 2 0.02 70847 2 0.02 70847 student3.ll 35 147276 1 0.02 147172 1 0.02 147172 suboptalign11.ll 4 103224 0 0.02 103209 0 0.02 103209 subspic.ll 6 36624 0 0.01 36589 0 0.01 36589 subst.ll 79 104379 6 0.02 103147 6 0.02 103147 subsumption.ll 129 312529 7 0.03 310822 7 0.03 310822 suicide.ll 1 7123 0 0.01 7097 0 0.01 7097 sumarray2d.ll 2 7997 0 0.01 7985 0 0.01 7985 sumarray-dbl.ll 2 7099 0 0.01 7083 0 0.01 7083 sumarray.ll 2 5552 0 0.01 5536 0 0.01 5536 sumarraymalloc.ll 5 8625 0 0.01 8613 0 0.01 8613 sumcol.ll 15 21294 0 0.01 21269 0 0.01 21269 support.ll 10 85089 0 0.02 85055 0 0.02 85055 susan.ll 21 617846 0 0.06 617812 0 0.06 617812 symbol.ll 10 28263 0 0.01 28234 0 0.01 28234 symm.ll 12 28959 0 0.01 28911 0 0.01 28911 sym_tab.ll 3 9832 0 0.01 9802 0 0.01 9802 symtab.ll 5 13680 0 0.01 13654 0 0.01 13654 Synchronization.ll 2 8448 0 0.01 8420 0 0.01 8420 syr2k.ll 12 29029 0 0.01 28980 0 0.01 28980 syrk.ll 12 25741 0 0.01 25693 0 0.01 25693 sysspec.ll 13 18074 0 0.01 18058 0 0.01 18058 System.ll 2 951 0 0.01 923 0 0.01 923 systems.ll 4 21729 0 0.01 21694 0 0.01 21694 t0.ll 0 3318 0 0.01 3289 0 0.01 3289 t1.ll 5 13744 0 0.01 13715 0 0.01 13715 t2.ll 1 1804 0 0.01 1775 0 0.01 1775 t3.ll 3 25197 0 0.01 25168 0 0.01 25168 t4.ll 3 56996 0 0.01 56967 0 0.02 56967 t5.ll 6 43209 0 0.01 43180 0 0.01 43180 t6.ll 3 66686 0 0.02 66657 0 0.02 66657 t7.ll 5 36589 0 0.01 36560 0 0.00 36560 t8.ll 5 90129 0 0.01 90100 0 0.01 90100 t9.ll 2 19777 0 0.01 19748 0 0.01 19748 tabinit.ll 1 14119 0 0.01 14088 0 0.01 14088 tableau.ll 84 143254 2 0.02 143678 2 0.02 143678 table.ll 0 1579 0 0.01 1549 0 0.01 1549 tables.ll 0 138426 0 0.03 138395 0 0.03 138395 takehiro.ll 13 142905 0 0.02 142874 0 0.02 142874 TarHandler.ll 47 276066 0 0.03 276029 0 0.03 276029 TarHandlerOut.ll 10 111777 0 0.02 111740 0 0.02 111740 TarHeader.ll 0 1646 0 0.01 1609 0 0.01 1609 TarIn.ll 2 174170 0 0.02 174133 0 0.02 174133 TarOut.ll 12 129179 0 0.02 129142 0 0.02 129142 TarRegister.ll 3 5838 0 0.01 5801 0 0.01 5801 TarUpdate.ll 4 114936 0 0.02 114899 0 0.02 114899 tb.ll 5 19696 0 0.01 19667 0 0.01 19667 tc.ll 2 14780 0 0.01 14751 0 0.01 14751 tddis.ll 30 182849 0 0.03 182834 0 0.02 182834 te.ll 4 12099 0 0.01 12070 0 0.01 12070 TempFiles.ll 1 3553 0 0.01 3518 0 0.01 3518 terminator.ll 85 104938 7 0.02 102553 7 0.01 102553 term.ll 12 29629 0 0.01 29598 0 0.01 29598 test2loop.ll 1 50498 0 0.02 50465 0 0.01 50465 testbench.ll 1 8198 0 0.01 8172 0 0.01 8172 test_indvars.ll 2 11043 0 0.01 11031 0 0.01 11031 test.ll 7 16845 0 0.01 16826 0 0.01 16826 testloop.ll 1 49203 0 0.01 49170 0 0.01 49170 TestLoop.ll 2 3938 0 0.01 3929 0 0.01 3929 testtrace.ll 3 7048 0 0.01 7036 0 0.01 7036 textloc.ll 13 155311 0 0.02 155289 0 0.01 155289 tf.ll 7 10532 0 0.00 10503 0 0.01 10503 tg.ll 2 22589 0 0.01 22560 0 0.01 22560 tgood.ll 9 106366 0 0.02 106335 0 0.02 106335 threading.ll 0 452 0 0.01 423 0 0.01 423 Threads.ll 17 20611 1 0.01 19977 1 0.01 19977 throw_rethrow_test.ll 5 14502 0 0.01 14483 0 0.01 14483 ti.ll 3 16281 0 0.01 16252 0 0.01 16252 time.ll 1 1170 0 0.01 1149 0 0.01 1149 Time.ll 6 10667 0 0.01 10639 0 0.01 10639 timer.ll 2 2331 0 0.01 2306 0 0.00 2306 timestatus.ll 4 18765 0 0.01 18734 0 0.01 18734 timing.ll 7 55245 0 0.01 55216 0 0.01 55216 t..ll 0 445 0 0.01 416 0 0.01 416 tls.ll 2 3273 0 0.01 3256 0 0.01 3256 tm.ll 2 14509 0 0.01 14480 0 0.01 14480 toast_alaw.ll 2 18530 0 0.01 18500 0 0.01 18500 toast_audio.ll 4 15882 0 0.01 15852 0 0.01 15852 toast_lin.ll 2 2526 0 0.01 2496 0 0.01 2496 toast.ll 29 108797 0 0.02 108767 0 0.02 108767 toast_ulaw.ll 2 31971 0 0.01 31941 0 0.01 31941 toggle_move.ll 10 43960 0 0.01 43941 0 0.01 43941 token.ll 1 2866 0 0.01 2849 0 0.01 2849 token_stream.ll 10 54298 0 0.01 54273 0 0.01 54273 tol.ll 14 27300 0 0.01 27283 0 0.01 27283 top.ll 137 311177 6 0.03 308747 6 0.03 308747 Towers.ll 12 18539 0 0.01 18520 0 0.01 18520 trace.ll 11 34795 0 0.01 34779 0 0.01 34779 traits.ll 7 25582 0 0.01 25563 0 0.01 25563 tramp3d-v4.ll 9738 17955754 2880 4.81 17589374 2879 2.15 17590119 transform8x8.ll 12 491518 0 0.04 491497 0 0.04 491497 trans.ll 9 27788 0 0.01 27767 0 0.01 27767 tree.ll 29 75173 0 0.01 75143 0 0.01 75143 Treesort.ll 8 20035 0 0.01 20016 0 0.01 20016 Triang.ll 4 30696 0 0.01 30674 0 0.01 30674 trie.ll 12 33266 0 0.01 33243 0 0.01 33243 trig.ll 9 38056 0 0.01 38033 0 0.01 38033 trim.ll 7 106745 0 0.01 106729 0 0.02 106729 trisolv.ll 12 21126 0 0.01 21075 0 0.01 21075 trmm.ll 12 21556 0 0.01 21508 0 0.01 21508 tsc.ll 16 903509 0 0.09 903481 0 0.09 903481 ts.ll 7 10154 0 0.01 10125 0 0.01 10125 tsp.ll 6 47043 0 0.01 47024 0 0.01 47024 tt.ll 8 20968 0 0.01 20939 0 0.01 20939 tu.ll 8 54279 0 0.01 54250 0 0.02 54250 tv.ll 4 33827 0 0.01 33798 0 0.01 33798 twstats.ll 1 9163 0 0.01 9130 0 0.01 9130 types.ll 5 28646 0 0.01 28618 0 0.01 28618 uaspect.ll 1 131956 0 0.02 131923 0 0.02 131923 ufixnet.ll 1 20191 0 0.01 20158 0 0.01 20158 ufixpin.ll 1 12269 0 0.01 12236 0 0.01 12236 uint64_to_float.ll 3 28545 0 0.01 28533 0 0.01 28533 uloop.ll 5 166780 0 0.03 166747 0 0.02 166747 unarithmetic.ll 7 23924 0 0.01 23894 0 0.01 23894 unate.ll 9 108265 0 0.02 108235 0 0.01 108235 unbust.ll 14 96676 0 0.02 96643 0 0.02 96643 uncompress.ll 3 21767 0 0.01 21737 0 0.01 21737 unify.ll 63 143248 2 0.02 142595 2 0.02 142595 unpk.ll 1582 8373017 433 0.63 8067066 433 0.61 8067066 UpdateAction.ll 0 1327 0 0.01 1292 0 0.01 1292 UpdateCallbackConsole.ll 20 72676 0 0.02 72640 0 0.02 72640 UpdateCallback.ll 39 176590 1 0.02 176018 1 0.02 176018 Update.ll 47 658165 5 0.05 655500 5 0.05 655500 updateMetricsData.ll 1 9252 0 0.01 9227 0 0.01 9227 UpdatePair.ll 9 112528 0 0.02 112493 0 0.01 112493 UpdateProduce.ll 1 13440 0 0.01 13405 0 0.01 13405 upin.ll 1 56064 0 0.02 56031 0 0.02 56031 upinswap.ll 1 60644 0 0.01 60611 0 0.01 60611 url.ll 3 12115 0 0.01 12084 0 0.01 12084 userfun.ll 1 1367 0 0.01 1352 0 0.01 1352 UserInputUtils.ll 4 41300 0 0.01 41264 0 0.00 41264 usite0.ll 1 14171 0 0.01 14138 0 0.01 14138 usite1.ll 1 16955 0 0.01 16922 0 0.01 16922 usite2.ll 1 23364 0 0.01 23331 0 0.01 23331 usiteo1.ll 1 15007 0 0.01 14974 0 0.01 14974 usiteo2.ll 1 23854 0 0.01 23821 0 0.01 23821 usoftnet.ll 1 21867 0 0.01 21834 0 0.01 21834 usoftpin.ll 1 16314 0 0.01 16281 0 0.01 16281 utemp.ll 1 13367 0 0.01 13334 0 0.01 13334 UTFConvert.ll 2 42558 0 0.01 42531 0 0.01 42531 utilities.ll 9 21629 0 0.01 21603 0 0.01 21603 utility.ll 3 4801 0 0.01 4771 0 0.01 4771 util.ll 22 79529 0 0.01 79509 0 0.01 79509 utils.ll 1 3560 0 0.01 3529 0 0.01 3529 utop.ll 1 4937 0 0.01 4910 0 0.01 4910 utrace.ll 9 6657 3 0.01 6196 3 0.01 6196 uudecode.ll 6 23057 0 0.01 23030 0 0.01 23030 uuencode.ll 7 28770 0 0.01 28743 0 0.01 28743 valid.ll 2 13666 0 0.01 13641 0 0.01 13641 vbrquantize.ll 5 67602 0 0.01 67571 0 0.02 67571 VbrTag.ll 8 51601 0 0.01 51570 0 0.01 51570 vcg.ll 18 130799 0 0.02 130776 0 0.02 130776 vcirc.ll 14 15860 0 0.01 15830 0 0.01 15830 vector.ll 7 7822 0 0.01 7799 0 0.01 7799 vehicle.ll 23 44862 0 0.01 44833 0 0.01 44833 verify.ll 0 455 0 0.01 420 0 0.01 420 version.ll 4 4038 0 0.01 4007 0 0.01 4007 VirtThread.ll 5 14767 0 0.01 14735 0 0.01 14735 visual.ll 2 1713 0 0.01 1696 0 0.01 1696 vla.ll 5 9414 0 0.01 9405 0 0.01 9405 vlalloc.ll 3 15326 0 0.01 15292 0 0.01 15292 vlc.ll 33 148671 0 0.02 148650 0 0.02 148650 vl_comp.ll 2 15625 0 0.01 15591 0 0.01 15591 volume.ll 1 4513 0 0.01 4488 0 0.01 4488 vor.ll 12 87187 0 0.02 87165 0 0.02 87165 vprobes.ll 2 94612 0 0.01 94579 0 0.02 94579 walksub.ll 1 7504 0 0.01 7486 0 0.01 7486 warshall.ll 2 9631 0 0.01 9605 0 0.01 9605 watesides.ll 1 20153 0 0.01 20120 0 0.01 20120 wc.ll 21 30760 0 0.01 30735 0 0.01 30735 weighted_prediction.ll 8 238338 0 0.03 238317 0 0.03 238317 whetstone.ll 6 48962 0 0.01 48947 0 0.01 48947 Wildcard.ll 43 294055 0 0.03 294028 0 0.03 294028 wine_date_and_time.ll 9 28490 0 0.01 28460 0 0.01 28460 wirecosts.ll 1 15973 0 0.01 15940 0 0.01 15940 wireest.ll 2 15356 0 0.01 15323 0 0.01 15323 wireratio.ll 25 112740 0 0.02 112707 0 0.02 112707 wordfreq.ll 147 330838 9 0.03 330149 9 0.03 330149 woverlapf.ll 1 51817 0 0.01 51784 0 0.01 51784 woverlap.ll 1 48945 0 0.01 48912 0 0.01 48912 woverlapx.ll 1 55231 0 0.02 55198 0 0.02 55198 wrbmp.ll 8 92126 0 0.01 92095 0 0.01 92095 wrgif.ll 14 82861 0 0.01 82830 0 0.01 82830 write_ctables.ll 29 420986 0 0.04 420973 0 0.04 420973 wrppm.ll 7 43643 0 0.01 43612 0 0.01 43612 wrrle.ll 0 450 0 0.01 419 0 0.01 419 wrtarga.ll 7 49294 0 0.01 49263 0 0.01 49263 WzAes.ll 45 109290 7 0.02 101956 7 0.02 101956 xgets.ll 1 11709 0 0.01 11678 0 0.01 11678 xgraph.ll 1 83713 0 0.01 83680 0 0.02 83680 XzCrc64.ll 3 6787 0 0.01 6771 0 0.01 6771 XzDec.ll 22 116114 0 0.02 116098 0 0.02 116098 XzEnc.ll 14 42487 0 0.01 42471 0 0.01 42471 XzHandler.ll 68 314940 3 0.04 315018 3 0.03 315018 XzIn.ll 9 45789 0 0.01 45773 0 0.01 45773 Xz.ll 7 10667 0 0.01 10651 0 0.01 10651 ygraph.ll 1 83322 0 0.02 83289 0 0.02 83289 y.tab.ll 2 57202 0 0.01 57281 0 0.01 57281 z01.ll 4 249374 0 0.03 249340 0 0.02 249340 z02.ll 10 358729 0 0.03 358695 0 0.04 358695 z03.ll 26 255270 0 0.03 255236 0 0.03 255236 z04.ll 3 31114 0 0.01 31080 0 0.01 31080 z05.ll 6 789376 0 0.07 789342 0 0.07 789342 z06.ll 8 1511562 0 0.12 1511528 0 0.12 1511528 z07.ll 9 621070 0 0.05 621036 0 0.05 621036 z08.ll 9 2429711 0 0.18 2429677 0 0.19 2429677 z09.ll 7 224791 0 0.02 224757 0 0.03 224757 z10.ll 11 687914 0 0.06 687880 0 0.06 687880 z11.ll 6 201196 0 0.02 201162 0 0.03 201162 z12.ll 5 1299812 0 0.10 1299778 0 0.10 1299778 z13.ll 4 350569 0 0.03 350535 0 0.04 350535 z14.ll 1 819014 0 0.07 818980 0 0.07 818980 z15.ll 10 235166 0 0.03 235132 0 0.03 235132 z16.ll 4 216158 0 0.02 216124 0 0.03 216124 z17.ll 4 71142 0 0.01 71108 0 0.02 71108 z18.ll 5 586018 0 0.05 585984 0 0.05 585984 z19.ll 5 904309 0 0.07 904275 0 0.07 904275 z20.ll 2 777109 0 0.06 777075 0 0.06 777075 z21.ll 1 443111 0 0.04 443077 0 0.03 443077 z22.ll 12 1244660 0 0.10 1244626 0 0.09 1244626 z23.ll 3 656308 0 0.05 656274 0 0.05 656274 z24.ll 0 34384 0 0.01 34350 0 0.01 34350 z25.ll 0 451 0 0.01 417 0 0.01 417 z26.ll 3 51862 0 0.01 51828 0 0.01 51828 z27.ll 0 451 0 0.01 417 0 0.01 417 z28.ll 7 31253 0 0.01 31219 0 0.00 31219 z29.ll 22 359555 0 0.03 359521 0 0.04 359521 z30.ll 7 47515 0 0.01 47481 0 0.01 47481 z31.ll 2 20707 0 0.01 20673 0 0.01 20673 z32.ll 1 53550 0 0.01 53516 0 0.01 53516 z33.ll 13 328775 0 0.03 328741 0 0.03 328741 z34.ll 1 20742 0 0.01 20708 0 0.01 20708 z35.ll 3 410621 0 0.03 410587 0 0.04 410587 z36.ll 12 354997 0 0.04 354963 0 0.03 354963 z37.ll 20 786388 0 0.07 786354 0 0.07 786354 z38.ll 13 419389 0 0.04 419355 0 0.04 419355 z39.ll 7 53303 0 0.01 53269 0 0.01 53269 z40.ll 6 135810 0 0.02 135776 0 0.02 135776 z41.ll 8 197252 0 0.03 197218 0 0.03 197218 z42.ll 7 66774 0 0.01 66740 0 0.01 66740 z43.ll 10 162291 0 0.02 162257 0 0.02 162257 z44.ll 7 714200 0 0.06 714166 0 0.06 714166 z45.ll 6 22350 0 0.01 22316 0 0.01 22316 z46.ll 4 463428 0 0.04 463394 0 0.04 463394 z47.ll 5 216156 0 0.02 216122 0 0.02 216122 z48.ll 59 296891 0 0.03 296857 0 0.03 296857 z49.ll 32 342979 0 0.04 342945 0 0.03 342945 z50.ll 23 102145 1 0.02 101702 1 0.02 101702 z51.ll 23 53684 1 0.01 53243 1 0.02 53243 zalloc.ll 3 4819 0 0.01 4803 0 0.01 4803 zarith.ll 12 55152 0 0.02 55128 0 0.02 55128 zarray.ll 5 18535 0 0.01 18511 0 0.01 18511 zchar.ll 20 100759 0 0.02 100735 0 0.01 100735 zcolor.ll 4 8759 0 0.01 8735 0 0.01 8735 zcontrol.ll 18 61047 0 0.02 61023 0 0.02 61023 ZDecoder.ll 16 73858 0 0.01 73824 0 0.01 73824 zdevice.ll 12 52562 0 0.01 52538 0 0.01 52538 zdict.ll 15 47575 0 0.01 47551 0 0.02 47551 zfile.ll 39 184764 1 0.02 184664 1 0.03 184664 zfont.ll 15 83724 0 0.01 83700 0 0.01 83700 zgeneric.ll 12 74542 0 0.01 74518 0 0.02 74518 zgstate.ll 30 64508 0 0.01 64484 0 0.02 64484 ZHandler.ll 18 62274 0 0.01 62241 0 0.01 62241 zht.ll 4 19770 0 0.01 19746 0 0.01 19746 ZipAddCommon.ll 14 182600 0 0.02 182563 0 0.02 182563 ZipCrypto.ll 31 55274 10 0.01 47008 10 0.01 47008 ZipHandler.ll 77 505949 0 0.04 505912 0 0.04 505912 ZipHandlerOut.ll 13 253045 0 0.03 253008 0 0.02 253008 ZipHeader.ll 0 1047 0 0.01 1010 0 0.01 1010 ZipIn.ll 42 340057 0 0.04 340020 0 0.03 340020 ZipItem.ll 11 23327 0 0.01 23290 0 0.01 23290 ZipOut.ll 19 204488 0 0.02 204451 0 0.03 204451 ZipRegister.ll 3 5750 0 0.01 5713 0 0.01 5713 ZipStrong.ll 22 63584 0 0.01 63552 0 0.01 63552 ZipUpdate.ll 71 615978 10 0.05 609329 10 0.05 609329 zmath.ll 14 33739 0 0.01 33715 0 0.01 33715 zmatrix.ll 15 47367 0 0.02 47343 0 0.01 47343 zmisc.ll 9 35142 0 0.01 35118 0 0.01 35118 zpacked.ll 4 10164 0 0.01 10140 0 0.01 10140 zpaint.ll 10 43874 0 0.01 43850 0 0.01 43850 zpath2.ll 12 29303 0 0.01 29279 0 0.01 29279 zpath.ll 18 28489 0 0.01 28465 0 0.01 28465 zrelbit.ll 15 50741 0 0.01 50717 0 0.01 50717 zstack.ll 10 28745 0 0.01 28721 0 0.01 28721 zstring.ll 5 36071 0 0.01 36047 0 0.01 36047 ztype.ll 16 67049 0 0.01 67025 0 0.01 67025 zvmem.ll 5 24208 0 0.01 24184 0 0.01 24184 -------------- next part -------------- A non-text attachment was scrubbed... Name: sqlite3.ll.tgz Type: application/x-compressed-tar Size: 930459 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140130/eed1a30d/attachment.bin>