search for: profileinterfac

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

Did you mean: profileinterface
2009 Jul 02
0
[LLVMdev] Profiling in LLVM Patch
...rly >> the profile verifier is just another consumer of ProfileInfo and can be a >> separate patch. > The ProfileEstimator is already a subclass of ProfileInfo and implements that interface. Yes, these two are easily split into separate patches. Right. One nice benefit of having the ProfileInterface be completely abstract is that it should be straightforward to move the ProfileEstimator to being lazy and only computing information when a client requests it. >> 4. Finally, the new optimal edge instrumentation & ProfileInfo implementation >> can be brought in. >> >>...
2009 Jul 01
12
[LLVMdev] Profiling in LLVM Patch
Hi Daniel, Daniel Dunbar wrote: > Hi Andreas, > > First, thanks again for undertaking this work and submitting it back. There is a > lot of good stuff here and it would be great to see it get back into the tree. Thanks for taking the time to review this, I know its a huge patch. I still have a few questions on how you would like this patch to be re-factored and split up. > [...]