Displaying 16 results from an estimated 16 matches for "finna".
Did you mean:
finn
2004 May 04
4
[LLVMdev] Plea for help
...r is enabled, but runs without problems otherwise.
On RH9 (the system I have access to while generating this email) I
have the following details:
> 1) The LLVM assembly language (.ll file) that is failing.
- Attached.
> 2) The version of GCC that you are using (gcc -v)
----------------
[finna at coplin11 ~]$ gcc -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.2.2/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--disable-checking --with-system-zlib --enable-__cxa_atexit
--host=i386-re...
2004 May 06
3
[LLVMdev] Plea for help
Chris Lattner wrote:
>I think that we should switch to C constants in this case. Can you try
>#include <math.h> and use HUGE_VAL instead?
>
It works:
[finna at coplin11 ~/test]$ cat tst.cpp
#include <limits>
#include <iostream>
#include <math.h>
int main() {
std::cerr << std::numeric_limits<float>::infinity() << "\n";
std::cerr << HUGE_VAL << "\n";
}
[finna at coplin11 ~/test]$ g++...
2004 May 05
2
[LLVMdev] Plea for help
...ream>
>int main() {
> std::cerr << std::numeric_limits<float>::infinity() << "\n";
>}
>---
>
>
Sure thing. It prints "0". Calling that inifinity is somewhat
of a stretch, isn't it ?
What on earth is going on here?
Log:
----------
[finna at coplin11 debug]$ cat - > tst.cpp
#include <limits>
#include <iostream>
int main() {
std::cerr << std::numeric_limits<float>::infinity() << "\n";
}
[finna at coplin11 debug]$ g++ tst.cpp
[finna at coplin11 debug]$ ./a.out
0
----------
Thanks a lot for...
2004 May 03
0
[LLVMdev] Plea for help
Finn S Andersen wrote:
> Sorry to disturb you all, but I simply cannot get
> the linearscan allocator to work. I have upgraded
> llvm to mainline cvs. Everything works until I get
> to llc -regalloc=linearscan or lli -regalloc=linearscan.
>
> I have installed it on redhat 9 and on Fedora Core
> distributions (I even took it as far as to format a new
> partition and
2004 May 03
3
[LLVMdev] Plea for help
Sorry to disturb you all, but I simply cannot get
the linearscan allocator to work. I have upgraded
llvm to mainline cvs. Everything works until I get
to llc -regalloc=linearscan or lli -regalloc=linearscan.
I have installed it on redhat 9 and on Fedora Core
distributions (I even took it as far as to format a new
partition and install Fedora core all over). I have submitted
the bytecode that
2004 May 05
0
[LLVMdev] Plea for help
On Wed, 5 May 2004, Finn S Andersen wrote:
> Chris Lattner wrote:
>
> >Could you try compiling and running this program:
> >
> >---
> >#include <limits>
> >#include <iostream>
> >int main() {
> > std::cerr << std::numeric_limits<float>::infinity() << "\n";
> >}
> >---
> >
> >
> Sure
2004 May 06
0
[LLVMdev] Plea for help
On Thu, May 06, 2004 at 04:06:27PM +0200, Finn S Andersen wrote:
> Chris Lattner wrote:
>
> >I think that we should switch to C constants in this case. Can you try
> >#include <math.h> and use HUGE_VAL instead?
> >
> It works:
>
> [finna at coplin11 ~/test]$ cat tst.cpp
> #include <limits>
> #include <iostream>
> #include <math.h>
> int main() {
> std::cerr << std::numeric_limits<float>::infinity() << "\n";
> std::cerr << HUGE_VAL << "\n";
>...
2004 May 04
0
[LLVMdev] Plea for help
On Tue, 4 May 2004, Finn S Andersen wrote:
> Chris wrote in a followup:
>
> > Can you send the output of 'llc -o - foo.bc -debug -print-machineinstrs'?
>
>
> Attached as "linscan". (But added the "-regalloc=linearscan" to provoke
> the error).
Yes, that's exactly what I meant... thanks for reading my mind! :)
It looks like this is where
2004 Apr 21
0
[LLVMdev] x86 cogen quality
On Wed, Apr 21, 2004 at 11:01:48AM +0200, Finn S Andersen wrote:
> For some of the benchmarks the linear scan regalloc
> works. When it does, results are in the x1.0 - 1.5
> range. Unfortunately, the linear scan allocator breaks
> on most of my code.
Is there a chance you can try cvs? I would be interested to
get a simplified test case where the allocator breaks. A lot of
2004 Apr 26
2
[LLVMdev] x86 cogen quality
...hough I have
opened an account, registered a password and confirmed it through
mail, I am still rejected by bugzilla when I try to log in.
I hope you can use the attached bc to narrow down the bug.
Thanks a lot for any help.
----------------------
The message I get when running the attached bc:
[finna at coplin11 fft]$ lli -regalloc=linearscan a.out.bc
lli: /home/finna/llvm/llvm/include/llvm/Target/MRegisterInfo.h:144:
static bool llvm::MRegisterInfo::isPhysicalRegister(unsigned int):
Assertion `Reg
&& "this is not a register!"' failed.
lli[0x849e768]
lli[0x849e974]
/lib...
2004 Apr 21
4
[LLVMdev] x86 cogen quality
Hi, I have a question about x86 code quality.
I have run a few benchmarks and compared the
running time of executables created by LLVM to
executables created by gcc.
It appears that code generated by LLVM is x1.5 - x3
times slower than code generated by gcc, for the x86
For some of the benchmarks the linear scan regalloc
works. When it does, results are in the x1.0 - 1.5
range. Unfortunately,
2004 Apr 22
2
[LLVMdev] x86 cogen quality
...ver, it seems that there is a lot of changes since release 1.2.
The cvsweb interface only allow me to download one file at a time.
I have grabbed "llvm/lib/CodeGen/RegAllocLinearScan.cpp" and
run make and make install.
But the problem is still there. The error message says:
lli: /home/finna/llvm/llvm/include/llvm/Target/MRegisterInfo.h:144:
static bool llvm::MRegisterInfo::isPhysicalRegister(unsigned int):
Assertion `Reg && "this is not a register!"' failed.
But trying cvsweb I cannot locate the file mentioned above. I guess
you have removed it which likel...
2004 May 06
1
[LLVMdev] Plea for help
Alkis Evlogimenos wrote:
>As for CVS, I am not sure this should be fixed because there is
>really no LLVM bug here :-)
>
>
>
No, you are right. But perhaps it is worth it to mention the problem
somewhere in the documentation, because there appear to be many
installations with this problem (I've found 3: my home installation,
my work and the nearest university), and it is
2004 May 07
0
[LLVMdev] Plea for help
Chris Lattner wrote:
>While this is not an LLVM bug, if Finn has run into it, other people
>probably will too. I've fixed it in CVS: if you update llvm/lib/CodeGen
>and rebuild, hopefully linscan will magically work for Finn now. :)
>
>-Chris
>
>
It works. Even better: it isn't magic ;-)
Thank you for helping me out. Now it's time to play :)
Best regards
/Finn
2004 Apr 23
1
[LLVMdev] x86 cogen quality
Chris Lattner wrote:
>You can check out the whole CVS tree at once, which is going to be a lot
>easier than pulling it down from CVSweb :) Here are the instructions:
>http://llvm.cs.uiuc.edu/docs/GettingStarted.html#checkout
>
Ouch, how embarrasing - I looked for that place,
but apparently failed to notice it. Sorry.
Anyhow, I checked it out as described (in a clean directory),
2004 Apr 26
2
[LLVMdev] x86 cogen quality
Chris Lattner wrote:
>I can't reproduce this failure with mainline CVS using either lli or llc:
>
>$ lli -regalloc=linearscan a.out.bc
>$ echo $status
>0
>
>Are you sure that the CVS version is in your path?
>
>
After configure and make I run make install, which moves the executables
to /usr/local/bin, right ? And yes, they are in my path.
But thank you very