remove excess I from ternary-related names
authorJacob Lifshay <programmerjake@gmail.com>
Sat, 13 Nov 2021 00:36:40 +0000 (16:36 -0800)
committerJacob Lifshay <programmerjake@gmail.com>
Sat, 13 Nov 2021 00:36:40 +0000 (16:36 -0800)
openpower/isatables/fields.text
openpower/isatables/minor_5.csv
src/openpower/decoder/power_enums.py

index 3baa6fdf4eba9ff6ac1000e7f109e9b674187545..871cd743f231bfe72ef34689cf01d98f0c999d44 100644 (file)
    | 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)
          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
index add3ff806662294dedc8dd73921af7e30b1d7149..617c2e17dd97832bffae37a16f0561bb2539472a 100644 (file)
@@ -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
index 87930703a95e320fce0e20c9dc06e618f5421841..477e472aae85b727db32f65e295f33523ab39800 100644 (file)
@@ -435,7 +435,7 @@ class MicrOp(Enum):
     OP_ADDG6S = 83
     OP_CDTBCD = 84
     OP_CBCDTD = 85
-    OP_TERNARYI = 86
+    OP_TERNARY = 86
 
 
 @unique