This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

arm r5 compiler config

Hi All,

Can we configure r5 compiler to turn of using LDM instructions. I just want to use multiple LD instructions instead of one LDM.

Thanks in advance.

Best,

Patrick

Parents
  • LDM and STM operations are abandoned by default though if an interrupt occurs and then restarted on return from the interrupt. I guess that's the sort of thing that's worrying you. See

    CORTEX-R versus CORTEX-M

    where they talk about what happens a bit more

    Plus there is a --split_ldm option but I don't think you should need that but it can be used with the system setting to stop ldm and stm being abandoned rather than them both facilities being used.

Reply
  • LDM and STM operations are abandoned by default though if an interrupt occurs and then restarted on return from the interrupt. I guess that's the sort of thing that's worrying you. See

    CORTEX-R versus CORTEX-M

    where they talk about what happens a bit more

    Plus there is a --split_ldm option but I don't think you should need that but it can be used with the system setting to stop ldm and stm being abandoned rather than them both facilities being used.

Children