|
|
|
|
| PowerPC PROGRAMMING |
 |
PowerPC programming environment : 32-bit PowerPC architecture, Book E, 64-bit architecture |
 |
Register set, GPR vs SPR, HID registers |
 |
Data type instantiation for PowerPC |
 |
Pointers management (Addressing modes) |
 |
User and supervisor functions call and return (EABI, C-to-assembly interface) |
 |
Sections, benefits of small data sections |
 |
Locating code and data in memory , linker command file |
 |
Reset, what is to be done before calling the main() : Cstart program |
| PIPELINE |
 |
Superscalar operation |
 |
Mechanisms used to boost performance : branch prediction, branch target address cache, link stack |
 |
Guidelines to optimize execution time |
 |
Serializations, isync instruction, determining when this instruction is really required |
| DATA PATH AND DECOUPLING |
 |
Highlighting the frequency domains present in PowerPC : core and bus interface |
 |
Decoupling the core from cache and bus through load and store buffers |
 |
Default ordering of load and store transactions |
 |
Enforcing the ordering through eieio (called mbar in Book E) and sync (called msync in Book E) instructions |
 |
Purpose of the Guarded attribute |
 |
Consequence for high level development of IO drivers |
| MEMORY MANAGEMENT UNIT |
 |
Requirements for kernels enabling dynamic memory mapping |
 |
Single process multi-thread versus multiprocess multi-thread kernels |
 |
Objectives of the MMU : page protection, definition of page attribute, address translation |
 |
Segment and page translation |
 |
Table search mechanisms : benefits of a software table search |
 |
Operation of TLB caches |
 |
TLB programming, static initialization |