atom feed30 messages in net.java.dev.phoneme.advancedRe: JNI intBitsToFloat return error
FromSent OnAttachments
phon...@mobileandembedded.orgMar 26, 2007 1:35 pm 
phon...@mobileandembedded.orgMar 26, 2007 1:58 pm 
phon...@mobileandembedded.orgMar 26, 2007 2:04 pm 
phon...@mobileandembedded.orgMar 27, 2007 7:01 am 
phon...@mobileandembedded.orgMar 27, 2007 7:14 am 
phon...@mobileandembedded.orgMar 27, 2007 8:42 am 
phon...@mobileandembedded.orgMar 27, 2007 8:59 am 
phon...@mobileandembedded.orgMar 27, 2007 9:09 am 
phon...@mobileandembedded.orgMar 27, 2007 9:34 am 
phon...@mobileandembedded.orgMar 27, 2007 10:06 am 
phon...@mobileandembedded.orgMar 27, 2007 11:45 am 
phon...@mobileandembedded.orgMar 27, 2007 12:05 pm 
phon...@mobileandembedded.orgMar 27, 2007 12:28 pm 
phon...@mobileandembedded.orgMar 27, 2007 1:10 pm 
phon...@mobileandembedded.orgMar 27, 2007 1:20 pm 
phon...@mobileandembedded.orgMar 27, 2007 1:25 pm 
phon...@mobileandembedded.orgMar 27, 2007 1:59 pm 
phon...@mobileandembedded.orgMar 27, 2007 2:07 pm 
phon...@mobileandembedded.orgMar 27, 2007 2:19 pm 
phon...@mobileandembedded.orgMar 27, 2007 3:11 pm 
phon...@mobileandembedded.orgMar 27, 2007 3:35 pm 
phon...@mobileandembedded.orgMar 27, 2007 3:38 pm 
phon...@mobileandembedded.orgMar 28, 2007 6:16 am 
Tom MayMar 28, 2007 11:37 am 
phon...@mobileandembedded.orgMar 28, 2007 11:48 am 
Tom MayMar 28, 2007 11:51 am 
phon...@mobileandembedded.orgMar 28, 2007 12:26 pm 
phon...@mobileandembedded.orgMar 28, 2007 12:47 pm 
phon...@mobileandembedded.orgApr 13, 2007 9:16 am 
phon...@mobileandembedded.orgApr 13, 2007 10:31 am 
Subject:Re: JNI intBitsToFloat return error
From:phon...@mobileandembedded.org (phon@mobileandembedded.org)
Date:Mar 27, 2007 12:28:55 pm
List:net.java.dev.phoneme.advanced

Bob,

The linux distribution you are using may already come with a gdb installed.
Please look to see if one is available before you attempt a cross compile.
Alternatively, you can build CVM with USE_VERBOSE_MAKE=true (if you are using
the latest development tip) or CVM_TERSEOUTPUT=false (if you're using older
source). Look at the gcc invocation line for building Float.c. Change the -c
to -S and Float.o to Float.S, and recompile Float.c. This will give you the
assembly output for that file. Look in the generated assembly file for the code
generated for the return statement of Float_intBitsToFloat().

Regarding the calling convention mismatch, I meant that the gcc you are using
may be expecting to return the float result in a floating point register (a
simulated one since you don't have actual floating point hardware), but the VM
is expecting it in a general purpose register. There could be other things like
this that could have been mismatched as well. Basically, the VM is expecting
you to return the value using one convention, and gcc may be generating code
using a different convention. This is why I want to find out what asm code is
being generated for the return statement.

Also, when you do a CVM build, the build will output a lot of build information.
Please capture this output as the build log. At the top of the build log is a
list of the build options that you used. Please post that.

Mark [Message sent by forum member 'mlam' (mlam)]

http://forums.java.net/jive/thread.jspa?messageID=210139