AMD x86 manual Example 5 Preferred, Example 6 Avoid, Example 7 Avoid

Models: x86

1 256
Download 256 pages 58.62 Kb
Page 69
Image 69

22007E/0 — November 1999

Misaligned

Store-Buffer Data

Forwarding

Restriction

High-Byte

Store-Buffer Data

Forwarding

Restriction

AMD Athlon™ Processor x86 Code Optimization

Example 5 (Preferred):

MOVD

[foo], MM1

;store lower half

PUNPCKHDQ

MM1, MM1

;get upper half into lower half

MOVD

[foo+4], MM1

;store lower half

...

 

 

ADD

EAX, [foo]

;fine

ADD

EDX, [foo+4]

;fine

If the following condition is present, there is a misaligned store-buffer data forwarding restriction:

The store or load address is misaligned. For example, a quadword store is not aligned to a quadword boundary, a doubleword store is not aligned to doubleword boundary, etc.

A common case of misaligned store-data forwarding involves the passing of misaligned quadword floating-point data on the doubleword-aligned integer stack. Avoid the type of code shown in the following example.

Example 6 (Avoid):

MOV

ESP, 24h

 

FSTP

QWORD PTR [ESP]

;esp=24

.

 

;store occurs to quadword

.

 

; misaligned address

.

 

 

FLD

QWORD PTR[ESP]

;quadword load cannot forward

 

 

; from quadword misaligned

 

 

; ‘fstp[esp]’ store OP

If the following condition is present, there is a high-byte store-data buffer forwarding restriction:

The store data is from a high-byte register (AH, BH, CH, DH).

Avoid the type of code shown in the following example.

Example 7 (Avoid):

MOV EAX, 10h

MOV [EAX], BH

;high-byte store

.

 

MOV DL, [EAX]

;load cannot forward from

 

; high-byte store

Store-to-Load Forwarding Restrictions

53

Page 69
Image 69
AMD x86 manual Example 5 Preferred, Example 6 Avoid, Example 7 Avoid