Arm Community
Site
Search
User
Site
Search
User
Support forums
Arm Development Studio forum
ARM Intrinsics Syntax
Jump...
Cancel
Locked
Locked
Replies
3 replies
Subscribers
119 subscribers
Views
3014 views
Users
0 members are here
Options
Share
More actions
Cancel
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
ARM Intrinsics Syntax
Sajid Rabbani Avagundam
over 12 years ago
Parents
Sajid Rabbani Avagundam
over 12 years ago
Note: This was originally posted on 13th July 2011 at
http://forums.arm.com
Presently we are using few intrinsics as below: (thou they are in macro form!)
#define CP15_CONTROL_READ(x) asm("mrc p15, 0, %0, c1, c0, 0":"=r"(x))
#define CP15_CONTROL_WRITE(x) asm("mcr p15, 0, %0, c1, c0, 0"::"r"(x))
we do not know how to use 'x' type of variables in case of
multiple operands
in intructions like add as mentioned above.
with some exploration in generic linux source code for arm, we derived below macro translation for ADD:
#define ADD2(sum, input1, input2) asm("ADD %2, %0, %1" :"=r"(input1),"=r"(input2) : "r"(sum) : "cc");
however, this does not translate to an 'add' instruction when objdump is generated. help!
Cancel
Vote up
0
Vote down
Cancel
Reply
Sajid Rabbani Avagundam
over 12 years ago
Note: This was originally posted on 13th July 2011 at
http://forums.arm.com
Presently we are using few intrinsics as below: (thou they are in macro form!)
#define CP15_CONTROL_READ(x) asm("mrc p15, 0, %0, c1, c0, 0":"=r"(x))
#define CP15_CONTROL_WRITE(x) asm("mcr p15, 0, %0, c1, c0, 0"::"r"(x))
we do not know how to use 'x' type of variables in case of
multiple operands
in intructions like add as mentioned above.
with some exploration in generic linux source code for arm, we derived below macro translation for ADD:
#define ADD2(sum, input1, input2) asm("ADD %2, %0, %1" :"=r"(input1),"=r"(input2) : "r"(sum) : "cc");
however, this does not translate to an 'add' instruction when objdump is generated. help!
Cancel
Vote up
0
Vote down
Cancel
Children
No data