power_insn: fix naming conventions
authorDmitry Selyutin <ghostmansd@gmail.com>
Tue, 6 Sep 2022 12:26:42 +0000 (15:26 +0300)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 6 Sep 2022 19:13:33 +0000 (20:13 +0100)
src/openpower/decoder/power_insn.py

index 50889fe553a3a548ab8fcdd3b98aed9c84642a73..2ecc2aa8aa2f6ff4f22168c407a795d3ea8b2af5 100644 (file)
@@ -771,18 +771,19 @@ class Record:
     def cr_out(self):
         return self.ppc.cr_out
 
+    ptype = property(lambda self: self.svp64.ptype)
+    etype = property(lambda self: self.svp64.etype)
+
     def extra_idx(self, key):
         return self.svp64.extra_idx(key)
 
-    ptype = property(lambda self: self.svp64.ptype)
-    etype = property(lambda self: self.svp64.etype)
-    extra_in1 = property(lambda self: self.svp64.extra_in1)
-    extra_in2 = property(lambda self: self.svp64.extra_in2)
-    extra_in3 = property(lambda self: self.svp64.extra_in3)
-    extra_out = property(lambda self: self.svp64.extra_out)
-    extra_out2 = property(lambda self: self.svp64.extra_out2)
-    extra_cr_in = property(lambda self: self.svp64.extra_cr_in)
-    extra_cr_out = property(lambda self: self.svp64.extra_cr_out)
+    extra_idx_in1 = property(lambda self: self.svp64.extra_idx_in1)
+    extra_idx_in2 = property(lambda self: self.svp64.extra_idx_in2)
+    extra_idx_in3 = property(lambda self: self.svp64.extra_idx_in3)
+    extra_idx_out = property(lambda self: self.svp64.extra_idx_out)
+    extra_idx_out2 = property(lambda self: self.svp64.extra_idx_out2)
+    extra_idx_cr_in = property(lambda self: self.svp64.extra_idx_cr_in)
+    extra_idx_cr_out = property(lambda self: self.svp64.extra_idx_cr_out)
 
 
 class Instruction(_Mapping):