i am working on embedded software projects in automotive domain. In one of my projects, the application software consumes almost 99% of RAM memory. Actual RAM size available is 12KB. we use TMS470R1B1 Titan F05 microcontroller. I have done some optimisation like finding unused messages in software and deleting them but its still not worth reducing RAM. could you please suggest some good ways to reduce the RAM by some software optimisation?
|
|
Unlike speed optimisation, RAM optimisation might be something that requires "a little bit here, a little bit there" all through the code. On the other hand, there may turn out to be some "low hanging fruit". Arrays and Lookup TablesArrays and look-up tables can be good "low-hanging fruit". If you can get a memory map from the linker, check that for large items in RAM. Check for look-up tables that haven't used the
Stack and heapPerhaps your linker config reserves large amounts of RAM for heap and stack, larger than necessary for your application. If you don't use heap, you can possibly eliminate that. If you measure your stack usage and it's well under the allocation, you may be able to reduce the allocation. For ARM processors, there can be several stacks, for several of the operating modes, and you may find that the stacks allocated for the exception or interrupt operating modes are larger than needed. OtherIf you've checked for the easy savings, and still need more, you might need to go through your code and save "here a little, there a little". You can check things like: Global vs local variablesCheck for unnecessary use of Smaller variablesVariables that can be smaller, e.g. Enum variable size
Algorithm implementationRework your algorithms. Some algorithms have have a range of possible implementations with a speed/memory trade-off. E.g. AES encryption can use an on-the-fly key calculation which means you don't have to have the entire expanded key in memory. That saves memory, but it's slower. |
||||
|
|
|
Deleting unused string literals won't have any effect on RAM usage because they aren't stored in RAM but in ROM. The same goes for code. What you need to do is cut back on actual variables and possibly the size of your stack/stacks. I'd look for arrays that can be resized and unused varaibles. Also, it's best to avoid dynamic allocation because of the danger of memory fragmentation. Aside from that, you'll want to make sure that constant data such as lookup tables are stored in ROM. This can usually be achieved with the |
|||||||
|
|
Make sure the linker produces a MAP file - it will show you where the RAM is used. Sometimes you can find things like string literals/constants that are kept in RAM. Sometimes you'll find there are unused arrays/variables put there by someone else. IF you have the linker map file it's also easy to attack the modules which are using the most RAM first. |
|||
|
|
|
Here are the tricks I've used on the Cell:
The last one is only relevant on architectures that store code in RAM, I guess. |
||||
|
|
|
w.r.t functions, following are the handles to optimise the RAM
regards barani kumar venkatesan |
||||
|
|