We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I am trying to migrate my source code compilation from armcc compiler v5.06 to armclang v6. And I see armclang errors out saying it can not recognize cp15 registers. It looks like there might be a change in armcc vs clang as how to declare the registers. However, I could not find anything on the migration docs or in compiler doc.
Here is the code snippet -
void reset_clock_count(void) { register uint32_t reg_cp15_pmcr __asm("cp15:0:c9:c12:0"); reg_cp15_pmcr |= RESET_CYCLE_COUNTER; }
And error snippet -
error: unknown register name 'cp15:0:c9:c12:0' in asm register uint32_t reg_cp15_pmcr __asm("cp15:0:c9:c12:0"); ^
I see same errors for other places for similarly declared register. Any pointer on what might have gone wrong will be helpful.