Page 1 of 1

need help with inline assembly

Posted: Fri Sep 07, 2018 6:57 pm
by ITchimp
I got a simple procedure to get the instruction pointer value

unsigned long long getRIP(){
unsigned long long l1=0LL;
asm("movq %%rip, %0":"=r"(l1));
return l1;
//return -1ULL;
}

gcc gives me the error message

testRIP.c: Assembler messages:
testRIP.c:5: Error: operand type mismatch for `movq'

my thought is that rip is s 64 bit value... define unsigned long long should be a 64 bit value...
so where ishte operand type mismatch from?

Re: need help with inline assembly

Posted: Fri Sep 07, 2018 7:44 pm
by Brendan
Hi,
ITchimp wrote:I got a simple procedure to get the instruction pointer value

unsigned long long getRIP(){
unsigned long long l1=0LL;
asm("movq %%rip, %0":"=r"(l1));
return l1;
//return -1ULL;
}

gcc gives me the error message

testRIP.c: Assembler messages:
testRIP.c:5: Error: operand type mismatch for `movq'

my thought is that rip is s 64 bit value... define unsigned long long should be a 64 bit value...
so where ishte operand type mismatch from?
The "MOV" instruction only works with general purpose registers, and RIP isn't considered a general purpose register. To do what you want you'd need to use RIP relative addressing and LEA.

I don't know what the syntax is for AT&T/GAS, but maybe something like "lea $0(%%rip), %0" might work.


Cheers,

Brendan

Re: need help with inline assembly

Posted: Sat Sep 08, 2018 1:30 am
by iansjack
I'm intrigued as to why you want to find the value of the instruction pointer within the subroutine. I can see why you might want the value at the point that the routine is called but not why you want the value within a utility routine.

Re: need help with inline assembly

Posted: Sat Sep 08, 2018 6:32 pm
by ITchimp
I was reading Tannenbaum's OS book, in which he mentioned that p-thead and MACH os's C thread... both package does user space threading... I was thinking ... how do you transfer control among those user level threads.... do you have any scheduling mechanism among the thread groups that share the same process?
Also I am wondering if user level thread aforementioned is related to co-routines in Go?