Displaying 20 results from an estimated 47 matches for "20130730".
Did you mean:
20130703
2013 Jul 30
3
[LLVMdev] Disable memset synthesization
...memset, memcpy and so on. Is
there an option that can disable this optimization? For some cases, I do
not want the code to depend on libc.
Thanks in advance!
Bin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/ecdb07f5/attachment.html>
2013 Jul 30
1
[LLVMdev] LLVM and Cygwin
...gt; stuff installed with gcc, but the exact location can vary quite a bit.
>
> Cheers.
>
> Tim.
>
--
Thanks,
Brian Herman
college.nfshost.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/a4ccc272/attachment.html>
2013 Jul 30
7
[LLVMdev] llvm.org bug trend
...s me think more seriously about cruising the bug list for something that looks like
I could actually fix it...
--paulr
[cid:image001.png at 01CE8C56.9A40D7E0]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/ec8f0b56/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image001.png
Type: image/png
Size: 11909 bytes
Desc: image001.png
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/ec8f0b56/attachment.png>
2013 Jul 30
2
[LLVMdev] LLVM and Cygwin
...ttp://lists.cs.uiuc.edu/**mailman/listinfo/llvmdev<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev>
>
--
Thanks,
Brian Herman
college.nfshost.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/fe3fc10a/attachment.html>
2013 Jul 30
4
[LLVMdev] creating SCEV taking too long
...son not to limit the size of SCEV expressions, but I also don’t have a brilliant idea for how to do it at the moment (other than the obvious depth cutoff).
-Andy
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/8c20dfb6/attachment.html>
2013 Jul 30
2
[LLVMdev] Instruction insertion By Module Pass
...ty of Computers and Informatics
Benha University*
* e-mail: rasha.omar at ejust.edu.eg*
P* Please consider the environment before printing this email.*
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/c6effb93/attachment.html>
2013 Jul 25
28
[Bug 67315] New: System lockup with X consuming all CPU
https://bugs.freedesktop.org/show_bug.cgi?id=67315
Priority: medium
Bug ID: 67315
Assignee: nouveau at lists.freedesktop.org
Summary: System lockup with X consuming all CPU
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: Linux (All)
Reporter: ricks at alldigital.com
2013 Jul 30
0
[LLVMdev] [cfe-dev] llvm.org bug trend
...___________________________________________
> cfe-dev mailing list
> cfe-dev at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/d63c19c5/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image001.png
Type: image/png
Size: 11909 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/d63c19c5/attachment.png>
2013 Jul 30
0
[LLVMdev] creating SCEV taking too long
...not to limit the size of SCEV expressions, but I also don't have a brilliant idea for how to do it at the moment (other than the obvious depth cutoff).
-Andy
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/6bfdf074/attachment.html>
2013 Jul 31
0
[LLVMdev] [PROPOSAL] ELF safe/unsafe sections
On 7/30/2013 5:43 PM, Nick Kledzik wrote:
> On Jul 29, 2013, at 10:09 AM, Shankar Easwaran wrote:
>
>> On 7/29/2013 11:24 AM, Nick Kledzik wrote:
>>> On Jul 25, 2013, at 2:10 PM, Rui Ueyama wrote:
>>>> Is there any reason -ffunction-sections and -fdata-sections wouldn't work? If it'll work, it may be be better to say "if you want to get a better linker
2013 Jul 30
3
[LLVMdev] Help with promotion/custom handling of MUL i32 and MUL i64
...ing process.
Are there suggestions on how to promote the type, but then be able to
customize the original i64 to a call and the original mul i32 to an
operation?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/5b66cabd/attachment.html>
2013 Jul 30
0
[LLVMdev] [GSoC] flang midterm progress report
...wrote a report describing some of the results and instructions on how to
use flang:
http://flang-gsoc.blogspot.ie/2013/07/gsoc-midterm-progress-report.html
Alex
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/f411e4be/attachment.html>
2013 Jul 30
0
[LLVMdev] LLVM and Cygwin
> $ nm libgcc_eh.a | grep register_frame
> nm: 'libgcc_eh.a': No such file
I think he meant to find out where libgcc_eh.a lives under Cygwin and
execute the command on that file. It should be somewhere amongst the
stuff installed with gcc, but the exact location can vary quite a bit.
Cheers.
Tim.
2013 Jul 30
0
[LLVMdev] Disable memset synthesization
On 7/30/2013 12:55 PM, Bin Tzeng wrote:
> Hi all,
>
> LLVM is smart that it can synthesize llvm.memset, llvm.memcpy etc. from
> loops, which can be lowered into calls to memset, memcpy and so on. Is
> there an option that can disable this optimization? For some cases, I do
> not want the code to depend on libc.
You can use -fno-builtin, if that suits your needs.
-K
--
2013 Jul 30
3
[LLVMdev] [PROPOSAL] ELF safe/unsafe sections
On Jul 29, 2013, at 10:09 AM, Shankar Easwaran wrote:
> On 7/29/2013 11:24 AM, Nick Kledzik wrote:
>> On Jul 25, 2013, at 2:10 PM, Rui Ueyama wrote:
>>> Is there any reason -ffunction-sections and -fdata-sections wouldn't work? If it'll work, it may be be better to say "if you want to get a better linker output use these options", rather than defining new ELF
2013 Jul 31
0
[LLVMdev] Interpreting stack maps for purposes of precise GC
...n whatsoever describing how to actually find a stack address
based on a value in the stack map.
Any/all advice would be much appreciated!
Thanks,
- Mike
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/eba1ef63/attachment.html>
2013 Jul 30
1
[LLVMdev] Proposing a new 'alloca' parameter attribute to implement the Microsoft C++ ABI
...rontend, and the backend could reject the
alloca attribute on parameters that should be in registers. I need to
double-check what happens for fastcall on x86_32.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/d53f210c/attachment.html>
2013 Jul 30
1
Postfix aliases with quota-status service
...ing aliasing on the Postfix end. Open to suggestions...
Regards
Thomas
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://dovecot.org/pipermail/dovecot/attachments/20130730/5847d5fc/attachment.bin>
2013 Jul 30
0
[LLVMdev] creating SCEV taking too long
...lopers mailing list
LLVMdev at cs.uiuc.edu<mailto:LLVMdev at cs.uiuc.edu> http://llvm.cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130730/3ab6f584/attachment.html>
2013 Jul 29
5
[LLVMdev] LLVM and Cygwin
I got the following error while compiling llvm and clang under cygwin.
/cygdrive/c/Users/brianherman/Desktop/llvm/llvm-3.3.src/Release+Asserts/lib/libLLVMMCJIT.a(SectionMemoryManager.o):SectionMemoryManager.cpp:(.text+0x3b):
undefined reference to `__register_frame'