CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

[BUG] Buggy behaviour of the CCS compiler.

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
vsmguy



Joined: 13 Jan 2007
Posts: 91

View user's profile Send private message Visit poster's website

[BUG] Buggy behaviour of the CCS compiler.
PostPosted: Sun Aug 16, 2009 12:23 pm     Reply with quote

I am noticing an unusual behaviour of the CCS compiler.

The scenario is such:

1. I have a large fixed size array (more than what can be accomodated in PIC ROM)
2. I ask CCS to save these arrays in ROM
3. CCS does that WITHOUT complaining and in fact, telling me that I am using ~16% (this can change to 77% as one changes the contents of the fixed size array!)
4. The hex file that it generates has truncated information/data from the arrays .

For example, consider the code:

Code:

#include <18F2550.h>

/* 32k Flash; 2k SRAM; 256byte EEPROM */

#fuses INTRC, NOWDT, PUT, BROWNOUT, NOLVP

#device CONST=ROM

#use delay(clock=8000000)

#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7)

#include <stdlib.h>

#include "array.h"

void main()
{
   unsigned int16 dz = 0, dy = 0;
   //unsigned int16 dz = sizeof(bigArray), dy = 0;
   
   const char *ptr = NULL;
   //const char *ptr = bigArray;

   setup_oscillator(OSC_8MHZ | OSC_INTRC); // 90% precision or 98%?
   
   ptr = bigArray; //
   dz = sizeof(bigArray); //
   
   printf("\r\nSize = %Lu bytes. Dump follows\r\n{", dz);
   
   for(dy = 0; dy < dz; ++dy)
   {
      printf("0x%X", ptr[dy]);
      if(0x7 == (dy & 0x7)) printf("\r\n");
      printf(",");
   }
   
   printf("\b\r\n};\r\nDone.");
   
   while(1);
}


Contents of array.h : [http://sites.google.com/site/vimalsshankar/ccs]

Array.h exceeds 65536 bytes starting at end of line number 8199.

Thus on line number 8200 of array.h (that means the 65537th byte onwards) I have put a special value, to serve as a marker:

Code:
0xDE,0xAD,0xBE,0xEF,0xAD,0xAD,0xAD,0xAD


This line does not appear anywhere else in the array.

When I capture the output of the program, I see, what seems like

a. CCS assumes arrays cannot be > 65536 bytes long (it does not warn the user if that happens)
b. it shows AND writes only the residual value over and above the 65536 boundary

So in effect, after the first 65536 bytes of my array were written out, CCS went to index 0 and overwrote all the existing values from then on till the original array contents were exhausted.

Hence, the first few bytes of the array that is finally written out into the hex file is

Code:
0xDE,0xAD,0xBE,0xEF,0xAD,0xAD,0xAD,0xAD


As you can see, since my array is 70008 bytes long, CCS essentially wrote (70008 - 65536) = 4472 bytes

This "wrap around" behaviour does not seem to be documented anywhere, NOR does the compiler warn/complain/blowup saying that I am trying to be insane.

Another behaviour that was noticed is, in this scenario, even if I keep the size of the array fixed, just by changing the array contents/elements, the % used ROM fluctuates widly! A "compression" anomaly?

I will document this "compression" anomaly later, but right now, I would like to know how to get around the first issue (array truncation) without writing my own tool to keep track of the array size!

Bug report filed with ID : {9H4136}


Last edited by vsmguy on Sun Aug 23, 2009 8:00 pm; edited 1 time in total
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Sun Aug 16, 2009 12:59 pm     Reply with quote

It's a bug. Report it. (But a lot more briefly than you did here).
vsmguy



Joined: 13 Jan 2007
Posts: 91

View user's profile Send private message Visit poster's website

PostPosted: Sun Aug 16, 2009 6:20 pm     Reply with quote

Report filed.

Any suggestions how I can get around this for the time being? (Except a separate compiler/assembly)
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Sun Aug 16, 2009 6:31 pm     Reply with quote

I'm not sure what you mean by a work-around. The solution would be
to use an array that fits into the available ROM space of the PIC.
vsmguy



Joined: 13 Jan 2007
Posts: 91

View user's profile Send private message Visit poster's website

PostPosted: Sun Aug 16, 2009 7:00 pm     Reply with quote

Yes .. how do I understand how much I can fit in?

Do I create an empty array first and see the compiler diagnostics file to see how much memory is left and then fill in the real data accordingly?
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Sun Aug 16, 2009 9:29 pm     Reply with quote

You can compile it with a small array and look at the number of bytes
of ROM that are used, given at the top of the .LST file. Subtract that from
the total ROM size of the PIC, and that will give you approximately the
number of bytes that you can add to the array size.
vsmguy



Joined: 13 Jan 2007
Posts: 91

View user's profile Send private message Visit poster's website

PostPosted: Sun Aug 23, 2009 8:02 pm     Reply with quote

That's exactly what I am doing!

Am I doing things the wrong way or have other people been bitten by this bug before?
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Sun Aug 23, 2009 8:17 pm     Reply with quote

Most programmers note the size of the ROM available in the PIC from
the data sheet. They don't attempt to create a 'const' array that's larger
than the PIC can hold. So while it's a bug, it's a minor bug. Most people
don't get hit by it.
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group