Updated Golang ppc64 asm Reference (markdown)

Sun Yimin 2024-08-28 08:23:28 +08:00
parent a2646c7dd0
commit 5240b04c1f

@ -71,4 +71,10 @@
VMRGOW TMP2, TMP1, out_low; \
VMRGEW TMP2, TMP1, out_hi
```
# 典型的ppc64及ppc64le
The typical CPUs for ppc64 (PowerPC 64-bit Big Endian) and ppc64le (PowerPC 64-bit Little Endian) are IBM's POWER series of processors.
For **ppc64**, the IBM POWER5, POWER6, POWER7, and POWER8 processors are commonly used. These processors are often found in high-performance computing environments, enterprise servers, and similar applications.
For **ppc64le**, the IBM POWER8 and POWER9 processors are typically used. The switch to little-endian mode in these processors was made to improve compatibility with software written for x86_64, which also uses little-endian byte order. These processors are used in a variety of applications, from supercomputers to servers for cloud and data analytics workloads.