Debug problems using Optimization settings.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 12:12 AM
Hi everyone,
I'm developing a new one project using STM32L031K6T MCU.
It's mandatory to use a simple low cost device for massive production.
Now flash memory is almost totally consumed.
I'm tring to use compiling optimisations to reduce program dimension but there are some problems about stepping flow.
It seems that program pointer is not alligned to the file, it doesn't follow next row but it jumps randomly.
I'm using NUCLEO-L031K6 demo board and STM32CubeIde.
Thanks in advance.
Diego
Solved! Go to Solution.
- Labels:
-
DEBUG
-
STM32L0 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 1:36 AM
> "disable optimization locally"
If this is gcc, use the "optimize" function attribute
https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#Common-Function-Attributes
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 12:57 AM
This is normal, code reordering within the C language standard constraints (see volatile and "side effects" in the standard) is one of the optimization techniques. Just get used to it.
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 1:04 AM
I assumed that selection "optimized for debug" was the right way, but there are problems in this case too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 1:18 AM
Each C line can generate many machine instructions. If you must step your code to understand the logic you'll want to step the disassembly view and perhaps need to improve your static analysis skills.
​
Try also to only disable optimization locally, say at a function of interest level.
​
Pay particular attention to variables and structures needing the volatile keyword​ if modified by interrupts or callbacks.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 1:29 AM
Thank you I try to "disable optimization locally". I've never done this before.
What's the right operation to do this? Tere are some tutorials?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 1:36 AM
> "disable optimization locally"
If this is gcc, use the "optimize" function attribute
https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#Common-Function-Attributes
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-09 2:23 AM
Great, Thanks
I'll try to take your advice
Happy Easter
