This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

是否可以使用Constant Generator来优化switch-case的执行时间

项目问题:

1、应用中TB0终端中使用了2~3个switch-case语句,switch(sector),sector值为0~7,从反汇编看到:

                                                   0x0817A:   425F 1C54           MOV.B   &Sector,R15

                                                   0x0817E:   903F 0007           CMP.W   #0x0007,R15

并没有使用Constant Generator R2 R3,是否可以使用更高效率的使用了R2 R3的汇编语言来代替switch-case,并实现同样功能。

2、关于Constant Generator能否提供一些应用场景和代码?从手册里没有获得比较直观的理解。

 

项目阶段: 研发

 

thx