From: Jacob Lifshay Date: Sat, 13 Nov 2021 00:36:40 +0000 (-0800) Subject: remove excess I from ternary-related names X-Git-Tag: sv_maxu_works-initial~738 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=295c0f5aafcbd67057d2533d7a5e4f7eb59017c4;p=openpower-isa.git remove excess I from ternary-related names --- 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