Displaying 2 results from an estimated 2 matches for "r1505".
Did you mean:
1505
2008 Jul 17
0
r1515 - branches/trunk-make-package: anybody interested in taking over?
...rs,
Arnaud
2008/7/17 Arnaud Quette <aquette at alioth.debian.org>:
> Author: aquette
> Date: Thu Jul 17 14:27:24 2008
> New Revision: 1515
>
> Log:
> make-package and packaging related branch
>
>
> Added:
> branches/trunk-make-package/
> - copied from r1505, /trunk/
> branches/trunk-make-package/ChangeLog
> - copied, changed from r1511, /trunk/ChangeLog
> branches/trunk-make-package/clients/upsclient.c
> - copied unchanged from r1507, /trunk/clients/upsclient.c
> branches/trunk-make-package/configure.in
> - copie...
2010 Nov 03
1
[LLVMdev] LLVM x86 Code Generator discards Instruction-level Parallelism
...ion
schedule with a four-instruction reuse distance. An excerpt follows:
.
.
%r1500 = fmul float %r1496, %r24 ; compute %1500
%r1501 = fmul float %r1497, %r23
%r1502 = fmul float %r1498, %r22
%r1503 = fmul float %r1499, %r21
%r1504 = fmul float %r1500, %r24 ; first use of %1500
%r1505 = fmul float %r1501, %r23
%r1506 = fmul float %r1502, %r22
%r1507 = fmul float %r1503, %r21
%r1508 = fmul float %r1504, %r24 ; first use of %1504
.
.
The JIT compiler, however, seems to break the interleaving of independent instructions
and issues a long sequence of instructions with b...