Displaying 7 results from an estimated 7 matches for "landwehr".
2011 Jan 21
4
[LLVMdev] How to extend llvm IR and frontend?
...ion or group of
instructions to access a certain address space), what would be the
correct/easiest place(s) to add this functionality, and would there be
existing code that does something similar that can be used as a starting
point?
More Info: suppose this uses clang as a frontend.
Thanks,
Aaron Landwehr
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110121/d96c0631/attachment.html>
2013 Nov 24
1
[LLVMdev] x86_64 code generation defects when SSE instructions are disabled
...bugzilla/show_bug.cgi?id=59277
As I noted in the bug report, I'm not sure how a fix should be
handled/whether it should be handled simply because I believe such fixes
would not necessarily adhere to the ABI specification.
In any case, I just wanted to throw the issue this way.
--
Aaron Myles Landwehr
Computer Architecture and Parallel Systems Laboratory (CAPSL)
University Of Delaware
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131124/d509f453/attachment.html>
2011 Jan 21
0
[LLVMdev] How to extend llvm IR and frontend?
On Fri, Jan 21, 2011 at 4:32 PM, Aaron Myles Landwehr <snaphat at gmail.com> wrote:
> Hypothetically, suppose I have a generic system with multiple address spaces
> such that each address space is accessed using different instructions.
> Now suppose, I wanted to add a new keywords 'foo' and 'bar' to the front of
> c v...
2011 Jul 30
0
[LLVMdev] Problem while selfhosting LLVM and Clang
This looks relevant to me for your issue. Grabbing the cxxabi.h from there
may work:
http://comments.gmane.org/gmane.comp.compilers.clang.devel/9391
--
Aaron Myles Landwehr
On Sat, Jul 30, 2011 at 1:33 AM, 陳韋任 <chenwj at iis.sinica.edu.tw> wrote:
> Hi, all
>
> I am trying to selfhost LLVM and Clang. Below is my flow,
>
> Step 1. Build LLVM and Clang by using native gcc
>
> $ ../llvm-2.9/configure --prefix=$INSTALL \
> --enable-optimiz...
2016 Mar 16
2
talloc access after free error ntlmssp_server.c:457
Our new/fresh dovecot imap installation on CentOS (latest from yum repository, which is 2.2.10) is locking up with a panic on a consistent basis and denying service to subsequent clients. The behavior is repeatable. Have spent weeks debugging and trying different configurations with no success.
Specific /var/log/maillog error messages are:
12:06:54 dovecot: auth: Error: talloc: access after
2011 Jul 30
2
[LLVMdev] Problem while selfhosting LLVM and Clang
Hi, all
I am trying to selfhost LLVM and Clang. Below is my flow,
Step 1. Build LLVM and Clang by using native gcc
$ ../llvm-2.9/configure --prefix=$INSTALL \
--enable-optimized
Step 2. Build LLVM and Clang by using clang built by step 1
$ CC=clang CXX=clang++ ../llvm-2.9/configure \
--prefix=$INSTALL --enable-optimized
But in step 2, I have a compilation error below,
--
llvm[1]:
2011 Jul 30
0
[LLVMdev] Problem while selfhosting LLVM and Clang
On Sat, Jul 30, 2011 at 2:35 AM, 陳韋任 <chenwj at iis.sinica.edu.tw> wrote:
> Hi, Asron
>
> > This looks relevant to me for your issue. Grabbing the cxxabi.h from
> there
> > may work:
> >
> > http://comments.gmane.org/gmane.comp.compilers.clang.devel/9391
>
> I am not sure where to put cxxabi.h. How can I let clang find this
> header file while