Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

::"r" vs :"=r" assembly clarification

I'm trying to understand the syntax of writing in assembly to first write the code correctly and second efficiently. in this example it shows the example using "=r"

asm volatile ("MRS %0, PMUSERENR_EL0\n": "=r"(value));

this reads the value of the register and stores it in the value variable. The other example uses ::"r"

asm volatile ("MSR PMUSERENR_EL0, %0\n":: "r"(value));

This writes the value variable to the PMUSERENR_ELO register. Here is another example of it:How to measure program execution time in ARM Cortex-A8 processor?.

When I attempt to compile a simple test code with the two above commands i get the error: :9:2: error: output operand constraint lacks '=' If I add the "=" and remove one ":" it will compile but when I test it, it simply says Illegal instruction

If someone could please explain the difference that would be helpful numerous assembly tutorials show the same format but no explanation. Its on a 64 bit arm platform if that offers any insight. Thanks.

like image 986
kaminsknator Avatar asked Sep 18 '25 16:09

kaminsknator


2 Answers

Found the answer in the book: Professional Assembly Language: Extended ASM

If no output values are associated with the assembly code, the section must be blank, but two colons must still separate the assembly code from the input operands.

The why is because that's the standard. One colon for outputs and two for inputs.

like image 114
kaminsknator Avatar answered Sep 20 '25 06:09

kaminsknator


You have rightly pointed to the explanation, but wrongly formatted the statement "One colon for outputs and two for inputs"

In the extend version of asm format as shown below

asm("assembly code" : outputs : inputs : clobbers)

if you do not have outputs, you should still include the Colon, which translates as follows

asm("assembly code"::inputs:clobbers)

If you do not have clobbers (changed registers) you can omit the last Colon, which translates as asm("assembly code":outputs:inputs)

like image 25
gvk51 Avatar answered Sep 20 '25 07:09

gvk51