search for: laskey

Displaying 20 results from an estimated 63 matches for "laskey".

2006 Aug 01
1
[LLVMdev] Changes to the llvm-gcc4 repository.
Apologies. Looks like the merges didn't take. I'll try and straighten this out today. Watch for the posting tomorrow. Cheers, -- Jim On Aug 1, 2006, at 7:59 AM, Jim Laskey wrote: > Still hasn't gone through yet. I'm predicting 11am EST. > > Cheers, > > -- Jim > > > > On Jul 31, 2006, at 7:18 PM, Jim Laskey wrote: > >> NOTE: Starting tomorrow (Aug 1, 2006) the llvm-gcc4 repository >> will be moved to svn://anonsvn...
2006 Dec 05
2
[LLVMdev] [llvm-commits] combined arm patch
I had to revert these changes. When I did a clean build I was inundated with errors. I'm not sure if I made the cut off time for the mirror. -- Jim On Dec 5, 2006, at 8:35 AM, Jim Laskey wrote: > This patch should be in today's mirror ~6am PST. > > Cheers, > > -- Jim > > On Dec 4, 2006, at 4:32 PM, Rafael Espíndola wrote: > >> On 12/2/06, Jim Laskey <jlaskey at apple.com> wrote: >>> Rafael, >>> >>> Please bracket p...
2006 Dec 04
4
[LLVMdev] combined arm patch
On 12/2/06, Jim Laskey <jlaskey at apple.com> wrote: > Rafael, > > Please bracket portions of your changes that involve modification of > C/C++ source code. For cases of modifying configuration scripts and > make files, use your best judgement. Obviously having the brackets > emitted in generate...
2006 Jul 31
4
[LLVMdev] Changes to the llvm-gcc4 repository.
NOTE: Starting tomorrow (Aug 1, 2006) the llvm-gcc4 repository will be moved to svn://anonsvn.opensource.apple.com/svn/llvm/trunk. This is to support tagging and future releases. I am told if you go to your llvm svn directory you can; svn switch --relocate svn://anonsvn.opensource.apple.com/svn/llvm svn://anonsvn.opensource.apple.com/svn/llvm/trunk Cheers, -- Jim -------------- next
2006 Aug 03
3
[LLVMdev] Adding register allocator to LLVM
On Thu, 3 Aug 2006, Jim Laskey wrote: > To force the load/linking of your register allocator into the llc/lli tools, > add your create function's global declaration to "Passes.h" and add a > "pseudo" call line to "llvm/Codegen/LinkAllCodegenComponents.h" . Another note: with this new...
2006 Apr 08
2
[LLVMdev] line number information
On Sat, 8 Apr 2006, Jim Laskey wrote: > If you look at the stoppoint calls you'll see that you can find the line > number and if you follow the compile unit argument on the call you will find > the file. The byte codes that follow the call would have been generated by > the code on that source line. I'd...
2006 Aug 01
0
[LLVMdev] Changes to the llvm-gcc4 repository.
Still hasn't gone through yet. I'm predicting 11am EST. Cheers, -- Jim On Jul 31, 2006, at 7:18 PM, Jim Laskey wrote: > NOTE: Starting tomorrow (Aug 1, 2006) the llvm-gcc4 repository > will be moved to svn://anonsvn.opensource.apple.com/svn/llvm/ > trunk. This is to support tagging and future releases. > > I am told if you go to your llvm svn directory you can; > > svn switch --re...
2006 Dec 05
2
[LLVMdev] combined arm patch
This patch should be in today's mirror ~6am PST. Cheers, -- Jim On Dec 4, 2006, at 4:32 PM, Rafael Espíndola wrote: > On 12/2/06, Jim Laskey <jlaskey at apple.com> wrote: >> Rafael, >> >> Please bracket portions of your changes that involve modification of >> C/C++ source code. For cases of modifying configuration scripts and >> make files, use your best judgement. Obviously having the brackets >...
2006 Dec 05
0
[LLVMdev] combined arm patch
Greatly appreciated, I attempt to make tomorrows mirror. Cheers, -- Jim On Dec 4, 2006, at 4:32 PM, Rafael Espíndola wrote: > On 12/2/06, Jim Laskey <jlaskey at apple.com> wrote: >> Rafael, >> >> Please bracket portions of your changes that involve modification of >> C/C++ source code. For cases of modifying configuration scripts and >> make files, use your best judgement. Obviously having the brackets >...
2005 Oct 26
4
[LLVMdev] [DRAFT] Announcement for LLVM 1.6 [DRAFT]
...ke advantage of identities and do low-level peephole-style optimizations on the DAG. X. Nate added support for a new TargetSubtarget interface, which determines which parts of the target to enable based on the target-triple (e.g., whether to use GAS or Intel asm printers on X86). X. Jim Laskey extended sub-target support to include -mcpu and -mattr, allowing the target to think about what to do when particular features are enabled, but allowing the end-user to think about what CPU they have. X. Jim also contributed a new light-weight instruction scheduler, available to ta...
2006 Aug 20
0
[LLVMdev] Adding register allocator to LLVM
Hi! I've did what Jim Laskey wrote but llc didn't reckognize my regalloc option. So I moved my allocator implementation into seperate folder within CodeGen and wrote separate makefile for it (like in "Writing an LLVM pass" tutorial). But when I run "make" from LLVMOBJDIR it doesn't enter the RegAll...
2006 Apr 08
0
[LLVMdev] line number information
I get it now, I can't believe I didn't understand that before. Thank you all for your help! - John On 4/8/06, Chris Lattner <sabre at nondot.org> wrote: > > On Sat, 8 Apr 2006, Jim Laskey wrote: > > If you look at the stoppoint calls you'll see that you can find the line > > number and if you follow the compile unit argument on the call you will > find > > the file. The byte codes that follow the call would have been generated > by > > the code on...
2006 Nov 03
3
[LLVMdev] Build failure due to -pedantic?
The build is failing with; LiveIntervalAnalysis.cpp:218: error: floating constant exceeds range of 'double' LiveIntervalAnalysis.cpp:253: error: floating constant exceeds range of 'double' LiveIntervalAnalysis.cpp:328: error: floating constant exceeds range of 'double' LiveIntervalAnalysis.cpp:1350: error: floating constant exceeds range of 'double' If I
2006 Apr 08
2
[LLVMdev] line number information
...tion? Thanks again. - John Trimble On 4/7/06, Reid Spencer <reid at x10sys.com> wrote: > > The debug intrinsics are intended for that. Please see: > http://llvm.org/docs/SourceLevelDebugging.html > for the details. > > Please note that this is being worked on actively Jim Laskey at Apple. > He's working to get these intrinsics to generate DWARF output so that > LLVM generated code can be used with a debugger. However, the intrinsics > can be processed in whatever way you'd like via an LLVM pass. > > Reid. > > On Fri, 2006-04-07 at 14:59 -0700,...
2005 Nov 03
0
[LLVMdev] [DRAFT] Announcement for LLVM 1.6 [DRAFT]
...s and do low-level > peephole-style optimizations on the DAG. > X. Nate added support for a new TargetSubtarget interface, which > determines which parts of the target to enable based on the > target-triple (e.g., whether to use GAS or Intel asm printers on X86). > X. Jim Laskey extended sub-target support to include -mcpu and -mattr, > allowing the target to think about what to do when particular features > are enabled, but allowing the end-user to think about what CPU they > have. > X. Jim also contributed a new light-weight instruction scheduler,...
2006 Apr 08
0
[LLVMdev] line number information
...again. > > - John Trimble > > On 4/7/06, Reid Spencer <reid at x10sys.com> wrote: > The debug intrinsics are intended for that. Please see: > http://llvm.org/docs/SourceLevelDebugging.html > for the details. > > Please note that this is being worked on actively Jim Laskey at Apple. > He's working to get these intrinsics to generate DWARF output so that > LLVM generated code can be used with a debugger. However, the > intrinsics > can be processed in whatever way you'd like via an LLVM pass. > > Reid. > > On Fri, 2006-04-07 at 14:59...
2006 Jul 31
0
[LLVMdev] Changes to the llvm-gcc4 repository.
Jim Laskey wrote: > NOTE: Starting tomorrow (Aug 1, 2006) the llvm-gcc4 repository will be > moved to svn://anonsvn.opensource.apple.com/svn/llvm/trunk. This is to > support tagging and future releases. Will this update live, or will it still synchronize nightly? Nick Lewycky
2006 Nov 03
0
[LLVMdev] Build failure due to -pedantic?
Chris said something about Xcode fixing this ? It doesn't happen with the GCC 3.4.6 compiler on Linux so that's why I missed it, but I thought Chris had fixed it. Reid. On Fri, 2006-11-03 at 08:48 -0400, Jim Laskey wrote: > The build is failing with; > > LiveIntervalAnalysis.cpp:218: error: floating constant exceeds range > of 'double' > LiveIntervalAnalysis.cpp:253: error: floating constant exceeds range > of 'double' > LiveIntervalAnalysis.cpp:328: error: floating c...
2006 Dec 05
0
[LLVMdev] [llvm-commits] combined arm patch
On 12/5/06, Jim Laskey <jlaskey at apple.com> wrote: > I had to revert these changes. When I did a clean build I was > inundated with errors. I'm not sure if I made the cut off time for > the mirror. Could you please send me the log? The bootstrap is broken on linux amd64 for some time now, so it is...
2006 Dec 30
0
[LLVMdev] nightly tester grawp
Jim Laskey wrote: > llvm[4]: Compiling stacker_rt.ll to stacker_rt.bc for Release build > (bytecode) > /Volumes/Muggles/LLVM/nightlytest/build/llvm/Release/bin/gccas: / > Volumes/Muggles/LLVM/nightlytest/build/llvm/projects/Stacker/lib/ > runtime/Release/stacker_rt.ll:21,0: parse error, expect...