Software Tuning, Performance Optimization & Platform Monitoring
Discussion regarding monitoring and software tuning methodologies, Performance Monitoring Unit (PMU) of Intel microprocessors, and platform updating.
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.

MicroSequencer (MS) @ SNB

Mikhail
Beginner
464 Views

Hello,

In 64-ia-32-architectures-optimization-manual, chapter B.3.7.2 Understanding the Sources of the Micro-op Queue it is said that UOPs come from DSB, MITE and MS, and a 'typical distribution' is given. It happens so that in the app I'm profiling quite a lot more UOPs are dispatched from MS than suggested as desirable by Intel in the manual while the execution is clearly front-end bound.

The problem is, I don't understand why that happens. The manual reads:

A large portion of micro-ops coming from the microcode sequencer may be benign, such as complex instructions, or string operations, but can also be due to code assists handling undesired situations like Intel SSE to Intel AVX code transitions.

But I am pretty sure there aren't any SSE/AVX instructions employed at all, nor could 'denormals' or string operations occur often enough to produce any notable amount of stirring (the code mainly works with integer values).

Is there a complete list of instructions that actually cause MS to insert UOPs to the queue? Any suggestions as to what I might have missed would also be most welcome.

0 Kudos
1 Solution
Bernard
Black Belt
464 Views

AFAIK complex instruction which is decoded into more than 4 uops will be sent to Micro Sequencer. I cannot remember which exactly CPU architecture Pentium or later  design incorporates this feature. I would recommend to search Google Patents database with the keyword "Intel CPU MicroSequencer"

View solution in original post

8 Replies
Thomas_W_Intel
Employee
464 Views

I don't know of any precise list of instructions that come from the MS. However, the latency of an instructions should be a good indicator. You can find the latency of instructions in Appendix C of the Intel® 64 and IA-32 Architectures Optimization Reference Manual

Mikhail
Beginner
464 Views

Thomas, thank you for the reply.

In the appendix C, part C.3.2 footnote 1 is reads:

Latency information for many instructions that are complex (> 4 μops) are estimates based on
conservative (worst-case) estimates. Actual performance of these instructions by the out-of-order
core execution unit can range from somewhat faster to significantly faster than the latency data
shown in these tables.

Does this mean 4+ latency implies the UOPs are coming from MS?

McCalpinJohn
Black Belt
464 Views

Agner Fog's "Instruction Tables" document lists the number of uops associated with each x86 instruction for a wide range of IA32 and x86_64 processors.  Some of the uop counts have ranges, but it is certainly possible that the ones with single values might display different uop counts under exceptional conditions.

The "Instruction Tables" document is available in PDF format at:  http://www.agner.org/optimize/instruction_tables.pdf

Lots of other detailed x86 resources are available in the parent directory: http://www.agner.org/optimize/

 

Bernard
Black Belt
465 Views

AFAIK complex instruction which is decoded into more than 4 uops will be sent to Micro Sequencer. I cannot remember which exactly CPU architecture Pentium or later  design incorporates this feature. I would recommend to search Google Patents database with the keyword "Intel CPU MicroSequencer"

Bernard
Black Belt
464 Views

I suppose that probably complex instructions like vsqrtps or fsin are executed by the microcode which is injected by the MicroSequencer. 

Mikhail
Beginner
464 Views

Hello,

It took me quite some time, but yes: it seems that all UOPs with 4+ cycle latencies are handled by MS. 

Thank you for your expertise!

Bernard
Black Belt
464 Views

You are welcome.

Bernard
Black Belt
464 Views

Can you show a portion of assembly code which belongs to your profiled application and which also contains complex uops?

Reply