KDS build code size greater than IAR EWARM

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

KDS build code size greater than IAR EWARM

1,397 Views
isaotakashima
Contributor IV

We want to use the Kinetis Design Studio (KDS) instead of the IAR EWARM.

However the code size that was build by KDS greater than code size that was build by IAR EWARM.

Here is summary of code size that was build by KDS and EWARM.

KDS optimize optionread only coderead only datatotal of read onlyread write data
O0789268085722776
O1610868067882776
O2626468069442776
O3774468084242776
Os535268060322776
Ofast774468084242776
Og592468066042776

 

EWARM optimizeread only coderead only datatotal of read onlyread write data
None4324816514012
Low4080816489612
Middle4144208435212
High Size3912208412012
High Speed5214208542212
High Balance4316208452412
High Speed no limit4302208451012

 

I check and compare both .map file, I find out a reason why code size that was build by KDS greater than EWARM.

KDS was link the library then increase 1,760 bytes in read only code section, increase 672 bytes in read only data and increase 712 bytes (exclusion stack and heap) in read write data.

Can we remove library to reduce code size?

 

I attached my project.

Please advise to solve this issue as soon as possible.

 

Best regards,

Takashima

Original Attachment has been moved to: KE06_LED_demo.zip

Labels (1)
Tags (3)
0 Kudos
Reply
3 Replies

673 Views
BlackNight
NXP Employee
NXP Employee

Hello Takashima,

As initial comment: KDS is a free toolchain, based on open source gcc, and there is no point that this toolchain is intended to be best in class for code size and code speed: this  is why there are commercial tools like IAR, and this is why they have a price tag attached to it. Regardless, code size/density is heavily influenced by coding style and especially library usage. And what kind of startup code is used. I'm not sure if you used the same startup code (or sequence) for IAR too?

In my experience GNU gcc is in the +10% range compared to commerical compilers. So if you have to fight for every singly code (or data) byte, then you will need either to fine tune your sources, or go with commercial tools.

There is one easy point to get your numbers down: switch to a later gcc toolchain. I have run your application with the launchpad 2014 q3 (with -specs=nano.specs -specs=nosys.specs linker options, see Switching ARM GNU Tool Chain and Libraries in Kinetis Design Studio | MCU on Eclipse).

I see that you have 1 KByte stack and heap size allocated. You need 1 KByte of heap for the KDS original toolchain, but with the launchpad you do not need this (see Switching ARM GNU Tool Chain and Libraries in Kinetis Design Studio | MCU on Eclipse). You might need to verify this with your board (I don't have your board available).

With -O1:

   text   data    bss    dec    hex    filename
   5128    108   300   5536  15a0    KE06_LED_demo.elf

which is much less than what you have.

With -Os:

   text   data    bss    dec    hex    filename
   4332    108    300   4740   1284    KE06_LED_demo.elf

which is close to what you have with IAR.

Best regards,

Erich

673 Views
isaotakashima
Contributor IV

Dear Erich,

Thank you for your reply. I also got same result if use the launchpad 2014 q3 (gcc-arm-none-eabi-4_8-2014q3-20140805-win32.zip (md5)).

I would like to make sure below items.

1. Switching ARM GNU Tool Chain

I was switched ARM GNU Tool Chain refer the "Switching ARM GNU Tool Chain and Libraries in Kinetis Design Studio".

But I have the following error.

Cannot run program "make": Launching failed

Then I copied original "make.exe" to new \toolchain\bin folder.

Is it OK?

2. Which GNU Tool Chain do you recommend?

Currently we can download "4.9-2014-q4-major release from the 4.9 series released 2014-12-10 (gcc-arm-none-eabi-4_9-2014q4-20141203-win32.zip (md5))".

I use this latest version, text (rom code) size was little bit increased.

I believe that we should use latest version.

Please let us know which GNU Tool Chain do you recommend.

Please reply as soon as possible.

Best regards,

Takashima

0 Kudos
Reply

673 Views
BlackNight
NXP Employee
NXP Employee

Dear Takashima,

1) That's ok. It depends on your path settings, but to copy the make utility is fine.

2) I have downloaded the 4.9 q4 2014 release too, and I noticed as well that code size increase. Additionally, 4.9 is very new, and in the past sometimes it took a follow up release (in Q1) to fix bugs.

I have not used the 4.9 much, and not found any issues so far, but for now I stick with the 4.8 q3 release, probably until mid of next year.

Given that code size increase I see on my side too, and the risks, it is probably better if you go with 4.8 q3 too. But it is really up to you.

Erich

0 Kudos
Reply