From 729fdb35e816f7ab678299f46a6bb07194936ab0 Mon Sep 17 00:00:00 2001 From: Sun Yimin Date: Tue, 27 Aug 2024 10:31:45 +0800 Subject: [PATCH] Updated Golang ppc64 asm Reference (markdown) --- Golang-ppc64-asm-Reference.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Golang-ppc64-asm-Reference.md b/Golang-ppc64-asm-Reference.md index b266ba5..e4161ea 100644 --- a/Golang-ppc64-asm-Reference.md +++ b/Golang-ppc64-asm-Reference.md @@ -3,9 +3,14 @@ # 向量指令 ## 算术加减、减法 +### 加法 - VADDCUQ,对应s390x的VACCQ,计算进位。 - VADDUQM,对应s390x的VAQ,计算两个数之和的低128位。 - VADDECUQ,对应s390x的VACCCQ,带进位加,计算进位。 - VADDEUQM,对应s390x的VACQ,带进位加,两个数和进位的总和的低128位。 +(中间的Q代表位宽) +### 减法 + +