Displaying 10 results from an estimated 10 matches for "refererence".
2009 Jul 14
0
[LLVMdev] Profiling in LLVM Patch Followup 1
...copy)
...
> + ModulePass *createProfileLoaderPass(ProfileInfoLoader *PIL);
I avoided the need for this by just loading the profile info twice, as
a sort of intermediate step.
> + std::vector<unsigned> ECs = PIL->getRawEdgeCounts();
This copies the vector, it should be a (const) refererence.
> + // Instrument all of the edges...
> + unsigned i = 0;
> + for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
> + for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
> + // Okay, we have to add a counter of each outgoing edge. If...
2009 Jul 02
1
[LLVMdev] Profiling in LLVM Patch Followup 1
Hi,
this is the first in a series of patches to cleanup and improve the LLVM Profiling Infrastructure.
First and foremost this patch removes duplicate functionality from ProfileInfoLoader and ProfileInfo:
The ProfileInfoLoader performed not only the loading of the profile information but also some synthesis of block and function execution counts from edge profiling information. Since the
2005 Dec 15
0
getting a value from a select list
...;admin/campaign",
"newsletter"=>{"name"=>"2"}}
how do i get the 2 out of the newsletter param?
a little background: Its an email campaign app where there is a table with
"newsletters" (name, url, etc) and another table "campaigns" which
refererences (belongs_to) the newsletters table. A campaign can only
reference one newsletter but, additional campaigns can reference the same
newsletter.
thanks
--
Steven Ross
web application & interface developer
http://www.zerium.com
[phone] 404-488-4364
______________________________________________...
2006 Sep 18
0
No subject
...ents that is having performance issues
and your offering that you maybe have somewhere between 1 and 1000
clients with "No issues with increasing size, either technical or
social, thus far." Hardly quantitative.
I can approach just about any vendor I deal with and ask them for a
customer refererence that is willing to talk formally or informally
about their designs and implementations, warts and all. User mailing
lists and conferences are generally the same and very valuable when it
comes to making an informed choice.
regards
matthew
> > Send me an NDA. I''ll be happy to sig...
2005 Jan 11
28
SS7 and Asterisk solution
Hello,
We are looking for commercial solution SS7 with Asterisk.
It does not need to be "build-in" with Asterisk.
Could anybody suggest something?
Thank you in advance.
Bart
2006 Oct 01
22
41 server under puppet today
Hello there.
Just to let you know i have just put in production mode puppet on 41
freeBSD 4.7 virtual servers (yes not real servers but "jailed ones"). I
had some little problems with facter at first but i have manualy
upgraded the servers that where affected by the little "facter does not
read his facts" problem i had. I should have missed something in my
deploiement.
2012 Nov 19
0
[LLVMdev] Chaining Atoms together
Hi Nick,
Waiting for your feedback on this.
Thanks
Shankar Easwaran
On 11/16/2012 10:03 AM, Shankar Easwaran wrote:
> Hi Nick,
>
> Thanks for your reply.
>
> The usecase here is just trying to construct a valid ELF. The lld
> linker needs to handle all sorts of code written in assembly as well
> as 'C'. The usecase is just one example of it.
>
> I have also
2009 Jul 22
4
[LLVMdev] Profiling in LLVM Patch Followup 1
...ateProfileLoaderPass(ProfileInfoLoader *PIL);
>
> I avoided the need for this by just loading the profile info twice, as
> a sort of intermediate step.
>
>> + std::vector<unsigned> ECs = PIL->getRawEdgeCounts();
>
> This copies the vector, it should be a (const) refererence.
>
>> + // Instrument all of the edges...
>> + unsigned i = 0;
>> + for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
>> + for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
>> + // Okay, we have to add a counter o...
2012 Nov 16
3
[LLVMdev] Chaining Atoms together
Hi Nick,
Thanks for your reply.
The usecase here is just trying to construct a valid ELF. The lld linker
needs to handle all sorts of code written in assembly as well as 'C'.
The usecase is just one example of it.
I have also seen similiar code in
http://lxr.free-electrons.com/source/arch/powerpc/kernel/head_32.S?a=powerpc
which has global and local labels.
You are right, that the
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.
> [...]