NXC: Type conversion problems

Discussion specific to NXT-G, NXC, NBC, RobotC, Lejos, and more.
Post Reply
afanofosc
Site Admin
Posts: 1256
Joined: 26 Sep 2010, 19:36
Location: Nashville, TN
Contact:

NXC: Type conversion problems

Post by afanofosc »

I have had a report of issues with the latest test release of NXC that involve converting between floats and ints. Matthew if you could respond here with the problems you have encountered I'd be grateful. If anyone else could run some tests with the latest test release and let me know here or via email what problems you run into that would be awesome.

John Hansen
Multi-platform LEGO MINDSTORMS programming
http://bricxcc.sourceforge.net/
mattallen37
Posts: 1818
Joined: 02 Oct 2010, 02:19
Location: Michigan USA
Contact:

Re: NXC: Type conversion problems

Post by mattallen37 »

Run this program:

Code: Select all

task main(){
  int int_22 = 22;
  int int_7 = 7;
  Wait(0);
  float result1 = int_22 / int_7; //This used to work
  Wait(0);
  float result2 = int_22;         //Now I have to use this...
  result2 /= int_7;               //... and this to get the floating point result
  Wait(0);

  NumOut(0, LCD_LINE1, result1);
  NumOut(0, LCD_LINE2, result2);
  while(true);
}
I am fairly sure the results used to be the same, but now they are different.

However, if I use global variables like this:

Code: Select all

int int_22 = 22;
int int_7 = 7;
float result1;
float result2;

task main(){

  Wait(0);
  result1 = int_22 / int_7; //This works
  Wait(0);
  result2 = int_22;         // and this works
  result2 /= int_7;         //       ''
  Wait(0);
  
  NumOut(0, LCD_LINE1, result1);
  NumOut(0, LCD_LINE2, result2);
  while(true);
}
I get results as expected (they are both floating point numbers).

I haven't tried isolating the exact place that makes the difference, and I haven't tried static "local" variables. NXC doesn't support type casting, so I obviously can't test it with that either.

BTW, the reason for the Wait(0);s is so that it is easier to identify the operations in NBC.

I also just noticed that I had my compiler optimization set to 1, instead of 2 (no idea why I would have changed it...). That makes a difference (2 works as expected for local variables).

I guess the issue I found is when the optimization is 1, and I use local variables.
Matt
http://mattallen37.wordpress.com/

I'm all for gun control... that's why I use both hands when shooting ;)
muntoo
Posts: 834
Joined: 01 Oct 2010, 02:54
Location: Your Worst Nightmare
Contact:

Re: NXC: Type conversion problems

Post by muntoo »

mattallen37 wrote:

Code: Select all

task main(){
  int int_22 = 22;
  int int_7 = 7;
  Wait(0);
  float result1 = int_22 / int_7; //This used to work
  Wait(0);
  float result2 = int_22;         //Now I have to use this...
  result2 /= int_7;               //... and this to get the floating point result
  Wait(0);

  NumOut(0, LCD_LINE1, result1);
  NumOut(0, LCD_LINE2, result2);
  while(true);
}
The expected output is:

Code: Select all

3
3.142857
Is it something different?

This is how it should work:

Code: Select all

f = 22/7;
f = float(22/7); // 'coercion' or implicit type conversion
f = float(3);
f = 3.0;
Image

Commit to LEGO Mindstorms Robotics Stack Exchange:
bit.ly/MindstormsSE


Commit to LEGO Stack Exchange: bit.ly/Area51LEGOcommit
mattallen37
Posts: 1818
Joined: 02 Oct 2010, 02:19
Location: Michigan USA
Contact:

Re: NXC: Type conversion problems

Post by mattallen37 »

Muntoo, I don't agree with you, and neither does the compiler on optimization level 2. Also, neither does another compiler I use. If I use a type cast float(), even if I enter constants, it should output the value in float... or else the type cast is mostly pointless...
Matt
http://mattallen37.wordpress.com/

I'm all for gun control... that's why I use both hands when shooting ;)
HaWe
Posts: 2500
Joined: 04 Nov 2014, 19:00

Re: NXC: Type conversion problems

Post by HaWe »

I don't understand yet where the problem is.
I agree with muntoo that for integer division integer/integer this would be expected as far as I observed NXC hitherto:

Code: Select all

f = 22/7;
f = float(22/7); //no type conversion
f = float(3);
f = 3.0;
If one of the deviding numbers was float, then I would expect a type coast to float:

Code: Select all

f = 22.0/7;
f = float(22.0/7); //implicit type conversion
f = float(3.142857);
f = 3.142857;
Of course both should happen no matter which O.L. or if they were global or local variables.
What exactly happens at what time to your observations, Matt?
muntoo
Posts: 834
Joined: 01 Oct 2010, 02:54
Location: Your Worst Nightmare
Contact:

Re: NXC: Type conversion problems

Post by muntoo »

In C, types are usually converted at the last possible moment. For example,

Code: Select all

f = (10*14 + 4) / 10 * 1.0f;
f = float(EVALUATE_THIS_FIRST);
Will evaluate the expression on the rhs (right-hand side). Since none of the values are of type float, no type conversions take place there. (Type conversions are expensive.)

After that, we go into the brackets, and do the multiplication, then addition, followed by division, and lastly, multiplication again.

Code: Select all

f = (140   + 4) / 10 * 1.0f;
f = (144      ) / 10 * 1.0f;
f = 14               * 1.0f;
f = float(14)        * 1.0f;
f = 14.0                   ;
f = 14.0; // Implicit conversion to float is unnecessary.
See? Types are only converted at the last possible moment; this is partly due to performance reasons, but it's also more logical that way, IMHO.

See also: 4.4 — Type conversion and casting.
Image

Commit to LEGO Mindstorms Robotics Stack Exchange:
bit.ly/MindstormsSE


Commit to LEGO Stack Exchange: bit.ly/Area51LEGOcommit
HaWe
Posts: 2500
Joined: 04 Nov 2014, 19:00

Re: NXC: Type conversion problems

Post by HaWe »

muntoo,
that's more or less the same as I said (with Matt's example).
But what's Matt's problem which he observed (concerning O.L. and local or global declarations)?

ps
If I really NEED to avoid unexpected a/o unwanted results I meanwhile use this:

Code: Select all

inline float FLOAT(long x){return(x);}
Post Reply

Who is online

Users browsing this forum: No registered users and 5 guests