简体   繁体   中英

Passing variable from assembler to C

#include <stdio.h>

int main(){
        __asm__ (
                "result:    \n\t"
                ".long 0    \n\t" 
                "rdtsc      \n\t"
                "movl %eax, %ecx\n\t"
                "rdtsc      \n\t"
                "subl %ecx, %eax\n\t"
                "movl %eax, result\n\t"
        );

        extern int result;
        printf("%d\n", result);
}

I would like to pass some data from assembler to main via the result variable. Is this possible? My assembler code causes a Segmentation fault (core dumped) . I am using Ubuntu 15.10 x86_64, gcc 5.2.1.

A better approach could be:

int main (void)
{
    unsigned before, after;

    __asm__
    (
        "rdtsc\n\t"
        "movl %%eax, %0\n\t"
        "rdtsc\n\t"
        : "=rm" (before), "=a" (after)
        : /* no inputs */
        : "edx"
    );

    /* TODO: check for after < before in case you were unlucky
     * to hit a wraparound */
    printf("%u\n", after - before);
    return 0;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM