similar to: [LLVMdev] a question about LLCO

Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] a question about LLCO"

2005 May 22
0
[LLVMdev] a question about LLCO
Hi Terry, I'm not part of that project but I'll take a stab at answering your question. Vikram Adve is probably the person to answer. The point of Lifelong Code Optimization is to continuously optimize the code during its lifetime, even while it is running. By profiling the code, it is possible to discover the program's hot spots and intensely optimize those portions of the program.
2005 May 23
2
[LLVMdev] a question about LLCO
Hi Terry, Reid is exactly right about the benefits of static (link-time) optimization for whole programs. When all libraries are available, it could alllow significantly better optimization without run-time overhead. But it is increasingly common today for libraries to be dynamically linked. In these cases, you could get the benefits of LLVM optimization in two ways, *if* you compile the
2013 Apr 14
2
[LLVMdev] Citing LLVM
In the past, I've just referenced Chris's CGO 2004 paper when referring to LLVM: C. Lattner and V. Adve. LLVM: A compilation framework for lifelong program analysis & transformation. For sub-projects like Clang and DragonEgg, I just cite the URLs: [4] Clang. clang.llvm.org. [5] DragonEgg. dragonegg.llvm.org. I don't know of any canonical references for these. On Sun, Apr 14,
2013 Apr 15
0
[LLVMdev] Citing LLVM
On 4/14/13 3:35 PM, Justin Holewinski wrote: > In the past, I've just referenced Chris's CGO 2004 paper when > referring to LLVM: I second that. We at Illinois typically cite Chris's CGO paper. The bibtex is: @InProceedings{LLVM:CGO04, Author = {Chris Lattner and Vikram Adve}, Title = {{LLVM}: A Compilation Framework for Lifelong Program Analysis and
2011 Aug 10
1
Scripting
Hiya, Now I have figured out how to read disks using dd to make LEDs blink, I want to write a little script that iterates through all drives, dd''s them with a few thousand counts, stop, then dd''s them again with another few thousand counts, so I end up with maybe 5 blinks. I don''t want somebody to write something for me, I''d like to be pointed in the right
2013 Oct 07
1
[LLVMdev] llvm jit
hello, I have a question about the llvm jit. Does it use the profile information generated during runtime to enhance the generated code for arm processor? according to 'LLVM: A Compilation Framework for Lifelong Program Analysis **<http://llvm.org/pubs/2004-01-30-CGO-LLVM.html>' it is available but can't find it in the current source code. I really appreciate any help. Thanks in
2018 Nov 01
1
Intro
- your *FirstnameLastname* username JohnBoero - the proposed subject of your Wiki contribution(s) To seek the holy grail. But mostly to fix the rampant 404 download links for CentOS Atomic media here: https://wiki.centos.org/SpecialInterestGroup/Atomic/Download - the proposed location of your Wiki contribution(s) https://wiki.centos.org/SpecialInterestGroup/Atomic/Download Ex
2013 Oct 07
1
[LLVMdev] llvm jit
So, what is the use of the profile passes in LLVM? Also, does llvm detect hot blocks of code for recompilation? On Mon, Oct 7, 2013 at 4:44 PM, Amara Emerson <amara.emerson at arm.com> wrote: > No, the JIT does not do any profile guided optimizations for any > architecture. It just uses the static compilation components before loading > the object into memory and running its own
2004 Jul 28
0
[LLVMdev] Compiler Driver [high-level comments]
On Wed, 28 Jul 2004, Reid Spencer wrote: > 2. MODE OF OPERATION > ==================== > The driver will simply read its command line arguments, read its > configuration data, and invoke the compilation, linking, and > optimization tools necessary to complete the user's request. Its basic I'm not sure that I agree with this. Compilers need to be extremely predictable and
2013 Apr 14
2
[LLVMdev] Citing LLVM
Dear LLVM devs, If one were to (academically) cite the LLVM project in the general sense, what would be the recommended reference - ie. one that gives a recent and complete overview of the system? Thanks! Vesa
2013 Apr 14
0
[LLVMdev] Citing LLVM
I"m not sure there is an official citation, but you can probably just look at the papers on <http://llvm.org/pubs/> and see what they do. -- Sean Silva -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130414/df90a7d0/attachment.html>
2014 Dec 16
2
PJSIP configuration question
Dan Cropp wrote: > I corrected my local_net setting (based on advice from network admin). > > I have tried several different values for the from_user and still have > the same problem. > > Asterisk receives the OK from Vitelity. > > Asterisk sends the ACK (without a Contact header). A Contact header is not required to be in the ACK. > > Vitelity doesn?t seem to
2004 Aug 03
3
[LLVMdev] Compiler Driver [high-level comments]
I just had a chance to read some of follow-up comments on Reid's initial document. I agree with Chris's discussion below of what is needed for users to get IPO/lifelong opt'n via LLVM without extensive changes to Makefiles, and about what .o files should contain. This is in perfect agreement with what I just said about how users should view LLVM. --Vikram
2004 Jul 28
3
[LLVMdev] Compiler Driver Requrements & Design (Comments Solicited!)
LLVMers, As part of my work on bug 353: Create Front End Framework And Compiler Driver (http://llvm.cs.uiuc.edu/PR353), I'm starting a discussion on the design and requirements of the compiler driver. If you have comments on this, by all means PLEASE chime in. This is by no means cast in stone. The results of the ensuing discussion will be documented in PR353 (and elsewhere) and I'll use
2020 Mar 03
4
[RFC] Cheaper indirect calls via trampolines
Taking the address of a function inhibits optimisations for that function. Essentially any ABI changes are unavailable if we can't adjust the call site to match. The case of interest here is when a given function is called directly and indirectly, and we don't want the latter to impose a cost on the former. One approach to avoid the ABI constraint cost is to extract/outline the body of an
2002 Mar 26
2
OT: Perfect Pitch
I won't bother quoting all of Moz's statements of how sound is interpreted by those blessed/cursed with tape recorders in their heads :) I will add that his whole explanation of perfect pitch perception easily offers an explanation as to why some individuals will only archive flac/pac/ape (Moz - do you?) and those of us that do not perceive that level of detail and are fine using ogg
2009 Jul 07
1
Read buffer size in clientloop.c
Hi, when trying to optimize socket transfer rates under Cygwin, it turned out that the underlying WinSock implementation is surprisingly sensitive to buffer sizes. The latest Cygwin from CVS is now setting the socket receive/send buffers (SO_RCVBUF/SO_SNDBUF) to 64K, rather than keeping them at their default values of 8K which thwarts data transfers a lot. While testing I still had the problem
2012 Mar 02
1
Rebélate by self-management, first project of free software by which we bet all / Rebélate por la autogestión, primer proyecto de software libre por el que apostamos todas
Ingl?s : Many already we have contributed to the first project of free software dedicated to self-management in this campaign of collective financing, it collaborates and it spreads!/ Beginning campaign collective financing http://www.goteo.org/project/rebelaos-publicacion-por-la-autogestion?lang=en Login to enter with user of social networks and for would register in Goteo :
2005 Jun 02
0
[LLVMdev] Cygwin 'make check' results
After a make clean on test we are getting :- # of expected passes 1766 # of unexpected failures 12 # of expected failures 55 Aaron -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050603/ab431a62/attachment.html> -------------- next part -------------- An embedded and
2005 Jun 02
2
[LLVMdev] Cygwin 'make check' results
>Okay, this is looking much better. I'll commit the configure script. Great, that did the job. >There's a couple of CFrontEnd failures. Possibly you're not working with >the latest llvm-gcc? (built from CVS?) checkout today about 16:00 GMT >The others are known JIT failures on Cygwin .. it can't load symbols >from the LLI executable. We don't have a fix for