search for: __builtin_iceil

Displaying 10 results from an estimated 10 matches for "__builtin_iceil".

2012 Nov 06
3
[LLVMdev] Help needed on debugging llvm
Hi Duncan I am facing a build error about __builtin_iceil when compiled with dragonegg using -ffast-math option. My dragonegg is built with gcc-4.7.0 (I am compiling namd spec benchmark here again). Any idea? g++ -march=bdver2 -save-temps -fplugin=/home/anboyapa/install/bin/dragonegg.so -O2 -march=bdver2 -save-temps -fplugin=/home/anboyapa/install/bin...
2012 Nov 06
2
[LLVMdev] Help needed on debugging llvm
On 6 November 2012 14:52, Duncan Sands <baldrick at free.fr> wrote: > Hi Anitha, > > > On 06/11/12 10:19, Anitha Boyapati wrote: > >> Hi Duncan >> I am facing a build error about __builtin_iceil >> > > it's surely just that dragonegg doesn't have any support for this builtin. > ok. Just verified that Target.cpp and x86_builtins do not have iceil support. I have this tricky situation - I use dragonegg generated LLVM IR as input to clang for some analysis (well it is...
2012 Nov 06
0
[LLVMdev] Help needed on debugging llvm
Hi Anitha, On 06/11/12 10:19, Anitha Boyapati wrote: > Hi Duncan > I am facing a build error about __builtin_iceil it's surely just that dragonegg doesn't have any support for this builtin. Please open a bug report with a minimal test case. Ciao, Duncan. when compiled > with dragonegg using -ffast-math option. My dragonegg is built with gcc-4.7.0 > (I am compiling namd spec benchmark here aga...
2012 Nov 06
0
[LLVMdev] Help needed on debugging llvm
...any support for this builtin. > > ok. Just verified that Target.cpp and x86_builtins do not have iceil support. > I have this tricky situation - I use dragonegg generated LLVM IR as input to > clang for some analysis (well it is clang++ actually). Understably,clang cribs > looking at __builtin_iceil. Any idea how to resolve that as well? adding dragonegg support for iceil would solve both problems. Ciao, Duncan. > clang++ -O2 -march=bdver2 -mno-fma -save-temps -mfma4 -ffp-contract=fast > -DSPEC_CPU_LP64 Compute.o ComputeList.o ComputeNonbondedUtil.o LJTable.o > Molecule.o...
2012 Nov 05
0
[LLVMdev] Help needed on debugging llvm
Hi Anitha, > http://llvm.org/bugs/show_bug.cgi?id=14185 > I am stuck on analysis. Does any one have alternate suggestions on debugging > llvm? (Please refer to comments for the work done so far) try to reduce a small standalone testcase which is an LLVM IR (.ll) file. Ciao, Duncan.
2012 Nov 05
3
[LLVMdev] Help needed on debugging llvm
Hi, http://llvm.org/bugs/show_bug.cgi?id=14185 I am stuck on analysis. Does any one have alternate suggestions on debugging llvm? (Please refer to comments for the work done so far) -- * Anitha* -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121105/3c6b8af3/attachment.html>
2012 Nov 07
3
[LLVMdev] Help needed on debugging llvm
...-O3 -march=bdver2 -mno-fma -mfma4 -ffp-contract=fast <test.ll> Does clang proceed to optimize the test.ll w.r.t "-O3 -ffp-contract=fast -mno-fma -mfma4" ? (I am not sure if -ffp-contract=fast has any effect there, but I could be wrong though) Also thanks for the immediate fix for __builtin_iceil(). I can see that the issue got resolved. -Anitha -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121107/ed76f912/attachment.html>
2012 Nov 06
0
[LLVMdev] Help needed on debugging llvm
Hi Anitha, On 05/11/12 10:29, Anitha Boyapati wrote: > > > On 5 November 2012 14:32, Duncan Sands <baldrick at free.fr > <mailto:baldrick at free.fr>> wrote: > > Hi Anitha, > > > http://llvm.org/bugs/show_bug.__cgi?id=14185 > <http://llvm.org/bugs/show_bug.cgi?id=14185> > I am stuck on analysis. Does any one have
2012 Nov 05
2
[LLVMdev] Help needed on debugging llvm
On 5 November 2012 14:32, Duncan Sands <baldrick at free.fr> wrote: > Hi Anitha, > > > http://llvm.org/bugs/show_bug.**cgi?id=14185<http://llvm.org/bugs/show_bug.cgi?id=14185> >> I am stuck on analysis. Does any one have alternate suggestions on >> debugging >> llvm? (Please refer to comments for the work done so far) >> > > try to reduce a
2012 Nov 07
0
[LLVMdev] Help needed on debugging llvm
...ny effect there, > but I could be wrong though) I don't know. You can always run it with and without -O3 to see if the output changes. Likewise for the other options. The advantage of using llc is that you have a better idea what is being done. > Also thanks for the immediate fix for __builtin_iceil(). I can see that the > issue got resolved. Thanks for confirming. Ciao, Duncan.