similar to: [LLVMdev] Mailing list archives broken?

Displaying 20 results from an estimated 200000 matches similar to: "[LLVMdev] Mailing list archives broken?"

2012 Nov 13
3
[LLVMdev] Using LLVM to serialize object state -- and performance
Switching to CodeGenOpt::None reduced the execution time from 5.74s to 0.84s. By just tweaking things randomly, changing to CodeModel::Small reduced it further to 0.22s. We have some old, ugly, pure C++ code that we're trying to replace (both because it's ugly and because it's slow). It's execution time is about 0.089s, so that's the time to beat. Hence, I'd like to
2012 Nov 14
2
[LLVMdev] Using LLVM to serialize object state -- and performance
The passes run are determined by TargetMachine::adPassesToEmitMachineCode (or addPassesToEmitMC in the case of MCJIT), which is called from the JIT constructor. You can step through that to see where the passes are coming from or you can create a custom target machine instance to control it. -Andy -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at
2010 Apr 27
0
[LLVMdev] broken link
also get error with http://llvm.org/releases/2.7/clang-2.7-amd64-freebsd8.tar.gz 2010/4/27 Lucas Silva <landir at gmail.com>: > Hi for those who maintain the website: > The link to download Clang source code is broken in > http://llvm.org/releases/download.html#2.7 > It opens http://llvm.org/releases/2.7/clang-2.7.tar.gz with a 404 not found > page > > -- > Lucas da
2000 Nov 22
0
Mailing list archives now broken down by month
...not that hypermail really helped much, but the mailing list archives for vorbis and vorbis-dev at xiph.org are now broken down by month. Hopefully the rollover automation even works :-) Search comes next... Monty --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to
2003 Feb 10
0
Mailing List Archives Search Broken
I''m working on it. Word of advice -- if you are ever tempted to install ''htdig'', don''t! -Tom -- Tom Eastep \ Shorewall - iptables made easy Shoreline, \ http://www.shorewall.net Washington USA \ teastep@shorewall.net
2002 Nov 05
0
FW: rsync-cvs mail list archiving broken??
Thanks! If I can be of any help, please let me know. While I don't have a lot of free time, either, I enjoy working on open-source software and have several years of experience porting it to our system. I'd be happy to try to lend a hand from time to time, applying well-formed patches or looking at bugs. Maybe my slack and busy periods would happen at different times from the other
2012 Mar 21
1
[LLVMdev] Mailing list archives
FYI, the mailing list archives (e.g. http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev) are currently down. The disk that held them had a failure, and the machine is being worked on. -Chris
2016 Jul 22
2
Old mailing list links broken.
On Fri, Jul 22, 2016 at 2:37 PM, Tanya Lattner <tanyalattner at llvm.org> wrote: > > On Jul 21, 2016, at 11:59 PM, Sean Silva <chisophugis at gmail.com> wrote: > > Hi Tanya, > > I was spelunking through bugzilla and ran into an old mailing list link > http://lists.cs.uiuc.edu/pipermail/llvmdev/2006-January/005137.html > (found in PR36). > > I expect this
2016 Jul 22
3
Old mailing list links broken.
Hi Tanya, I was spelunking through bugzilla and ran into an old mailing list link http://lists.cs.uiuc.edu/pipermail/llvmdev/2006-January/005137.html (found in PR36). I expect this link to be broken since our servers are not on that domain. No big deal, just change it to lists.llvm.org: http://lists.llvm.org/pipermail/llvmdev/2006-January/005137.html Looks like that doesn't exist, as the
2001 Dec 03
2
Broken mail list web archive
Hi! The page http://www.xiph.org/archives/vorbis/masterindex.html links to http://www.xiph.org/archives/vorbis/date.html , whic gives a 404 error ( not found ). Just like last time ( begin of november ), when I reported it just like now. And I was ignored, just like now (?). -- David Balazic -------------- "Be excellent to each other." - Bill S. Preston, Esq., & "Ted"
2012 Nov 15
0
[LLVMdev] Mailing List archive navigation (was Re: svn mirror git?)
> Side note (perhaps for another email thread) fork'd > Side note (perhaps for another email thread): am I missing something, > or is the mailing list archive really that hard to link to the root of > a thread & navigate the /whole/ thread over all time? Every time I go > to the archive I find the fragment of a thread that occurred in a > given month & I can't
2001 Jan 08
0
vorbis mailing list archive search is broken
Hi, The vorbis mailing list archive search is broken. Error is "Internal Server Error". --Mike --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe
2009 Mar 12
0
[LLVMdev] List archives not updating
Stefanus Du Toit wrote: > The llvm-dev archives (and other llvm/clang mailing list archives) on > the web don't seem to have any new messages since some time Monday > night. > It seems to be working for me. Does it work for you now? -- John T. > Stefanus > > -- > Stefanus Du Toit <stefanus.dutoit at rapidmind.com> > RapidMind Inc. > phone: +1
2012 Nov 12
0
[LLVMdev] Using LLVM to serialize object state -- and performance
Hi Paul, This is definitely outside the area where I know the particulars of what's going on. However, one idea that might be worth trying is setting the JIT optimization level to 'CodeGenOpt::None'. This should trigger the use of the FastISel instruction selector. Normally, you wouldn't want that for anything other than generating debug code, but since your routines are just
2012 Oct 26
0
[LLVMdev] Lifetime of ExecutionEngine?
Hi Paul, I'm surprised to hear that you aren't seeing any adverse effects. As I understand it, the memory for the function pointer returned by getPointerToFunction is owned by the JITMemoryManager which was used in creating the ExecutionEngine. In the case of the legacy JIT engine, the JITMemoryManager is owned by the JITEmitter which in turn is owned by the JIT ExecutionEngine. In the
2012 Nov 06
0
[LLVMdev] Using LLVM to serialize object state -- and performance
Hi Paul, I think you may have gone beyond what I understand in how the legacy JIT code works. It looks like the call to addGlobalMapping should short-circuit the named function look up that I described, but I can't account for why it behaves differently on Mac vs. Linux. I still don't understand how the external pointers persist between writing and reading, but it sounds like you have
2012 Oct 02
1
[LLVMdev] Offset to C++ structure members
On Oct 2, 2012, at 2:34 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Tue, Oct 2, 2012 at 11:33 AM, Paul J. Lucas <paul at lucasmail.org> wrote: > >> My understanding is that, in order to use GEP, you have to provide the LLVM code with the struct layout, i.e., build a StructType object. In my case, that struct is declared in C++ code already and, in order to
2012 Mar 29
0
[LLVMdev] Alloca instructions in NON-entry block?
On 3/29/12 11:32 AM, Paul J. Lucas wrote: > The Kaleidoscope example here: > > http://llvm.org/docs/tutorial/LangImpl7.html#adjustments > > defines a CreateEntryBlockAlloca() helper function that "ensures that the allocas are created in the entry block of the function." > > It's kid of implied, but I thought I'd ask explicitly: *must* alloca instructions be
2000 Jun 08
1
Mailing list archives?
I'm new to this mailing list. I mainly joined because the archives of this and other samba mailing lists are no longer available from the samba web pages. I assume I'm not the first person to notice this? Andy
2010 Apr 06
0
[LLVMdev] Fw: Welcome to the "LLVMdev" mailing list
I would like to post information regarding paid internships. Details are as follows: Software Engineering Intern: Systems Technology Group The Worldwide Studios System Technology Group is offering a paid Engineering Internship! Job Description: Be a part of the most exciting and innovative computer entertainment in North America. Sony Computer Entertainment America (SCEA) markets the