similar to: [LLVMdev] lower select pass

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] lower select pass"

2012 May 18
0
[LLVMdev] [RFC] llvm/include/Support/FileOutputBuffer.h
On Thu, May 17, 2012 at 3:25 PM, Nick Kledzik <kledzik at apple.com> wrote: > I now have an implementation of FileOutputBuffer (OutputBuffer was already taken).  The patch supports the functionality listed below and I've tested that it works for lld. > > To implement the FileOutputBuffer, I needed to add some more functions to llvm/Support/FileSystem.h, including: >  
2004 Mar 22
1
smbclient won't tar empty directories
Hello, I guess this question has been asked several times, but unfortenuately I don't find an answer neither in the search machines nor in the groups. I backup my windows clients using smbclient with the tar option. Works great, but no empty directories are in the created tar file. I read the smblient and tar's manpage, without finding the necessary option. Does anybody know how I can
2011 Apr 06
1
[LLVMdev] GSoC 2011: Fast JIT Code Generation for x86-64
Thanks for all the replies! I wanted to closely resemble what the CACAO VM[1] backend did with success for a long time: for every CACAO IR instruction, there is a sequence of x86 instructions that get written directly to the executable memory. In CACAO, registers are used while available, then everything is spilled. Relocations are resolved and patched in a second go. It seems this is similar to
2009 Jul 02
2
[LLVMdev] LLVM and Eclipse
Tilmann Scheller <tilmann.scheller at googlemail.com> writes: [snip] > It might be worth to put an Eclipse CDT project file with relative > paths to the header files in the LLVM SVN repository to make it easier > for people to use Eclipse in the future (my project files currently > contain absolute paths, so they're probably not useful to other > people). CMake can
2013 Jul 17
1
[LLVMdev] eclipse and gdb
On Jul 17, 2013, at 1:19 PM, Tilmann Scheller <tscheller at apple.com> wrote: > I actually never did a build with Eclipse, only used it for code navigation and debugging :) Actually that’s not really true, I did build with Eclipse from time to time to get all the sources TableGen generates automatically. This is really nice because the source navigation works just fine across handwritten
2009 Sep 16
1
ACL misbehavior moving from POSIX ACL -> acl_xattr
List, I had Samba 3.0 running on Debian Lenny configured to use POSIX ACLs on ext3. They worked fine, or at least as fine as NT -> POSIX mapping ever did. After testing 3.3 with acl_xattr on using a different machine, I decided to give it a whirl on the production server. And yes, I know it's experimental. I defined a share thusly: vfs objects = acl_xatt acl map full
2009 Jul 05
1
[LLVMdev] LLVM and Eclipse
Tilmann Scheller <tilmann.scheller at googlemail.com> writes: > Apparently CMake deletes the C++ files which are generated by > TableGen, is it possible to tell CMake to not throw them away? Certainly the build does not delete those files. Maybe you looked at the wrong place. Try $OBJDIR/lib/Target/X86, for instance. There you will see the *.inc files that TableGen creates. >
2013 Jul 17
2
[LLVMdev] eclipse and gdb
On 07/16/2013 05:21 AM, Tilmann Scheller wrote: > Hi Reed, > > I’ve used Eclipse for a long time to do LLVM development on Linux (both for code navigation/editing and debugging), any recent Linux distribution and version of Eclipse should be fine (even older versions should be good enough as this has been working for many years). > > Xcode works fine as well, I started to use Xcode
2013 Jul 16
3
[LLVMdev] eclipse and gdb
On 07/16/2013 05:21 AM, Tilmann Scheller wrote: > Hi Reed, > > I’ve used Eclipse for a long time to do LLVM development on Linux (both for code navigation/editing and debugging), any recent Linux distribution and version of Eclipse should be fine (even older versions should be good enough as this has been working for many years). > > Xcode works fine as well, I started to use Xcode
2015 May 01
0
[ANNOUNCE] xorg-docs 1.7.1
This package provides miscellaneous documentation for the X Window System that doesn't better fit into other packages. This release provides various minor updates & corrections that have accumulated since the last katamari, without waiting forever for someone to step up to create the next katamari. Alan Coopersmith (8): MAINTAINERS: Update URL to Solaris X11 distro web page
2008 Dec 04
0
[LLVMdev] 32bit math being promoted to 64 bit
instcombine doesn't seem to be doing it. From my testing it seems to only occur when I use -indvars after a long string of commands. For example: llvm-as < test_fc_27.ll | opt -preverify -domtree -verify -lowersetjmp -raiseallocs -simplifycfg -domtree -domfrontier -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -ba siccg -prune-eh -inline
2008 Nov 11
1
ztdummy: rtc: lost some interrupts at 1024Hz.
Hi, I'm getting crazy about ztdummy. I have to replicate a PBX where ztdummy is working fine but for some reason I cannot. The two machines have the same kernel, motherboard, the same gcc version and the same zaptel 1.4.8. On the second machine zaptel compiles without errors and ztdummy.ko is generated but when I modprobe it I get the following error in messages: rtc: lost some interrupts
2008 Nov 11
1
ztdummy: rtc: lost some interrupts at 1024Hz
> I'm getting crazy about ztdummy. I have to replicate a PBX where ztdummy > is working fine but for some reason I cannot. > The two machines have the same kernel, motherboard, the same gcc version > and the same zaptel 1.4.8. On the second machine zaptel compiles without > errors and ztdummy.ko is generated but when I modprobe it I get the > following error in messages: >
2016 Mar 17
1
Samba 4 AD Authentication Errors
Hi, I have a setup containing an old windows 2003 ad server which i am planning to replace with 2 samba 4 dc's. Replication between these 3 servers is working fine. Sometimes i am not able to login to windows workstations and bind shares with net. Due to the fact that everything is going back to normal once i stop the samba service on the 2 samba 4 machines it looks like these machines do not
2009 Jul 02
0
[LLVMdev] LLVM and Eclipse
Hi Patrick, On Thu, Jul 2, 2009 at 12:17 AM, Patrick Alexander Simmons<simmon12 at cs.uiuc.edu> wrote: > Has anyone tried using the Eclipse CDT plugin (or another C++ IDE) to > develop code in LLVM? I'm specifically interested in getting code > completion to work. I've been sucessfully using the Eclipse CDT with LLVM for quite a while now. The official releases of Eclipse
2009 Jul 05
0
[LLVMdev] LLVM and Eclipse
Hi Oscar, On Thu, Jul 2, 2009 at 2:59 PM, Óscar Fuentes<ofv at wanadoo.es> wrote: >> It might be worth to put an Eclipse CDT project file with relative >> paths to the header files in the LLVM SVN repository to make it easier >> for people to use Eclipse in the future (my project files currently >> contain absolute paths, so they're probably not useful to other
2013 Apr 15
0
[LLVMdev] first LLVM port?
Hi Reed, I think it was SPARC, feel free to correct me though :) Regards, Tilmann On Apr 15, 2013, at 11:21 AM, reed kotler <rkotler at mips.com> wrote: > What was the first target for LLVM? > > Tia. > > Reed > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >
2013 Jul 17
0
[LLVMdev] eclipse and gdb
On Jul 16, 2013, at 11:10 PM, Reed Kotler <rkotler at mips.com> wrote: > > The source browsing is way better this way. Definitely! Once I used this for the first time I never wanted to go back to grep for source navigation, it’s so much faster :) > How are you setting up the debugger? > > For example, if you want to run from clang but debug the back end code generation ? I
2013 Jul 17
1
[LLVMdev] eclipse and gdb
Hi, I am using Eclipse to edit the files, and I used it to debug with gdb as well (but I went back to gdb on the command line, Eclipse GDB UI is just too slow and buggy for me ..). You need to exclude the clang preprocessor/.. stress tests from the sources, otherwise the indexer will freeze Eclipse. You should also remove some autogenerated CMake project subdirectories, otherwise your files
2013 Jul 16
0
[LLVMdev] eclipse and gdb
Hi Reed, I’ve used Eclipse for a long time to do LLVM development on Linux (both for code navigation/editing and debugging), any recent Linux distribution and version of Eclipse should be fine (even older versions should be good enough as this has been working for many years). Xcode works fine as well, I started to use Xcode exclusively when I switched to OS X. The key to make this work is to