search for: loisel

Displaying 8 results from an estimated 8 matches for "loisel".

2007 Dec 16
5
[LLVMdev] About unwind...
...t platform? How many isns and such? 2) When I unwind, the stack gets popped but it would make sense to pass some data to the exception handler. I guess I could use a global variable for this, but is there a way to do it on the stack? (Wouldn't that make more sense also?) Thanks, -- Sébastien Loisel -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20071215/b2f57f76/attachment.html>
2007 Dec 16
0
[LLVMdev] About unwind...
Hi Sebastien. On Dec 15, 2007, at 19:00, Sebastien Loisel <loisel at temple.edu> wrote: > I have started playing with LLVM a little bit and I am thinking of > using it to write some linear algebra software for my class. > > I was reading the documentation and I am very excited by the > possibilities of "invoke" and &quo...
2007 Dec 29
1
[LLVMdev] svn broken on cygwin
...b/llvm/include/llvm/ADT/FoldingSet.h:153: note: void llvm::FoldingSetIm pl::NodeID::AddInteger(int64_t) /home/Seb/llvm/include/llvm/ADT/FoldingSet.h:154: note: void llvm::FoldingSetIm pl::NodeID::AddInteger(uint64_t) make[1]: *** [/home/Seb/llvm/lib/VMCore/Debug/Function.o] Error 1 -- Sébastien Loisel -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20071229/d7fb111e/attachment.html>
2008 Feb 15
0
[LLVMdev] LLVMdev Digest, Vol 44, Issue 47
...erson managing the list at > llvmdev-owner at cs.uiuc.edu > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of LLVMdev digest..." > > > Today's Topics: > > 1. Re: LLVMdev Digest, Vol 44, Issue 47 (Sebastien Loisel) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 15 Feb 2008 15:28:46 -0500 > From: "Sebastien Loisel" <loisel at temple.edu> > Subject: Re: [LLVMdev] LLVMdev Digest, Vol 44, Issue 47 > To: llvmdev a...
2008 Feb 15
4
[LLVMdev] LLVMdev Digest, Vol 44, Issue 47
...that I can turn off all delivery of emails from the llvmdev list without unsubscribing? If that's not possible, I'll unsubscribe and then resubscribe when I have something to say, but I just think it would be better if I could turn off the email delivery or something. Sincerely, Sébastien Loisel On Fri, Feb 15, 2008 at 3:21 PM, <llvmdev-request at cs.uiuc.edu> wrote: > Send LLVMdev mailing list submissions to > llvmdev at cs.uiuc.edu > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > or...
2007 Dec 16
1
[LLVMdev] About unwind...
...k > gets popped... > I don't know how llvm implements unwind, but in principle it is possible to walk (and pop) the stack to the right point, then push a parameter, then push the proper return address, then return. But nevermind me, I don't know how llvm works anyway. -- Sébastien Loisel -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20071216/a77ad10e/attachment.html>
2008 Feb 15
0
[LLVMdev] LLVMdev Digest, Vol 44, Issue 47
...or your quick intervention. I guess we will see if this email gets through. For those on digest, the digest size is currently 30 KB. Is this > reasonable for everyone, or should it be higher? > I think if you send a single email with enough quotes in it, it busts the limit. -- Sébastien Loisel -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080215/9cb1b8fb/attachment.html>
2007 Dec 16
0
[LLVMdev] About unwind...
> 2) When I unwind, the stack gets popped but it would make sense to pass some > data to the exception handler. I guess I could use a global variable for > this, but is there a way to do it on the stack? (Wouldn't that make more > sense also?) Passing extra info on the stack doesn't make much sense because the stack gets popped... Also, note that the unwind instruction is