Tagged Questions
5
votes
1answer
774 views
How does this code calculate the number of CPU cycles elapsed?
Taken from this SO thread, this piece of code calculates the number of CPU cycles elapsed running code between lines //1 and //2.
$ cat cyc.c
#include<stdio.h>
static __inline__ unsigned long ...
1
vote
5answers
531 views
Measuring CPU clocks consumed by a process
I have written a program in C. Its a program created as result of a research. I want to compute exact CPU cycles which program consumes. Exact number of cycles.
Any idea how can I find that?
1
vote
4answers
416 views
Does a one cycle instruction take one cycle, even if RAM is slow?
I am using an embedded RISC processor. There is one basic thing I have a problem figuring out.
The CPU manual clearly states that the instruction ld r1, [p1] (in C: r1 = *p1) takes one cycle. Size of ...