how many cpu cycle takes to execute MOV A, 5 instruction

2.4k views Asked by At

My question is calculate how many CPU cycle takes to execute MOV A, 5 instruction. Describe each.

can anyone please explain me how this works. And the 5 is a value is it? Just explain me the main points.

As far as i know,

first,
-get the instruction from memory (one clock cycle)
-update instruction pointer(one clock cycle)
-decode the instruction to see what it does(one clock cycle)

i'm stuck after this.

1

There are 1 answers

0
George Nechifor On

I'm assuming you are talking about the x86 processors. This of course depends on the processor, but it usually takes 1 clock cycle from what i remember.

This is because instructions are executed in a pipeline. This means that while the processor is computing the result of an instruction, it is decoding the next and fetching the one before that, so that each part of the processor is busy doing something.

Usually the instructions that need data from memory or do complex calculations like multiplications or divisions take a longer time to execute.

You can also get the number of cycles with RDTSC https://www.ccsl.carleton.ca/~jamuir/rdtscpm1.pdf