From 295c0f5aafcbd67057d2533d7a5e4f7eb59017c4 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Fri, 12 Nov 2021 16:36:40 -0800 Subject: [PATCH] remove excess I from ternary-related names --- openpower/isatables/fields.text | 6 +++--- openpower/isatables/minor_5.csv | 2 +- src/openpower/decoder/power_enums.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/openpower/isatables/fields.text b/openpower/isatables/fields.text index 3baa6fdf..871cd743 100644 --- a/openpower/isatables/fields.text +++ b/openpower/isatables/fields.text @@ -284,8 +284,8 @@ | PO | SVme |mi0 | mi1 | mi2 | mo0 | mo1 |pst |/// | XO | / | # 1.6.34 TI-FORM - |0 |6 |11 |16 |21 |29 |31 | - | PO | RT | RA | RB | TII | XO |Rc | + |0 |6 |11 |16 |21 |29 |31 | + | PO | RT | RA | RB | TI | XO |Rc | # 1.6.28 Instruction Fields A (6) @@ -828,7 +828,7 @@ and dcbtst instructions (see Section 4.3.2 of Book II). Formats: X - TII (21:28) + TI (21:28) Field used by the ternaryi instruction as the look-up table. Formats: TI diff --git a/openpower/isatables/minor_5.csv b/openpower/isatables/minor_5.csv index add3ff80..617c2e17 100644 --- a/openpower/isatables/minor_5.csv +++ b/openpower/isatables/minor_5.csv @@ -1,2 +1,2 @@ opcode,unit,internal op,in1,in2,in3,out,CR in,CR out,inv A,inv out,cry in,cry out,ldst len,BR,sgn ext,upd,rsrv,32b,sgn,rc,lk,sgl pipe,comment,form,CONDITIONS,unofficial,comment2 ---------00-,ALU,OP_TERNARYI,RA,RB,RT,RT,NONE,CR0,0,0,ZERO,0,NONE,0,0,0,0,0,0,RC,0,0,ternaryi,TI,,1,unofficial until submitted and approved/renumbered by the opf isa wg +--------00-,ALU,OP_TERNARY,RA,RB,RT,RT,NONE,CR0,0,0,ZERO,0,NONE,0,0,0,0,0,0,RC,0,0,ternaryi,TI,,1,unofficial until submitted and approved/renumbered by the opf isa wg diff --git a/src/openpower/decoder/power_enums.py b/src/openpower/decoder/power_enums.py index 87930703..477e472a 100644 --- a/src/openpower/decoder/power_enums.py +++ b/src/openpower/decoder/power_enums.py @@ -435,7 +435,7 @@ class MicrOp(Enum): OP_ADDG6S = 83 OP_CDTBCD = 84 OP_CBCDTD = 85 - OP_TERNARYI = 86 + OP_TERNARY = 86 @unique -- 2.30.2