XC8 where is the Data memory going?

Thread Starter

spinnaker

Joined Oct 29, 2009
7,830
I am seeing at least 2 bytes of data memory being allocated for every function called. If the function calls other functions it could mean a whole lot of bytes being allocated.

I don't remember this behavior in HiTech. Perhaps I never looked before so just did not notice it. Now I am short on memory so looking for every byte. What is the purpose of the 2 bytes? I thought stack was on program memory? Is it used for a pointer?

The sprint function takes a whooping 28 bytes of data memory! I always knew that sprintf was program memory hungry put 28 bytes of data memory!
 
Last edited:

Papabravo

Joined Feb 24, 2006
21,225
Saving the W and the STATUS registers. Can you determine if these are static allocations or something else? What I mean is that if there are a total of 26 functions then regardless of any other consideration 52 bytes of data memory are allocated. If any functions have explicit or implicit recursion then this approach fails. If the allocations are dynamic from a heap, then you have a better situation, but now depending on the PIC family you will run out of RETURN address locations on the stack.
 

Thread Starter

spinnaker

Joined Oct 29, 2009
7,830
I am declaring the variables static within functions so they are on the stack. I guess I was remembering wrong as I thought the stack was in program memory and not data memory.

But I am still trying to figure out where the memory is still going. Any isea if there is a profiler for mplabx? I see a plugin but looks like you need the Real ICE emulator.


My chip is the 18f45k22 btw.
 

AlbertHall

Joined Jun 4, 2014
12,346
Is this the free version of XC8?
The free version is deliberately hobbled as far as program memory goes. I don't know whether that applies to data memory too.
Try the free trial of the pro version and compare the program and data memory usage.
 

MMcLaren

Joined Feb 14, 2010
861
If you know PIC assembly language you could look at the output in the 'LST' file to determine how the memory is being used. It's amazing how much memory the library routines use. I remember gaining nearly a thousand bytes of program memory by simply replacing a routine containing several integer multiply and divide instructions with a simple assembly language bin2bcd routine.

Good luck on your project. Cheerful regards, Mike
 

Thread Starter

spinnaker

Joined Oct 29, 2009
7,830
Is this the free version of XC8?
The free version is deliberately hobbled as far as program memory goes. I don't know whether that applies to data memory too.
Try the free trial of the pro version and compare the program and data memory usage.
There is no mention of memory limitation in the free version of XC8. Just code optimization. .

upload_2017-3-11_15-4-4.png
 

Thread Starter

spinnaker

Joined Oct 29, 2009
7,830

I am not seeing anywhere where the article mentions data memory limitations. It discusses the efficiency (or inefficiency) of the compiler. Those are already accepted to get the free version.
 

nsaspook

Joined Aug 27, 2009
13,271
Thanks but I think I might have it handled. I am sure the compiler output is very inefficient. The article albert posted makes it least appear they are making it purposely bloated.

I might look at start using the SDCC compiler

http://sdcc.sourceforge.net/
That article while factually correct then (a much older version) is misguided on opinions about the current release.

The old compiler generated general code before having allocated addresses for variables so it looks like crap. The full compiler optimizes away the unneeded instructions in a later pass. The current versions have enabled some of the less exotic PRO optimizations in the free version to make it less of a turd.
I won't expect to see compiler optimizations of data space on well written C programs to be more than a few percent in PRO mode.
http://www.htsoft.com/news/070309_Whitepaper-OmniscientCodeGeneration_FINAL.pdf

Typical GCC type optimizations.
 

nsaspook

Joined Aug 27, 2009
13,271
Is this true in the free version of XC8 too?
Is what true? The free version doesn't have Omniscient Code Generation.

In some older versions these were added:
New Free-mode optimization An additional optimization has been added to improve removal of redundant bank selection instructions when using Free mode. The effect of this optimization will only be observable when the assembler optimizers are enabled.

New Free mode optimizations The assembler's jump-to-jump optimizations, which previously was only available with a licensed compiler operating mode, is now available in Free mode. By default, this optimization is disabled, but it can be enabled from the --OPT option or the Optimization category in MPLAB X IDE in the usual way. If enabled, this optimization reduced the size of code output by the compiler.
 
Top