Arm Community
Site
Search
User
Site
Search
User
Support forums
Architectures and Processors forum
compile time constant expressions
State
Accepted Answer
+1
person also asked this
people also asked this
Locked
Locked
Replies
4 replies
Subscribers
350 subscribers
Views
6167 views
Users
0 members are here
compiler
optimization
Arm9
arm926ej-s
MPI
Options
Share
More actions
Related
How was your experience today?
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
compile time constant expressions
Mike Rieker
over 12 years ago
Note: This was originally posted on 12th March 2009 at
http://forums.arm.com
I am seeing code like this generated from the armcc v4.0 compiler (just downloaded it a couple hours ago):
MOV r0,#5
CLZ r0,r0
RSB r7,r0,#0x3f
So I would think the compiler would know that R7 has 34 in it or whatever. It isn't so bad these three instructions, it's just that in this case the code goes on to divide by the r7 value and so generates a call to __aeabi_uldivmod whereas I was expecting the compiler to generate a UMULL or something like that.
Is there some command-line optimization option I can use to fix this? I am using this command line:
armcc --cpu=ARM926EJ-S --inline -Otime -O3 -S -o test.s test.c
Thanks!
Mike
Top replies
Simon Craske
over 12 years ago
+1
verified
Note: This was originally posted on 13th March 2009 at http://forums.arm.com There isn't a count leading zero construct in the C language, so presumably it's something like: [font="Courier New"]int func...
0
Quote