-- GENERATED by C->Haskell Compiler, version 0.28.8 Switcheroo, 25 November 2017 (Haskell)
-- Edit the ORIGNAL .chs file instead!


{-# LINE 1 "src/Hapstone/Internal/Ppc.chs" #-}
{-# LANGUAGE ForeignFunctionInterface #-}
{-|
Module      : Hapstone.Internal.Ppc
Description : PPC architecture header ported using C2HS + some boilerplate
Copyright   : (c) Inokentiy Babushkin, 2016
License     : BSD3
Maintainer  : Inokentiy Babushkin <inokentiy.babushkin@googlemail.com>
Stability   : experimental

This module contains PPC specific datatypes and their respective Storable
instances. Most of the types are used internally and can be looked up here.
Some of them are currently unused, as the headers only define them as symbolic
constants whose type is never used explicitly, which poses a problem for a
memory-safe port to the Haskell language, this is about to get fixed in a
future version.

Apart from that, because the module is generated using C2HS, some of the
documentation is misplaced or rendered incorrectly, so if in doubt, read the
source file.
-}
module Hapstone.Internal.Ppc where
import qualified Foreign.C.Types as C2HSImp
import qualified Foreign.Storable as C2HSImp






{-# LINE 25 "src/Hapstone/Internal/Ppc.chs" #-}


import Foreign
import Foreign.C.Types

-- | PPC branch codes for some branch instructions
data PpcBc = PpcBcInvalid
           | PpcBcGe
           | PpcBcLt
           | PpcBcLe
           | PpcBcGt
           | PpcBcNe
           | PpcBcEq
           | PpcBcNu
           | PpcBcUn
           | PpcBcNs
           | PpcBcSo
  deriving (Int -> PpcBc -> ShowS
[PpcBc] -> ShowS
PpcBc -> String
(Int -> PpcBc -> ShowS)
-> (PpcBc -> String) -> ([PpcBc] -> ShowS) -> Show PpcBc
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [PpcBc] -> ShowS
$cshowList :: [PpcBc] -> ShowS
show :: PpcBc -> String
$cshow :: PpcBc -> String
showsPrec :: Int -> PpcBc -> ShowS
$cshowsPrec :: Int -> PpcBc -> ShowS
Show,PpcBc -> PpcBc -> Bool
(PpcBc -> PpcBc -> Bool) -> (PpcBc -> PpcBc -> Bool) -> Eq PpcBc
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PpcBc -> PpcBc -> Bool
$c/= :: PpcBc -> PpcBc -> Bool
== :: PpcBc -> PpcBc -> Bool
$c== :: PpcBc -> PpcBc -> Bool
Eq,PpcBc
PpcBc -> PpcBc -> Bounded PpcBc
forall a. a -> a -> Bounded a
maxBound :: PpcBc
$cmaxBound :: PpcBc
minBound :: PpcBc
$cminBound :: PpcBc
Bounded)
instance Enum PpcBc where
  succ PpcBcInvalid = PpcBcGe
  succ PpcBcGe = PpcBcLt
  succ PpcBc
PpcBcLt = PpcBc
PpcBcLe
  succ PpcBcLe = PpcBcGt
  succ PpcBcGt = PpcBcNe
  succ PpcBcNe = PpcBcEq
  succ PpcBcEq = PpcBcNu
  succ PpcBc
PpcBcNu = PpcBc
PpcBcUn
  succ PpcBc
PpcBcUn = PpcBc
PpcBcNs
  succ PpcBc
PpcBcNs = PpcBc
PpcBcSo
  succ PpcBc
PpcBcSo = String -> PpcBc
forall a. HasCallStack => String -> a
error String
"PpcBc.succ: PpcBcSo has no successor"

  pred :: PpcBc -> PpcBc
pred PpcBc
PpcBcGe = PpcBc
PpcBcInvalid
  pred PpcBc
PpcBcLt = PpcBc
PpcBcGe
  pred PpcBc
PpcBcLe = PpcBcLt
  pred PpcBc
PpcBcGt = PpcBc
PpcBcLe
  pred PpcBc
PpcBcNe = PpcBc
PpcBcGt
  pred PpcBc
PpcBcEq = PpcBc
PpcBcNe
  pred PpcBc
PpcBcNu = PpcBc
PpcBcEq
  pred PpcBc
PpcBcUn = PpcBc
PpcBcNu
  pred PpcBc
PpcBcNs = PpcBc
PpcBcUn
  pred PpcBc
PpcBcSo = PpcBc
PpcBcNs
  pred PpcBc
PpcBcInvalid = String -> PpcBc
forall a. HasCallStack => String -> a
error String
"PpcBc.pred: PpcBcInvalid has no predecessor"

  enumFromTo :: PpcBc -> PpcBc -> [PpcBc]
enumFromTo PpcBc
from PpcBc
to = PpcBc -> [PpcBc]
forall t. Enum t => t -> [t]
go PpcBc
from
    where
      end :: Int
end = PpcBc -> Int
forall a. Enum a => a -> Int
fromEnum PpcBc
to
      go :: t -> [t]
go t
v = case Int -> Int -> Ordering
forall a. Ord a => a -> a -> Ordering
compare (t -> Int
forall a. Enum a => a -> Int
fromEnum t
v) Int
end of
                 Ordering
LT -> t
v t -> [t] -> [t]
forall a. a -> [a] -> [a]
: t -> [t]
go (t -> t
forall a. Enum a => a -> a
succ t
v)
                 Ordering
EQ -> [t
v]
                 Ordering
GT -> []

  enumFrom :: PpcBc -> [PpcBc]
enumFrom PpcBc
from = PpcBc -> PpcBc -> [PpcBc]
forall a. Enum a => a -> a -> [a]
enumFromTo PpcBc
from PpcBc
PpcBcSo

  fromEnum :: PpcBc -> Int
fromEnum PpcBc
PpcBcInvalid = Int
0
  fromEnum PpcBc
PpcBcGe = Int
4
  fromEnum PpcBc
PpcBcLt = Int
12
  fromEnum PpcBc
PpcBcLe = Int
36
  fromEnum PpcBc
PpcBcGt = Int
44
  fromEnum PpcBc
PpcBcNe = Int
68
  fromEnum PpcBc
PpcBcEq = Int
76
  fromEnum PpcBc
PpcBcNu = Int
100
  fromEnum PpcBc
PpcBcUn = Int
108
  fromEnum PpcBc
PpcBcNs = Int
132
  fromEnum PpcBc
PpcBcSo = Int
140

  toEnum :: Int -> PpcBc
toEnum Int
0 = PpcBc
PpcBcInvalid
  toEnum Int
4 = PpcBc
PpcBcGe
  toEnum Int
12 = PpcBc
PpcBcLt
  toEnum Int
36 = PpcBc
PpcBcLe
  toEnum Int
44 = PpcBc
PpcBcGt
  toEnum Int
68 = PpcBc
PpcBcNe
  toEnum Int
76 = PpcBc
PpcBcEq
  toEnum Int
100 = PpcBc
PpcBcNu
  toEnum Int
108 = PpcBc
PpcBcUn
  toEnum Int
132 = PpcBc
PpcBcNs
  toEnum Int
140 = PpcBc
PpcBcSo
  toEnum Int
unmatched = String -> PpcBc
forall a. HasCallStack => String -> a
error (String
"PpcBc.toEnum: Cannot match " String -> ShowS
forall a. [a] -> [a] -> [a]
++ Int -> String
forall a. Show a => a -> String
show Int
unmatched)

{-# LINE 32 "src/Hapstone/Internal/Ppc.chs" #-}

-- | PPC branch hint for some branch instructions
data PpcBh = PpcBhInvalid
           | PpcBhPlus
           | PpcBhMinus
  deriving (Show,Eq,Bounded)
instance Enum PpcBh where
  succ PpcBhInvalid = PpcBhPlus
  succ PpcBhPlus = PpcBhMinus
  succ PpcBhMinus = error "PpcBh.succ: PpcBhMinus has no successor"

  pred PpcBhPlus = PpcBhInvalid
  pred PpcBhMinus = PpcBhPlus
  pred PpcBhInvalid = error "PpcBh.pred: PpcBhInvalid has no predecessor"

  enumFromTo from to = go from
    where
      end = fromEnum to
      go v = case compare (fromEnum v) end of
                 LT -> v : go (succ v)
                 EQ -> [v]
                 GT -> []

  enumFrom from = enumFromTo from PpcBhMinus

  fromEnum PpcBhInvalid = 0
  fromEnum PpcBhPlus = 1
  fromEnum PpcBhMinus = 2

  toEnum 0 = PpcBhInvalid
  toEnum 1 = PpcBhPlus
  toEnum 2 = PpcBhMinus
  toEnum unmatched = error ("PpcBh.toEnum: Cannot match " ++ show unmatched)

{-# LINE 35 "src/Hapstone/Internal/Ppc.chs" #-}


-- | operand type for instruction's operands
data PpcOpType = PpcOpInvalid
               | PpcOpReg
               | PpcOpImm
               | PpcOpMem
               | PpcOpCrx
  deriving (Show,Eq,Bounded)
instance Enum PpcOpType where
  succ PpcOpInvalid = PpcOpReg
  succ PpcOpReg = PpcOpImm
  succ PpcOpImm = PpcOpMem
  succ PpcOpMem = PpcOpCrx
  succ PpcOpCrx = error "PpcOpType.succ: PpcOpCrx has no successor"

  pred PpcOpReg = PpcOpInvalid
  pred PpcOpImm = PpcOpReg
  pred PpcOpMem = PpcOpImm
  pred PpcOpCrx = PpcOpMem
  pred PpcOpInvalid = error "PpcOpType.pred: PpcOpInvalid has no predecessor"

  enumFromTo from to = go from
    where
      end = fromEnum to
      go v = case compare (fromEnum v) end of
                 LT -> v : go (succ v)
                 EQ -> [v]
                 GT -> []

  enumFrom from = enumFromTo from PpcOpCrx

  fromEnum PpcOpInvalid = 0
  fromEnum PpcOpReg = 1
  fromEnum PpcOpImm = 2
  fromEnum PpcOpMem = 3
  fromEnum PpcOpCrx = 64

  toEnum 0 = PpcOpInvalid
  toEnum 1 = PpcOpReg
  toEnum 2 = PpcOpImm
  toEnum 3 = PpcOpMem
  toEnum 64 = PpcOpCrx
  toEnum unmatched = error ("PpcOpType.toEnum: Cannot match " ++ show unmatched)

{-# LINE 39 "src/Hapstone/Internal/Ppc.chs" #-}


-- | PPC registers
data PpcReg = PpcRegInvalid
            | PpcRegCarry
            | PpcRegCr0
            | PpcRegCr1
            | PpcRegCr2
            | PpcRegCr3
            | PpcRegCr4
            | PpcRegCr5
            | PpcRegCr6
            | PpcRegCr7
            | PpcRegCtr
            | PpcRegF0
            | PpcRegF1
            | PpcRegF2
            | PpcRegF3
            | PpcRegF4
            | PpcRegF5
            | PpcRegF6
            | PpcRegF7
            | PpcRegF8
            | PpcRegF9
            | PpcRegF10
            | PpcRegF11
            | PpcRegF12
            | PpcRegF13
            | PpcRegF14
            | PpcRegF15
            | PpcRegF16
            | PpcRegF17
            | PpcRegF18
            | PpcRegF19
            | PpcRegF20
            | PpcRegF21
            | PpcRegF22
            | PpcRegF23
            | PpcRegF24
            | PpcRegF25
            | PpcRegF26
            | PpcRegF27
            | PpcRegF28
            | PpcRegF29
            | PpcRegF30
            | PpcRegF31
            | PpcRegLr
            | PpcRegR0
            | PpcRegR1
            | PpcRegR2
            | PpcRegR3
            | PpcRegR4
            | PpcRegR5
            | PpcRegR6
            | PpcRegR7
            | PpcRegR8
            | PpcRegR9
            | PpcRegR10
            | PpcRegR11
            | PpcRegR12
            | PpcRegR13
            | PpcRegR14
            | PpcRegR15
            | PpcRegR16
            | PpcRegR17
            | PpcRegR18
            | PpcRegR19
            | PpcRegR20
            | PpcRegR21
            | PpcRegR22
            | PpcRegR23
            | PpcRegR24
            | PpcRegR25
            | PpcRegR26
            | PpcRegR27
            | PpcRegR28
            | PpcRegR29
            | PpcRegR30
            | PpcRegR31
            | PpcRegV0
            | PpcRegV1
            | PpcRegV2
            | PpcRegV3
            | PpcRegV4
            | PpcRegV5
            | PpcRegV6
            | PpcRegV7
            | PpcRegV8
            | PpcRegV9
            | PpcRegV10
            | PpcRegV11
            | PpcRegV12
            | PpcRegV13
            | PpcRegV14
            | PpcRegV15
            | PpcRegV16
            | PpcRegV17
            | PpcRegV18
            | PpcRegV19
            | PpcRegV20
            | PpcRegV21
            | PpcRegV22
            | PpcRegV23
            | PpcRegV24
            | PpcRegV25
            | PpcRegV26
            | PpcRegV27
            | PpcRegV28
            | PpcRegV29
            | PpcRegV30
            | PpcRegV31
            | PpcRegVrsave
            | PpcRegVs0
            | PpcRegVs1
            | PpcRegVs2
            | PpcRegVs3
            | PpcRegVs4
            | PpcRegVs5
            | PpcRegVs6
            | PpcRegVs7
            | PpcRegVs8
            | PpcRegVs9
            | PpcRegVs10
            | PpcRegVs11
            | PpcRegVs12
            | PpcRegVs13
            | PpcRegVs14
            | PpcRegVs15
            | PpcRegVs16
            | PpcRegVs17
            | PpcRegVs18
            | PpcRegVs19
            | PpcRegVs20
            | PpcRegVs21
            | PpcRegVs22
            | PpcRegVs23
            | PpcRegVs24
            | PpcRegVs25
            | PpcRegVs26
            | PpcRegVs27
            | PpcRegVs28
            | PpcRegVs29
            | PpcRegVs30
            | PpcRegVs31
            | PpcRegVs32
            | PpcRegVs33
            | PpcRegVs34
            | PpcRegVs35
            | PpcRegVs36
            | PpcRegVs37
            | PpcRegVs38
            | PpcRegVs39
            | PpcRegVs40
            | PpcRegVs41
            | PpcRegVs42
            | PpcRegVs43
            | PpcRegVs44
            | PpcRegVs45
            | PpcRegVs46
            | PpcRegVs47
            | PpcRegVs48
            | PpcRegVs49
            | PpcRegVs50
            | PpcRegVs51
            | PpcRegVs52
            | PpcRegVs53
            | PpcRegVs54
            | PpcRegVs55
            | PpcRegVs56
            | PpcRegVs57
            | PpcRegVs58
            | PpcRegVs59
            | PpcRegVs60
            | PpcRegVs61
            | PpcRegVs62
            | PpcRegVs63
            | PpcRegQ0
            | PpcRegQ1
            | PpcRegQ2
            | PpcRegQ3
            | PpcRegQ4
            | PpcRegQ5
            | PpcRegQ6
            | PpcRegQ7
            | PpcRegQ8
            | PpcRegQ9
            | PpcRegQ10
            | PpcRegQ11
            | PpcRegQ12
            | PpcRegQ13
            | PpcRegQ14
            | PpcRegQ15
            | PpcRegQ16
            | PpcRegQ17
            | PpcRegQ18
            | PpcRegQ19
            | PpcRegQ20
            | PpcRegQ21
            | PpcRegQ22
            | PpcRegQ23
            | PpcRegQ24
            | PpcRegQ25
            | PpcRegQ26
            | PpcRegQ27
            | PpcRegQ28
            | PpcRegQ29
            | PpcRegQ30
            | PpcRegQ31
            | PpcRegRm
            | PpcRegCtr8
            | PpcRegLr8
            | PpcRegCr1eq
            | PpcRegX2
            | PpcRegEnding
  deriving (Show,Eq,Bounded)
instance Enum PpcReg where
  succ PpcRegInvalid = PpcRegCarry
  succ PpcRegCarry = PpcRegCr0
  succ PpcRegCr0 = PpcRegCr1
  succ PpcRegCr1 = PpcRegCr2
  succ PpcRegCr2 = PpcRegCr3
  succ PpcRegCr3 = PpcRegCr4
  succ PpcRegCr4 = PpcRegCr5
  succ PpcRegCr5 = PpcRegCr6
  succ PpcRegCr6 = PpcRegCr7
  succ PpcRegCr7 = PpcRegCtr
  succ PpcRegCtr = PpcRegF0
  succ PpcRegF0 = PpcRegF1
  succ PpcRegF1 = PpcRegF2
  succ PpcRegF2 = PpcRegF3
  succ PpcRegF3 = PpcRegF4
  succ PpcRegF4 = PpcRegF5
  succ PpcRegF5 = PpcRegF6
  succ PpcRegF6 = PpcRegF7
  succ PpcRegF7 = PpcRegF8
  succ PpcRegF8 = PpcRegF9
  succ PpcRegF9 = PpcRegF10
  succ PpcRegF10 = PpcRegF11
  succ PpcRegF11 = PpcRegF12
  succ PpcRegF12 = PpcRegF13
  succ PpcRegF13 = PpcRegF14
  succ PpcRegF14 = PpcRegF15
  succ PpcRegF15 = PpcRegF16
  succ PpcRegF16 = PpcRegF17
  succ PpcRegF17 = PpcRegF18
  succ PpcRegF18 = PpcRegF19
  succ PpcRegF19 = PpcRegF20
  succ PpcRegF20 = PpcRegF21
  succ PpcRegF21 = PpcRegF22
  succ PpcRegF22 = PpcRegF23
  succ PpcRegF23 = PpcRegF24
  succ PpcRegF24 = PpcRegF25
  succ PpcRegF25 = PpcRegF26
  succ PpcRegF26 = PpcRegF27
  succ PpcRegF27 = PpcRegF28
  succ PpcRegF28 = PpcRegF29
  succ PpcRegF29 = PpcRegF30
  succ PpcRegF30 = PpcRegF31
  succ PpcRegF31 = PpcRegLr
  succ PpcRegLr = PpcRegR0
  succ PpcRegR0 = PpcRegR1
  succ PpcRegR1 = PpcRegR2
  succ PpcRegR2 = PpcRegR3
  succ PpcRegR3 = PpcRegR4
  succ PpcRegR4 = PpcRegR5
  succ PpcRegR5 = PpcRegR6
  succ PpcRegR6 = PpcRegR7
  succ PpcRegR7 = PpcRegR8
  succ PpcRegR8 = PpcRegR9
  succ PpcRegR9 = PpcRegR10
  succ PpcRegR10 = PpcRegR11
  succ PpcRegR11 = PpcRegR12
  succ PpcRegR12 = PpcRegR13
  succ PpcRegR13 = PpcRegR14
  succ PpcRegR14 = PpcRegR15
  succ PpcRegR15 = PpcRegR16
  succ PpcRegR16 = PpcRegR17
  succ PpcRegR17 = PpcRegR18
  succ PpcRegR18 = PpcRegR19
  succ PpcRegR19 = PpcRegR20
  succ PpcRegR20 = PpcRegR21
  succ PpcRegR21 = PpcRegR22
  succ PpcRegR22 = PpcRegR23
  succ PpcRegR23 = PpcRegR24
  succ PpcRegR24 = PpcRegR25
  succ PpcRegR25 = PpcRegR26
  succ PpcRegR26 = PpcRegR27
  succ PpcRegR27 = PpcRegR28
  succ PpcRegR28 = PpcRegR29
  succ PpcRegR29 = PpcRegR30
  succ PpcRegR30 = PpcRegR31
  succ PpcRegR31 = PpcRegV0
  succ PpcRegV0 = PpcRegV1
  succ PpcRegV1 = PpcRegV2
  succ PpcRegV2 = PpcRegV3
  succ PpcRegV3 = PpcRegV4
  succ PpcRegV4 = PpcRegV5
  succ PpcRegV5 = PpcRegV6
  succ PpcRegV6 = PpcRegV7
  succ PpcRegV7 = PpcRegV8
  succ PpcRegV8 = PpcRegV9
  succ PpcRegV9 = PpcRegV10
  succ PpcRegV10 = PpcRegV11
  succ PpcRegV11 = PpcRegV12
  succ PpcRegV12 = PpcRegV13
  succ PpcRegV13 = PpcRegV14
  succ PpcRegV14 = PpcRegV15
  succ PpcRegV15 = PpcRegV16
  succ PpcRegV16 = PpcRegV17
  succ PpcRegV17 = PpcRegV18
  succ PpcRegV18 = PpcRegV19
  succ PpcRegV19 = PpcRegV20
  succ PpcRegV20 = PpcRegV21
  succ PpcRegV21 = PpcRegV22
  succ PpcRegV22 = PpcRegV23
  succ PpcRegV23 = PpcRegV24
  succ PpcRegV24 = PpcRegV25
  succ PpcRegV25 = PpcRegV26
  succ PpcRegV26 = PpcRegV27
  succ PpcRegV27 = PpcRegV28
  succ PpcRegV28 = PpcRegV29
  succ PpcRegV29 = PpcRegV30
  succ PpcRegV30 = PpcRegV31
  succ PpcRegV31 = PpcRegVrsave
  succ PpcRegVrsave = PpcRegVs0
  succ PpcRegVs0 = PpcRegVs1
  succ PpcRegVs1 = PpcRegVs2
  succ PpcRegVs2 = PpcRegVs3
  succ PpcRegVs3 = PpcRegVs4
  succ PpcRegVs4 = PpcRegVs5
  succ PpcRegVs5 = PpcRegVs6
  succ PpcRegVs6 = PpcRegVs7
  succ PpcRegVs7 = PpcRegVs8
  succ PpcRegVs8 = PpcRegVs9
  succ PpcRegVs9 = PpcRegVs10
  succ PpcRegVs10 = PpcRegVs11
  succ PpcRegVs11 = PpcRegVs12
  succ PpcRegVs12 = PpcRegVs13
  succ PpcRegVs13 = PpcRegVs14
  succ PpcRegVs14 = PpcRegVs15
  succ PpcRegVs15 = PpcRegVs16
  succ PpcRegVs16 = PpcRegVs17
  succ PpcRegVs17 = PpcRegVs18
  succ PpcRegVs18 = PpcRegVs19
  succ PpcRegVs19 = PpcRegVs20
  succ PpcRegVs20 = PpcRegVs21
  succ PpcRegVs21 = PpcRegVs22
  succ PpcRegVs22 = PpcRegVs23
  succ PpcRegVs23 = PpcRegVs24
  succ PpcRegVs24 = PpcRegVs25
  succ PpcRegVs25 = PpcRegVs26
  succ PpcRegVs26 = PpcRegVs27
  succ PpcRegVs27 = PpcRegVs28
  succ PpcRegVs28 = PpcRegVs29
  succ PpcRegVs29 = PpcRegVs30
  succ PpcRegVs30 = PpcRegVs31
  succ PpcRegVs31 = PpcRegVs32
  succ PpcRegVs32 = PpcRegVs33
  succ PpcRegVs33 = PpcRegVs34
  succ PpcRegVs34 = PpcRegVs35
  succ PpcRegVs35 = PpcRegVs36
  succ PpcRegVs36 = PpcRegVs37
  succ PpcRegVs37 = PpcRegVs38
  succ PpcRegVs38 = PpcRegVs39
  succ PpcRegVs39 = PpcRegVs40
  succ PpcRegVs40 = PpcRegVs41
  succ PpcRegVs41 = PpcRegVs42
  succ PpcRegVs42 = PpcRegVs43
  succ PpcRegVs43 = PpcRegVs44
  succ PpcRegVs44 = PpcRegVs45
  succ PpcRegVs45 = PpcRegVs46
  succ PpcRegVs46 = PpcRegVs47
  succ PpcRegVs47 = PpcRegVs48
  succ PpcRegVs48 = PpcRegVs49
  succ PpcRegVs49 = PpcRegVs50
  succ PpcRegVs50 = PpcRegVs51
  succ PpcRegVs51 = PpcRegVs52
  succ PpcRegVs52 = PpcRegVs53
  succ PpcRegVs53 = PpcRegVs54
  succ PpcRegVs54 = PpcRegVs55
  succ PpcRegVs55 = PpcRegVs56
  succ PpcRegVs56 = PpcRegVs57
  succ PpcRegVs57 = PpcRegVs58
  succ PpcRegVs58 = PpcRegVs59
  succ PpcRegVs59 = PpcRegVs60
  succ PpcRegVs60 = PpcRegVs61
  succ PpcRegVs61 = PpcRegVs62
  succ PpcRegVs62 = PpcRegVs63
  succ PpcRegVs63 = PpcRegQ0
  succ PpcRegQ0 = PpcRegQ1
  succ PpcRegQ1 = PpcRegQ2
  succ PpcRegQ2 = PpcRegQ3
  succ PpcRegQ3 = PpcRegQ4
  succ PpcRegQ4 = PpcRegQ5
  succ PpcRegQ5 = PpcRegQ6
  succ PpcRegQ6 = PpcRegQ7
  succ PpcRegQ7 = PpcRegQ8
  succ PpcRegQ8 = PpcRegQ9
  succ PpcRegQ9 = PpcRegQ10
  succ PpcRegQ10 = PpcRegQ11
  succ PpcRegQ11 = PpcRegQ12
  succ PpcRegQ12 = PpcRegQ13
  succ PpcRegQ13 = PpcRegQ14
  succ PpcRegQ14 = PpcRegQ15
  succ PpcRegQ15 = PpcRegQ16
  succ PpcRegQ16 = PpcRegQ17
  succ PpcRegQ17 = PpcRegQ18
  succ PpcRegQ18 = PpcRegQ19
  succ PpcRegQ19 = PpcRegQ20
  succ PpcRegQ20 = PpcRegQ21
  succ PpcRegQ21 = PpcRegQ22
  succ PpcRegQ22 = PpcRegQ23
  succ PpcRegQ23 = PpcRegQ24
  succ PpcRegQ24 = PpcRegQ25
  succ PpcRegQ25 = PpcRegQ26
  succ PpcRegQ26 = PpcRegQ27
  succ PpcRegQ27 = PpcRegQ28
  succ PpcRegQ28 = PpcRegQ29
  succ PpcRegQ29 = PpcRegQ30
  succ PpcRegQ30 = PpcRegQ31
  succ PpcRegQ31 = PpcRegRm
  succ PpcRegRm = PpcRegCtr8
  succ PpcRegCtr8 = PpcRegLr8
  succ PpcRegLr8 = PpcRegCr1eq
  succ PpcRegCr1eq = PpcRegX2
  succ PpcRegX2 = PpcRegEnding
  succ PpcRegEnding = error "PpcReg.succ: PpcRegEnding has no successor"

  pred PpcRegCarry = PpcRegInvalid
  pred PpcRegCr0 = PpcRegCarry
  pred PpcRegCr1 = PpcRegCr0
  pred PpcRegCr2 = PpcRegCr1
  pred PpcRegCr3 = PpcRegCr2
  pred PpcRegCr4 = PpcRegCr3
  pred PpcRegCr5 = PpcRegCr4
  pred PpcRegCr6 = PpcRegCr5
  pred PpcRegCr7 = PpcRegCr6
  pred PpcRegCtr = PpcRegCr7
  pred PpcRegF0 = PpcRegCtr
  pred PpcRegF1 = PpcRegF0
  pred PpcRegF2 = PpcRegF1
  pred PpcRegF3 = PpcRegF2
  pred PpcRegF4 = PpcRegF3
  pred PpcRegF5 = PpcRegF4
  pred PpcRegF6 = PpcRegF5
  pred PpcRegF7 = PpcRegF6
  pred PpcRegF8 = PpcRegF7
  pred PpcRegF9 = PpcRegF8
  pred PpcRegF10 = PpcRegF9
  pred PpcRegF11 = PpcRegF10
  pred PpcRegF12 = PpcRegF11
  pred PpcRegF13 = PpcRegF12
  pred PpcRegF14 = PpcRegF13
  pred PpcRegF15 = PpcRegF14
  pred PpcRegF16 = PpcRegF15
  pred PpcRegF17 = PpcRegF16
  pred PpcRegF18 = PpcRegF17
  pred PpcRegF19 = PpcRegF18
  pred PpcRegF20 = PpcRegF19
  pred PpcRegF21 = PpcRegF20
  pred PpcRegF22 = PpcRegF21
  pred PpcRegF23 = PpcRegF22
  pred PpcRegF24 = PpcRegF23
  pred PpcRegF25 = PpcRegF24
  pred PpcRegF26 = PpcRegF25
  pred PpcRegF27 = PpcRegF26
  pred PpcRegF28 = PpcRegF27
  pred PpcRegF29 = PpcRegF28
  pred PpcRegF30 = PpcRegF29
  pred PpcRegF31 = PpcRegF30
  pred PpcRegLr = PpcRegF31
  pred PpcRegR0 = PpcRegLr
  pred PpcRegR1 = PpcRegR0
  pred PpcRegR2 = PpcRegR1
  pred PpcRegR3 = PpcRegR2
  pred PpcRegR4 = PpcRegR3
  pred PpcRegR5 = PpcRegR4
  pred PpcRegR6 = PpcRegR5
  pred PpcRegR7 = PpcRegR6
  pred PpcRegR8 = PpcRegR7
  pred PpcRegR9 = PpcRegR8
  pred PpcRegR10 = PpcRegR9
  pred PpcRegR11 = PpcRegR10
  pred PpcRegR12 = PpcRegR11
  pred PpcRegR13 = PpcRegR12
  pred PpcRegR14 = PpcRegR13
  pred PpcRegR15 = PpcRegR14
  pred PpcRegR16 = PpcRegR15
  pred PpcRegR17 = PpcRegR16
  pred PpcRegR18 = PpcRegR17
  pred PpcRegR19 = PpcRegR18
  pred PpcRegR20 = PpcRegR19
  pred PpcRegR21 = PpcRegR20
  pred PpcRegR22 = PpcRegR21
  pred PpcRegR23 = PpcRegR22
  pred PpcRegR24 = PpcRegR23
  pred PpcRegR25 = PpcRegR24
  pred PpcRegR26 = PpcRegR25
  pred PpcRegR27 = PpcRegR26
  pred PpcRegR28 = PpcRegR27
  pred PpcRegR29 = PpcRegR28
  pred PpcRegR30 = PpcRegR29
  pred PpcRegR31 = PpcRegR30
  pred PpcRegV0 = PpcRegR31
  pred PpcRegV1 = PpcRegV0
  pred PpcRegV2 = PpcRegV1
  pred PpcRegV3 = PpcRegV2
  pred PpcRegV4 = PpcRegV3
  pred PpcRegV5 = PpcRegV4
  pred PpcRegV6 = PpcRegV5
  pred PpcRegV7 = PpcRegV6
  pred PpcRegV8 = PpcRegV7
  pred PpcRegV9 = PpcRegV8
  pred PpcRegV10 = PpcRegV9
  pred PpcRegV11 = PpcRegV10
  pred PpcRegV12 = PpcRegV11
  pred PpcRegV13 = PpcRegV12
  pred PpcRegV14 = PpcRegV13
  pred PpcRegV15 = PpcRegV14
  pred PpcRegV16 = PpcRegV15
  pred PpcRegV17 = PpcRegV16
  pred PpcRegV18 = PpcRegV17
  pred PpcRegV19 = PpcRegV18
  pred PpcRegV20 = PpcRegV19
  pred PpcRegV21 = PpcRegV20
  pred PpcRegV22 = PpcRegV21
  pred PpcRegV23 = PpcRegV22
  pred PpcRegV24 = PpcRegV23
  pred PpcRegV25 = PpcRegV24
  pred PpcRegV26 = PpcRegV25
  pred PpcRegV27 = PpcRegV26
  pred PpcRegV28 = PpcRegV27
  pred PpcRegV29 = PpcRegV28
  pred PpcRegV30 = PpcRegV29
  pred PpcRegV31 = PpcRegV30
  pred PpcRegVrsave = PpcRegV31
  pred PpcRegVs0 = PpcRegVrsave
  pred PpcRegVs1 = PpcRegVs0
  pred PpcRegVs2 = PpcRegVs1
  pred PpcRegVs3 = PpcRegVs2
  pred PpcRegVs4 = PpcRegVs3
  pred PpcRegVs5 = PpcRegVs4
  pred PpcRegVs6 = PpcRegVs5
  pred PpcRegVs7 = PpcRegVs6
  pred PpcRegVs8 = PpcRegVs7
  pred PpcRegVs9 = PpcRegVs8
  pred PpcRegVs10 = PpcRegVs9
  pred PpcRegVs11 = PpcRegVs10
  pred PpcRegVs12 = PpcRegVs11
  pred PpcRegVs13 = PpcRegVs12
  pred PpcRegVs14 = PpcRegVs13
  pred PpcRegVs15 = PpcRegVs14
  pred PpcRegVs16 = PpcRegVs15
  pred PpcRegVs17 = PpcRegVs16
  pred PpcRegVs18 = PpcRegVs17
  pred PpcRegVs19 = PpcRegVs18
  pred PpcRegVs20 = PpcRegVs19
  pred PpcRegVs21 = PpcRegVs20
  pred PpcRegVs22 = PpcRegVs21
  pred PpcRegVs23 = PpcRegVs22
  pred PpcRegVs24 = PpcRegVs23
  pred PpcRegVs25 = PpcRegVs24
  pred PpcRegVs26 = PpcRegVs25
  pred PpcRegVs27 = PpcRegVs26
  pred PpcRegVs28 = PpcRegVs27
  pred PpcRegVs29 = PpcRegVs28
  pred PpcRegVs30 = PpcRegVs29
  pred PpcRegVs31 = PpcRegVs30
  pred PpcRegVs32 = PpcRegVs31
  pred PpcRegVs33 = PpcRegVs32
  pred PpcRegVs34 = PpcRegVs33
  pred PpcRegVs35 = PpcRegVs34
  pred PpcRegVs36 = PpcRegVs35
  pred PpcRegVs37 = PpcRegVs36
  pred PpcRegVs38 = PpcRegVs37
  pred PpcRegVs39 = PpcRegVs38
  pred PpcRegVs40 = PpcRegVs39
  pred PpcRegVs41 = PpcRegVs40
  pred PpcRegVs42 = PpcRegVs41
  pred PpcRegVs43 = PpcRegVs42
  pred PpcRegVs44 = PpcRegVs43
  pred PpcRegVs45 = PpcRegVs44
  pred PpcRegVs46 = PpcRegVs45
  pred PpcRegVs47 = PpcRegVs46
  pred PpcRegVs48 = PpcRegVs47
  pred PpcRegVs49 = PpcRegVs48
  pred PpcRegVs50 = PpcRegVs49
  pred PpcRegVs51 = PpcRegVs50
  pred PpcRegVs52 = PpcRegVs51
  pred PpcRegVs53 = PpcRegVs52
  pred PpcRegVs54 = PpcRegVs53
  pred PpcRegVs55 = PpcRegVs54
  pred PpcRegVs56 = PpcRegVs55
  pred PpcRegVs57 = PpcRegVs56
  pred PpcRegVs58 = PpcRegVs57
  pred PpcRegVs59 = PpcRegVs58
  pred PpcRegVs60 = PpcRegVs59
  pred PpcRegVs61 = PpcRegVs60
  pred PpcRegVs62 = PpcRegVs61
  pred PpcRegVs63 = PpcRegVs62
  pred PpcRegQ0 = PpcRegVs63
  pred PpcRegQ1 = PpcRegQ0
  pred PpcRegQ2 = PpcRegQ1
  pred PpcRegQ3 = PpcRegQ2
  pred PpcRegQ4 = PpcRegQ3
  pred PpcRegQ5 = PpcRegQ4
  pred PpcRegQ6 = PpcRegQ5
  pred PpcRegQ7 = PpcRegQ6
  pred PpcRegQ8 = PpcRegQ7
  pred PpcRegQ9 = PpcRegQ8
  pred PpcRegQ10 = PpcRegQ9
  pred PpcRegQ11 = PpcRegQ10
  pred PpcRegQ12 = PpcRegQ11
  pred PpcRegQ13 = PpcRegQ12
  pred PpcRegQ14 = PpcRegQ13
  pred PpcRegQ15 = PpcRegQ14
  pred PpcRegQ16 = PpcRegQ15
  pred PpcRegQ17 = PpcRegQ16
  pred PpcRegQ18 = PpcRegQ17
  pred PpcRegQ19 = PpcRegQ18
  pred PpcRegQ20 = PpcRegQ19
  pred PpcRegQ21 = PpcRegQ20
  pred PpcRegQ22 = PpcRegQ21
  pred PpcRegQ23 = PpcRegQ22
  pred PpcRegQ24 = PpcRegQ23
  pred PpcRegQ25 = PpcRegQ24
  pred PpcRegQ26 = PpcRegQ25
  pred PpcRegQ27 = PpcRegQ26
  pred PpcRegQ28 = PpcRegQ27
  pred PpcRegQ29 = PpcRegQ28
  pred PpcRegQ30 = PpcRegQ29
  pred PpcRegQ31 = PpcRegQ30
  pred PpcRegRm = PpcRegQ31
  pred PpcRegCtr8 = PpcRegRm
  pred PpcRegLr8 = PpcRegCtr8
  pred PpcRegCr1eq = PpcRegLr8
  pred PpcRegX2 = PpcRegCr1eq
  pred PpcRegEnding = PpcRegX2
  pred PpcRegInvalid = error "PpcReg.pred: PpcRegInvalid has no predecessor"

  enumFromTo from to = go from
    where
      end = fromEnum to
      go v = case compare (fromEnum v) end of
                 LT -> v : go (succ v)
                 EQ -> [v]
                 GT -> []

  enumFrom from = enumFromTo from PpcRegEnding

  fromEnum PpcRegInvalid = 0
  fromEnum PpcRegCarry = 1
  fromEnum PpcRegCr0 = 2
  fromEnum PpcRegCr1 = 3
  fromEnum PpcRegCr2 = 4
  fromEnum PpcRegCr3 = 5
  fromEnum PpcRegCr4 = 6
  fromEnum PpcRegCr5 = 7
  fromEnum PpcRegCr6 = 8
  fromEnum PpcRegCr7 = 9
  fromEnum PpcRegCtr = 10
  fromEnum PpcRegF0 = 11
  fromEnum PpcRegF1 = 12
  fromEnum PpcRegF2 = 13
  fromEnum PpcRegF3 = 14
  fromEnum PpcRegF4 = 15
  fromEnum PpcRegF5 = 16
  fromEnum PpcRegF6 = 17
  fromEnum PpcRegF7 = 18
  fromEnum PpcRegF8 = 19
  fromEnum PpcRegF9 = 20
  fromEnum PpcRegF10 = 21
  fromEnum PpcRegF11 = 22
  fromEnum PpcRegF12 = 23
  fromEnum PpcRegF13 = 24
  fromEnum PpcRegF14 = 25
  fromEnum PpcRegF15 = 26
  fromEnum PpcRegF16 = 27
  fromEnum PpcRegF17 = 28
  fromEnum PpcRegF18 = 29
  fromEnum PpcRegF19 = 30
  fromEnum PpcRegF20 = 31
  fromEnum PpcRegF21 = 32
  fromEnum PpcRegF22 = 33
  fromEnum PpcRegF23 = 34
  fromEnum PpcRegF24 = 35
  fromEnum PpcRegF25 = 36
  fromEnum PpcRegF26 = 37
  fromEnum PpcRegF27 = 38
  fromEnum PpcRegF28 = 39
  fromEnum PpcRegF29 = 40
  fromEnum PpcRegF30 = 41
  fromEnum PpcRegF31 = 42
  fromEnum PpcRegLr = 43
  fromEnum PpcRegR0 = 44
  fromEnum PpcRegR1 = 45
  fromEnum PpcRegR2 = 46
  fromEnum PpcRegR3 = 47
  fromEnum PpcRegR4 = 48
  fromEnum PpcRegR5 = 49
  fromEnum PpcRegR6 = 50
  fromEnum PpcRegR7 = 51
  fromEnum PpcRegR8 = 52
  fromEnum PpcRegR9 = 53
  fromEnum PpcRegR10 = 54
  fromEnum PpcRegR11 = 55
  fromEnum PpcRegR12 = 56
  fromEnum PpcRegR13 = 57
  fromEnum PpcRegR14 = 58
  fromEnum PpcRegR15 = 59
  fromEnum PpcRegR16 = 60
  fromEnum PpcRegR17 = 61
  fromEnum PpcRegR18 = 62
  fromEnum PpcRegR19 = 63
  fromEnum PpcRegR20 = 64
  fromEnum PpcRegR21 = 65
  fromEnum PpcRegR22 = 66
  fromEnum PpcRegR23 = 67
  fromEnum PpcRegR24 = 68
  fromEnum PpcRegR25 = 69
  fromEnum PpcRegR26 = 70
  fromEnum PpcRegR27 = 71
  fromEnum PpcRegR28 = 72
  fromEnum PpcRegR29 = 73
  fromEnum PpcRegR30 = 74
  fromEnum PpcRegR31 = 75
  fromEnum PpcRegV0 = 76
  fromEnum PpcRegV1 = 77
  fromEnum PpcRegV2 = 78
  fromEnum PpcRegV3 = 79
  fromEnum PpcRegV4 = 80
  fromEnum PpcRegV5 = 81
  fromEnum PpcRegV6 = 82
  fromEnum PpcRegV7 = 83
  fromEnum PpcRegV8 = 84
  fromEnum PpcRegV9 = 85
  fromEnum PpcRegV10 = 86
  fromEnum PpcRegV11 = 87
  fromEnum PpcRegV12 = 88
  fromEnum PpcRegV13 = 89
  fromEnum PpcRegV14 = 90
  fromEnum PpcRegV15 = 91
  fromEnum PpcRegV16 = 92
  fromEnum PpcRegV17 = 93
  fromEnum PpcRegV18 = 94
  fromEnum PpcRegV19 = 95
  fromEnum PpcRegV20 = 96
  fromEnum PpcRegV21 = 97
  fromEnum PpcRegV22 = 98
  fromEnum PpcRegV23 = 99
  fromEnum PpcRegV24 = 100
  fromEnum PpcRegV25 = 101
  fromEnum PpcRegV26 = 102
  fromEnum PpcRegV27 = 103
  fromEnum PpcRegV28 = 104
  fromEnum PpcRegV29 = 105
  fromEnum PpcRegV30 = 106
  fromEnum PpcRegV31 = 107
  fromEnum PpcRegVrsave = 108
  fromEnum PpcRegVs0 = 109
  fromEnum PpcRegVs1 = 110
  fromEnum PpcRegVs2 = 111
  fromEnum PpcRegVs3 = 112
  fromEnum PpcRegVs4 = 113
  fromEnum PpcRegVs5 = 114
  fromEnum PpcRegVs6 = 115
  fromEnum PpcRegVs7 = 116
  fromEnum PpcRegVs8 = 117
  fromEnum PpcRegVs9 = 118
  fromEnum PpcRegVs10 = 119
  fromEnum PpcRegVs11 = 120
  fromEnum PpcRegVs12 = 121
  fromEnum PpcRegVs13 = 122
  fromEnum PpcRegVs14 = 123
  fromEnum PpcRegVs15 = 124
  fromEnum PpcRegVs16 = 125
  fromEnum PpcRegVs17 = 126
  fromEnum PpcRegVs18 = 127
  fromEnum PpcRegVs19 = 128
  fromEnum PpcRegVs20 = 129
  fromEnum PpcRegVs21 = 130
  fromEnum PpcRegVs22 = 131
  fromEnum PpcRegVs23 = 132
  fromEnum PpcRegVs24 = 133
  fromEnum PpcRegVs25 = 134
  fromEnum PpcRegVs26 = 135
  fromEnum PpcRegVs27 = 136
  fromEnum PpcRegVs28 = 137
  fromEnum PpcRegVs29 = 138
  fromEnum PpcRegVs30 = 139
  fromEnum PpcRegVs31 = 140
  fromEnum PpcRegVs32 = 141
  fromEnum PpcRegVs33 = 142
  fromEnum PpcRegVs34 = 143
  fromEnum PpcRegVs35 = 144
  fromEnum PpcRegVs36 = 145
  fromEnum PpcRegVs37 = 146
  fromEnum PpcRegVs38 = 147
  fromEnum PpcRegVs39 = 148
  fromEnum PpcRegVs40 = 149
  fromEnum PpcRegVs41 = 150
  fromEnum PpcRegVs42 = 151
  fromEnum PpcRegVs43 = 152
  fromEnum PpcRegVs44 = 153
  fromEnum PpcRegVs45 = 154
  fromEnum PpcRegVs46 = 155
  fromEnum PpcRegVs47 = 156
  fromEnum PpcRegVs48 = 157
  fromEnum PpcRegVs49 = 158
  fromEnum PpcRegVs50 = 159
  fromEnum PpcRegVs51 = 160
  fromEnum PpcRegVs52 = 161
  fromEnum PpcRegVs53 = 162
  fromEnum PpcRegVs54 = 163
  fromEnum PpcRegVs55 = 164
  fromEnum PpcRegVs56 = 165
  fromEnum PpcRegVs57 = 166
  fromEnum PpcRegVs58 = 167
  fromEnum PpcRegVs59 = 168
  fromEnum PpcRegVs60 = 169
  fromEnum PpcRegVs61 = 170
  fromEnum PpcRegVs62 = 171
  fromEnum PpcRegVs63 = 172
  fromEnum PpcRegQ0 = 173
  fromEnum PpcRegQ1 = 174
  fromEnum PpcRegQ2 = 175
  fromEnum PpcRegQ3 = 176
  fromEnum PpcRegQ4 = 177
  fromEnum PpcRegQ5 = 178
  fromEnum PpcRegQ6 = 179
  fromEnum PpcRegQ7 = 180
  fromEnum PpcRegQ8 = 181
  fromEnum PpcRegQ9 = 182
  fromEnum PpcRegQ10 = 183
  fromEnum PpcRegQ11 = 184
  fromEnum PpcRegQ12 = 185
  fromEnum PpcRegQ13 = 186
  fromEnum PpcRegQ14 = 187
  fromEnum PpcRegQ15 = 188
  fromEnum PpcRegQ16 = 189
  fromEnum PpcRegQ17 = 190
  fromEnum PpcRegQ18 = 191
  fromEnum PpcRegQ19 = 192
  fromEnum PpcRegQ20 = 193
  fromEnum PpcRegQ21 = 194
  fromEnum PpcRegQ22 = 195
  fromEnum PpcRegQ23 = 196
  fromEnum PpcRegQ24 = 197
  fromEnum PpcRegQ25 = 198
  fromEnum PpcRegQ26 = 199
  fromEnum PpcRegQ27 = 200
  fromEnum PpcRegQ28 = 201
  fromEnum PpcRegQ29 = 202
  fromEnum PpcRegQ30 = 203
  fromEnum PpcRegQ31 = 204
  fromEnum PpcRegRm = 205
  fromEnum PpcRegCtr8 = 206
  fromEnum PpcRegLr8 = 207
  fromEnum PpcRegCr1eq = 208
  fromEnum PpcRegX2 = 209
  fromEnum PpcRegEnding = 210

  toEnum 0 = PpcRegInvalid
  toEnum 1 = PpcRegCarry
  toEnum 2 = PpcRegCr0
  toEnum 3 = PpcRegCr1
  toEnum 4 = PpcRegCr2
  toEnum 5 = PpcRegCr3
  toEnum 6 = PpcRegCr4
  toEnum 7 = PpcRegCr5
  toEnum 8 = PpcRegCr6
  toEnum 9 = PpcRegCr7
  toEnum 10 = PpcRegCtr
  toEnum 11 = PpcRegF0
  toEnum 12 = PpcRegF1
  toEnum 13 = PpcRegF2
  toEnum 14 = PpcRegF3
  toEnum 15 = PpcRegF4
  toEnum 16 = PpcRegF5
  toEnum 17 = PpcRegF6
  toEnum 18 = PpcRegF7
  toEnum 19 = PpcRegF8
  toEnum 20 = PpcRegF9
  toEnum 21 = PpcRegF10
  toEnum 22 = PpcRegF11
  toEnum 23 = PpcRegF12
  toEnum 24 = PpcRegF13
  toEnum 25 = PpcRegF14
  toEnum 26 = PpcRegF15
  toEnum 27 = PpcRegF16
  toEnum 28 = PpcRegF17
  toEnum 29 = PpcRegF18
  toEnum 30 = PpcRegF19
  toEnum 31 = PpcRegF20
  toEnum 32 = PpcRegF21
  toEnum 33 = PpcRegF22
  toEnum 34 = PpcRegF23
  toEnum 35 = PpcRegF24
  toEnum 36 = PpcRegF25
  toEnum 37 = PpcRegF26
  toEnum 38 = PpcRegF27
  toEnum 39 = PpcRegF28
  toEnum 40 = PpcRegF29
  toEnum 41 = PpcRegF30
  toEnum 42 = PpcRegF31
  toEnum 43 = PpcRegLr
  toEnum 44 = PpcRegR0
  toEnum 45 = PpcRegR1
  toEnum 46 = PpcRegR2
  toEnum 47 = PpcRegR3
  toEnum 48 = PpcRegR4
  toEnum 49 = PpcRegR5
  toEnum 50 = PpcRegR6
  toEnum 51 = PpcRegR7
  toEnum 52 = PpcRegR8
  toEnum 53 = PpcRegR9
  toEnum 54 = PpcRegR10
  toEnum 55 = PpcRegR11
  toEnum 56 = PpcRegR12
  toEnum 57 = PpcRegR13
  toEnum 58 = PpcRegR14
  toEnum 59 = PpcRegR15
  toEnum 60 = PpcRegR16
  toEnum 61 = PpcRegR17
  toEnum 62 = PpcRegR18
  toEnum 63 = PpcRegR19
  toEnum 64 = PpcRegR20
  toEnum 65 = PpcRegR21
  toEnum 66 = PpcRegR22
  toEnum 67 = PpcRegR23
  toEnum 68 = PpcRegR24
  toEnum 69 = PpcRegR25
  toEnum 70 = PpcRegR26
  toEnum 71 = PpcRegR27
  toEnum 72 = PpcRegR28
  toEnum 73 = PpcRegR29
  toEnum 74 = PpcRegR30
  toEnum 75 = PpcRegR31
  toEnum 76 = PpcRegV0
  toEnum 77 = PpcRegV1
  toEnum 78 = PpcRegV2
  toEnum 79 = PpcRegV3
  toEnum 80 = PpcRegV4
  toEnum 81 = PpcRegV5
  toEnum 82 = PpcRegV6
  toEnum 83 = PpcRegV7
  toEnum 84 = PpcRegV8
  toEnum 85 = PpcRegV9
  toEnum 86 = PpcRegV10
  toEnum 87 = PpcRegV11
  toEnum 88 = PpcRegV12
  toEnum 89 = PpcRegV13
  toEnum 90 = PpcRegV14
  toEnum 91 = PpcRegV15
  toEnum 92 = PpcRegV16
  toEnum 93 = PpcRegV17
  toEnum 94 = PpcRegV18
  toEnum 95 = PpcRegV19
  toEnum 96 = PpcRegV20
  toEnum 97 = PpcRegV21
  toEnum 98 = PpcRegV22
  toEnum 99 = PpcRegV23
  toEnum 100 = PpcRegV24
  toEnum 101 = PpcRegV25
  toEnum 102 = PpcRegV26
  toEnum 103 = PpcRegV27
  toEnum 104 = PpcRegV28
  toEnum 105 = PpcRegV29
  toEnum 106 = PpcRegV30
  toEnum 107 = PpcRegV31
  toEnum 108 = PpcRegVrsave
  toEnum 109 = PpcRegVs0
  toEnum 110 = PpcRegVs1
  toEnum 111 = PpcRegVs2
  toEnum 112 = PpcRegVs3
  toEnum 113 = PpcRegVs4
  toEnum 114 = PpcRegVs5
  toEnum 115 = PpcRegVs6
  toEnum 116 = PpcRegVs7
  toEnum 117 = PpcRegVs8
  toEnum 118 = PpcRegVs9
  toEnum 119 = PpcRegVs10
  toEnum 120 = PpcRegVs11
  toEnum 121 = PpcRegVs12
  toEnum 122 = PpcRegVs13
  toEnum 123 = PpcRegVs14
  toEnum 124 = PpcRegVs15
  toEnum 125 = PpcRegVs16
  toEnum 126 = PpcRegVs17
  toEnum 127 = PpcRegVs18
  toEnum 128 = PpcRegVs19
  toEnum 129 = PpcRegVs20
  toEnum 130 = PpcRegVs21
  toEnum 131 = PpcRegVs22
  toEnum 132 = PpcRegVs23
  toEnum 133 = PpcRegVs24
  toEnum 134 = PpcRegVs25
  toEnum 135 = PpcRegVs26
  toEnum 136 = PpcRegVs27
  toEnum 137 = PpcRegVs28
  toEnum 138 = PpcRegVs29
  toEnum 139 = PpcRegVs30
  toEnum 140 = PpcRegVs31
  toEnum 141 = PpcRegVs32
  toEnum 142 = PpcRegVs33
  toEnum 143 = PpcRegVs34
  toEnum 144 = PpcRegVs35
  toEnum 145 = PpcRegVs36
  toEnum 146 = PpcRegVs37
  toEnum 147 = PpcRegVs38
  toEnum 148 = PpcRegVs39
  toEnum 149 = PpcRegVs40
  toEnum 150 = PpcRegVs41
  toEnum 151 = PpcRegVs42
  toEnum 152 = PpcRegVs43
  toEnum 153 = PpcRegVs44
  toEnum 154 = PpcRegVs45
  toEnum 155 = PpcRegVs46
  toEnum 156 = PpcRegVs47
  toEnum 157 = PpcRegVs48
  toEnum 158 = PpcRegVs49
  toEnum 159 = PpcRegVs50
  toEnum 160 = PpcRegVs51
  toEnum 161 = PpcRegVs52
  toEnum 162 = PpcRegVs53
  toEnum 163 = PpcRegVs54
  toEnum 164 = PpcRegVs55
  toEnum 165 = PpcRegVs56
  toEnum 166 = PpcRegVs57
  toEnum 167 = PpcRegVs58
  toEnum 168 = PpcRegVs59
  toEnum 169 = PpcRegVs60
  toEnum 170 = PpcRegVs61
  toEnum 171 = PpcRegVs62
  toEnum 172 = PpcRegVs63
  toEnum 173 = PpcRegQ0
  toEnum 174 = PpcRegQ1
  toEnum 175 = PpcRegQ2
  toEnum 176 = PpcRegQ3
  toEnum 177 = PpcRegQ4
  toEnum 178 = PpcRegQ5
  toEnum 179 = PpcRegQ6
  toEnum 180 = PpcRegQ7
  toEnum 181 = PpcRegQ8
  toEnum 182 = PpcRegQ9
  toEnum 183 = PpcRegQ10
  toEnum 184 = PpcRegQ11
  toEnum 185 = PpcRegQ12
  toEnum 186 = PpcRegQ13
  toEnum 187 = PpcRegQ14
  toEnum 188 = PpcRegQ15
  toEnum 189 = PpcRegQ16
  toEnum 190 = PpcRegQ17
  toEnum 191 = PpcRegQ18
  toEnum 192 = PpcRegQ19
  toEnum 193 = PpcRegQ20
  toEnum 194 = PpcRegQ21
  toEnum 195 = PpcRegQ22
  toEnum 196 = PpcRegQ23
  toEnum 197 = PpcRegQ24
  toEnum 198 = PpcRegQ25
  toEnum 199 = PpcRegQ26
  toEnum 200 = PpcRegQ27
  toEnum 201 = PpcRegQ28
  toEnum 202 = PpcRegQ29
  toEnum 203 = PpcRegQ30
  toEnum 204 = PpcRegQ31
  toEnum 205 = PpcRegRm
  toEnum 206 = PpcRegCtr8
  toEnum 207 = PpcRegLr8
  toEnum 208 = PpcRegCr1eq
  toEnum 209 = PpcRegX2
  toEnum 210 = PpcRegEnding
  toEnum unmatched = error ("PpcReg.toEnum: Cannot match " ++ show unmatched)

{-# LINE 43 "src/Hapstone/Internal/Ppc.chs" #-}


-- | memory access operands
-- associated with 'Ppc64OpMem' operand type
data PpcOpMemStruct = PpcOpMemStruct 
    { base :: PpcReg -- ^ base register
    , disp :: Int32 -- ^ displacement/offset value
    } deriving (Show, Eq)

instance Storable PpcOpMemStruct where
    sizeOf _ = 8
{-# LINE 53 "src/Hapstone/Internal/Ppc.chs" #-}

    alignment _ = 4
{-# LINE 54 "src/Hapstone/Internal/Ppc.chs" #-}

    peek p = PpcOpMemStruct
        <$> ((toEnum . fromIntegral) <$> (\ptr -> do {C2HSImp.peekByteOff ptr 0 :: IO C2HSImp.CInt}) p)
        <*> (fromIntegral <$> (\ptr -> do {C2HSImp.peekByteOff ptr 4 :: IO C2HSImp.CInt}) p)
    poke p (PpcOpMemStruct b d) = do
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 0 (val :: C2HSImp.CInt)}) p (fromIntegral $ fromEnum b)
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 4 (val :: C2HSImp.CInt)}) p (fromIntegral d)

-- | CRX operands
-- associated with 'Ppc64OpCrx' operand type
data PpcOpCrxStruct = PpcOpCrxStruct
    { scale :: Word32
    , reg :: PpcReg
    , cond :: PpcBc
    } deriving (Show, Eq)

instance Storable PpcOpCrxStruct where
    sizeOf _ = 12
{-# LINE 71 "src/Hapstone/Internal/Ppc.chs" #-}

    alignment _ = 4
{-# LINE 72 "src/Hapstone/Internal/Ppc.chs" #-}

    peek p = PpcOpCrxStruct
        <$> (fromIntegral <$> (\ptr -> do {C2HSImp.peekByteOff ptr 0 :: IO C2HSImp.CUInt}) p)
        <*> ((toEnum . fromIntegral) <$> (\ptr -> do {C2HSImp.peekByteOff ptr 4 :: IO C2HSImp.CInt}) p)
        <*> ((toEnum . fromIntegral) <$> (\ptr -> do {C2HSImp.peekByteOff ptr 8 :: IO C2HSImp.CInt}) p)
    poke p (PpcOpCrxStruct s r c) = do
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 0 (val :: C2HSImp.CUInt)}) p (fromIntegral s)
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 4 (val :: C2HSImp.CInt)}) p (fromIntegral $ fromEnum r)
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 8 (val :: C2HSImp.CInt)}) p (fromIntegral $ fromEnum c)

-- | instruction operands
data CsPpcOp
    = Reg PpcReg -- ^ register value for 'PpcOpReg' operands
    | Imm Int32 -- ^ immediate value for 'PpcOpImm' operands
    | Mem PpcOpMemStruct -- ^ base/disp value for 'PpcOpMem' operands
    | Crx PpcOpCrxStruct -- ^ operand with condition register
    | Undefined -- ^ invalid operand value, for 'PpcOpInvalid' operand
    deriving (Show, Eq)

instance Storable CsPpcOp where
    sizeOf _ = 16
    alignment _ = 4
    peek p = do
        t <- fromIntegral <$> (\ptr -> do {C2HSImp.peekByteOff ptr 0 :: IO C2HSImp.CInt}) p
        let bP = plusPtr p 4
        case toEnum t of
          PpcOpReg -> (Reg . toEnum . fromIntegral) <$> (peek bP :: IO CInt)
          PpcOpImm -> Imm <$> peek bP
          PpcOpMem -> Mem <$> peek bP
          PpcOpCrx -> Crx <$> peek bP
          _ -> return Undefined
    poke p op = do
        let bP = plusPtr p 4
            setType = (\ptr val -> do {C2HSImp.pokeByteOff ptr 0 (val :: C2HSImp.CInt)}) p . fromIntegral . fromEnum
        case op of
          Reg r -> do
              poke bP (fromIntegral $ fromEnum r :: CInt)
              setType PpcOpReg
          Imm i -> do
              poke bP i
              setType PpcOpImm
          Mem m -> do
              poke bP m
              setType PpcOpMem
          Crx c -> do
              poke bP c
              setType PpcOpCrx
          _ -> setType PpcOpInvalid

-- | instruction datatype
data CsPpc = CsPpc 
    { bc :: PpcBc -- ^ branch code for branch instructions
    , bh :: PpcBh -- ^ branch hint for branch instructions
    , updateCr0 :: Bool -- ^ does this instruction update CR0?
    , operands :: [CsPpcOp] -- ^ operand list of this instruction, *MUST*
                            -- have <= 8 elements, else you'll get a runtime
                            -- error when you (implicitly) try to write it to
                            -- write it to memory via it's Storable instance
    } deriving (Show, Eq)

instance Storable CsPpc where
    sizeOf _ = 140
    alignment _ = 4
    peek p = CsPpc
        <$> ((toEnum . fromIntegral) <$> (\ptr -> do {C2HSImp.peekByteOff ptr 0 :: IO C2HSImp.CInt}) p)
        <*> ((toEnum . fromIntegral) <$> (\ptr -> do {C2HSImp.peekByteOff ptr 4 :: IO C2HSImp.CInt}) p)
        <*> (toBool <$> (peekByteOff p 8 :: IO Word8)) -- update_cr0
        <*> do num <- fromIntegral <$> (\ptr -> do {C2HSImp.peekByteOff ptr 9 :: IO C2HSImp.CUChar}) p
               let ptr = plusPtr p (16)
{-# LINE 140 "src/Hapstone/Internal/Ppc.chs" #-}

               peekArray num ptr
    poke p (CsPpc bc bh u o) = do
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 0 (val :: C2HSImp.CInt)}) p (fromIntegral $ fromEnum bc)
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 4 (val :: C2HSImp.CInt)}) p (fromIntegral $ fromEnum bh)
        pokeByteOff p 8 (fromBool u :: Word8) -- update_cr0
        (\ptr val -> do {C2HSImp.pokeByteOff ptr 9 (val :: C2HSImp.CUChar)}) p (fromIntegral $ length o)
        if length o > 8
           then error "operands overflew 8 elements"
           else pokeArray (plusPtr p (16)) o

-- | PPC instructions
data PpcInsn = PpcInsInvalid
             | PpcInsAdd
             | PpcInsAddc
             | PpcInsAdde
             | PpcInsAddi
             | PpcInsAddic
             | PpcInsAddis
             | PpcInsAddme
             | PpcInsAddze
             | PpcInsAnd
             | PpcInsAndc
             | PpcInsAndis
             | PpcInsAndi
             | PpcInsAttn
             | PpcInsB
             | PpcInsBa
             | PpcInsBc
             | PpcInsBcctr
             | PpcInsBcctrl
             | PpcInsBcl
             | PpcInsBclr
             | PpcInsBclrl
             | PpcInsBctr
             | PpcInsBctrl
             | PpcInsBct
             | PpcInsBdnz
             | PpcInsBdnza
             | PpcInsBdnzl
             | PpcInsBdnzla
             | PpcInsBdnzlr
             | PpcInsBdnzlrl
             | PpcInsBdz
             | PpcInsBdza
             | PpcInsBdzl
             | PpcInsBdzla
             | PpcInsBdzlr
             | PpcInsBdzlrl
             | PpcInsBl
             | PpcInsBla
             | PpcInsBlr
             | PpcInsBlrl
             | PpcInsBrinc
             | PpcInsCmpb
             | PpcInsCmpd
             | PpcInsCmpdi
             | PpcInsCmpld
             | PpcInsCmpldi
             | PpcInsCmplw
             | PpcInsCmplwi
             | PpcInsCmpw
             | PpcInsCmpwi
             | PpcInsCntlzd
             | PpcInsCntlzw
             | PpcInsCreqv
             | PpcInsCrxor
             | PpcInsCrand
             | PpcInsCrandc
             | PpcInsCrnand
             | PpcInsCrnor
             | PpcInsCror
             | PpcInsCrorc
             | PpcInsDcba
             | PpcInsDcbf
             | PpcInsDcbi
             | PpcInsDcbst
             | PpcInsDcbt
             | PpcInsDcbtst
             | PpcInsDcbz
             | PpcInsDcbzl
             | PpcInsDccci
             | PpcInsDivd
             | PpcInsDivdu
             | PpcInsDivw
             | PpcInsDivwu
             | PpcInsDss
             | PpcInsDssall
             | PpcInsDst
             | PpcInsDstst
             | PpcInsDststt
             | PpcInsDstt
             | PpcInsEqv
             | PpcInsEvabs
             | PpcInsEvaddiw
             | PpcInsEvaddsmiaaw
             | PpcInsEvaddssiaaw
             | PpcInsEvaddumiaaw
             | PpcInsEvaddusiaaw
             | PpcInsEvaddw
             | PpcInsEvand
             | PpcInsEvandc
             | PpcInsEvcmpeq
             | PpcInsEvcmpgts
             | PpcInsEvcmpgtu
             | PpcInsEvcmplts
             | PpcInsEvcmpltu
             | PpcInsEvcntlsw
             | PpcInsEvcntlzw
             | PpcInsEvdivws
             | PpcInsEvdivwu
             | PpcInsEveqv
             | PpcInsEvextsb
             | PpcInsEvextsh
             | PpcInsEvldd
             | PpcInsEvlddx
             | PpcInsEvldh
             | PpcInsEvldhx
             | PpcInsEvldw
             | PpcInsEvldwx
             | PpcInsEvlhhesplat
             | PpcInsEvlhhesplatx
             | PpcInsEvlhhossplat
             | PpcInsEvlhhossplatx
             | PpcInsEvlhhousplat
             | PpcInsEvlhhousplatx
             | PpcInsEvlwhe
             | PpcInsEvlwhex
             | PpcInsEvlwhos
             | PpcInsEvlwhosx
             | PpcInsEvlwhou
             | PpcInsEvlwhoux
             | PpcInsEvlwhsplat
             | PpcInsEvlwhsplatx
             | PpcInsEvlwwsplat
             | PpcInsEvlwwsplatx
             | PpcInsEvmergehi
             | PpcInsEvmergehilo
             | PpcInsEvmergelo
             | PpcInsEvmergelohi
             | PpcInsEvmhegsmfaa
             | PpcInsEvmhegsmfan
             | PpcInsEvmhegsmiaa
             | PpcInsEvmhegsmian
             | PpcInsEvmhegumiaa
             | PpcInsEvmhegumian
             | PpcInsEvmhesmf
             | PpcInsEvmhesmfa
             | PpcInsEvmhesmfaaw
             | PpcInsEvmhesmfanw
             | PpcInsEvmhesmi
             | PpcInsEvmhesmia
             | PpcInsEvmhesmiaaw
             | PpcInsEvmhesmianw
             | PpcInsEvmhessf
             | PpcInsEvmhessfa
             | PpcInsEvmhessfaaw
             | PpcInsEvmhessfanw
             | PpcInsEvmhessiaaw
             | PpcInsEvmhessianw
             | PpcInsEvmheumi
             | PpcInsEvmheumia
             | PpcInsEvmheumiaaw
             | PpcInsEvmheumianw
             | PpcInsEvmheusiaaw
             | PpcInsEvmheusianw
             | PpcInsEvmhogsmfaa
             | PpcInsEvmhogsmfan
             | PpcInsEvmhogsmiaa
             | PpcInsEvmhogsmian
             | PpcInsEvmhogumiaa
             | PpcInsEvmhogumian
             | PpcInsEvmhosmf
             | PpcInsEvmhosmfa
             | PpcInsEvmhosmfaaw
             | PpcInsEvmhosmfanw
             | PpcInsEvmhosmi
             | PpcInsEvmhosmia
             | PpcInsEvmhosmiaaw
             | PpcInsEvmhosmianw
             | PpcInsEvmhossf
             | PpcInsEvmhossfa
             | PpcInsEvmhossfaaw
             | PpcInsEvmhossfanw
             | PpcInsEvmhossiaaw
             | PpcInsEvmhossianw
             | PpcInsEvmhoumi
             | PpcInsEvmhoumia
             | PpcInsEvmhoumiaaw
             | PpcInsEvmhoumianw
             | PpcInsEvmhousiaaw
             | PpcInsEvmhousianw
             | PpcInsEvmra
             | PpcInsEvmwhsmf
             | PpcInsEvmwhsmfa
             | PpcInsEvmwhsmi
             | PpcInsEvmwhsmia
             | PpcInsEvmwhssf
             | PpcInsEvmwhssfa
             | PpcInsEvmwhumi
             | PpcInsEvmwhumia
             | PpcInsEvmwlsmiaaw
             | PpcInsEvmwlsmianw
             | PpcInsEvmwlssiaaw
             | PpcInsEvmwlssianw
             | PpcInsEvmwlumi
             | PpcInsEvmwlumia
             | PpcInsEvmwlumiaaw
             | PpcInsEvmwlumianw
             | PpcInsEvmwlusiaaw
             | PpcInsEvmwlusianw
             | PpcInsEvmwsmf
             | PpcInsEvmwsmfa
             | PpcInsEvmwsmfaa
             | PpcInsEvmwsmfan
             | PpcInsEvmwsmi
             | PpcInsEvmwsmia
             | PpcInsEvmwsmiaa
             | PpcInsEvmwsmian
             | PpcInsEvmwssf
             | PpcInsEvmwssfa
             | PpcInsEvmwssfaa
             | PpcInsEvmwssfan
             | PpcInsEvmwumi
             | PpcInsEvmwumia
             | PpcInsEvmwumiaa
             | PpcInsEvmwumian
             | PpcInsEvnand
             | PpcInsEvneg
             | PpcInsEvnor
             | PpcInsEvor
             | PpcInsEvorc
             | PpcInsEvrlw
             | PpcInsEvrlwi
             | PpcInsEvrndw
             | PpcInsEvslw
             | PpcInsEvslwi
             | PpcInsEvsplatfi
             | PpcInsEvsplati
             | PpcInsEvsrwis
             | PpcInsEvsrwiu
             | PpcInsEvsrws
             | PpcInsEvsrwu
             | PpcInsEvstdd
             | PpcInsEvstddx
             | PpcInsEvstdh
             | PpcInsEvstdhx
             | PpcInsEvstdw
             | PpcInsEvstdwx
             | PpcInsEvstwhe
             | PpcInsEvstwhex
             | PpcInsEvstwho
             | PpcInsEvstwhox
             | PpcInsEvstwwe
             | PpcInsEvstwwex
             | PpcInsEvstwwo
             | PpcInsEvstwwox
             | PpcInsEvsubfsmiaaw
             | PpcInsEvsubfssiaaw
             | PpcInsEvsubfumiaaw
             | PpcInsEvsubfusiaaw
             | PpcInsEvsubfw
             | PpcInsEvsubifw
             | PpcInsEvxor
             | PpcInsExtsb
             | PpcInsExtsh
             | PpcInsExtsw
             | PpcInsEieio
             | PpcInsFabs
             | PpcInsFadd
             | PpcInsFadds
             | PpcInsFcfid
             | PpcInsFcfids
             | PpcInsFcfidu
             | PpcInsFcfidus
             | PpcInsFcmpu
             | PpcInsFcpsgn
             | PpcInsFctid
             | PpcInsFctiduz
             | PpcInsFctidz
             | PpcInsFctiw
             | PpcInsFctiwuz
             | PpcInsFctiwz
             | PpcInsFdiv
             | PpcInsFdivs
             | PpcInsFmadd
             | PpcInsFmadds
             | PpcInsFmr
             | PpcInsFmsub
             | PpcInsFmsubs
             | PpcInsFmul
             | PpcInsFmuls
             | PpcInsFnabs
             | PpcInsFneg
             | PpcInsFnmadd
             | PpcInsFnmadds
             | PpcInsFnmsub
             | PpcInsFnmsubs
             | PpcInsFre
             | PpcInsFres
             | PpcInsFrim
             | PpcInsFrin
             | PpcInsFrip
             | PpcInsFriz
             | PpcInsFrsp
             | PpcInsFrsqrte
             | PpcInsFrsqrtes
             | PpcInsFsel
             | PpcInsFsqrt
             | PpcInsFsqrts
             | PpcInsFsub
             | PpcInsFsubs
             | PpcInsIcbi
             | PpcInsIcbt
             | PpcInsIccci
             | PpcInsIsel
             | PpcInsIsync
             | PpcInsLa
             | PpcInsLbz
             | PpcInsLbzcix
             | PpcInsLbzu
             | PpcInsLbzux
             | PpcInsLbzx
             | PpcInsLd
             | PpcInsLdarx
             | PpcInsLdbrx
             | PpcInsLdcix
             | PpcInsLdu
             | PpcInsLdux
             | PpcInsLdx
             | PpcInsLfd
             | PpcInsLfdu
             | PpcInsLfdux
             | PpcInsLfdx
             | PpcInsLfiwax
             | PpcInsLfiwzx
             | PpcInsLfs
             | PpcInsLfsu
             | PpcInsLfsux
             | PpcInsLfsx
             | PpcInsLha
             | PpcInsLhau
             | PpcInsLhaux
             | PpcInsLhax
             | PpcInsLhbrx
             | PpcInsLhz
             | PpcInsLhzcix
             | PpcInsLhzu
             | PpcInsLhzux
             | PpcInsLhzx
             | PpcInsLi
             | PpcInsLis
             | PpcInsLmw
             | PpcInsLswi
             | PpcInsLvebx
             | PpcInsLvehx
             | PpcInsLvewx
             | PpcInsLvsl
             | PpcInsLvsr
             | PpcInsLvx
             | PpcInsLvxl
             | PpcInsLwa
             | PpcInsLwarx
             | PpcInsLwaux
             | PpcInsLwax
             | PpcInsLwbrx
             | PpcInsLwz
             | PpcInsLwzcix
             | PpcInsLwzu
             | PpcInsLwzux
             | PpcInsLwzx
             | PpcInsLxsdx
             | PpcInsLxvd2x
             | PpcInsLxvdsx
             | PpcInsLxvw4x
             | PpcInsMbar
             | PpcInsMcrf
             | PpcInsMcrfs
             | PpcInsMfcr
             | PpcInsMfctr
             | PpcInsMfdcr
             | PpcInsMffs
             | PpcInsMflr
             | PpcInsMfmsr
             | PpcInsMfocrf
             | PpcInsMfspr
             | PpcInsMfsr
             | PpcInsMfsrin
             | PpcInsMftb
             | PpcInsMfvscr
             | PpcInsMsync
             | PpcInsMtcrf
             | PpcInsMtctr
             | PpcInsMtdcr
             | PpcInsMtfsb0
             | PpcInsMtfsb1
             | PpcInsMtfsf
             | PpcInsMtfsfi
             | PpcInsMtlr
             | PpcInsMtmsr
             | PpcInsMtmsrd
             | PpcInsMtocrf
             | PpcInsMtspr
             | PpcInsMtsr
             | PpcInsMtsrin
             | PpcInsMtvscr
             | PpcInsMulhd
             | PpcInsMulhdu
             | PpcInsMulhw
             | PpcInsMulhwu
             | PpcInsMulld
             | PpcInsMulli
             | PpcInsMullw
             | PpcInsNand
             | PpcInsNeg
             | PpcInsNop
             | PpcInsOri
             | PpcInsNor
             | PpcInsOr
             | PpcInsOrc
             | PpcInsOris
             | PpcInsPopcntd
             | PpcInsPopcntw
             | PpcInsQvaligni
             | PpcInsQvesplati
             | PpcInsQvfabs
             | PpcInsQvfadd
             | PpcInsQvfadds
             | PpcInsQvfcfid
             | PpcInsQvfcfids
             | PpcInsQvfcfidu
             | PpcInsQvfcfidus
             | PpcInsQvfcmpeq
             | PpcInsQvfcmpgt
             | PpcInsQvfcmplt
             | PpcInsQvfcpsgn
             | PpcInsQvfctid
             | PpcInsQvfctidu
             | PpcInsQvfctiduz
             | PpcInsQvfctidz
             | PpcInsQvfctiw
             | PpcInsQvfctiwu
             | PpcInsQvfctiwuz
             | PpcInsQvfctiwz
             | PpcInsQvflogical
             | PpcInsQvfmadd
             | PpcInsQvfmadds
             | PpcInsQvfmr
             | PpcInsQvfmsub
             | PpcInsQvfmsubs
             | PpcInsQvfmul
             | PpcInsQvfmuls
             | PpcInsQvfnabs
             | PpcInsQvfneg
             | PpcInsQvfnmadd
             | PpcInsQvfnmadds
             | PpcInsQvfnmsub
             | PpcInsQvfnmsubs
             | PpcInsQvfperm
             | PpcInsQvfre
             | PpcInsQvfres
             | PpcInsQvfrim
             | PpcInsQvfrin
             | PpcInsQvfrip
             | PpcInsQvfriz
             | PpcInsQvfrsp
             | PpcInsQvfrsqrte
             | PpcInsQvfrsqrtes
             | PpcInsQvfsel
             | PpcInsQvfsub
             | PpcInsQvfsubs
             | PpcInsQvftstnan
             | PpcInsQvfxmadd
             | PpcInsQvfxmadds
             | PpcInsQvfxmul
             | PpcInsQvfxmuls
             | PpcInsQvfxxcpnmadd
             | PpcInsQvfxxcpnmadds
             | PpcInsQvfxxmadd
             | PpcInsQvfxxmadds
             | PpcInsQvfxxnpmadd
             | PpcInsQvfxxnpmadds
             | PpcInsQvgpci
             | PpcInsQvlfcdux
             | PpcInsQvlfcduxa
             | PpcInsQvlfcdx
             | PpcInsQvlfcdxa
             | PpcInsQvlfcsux
             | PpcInsQvlfcsuxa
             | PpcInsQvlfcsx
             | PpcInsQvlfcsxa
             | PpcInsQvlfdux
             | PpcInsQvlfduxa
             | PpcInsQvlfdx
             | PpcInsQvlfdxa
             | PpcInsQvlfiwax
             | PpcInsQvlfiwaxa
             | PpcInsQvlfiwzx
             | PpcInsQvlfiwzxa
             | PpcInsQvlfsux
             | PpcInsQvlfsuxa
             | PpcInsQvlfsx
             | PpcInsQvlfsxa
             | PpcInsQvlpcldx
             | PpcInsQvlpclsx
             | PpcInsQvlpcrdx
             | PpcInsQvlpcrsx
             | PpcInsQvstfcdux
             | PpcInsQvstfcduxa
             | PpcInsQvstfcduxi
             | PpcInsQvstfcduxia
             | PpcInsQvstfcdx
             | PpcInsQvstfcdxa
             | PpcInsQvstfcdxi
             | PpcInsQvstfcdxia
             | PpcInsQvstfcsux
             | PpcInsQvstfcsuxa
             | PpcInsQvstfcsuxi
             | PpcInsQvstfcsuxia
             | PpcInsQvstfcsx
             | PpcInsQvstfcsxa
             | PpcInsQvstfcsxi
             | PpcInsQvstfcsxia
             | PpcInsQvstfdux
             | PpcInsQvstfduxa
             | PpcInsQvstfduxi
             | PpcInsQvstfduxia
             | PpcInsQvstfdx
             | PpcInsQvstfdxa
             | PpcInsQvstfdxi
             | PpcInsQvstfdxia
             | PpcInsQvstfiwx
             | PpcInsQvstfiwxa
             | PpcInsQvstfsux
             | PpcInsQvstfsuxa
             | PpcInsQvstfsuxi
             | PpcInsQvstfsuxia
             | PpcInsQvstfsx
             | PpcInsQvstfsxa
             | PpcInsQvstfsxi
             | PpcInsQvstfsxia
             | PpcInsRfci
             | PpcInsRfdi
             | PpcInsRfi
             | PpcInsRfid
             | PpcInsRfmci
             | PpcInsRldcl
             | PpcInsRldcr
             | PpcInsRldic
             | PpcInsRldicl
             | PpcInsRldicr
             | PpcInsRldimi
             | PpcInsRlwimi
             | PpcInsRlwinm
             | PpcInsRlwnm
             | PpcInsSc
             | PpcInsSlbia
             | PpcInsSlbie
             | PpcInsSlbmfee
             | PpcInsSlbmte
             | PpcInsSld
             | PpcInsSlw
             | PpcInsSrad
             | PpcInsSradi
             | PpcInsSraw
             | PpcInsSrawi
             | PpcInsSrd
             | PpcInsSrw
             | PpcInsStb
             | PpcInsStbcix
             | PpcInsStbu
             | PpcInsStbux
             | PpcInsStbx
             | PpcInsStd
             | PpcInsStdbrx
             | PpcInsStdcix
             | PpcInsStdcx
             | PpcInsStdu
             | PpcInsStdux
             | PpcInsStdx
             | PpcInsStfd
             | PpcInsStfdu
             | PpcInsStfdux
             | PpcInsStfdx
             | PpcInsStfiwx
             | PpcInsStfs
             | PpcInsStfsu
             | PpcInsStfsux
             | PpcInsStfsx
             | PpcInsSth
             | PpcInsSthbrx
             | PpcInsSthcix
             | PpcInsSthu
             | PpcInsSthux
             | PpcInsSthx
             | PpcInsStmw
             | PpcInsStswi
             | PpcInsStvebx
             | PpcInsStvehx
             | PpcInsStvewx
             | PpcInsStvx
             | PpcInsStvxl
             | PpcInsStw
             | PpcInsStwbrx
             | PpcInsStwcix
             | PpcInsStwcx
             | PpcInsStwu
             | PpcInsStwux
             | PpcInsStwx
             | PpcInsStxsdx
             | PpcInsStxvd2x
             | PpcInsStxvw4x
             | PpcInsSubf
             | PpcInsSubfc
             | PpcInsSubfe
             | PpcInsSubfic
             | PpcInsSubfme
             | PpcInsSubfze
             | PpcInsSync
             | PpcInsTd
             | PpcInsTdi
             | PpcInsTlbia
             | PpcInsTlbie
             | PpcInsTlbiel
             | PpcInsTlbivax
             | PpcInsTlbld
             | PpcInsTlbli
             | PpcInsTlbre
             | PpcInsTlbsx
             | PpcInsTlbsync
             | PpcInsTlbwe
             | PpcInsTrap
             | PpcInsTw
             | PpcInsTwi
             | PpcInsVaddcuw
             | PpcInsVaddfp
             | PpcInsVaddsbs
             | PpcInsVaddshs
             | PpcInsVaddsws
             | PpcInsVaddubm
             | PpcInsVaddubs
             | PpcInsVaddudm
             | PpcInsVadduhm
             | PpcInsVadduhs
             | PpcInsVadduwm
             | PpcInsVadduws
             | PpcInsVand
             | PpcInsVandc
             | PpcInsVavgsb
             | PpcInsVavgsh
             | PpcInsVavgsw
             | PpcInsVavgub
             | PpcInsVavguh
             | PpcInsVavguw
             | PpcInsVcfsx
             | PpcInsVcfux
             | PpcInsVclzb
             | PpcInsVclzd
             | PpcInsVclzh
             | PpcInsVclzw
             | PpcInsVcmpbfp
             | PpcInsVcmpeqfp
             | PpcInsVcmpequb
             | PpcInsVcmpequd
             | PpcInsVcmpequh
             | PpcInsVcmpequw
             | PpcInsVcmpgefp
             | PpcInsVcmpgtfp
             | PpcInsVcmpgtsb
             | PpcInsVcmpgtsd
             | PpcInsVcmpgtsh
             | PpcInsVcmpgtsw
             | PpcInsVcmpgtub
             | PpcInsVcmpgtud
             | PpcInsVcmpgtuh
             | PpcInsVcmpgtuw
             | PpcInsVctsxs
             | PpcInsVctuxs
             | PpcInsVeqv
             | PpcInsVexptefp
             | PpcInsVlogefp
             | PpcInsVmaddfp
             | PpcInsVmaxfp
             | PpcInsVmaxsb
             | PpcInsVmaxsd
             | PpcInsVmaxsh
             | PpcInsVmaxsw
             | PpcInsVmaxub
             | PpcInsVmaxud
             | PpcInsVmaxuh
             | PpcInsVmaxuw
             | PpcInsVmhaddshs
             | PpcInsVmhraddshs
             | PpcInsVminud
             | PpcInsVminfp
             | PpcInsVminsb
             | PpcInsVminsd
             | PpcInsVminsh
             | PpcInsVminsw
             | PpcInsVminub
             | PpcInsVminuh
             | PpcInsVminuw
             | PpcInsVmladduhm
             | PpcInsVmrghb
             | PpcInsVmrghh
             | PpcInsVmrghw
             | PpcInsVmrglb
             | PpcInsVmrglh
             | PpcInsVmrglw
             | PpcInsVmsummbm
             | PpcInsVmsumshm
             | PpcInsVmsumshs
             | PpcInsVmsumubm
             | PpcInsVmsumuhm
             | PpcInsVmsumuhs
             | PpcInsVmulesb
             | PpcInsVmulesh
             | PpcInsVmulesw
             | PpcInsVmuleub
             | PpcInsVmuleuh
             | PpcInsVmuleuw
             | PpcInsVmulosb
             | PpcInsVmulosh
             | PpcInsVmulosw
             | PpcInsVmuloub
             | PpcInsVmulouh
             | PpcInsVmulouw
             | PpcInsVmuluwm
             | PpcInsVnand
             | PpcInsVnmsubfp
             | PpcInsVnor
             | PpcInsVor
             | PpcInsVorc
             | PpcInsVperm
             | PpcInsVpkpx
             | PpcInsVpkshss
             | PpcInsVpkshus
             | PpcInsVpkswss
             | PpcInsVpkswus
             | PpcInsVpkuhum
             | PpcInsVpkuhus
             | PpcInsVpkuwum
             | PpcInsVpkuwus
             | PpcInsVpopcntb
             | PpcInsVpopcntd
             | PpcInsVpopcnth
             | PpcInsVpopcntw
             | PpcInsVrefp
             | PpcInsVrfim
             | PpcInsVrfin
             | PpcInsVrfip
             | PpcInsVrfiz
             | PpcInsVrlb
             | PpcInsVrld
             | PpcInsVrlh
             | PpcInsVrlw
             | PpcInsVrsqrtefp
             | PpcInsVsel
             | PpcInsVsl
             | PpcInsVslb
             | PpcInsVsld
             | PpcInsVsldoi
             | PpcInsVslh
             | PpcInsVslo
             | PpcInsVslw
             | PpcInsVspltb
             | PpcInsVsplth
             | PpcInsVspltisb
             | PpcInsVspltish
             | PpcInsVspltisw
             | PpcInsVspltw
             | PpcInsVsr
             | PpcInsVsrab
             | PpcInsVsrad
             | PpcInsVsrah
             | PpcInsVsraw
             | PpcInsVsrb
             | PpcInsVsrd
             | PpcInsVsrh
             | PpcInsVsro
             | PpcInsVsrw
             | PpcInsVsubcuw
             | PpcInsVsubfp
             | PpcInsVsubsbs
             | PpcInsVsubshs
             | PpcInsVsubsws
             | PpcInsVsububm
             | PpcInsVsububs
             | PpcInsVsubudm
             | PpcInsVsubuhm
             | PpcInsVsubuhs
             | PpcInsVsubuwm
             | PpcInsVsubuws
             | PpcInsVsum2sws
             | PpcInsVsum4sbs
             | PpcInsVsum4shs
             | PpcInsVsum4ubs
             | PpcInsVsumsws
             | PpcInsVupkhpx
             | PpcInsVupkhsb
             | PpcInsVupkhsh
             | PpcInsVupklpx
             | PpcInsVupklsb
             | PpcInsVupklsh
             | PpcInsVxor
             | PpcInsWait
             | PpcInsWrtee
             | PpcInsWrteei
             | PpcInsXor
             | PpcInsXori
             | PpcInsXoris
             | PpcInsXsabsdp
             | PpcInsXsadddp
             | PpcInsXscmpodp
             | PpcInsXscmpudp
             | PpcInsXscpsgndp
             | PpcInsXscvdpsp
             | PpcInsXscvdpsxds
             | PpcInsXscvdpsxws
             | PpcInsXscvdpuxds
             | PpcInsXscvdpuxws
             | PpcInsXscvspdp
             | PpcInsXscvsxddp
             | PpcInsXscvuxddp
             | PpcInsXsdivdp
             | PpcInsXsmaddadp
             | PpcInsXsmaddmdp
             | PpcInsXsmaxdp
             | PpcInsXsmindp
             | PpcInsXsmsubadp
             | PpcInsXsmsubmdp
             | PpcInsXsmuldp
             | PpcInsXsnabsdp
             | PpcInsXsnegdp
             | PpcInsXsnmaddadp
             | PpcInsXsnmaddmdp
             | PpcInsXsnmsubadp
             | PpcInsXsnmsubmdp
             | PpcInsXsrdpi
             | PpcInsXsrdpic
             | PpcInsXsrdpim
             | PpcInsXsrdpip
             | PpcInsXsrdpiz
             | PpcInsXsredp
             | PpcInsXsrsqrtedp
             | PpcInsXssqrtdp
             | PpcInsXssubdp
             | PpcInsXstdivdp
             | PpcInsXstsqrtdp
             | PpcInsXvabsdp
             | PpcInsXvabssp
             | PpcInsXvadddp
             | PpcInsXvaddsp
             | PpcInsXvcmpeqdp
             | PpcInsXvcmpeqsp
             | PpcInsXvcmpgedp
             | PpcInsXvcmpgesp
             | PpcInsXvcmpgtdp
             | PpcInsXvcmpgtsp
             | PpcInsXvcpsgndp
             | PpcInsXvcpsgnsp
             | PpcInsXvcvdpsp
             | PpcInsXvcvdpsxds
             | PpcInsXvcvdpsxws
             | PpcInsXvcvdpuxds
             | PpcInsXvcvdpuxws
             | PpcInsXvcvspdp
             | PpcInsXvcvspsxds
             | PpcInsXvcvspsxws
             | PpcInsXvcvspuxds
             | PpcInsXvcvspuxws
             | PpcInsXvcvsxddp
             | PpcInsXvcvsxdsp
             | PpcInsXvcvsxwdp
             | PpcInsXvcvsxwsp
             | PpcInsXvcvuxddp
             | PpcInsXvcvuxdsp
             | PpcInsXvcvuxwdp
             | PpcInsXvcvuxwsp
             | PpcInsXvdivdp
             | PpcInsXvdivsp
             | PpcInsXvmaddadp
             | PpcInsXvmaddasp
             | PpcInsXvmaddmdp
             | PpcInsXvmaddmsp
             | PpcInsXvmaxdp
             | PpcInsXvmaxsp
             | PpcInsXvmindp
             | PpcInsXvminsp
             | PpcInsXvmsubadp
             | PpcInsXvmsubasp
             | PpcInsXvmsubmdp
             | PpcInsXvmsubmsp
             | PpcInsXvmuldp
             | PpcInsXvmulsp
             | PpcInsXvnabsdp
             | PpcInsXvnabssp
             | PpcInsXvnegdp
             | PpcInsXvnegsp
             | PpcInsXvnmaddadp
             | PpcInsXvnmaddasp
             | PpcInsXvnmaddmdp
             | PpcInsXvnmaddmsp
             | PpcInsXvnmsubadp
             | PpcInsXvnmsubasp
             | PpcInsXvnmsubmdp
             | PpcInsXvnmsubmsp
             | PpcInsXvrdpi
             | PpcInsXvrdpic
             | PpcInsXvrdpim
             | PpcInsXvrdpip
             | PpcInsXvrdpiz
             | PpcInsXvredp
             | PpcInsXvresp
             | PpcInsXvrspi
             | PpcInsXvrspic
             | PpcInsXvrspim
             | PpcInsXvrspip
             | PpcInsXvrspiz
             | PpcInsXvrsqrtedp
             | PpcInsXvrsqrtesp
             | PpcInsXvsqrtdp
             | PpcInsXvsqrtsp
             | PpcInsXvsubdp
             | PpcInsXvsubsp
             | PpcInsXvtdivdp
             | PpcInsXvtdivsp
             | PpcInsXvtsqrtdp
             | PpcInsXvtsqrtsp
             | PpcInsXxland
             | PpcInsXxlandc
             | PpcInsXxleqv
             | PpcInsXxlnand
             | PpcInsXxlnor
             | PpcInsXxlor
             | PpcInsXxlorc
             | PpcInsXxlxor
             | PpcInsXxmrghw
             | PpcInsXxmrglw
             | PpcInsXxpermdi
             | PpcInsXxsel
             | PpcInsXxsldwi
             | PpcInsXxspltw
             | PpcInsBca
             | PpcInsBcla
             | PpcInsSlwi
             | PpcInsSrwi
             | PpcInsSldi
             | PpcInsBta
             | PpcInsCrset
             | PpcInsCrnot
             | PpcInsCrmove
             | PpcInsCrclr
             | PpcInsMfbr0
             | PpcInsMfbr1
             | PpcInsMfbr2
             | PpcInsMfbr3
             | PpcInsMfbr4
             | PpcInsMfbr5
             | PpcInsMfbr6
             | PpcInsMfbr7
             | PpcInsMfxer
             | PpcInsMfrtcu
             | PpcInsMfrtcl
             | PpcInsMfdscr
             | PpcInsMfdsisr
             | PpcInsMfdar
             | PpcInsMfsrr2
             | PpcInsMfsrr3
             | PpcInsMfcfar
             | PpcInsMfamr
             | PpcInsMfpid
             | PpcInsMftblo
             | PpcInsMftbhi
             | PpcInsMfdbatu
             | PpcInsMfdbatl
             | PpcInsMfibatu
             | PpcInsMfibatl
             | PpcInsMfdccr
             | PpcInsMficcr
             | PpcInsMfdear
             | PpcInsMfesr
             | PpcInsMfspefscr
             | PpcInsMftcr
             | PpcInsMfasr
             | PpcInsMfpvr
             | PpcInsMftbu
             | PpcInsMtcr
             | PpcInsMtbr0
             | PpcInsMtbr1
             | PpcInsMtbr2
             | PpcInsMtbr3
             | PpcInsMtbr4
             | PpcInsMtbr5
             | PpcInsMtbr6
             | PpcInsMtbr7
             | PpcInsMtxer
             | PpcInsMtdscr
             | PpcInsMtdsisr
             | PpcInsMtdar
             | PpcInsMtsrr2
             | PpcInsMtsrr3
             | PpcInsMtcfar
             | PpcInsMtamr
             | PpcInsMtpid
             | PpcInsMttbl
             | PpcInsMttbu
             | PpcInsMttblo
             | PpcInsMttbhi
             | PpcInsMtdbatu
             | PpcInsMtdbatl
             | PpcInsMtibatu
             | PpcInsMtibatl
             | PpcInsMtdccr
             | PpcInsMticcr
             | PpcInsMtdear
             | PpcInsMtesr
             | PpcInsMtspefscr
             | PpcInsMttcr
             | PpcInsNot
             | PpcInsMr
             | PpcInsRotld
             | PpcInsRotldi
             | PpcInsClrldi
             | PpcInsRotlwi
             | PpcInsClrlwi
             | PpcInsRotlw
             | PpcInsSub
             | PpcInsSubc
             | PpcInsLwsync
             | PpcInsPtesync
             | PpcInsTdlt
             | PpcInsTdeq
             | PpcInsTdgt
             | PpcInsTdne
             | PpcInsTdllt
             | PpcInsTdlgt
             | PpcInsTdu
             | PpcInsTdlti
             | PpcInsTdeqi
             | PpcInsTdgti
             | PpcInsTdnei
             | PpcInsTdllti
             | PpcInsTdlgti
             | PpcInsTdui
             | PpcInsTlbrehi
             | PpcInsTlbrelo
             | PpcInsTlbwehi
             | PpcInsTlbwelo
             | PpcInsTwlt
             | PpcInsTweq
             | PpcInsTwgt
             | PpcInsTwne
             | PpcInsTwllt
             | PpcInsTwlgt
             | PpcInsTwu
             | PpcInsTwlti
             | PpcInsTweqi
             | PpcInsTwgti
             | PpcInsTwnei
             | PpcInsTwllti
             | PpcInsTwlgti
             | PpcInsTwui
             | PpcInsWaitrsv
             | PpcInsWaitimpl
             | PpcInsXnop
             | PpcInsXvmovdp
             | PpcInsXvmovsp
             | PpcInsXxspltd
             | PpcInsXxmrghd
             | PpcInsXxmrgld
             | PpcInsXxswapd
             | PpcInsBt
             | PpcInsBf
             | PpcInsBdnzt
             | PpcInsBdnzf
             | PpcInsBdzf
             | PpcInsBdzt
             | PpcInsBfa
             | PpcInsBdnzta
             | PpcInsBdnzfa
             | PpcInsBdzta
             | PpcInsBdzfa
             | PpcInsBtctr
             | PpcInsBfctr
             | PpcInsBtctrl
             | PpcInsBfctrl
             | PpcInsBtl
             | PpcInsBfl
             | PpcInsBdnztl
             | PpcInsBdnzfl
             | PpcInsBdztl
             | PpcInsBdzfl
             | PpcInsBtla
             | PpcInsBfla
             | PpcInsBdnztla
             | PpcInsBdnzfla
             | PpcInsBdztla
             | PpcInsBdzfla
             | PpcInsBtlr
             | PpcInsBflr
             | PpcInsBdnztlr
             | PpcInsBdztlr
             | PpcInsBdzflr
             | PpcInsBtlrl
             | PpcInsBflrl
             | PpcInsBdnztlrl
             | PpcInsBdnzflrl
             | PpcInsBdztlrl
             | PpcInsBdzflrl
             | PpcInsQvfand
             | PpcInsQvfclr
             | PpcInsQvfandc
             | PpcInsQvfctfb
             | PpcInsQvfxor
             | PpcInsQvfor
             | PpcInsQvfnor
             | PpcInsQvfequ
             | PpcInsQvfnot
             | PpcInsQvforc
             | PpcInsQvfnand
             | PpcInsQvfset
             | PpcInsEnding
  deriving (Show,Eq,Bounded)
instance Enum PpcInsn where
  succ :: PpcInsn -> PpcInsn
succ PpcInsn
PpcInsInvalid = PpcInsn
PpcInsAdd
  succ PpcInsn
PpcInsAdd = PpcInsn
PpcInsAddc
  succ PpcInsn
PpcInsAddc = PpcInsn
PpcInsAdde
  succ PpcInsn
PpcInsAdde = PpcInsn
PpcInsAddi
  succ PpcInsn
PpcInsAddi = PpcInsn
PpcInsAddic
  succ PpcInsn
PpcInsAddic = PpcInsn
PpcInsAddis
  succ PpcInsn
PpcInsAddis = PpcInsn
PpcInsAddme
  succ PpcInsn
PpcInsAddme = PpcInsn
PpcInsAddze
  succ PpcInsn
PpcInsAddze = PpcInsn
PpcInsAnd
  succ PpcInsn
PpcInsAnd = PpcInsn
PpcInsAndc
  succ PpcInsn
PpcInsAndc = PpcInsn
PpcInsAndis
  succ PpcInsn
PpcInsAndis = PpcInsn
PpcInsAndi
  succ PpcInsn
PpcInsAndi = PpcInsn
PpcInsAttn
  succ PpcInsn
PpcInsAttn = PpcInsn
PpcInsB
  succ PpcInsn
PpcInsB = PpcInsn
PpcInsBa
  succ PpcInsn
PpcInsBa = PpcInsn
PpcInsBc
  succ PpcInsn
PpcInsBc = PpcInsn
PpcInsBcctr
  succ PpcInsn
PpcInsBcctr = PpcInsn
PpcInsBcctrl
  succ PpcInsn
PpcInsBcctrl = PpcInsn
PpcInsBcl
  succ PpcInsn
PpcInsBcl = PpcInsn
PpcInsBclr
  succ PpcInsn
PpcInsBclr = PpcInsn
PpcInsBclrl
  succ PpcInsn
PpcInsBclrl = PpcInsn
PpcInsBctr
  succ PpcInsn
PpcInsBctr = PpcInsn
PpcInsBctrl
  succ PpcInsn
PpcInsBctrl = PpcInsn
PpcInsBct
  succ PpcInsn
PpcInsBct = PpcInsn
PpcInsBdnz
  succ PpcInsn
PpcInsBdnz = PpcInsn
PpcInsBdnza
  succ PpcInsn
PpcInsBdnza = PpcInsn
PpcInsBdnzl
  succ PpcInsn
PpcInsBdnzl = PpcInsn
PpcInsBdnzla
  succ PpcInsn
PpcInsBdnzla = PpcInsn
PpcInsBdnzlr
  succ PpcInsn
PpcInsBdnzlr = PpcInsn
PpcInsBdnzlrl
  succ PpcInsn
PpcInsBdnzlrl = PpcInsn
PpcInsBdz
  succ PpcInsn
PpcInsBdz = PpcInsn
PpcInsBdza
  succ PpcInsn
PpcInsBdza = PpcInsn
PpcInsBdzl
  succ PpcInsn
PpcInsBdzl = PpcInsn
PpcInsBdzla
  succ PpcInsn
PpcInsBdzla = PpcInsn
PpcInsBdzlr
  succ PpcInsn
PpcInsBdzlr = PpcInsn
PpcInsBdzlrl
  succ PpcInsn
PpcInsBdzlrl = PpcInsn
PpcInsBl
  succ PpcInsn
PpcInsBl = PpcInsn
PpcInsBla
  succ PpcInsn
PpcInsBla = PpcInsn
PpcInsBlr
  succ PpcInsn
PpcInsBlr = PpcInsn
PpcInsBlrl
  succ PpcInsn
PpcInsBlrl = PpcInsn
PpcInsBrinc
  succ PpcInsn
PpcInsBrinc = PpcInsn
PpcInsCmpb
  succ PpcInsn
PpcInsCmpb = PpcInsn
PpcInsCmpd
  succ PpcInsn
PpcInsCmpd = PpcInsn
PpcInsCmpdi
  succ PpcInsn
PpcInsCmpdi = PpcInsn
PpcInsCmpld
  succ PpcInsn
PpcInsCmpld = PpcInsn
PpcInsCmpldi
  succ PpcInsn
PpcInsCmpldi = PpcInsn
PpcInsCmplw
  succ PpcInsn
PpcInsCmplw = PpcInsn
PpcInsCmplwi
  succ PpcInsn
PpcInsCmplwi = PpcInsn
PpcInsCmpw
  succ PpcInsn
PpcInsCmpw = PpcInsn
PpcInsCmpwi
  succ PpcInsn
PpcInsCmpwi = PpcInsn
PpcInsCntlzd
  succ PpcInsn
PpcInsCntlzd = PpcInsn
PpcInsCntlzw
  succ PpcInsn
PpcInsCntlzw = PpcInsn
PpcInsCreqv
  succ PpcInsn
PpcInsCreqv = PpcInsn
PpcInsCrxor
  succ PpcInsn
PpcInsCrxor = PpcInsn
PpcInsCrand
  succ PpcInsn
PpcInsCrand = PpcInsn
PpcInsCrandc
  succ PpcInsn
PpcInsCrandc = PpcInsn
PpcInsCrnand
  succ PpcInsn
PpcInsCrnand = PpcInsn
PpcInsCrnor
  succ PpcInsn
PpcInsCrnor = PpcInsn
PpcInsCror
  succ PpcInsn
PpcInsCror = PpcInsn
PpcInsCrorc
  succ PpcInsn
PpcInsCrorc = PpcInsn
PpcInsDcba
  succ PpcInsn
PpcInsDcba = PpcInsn
PpcInsDcbf
  succ PpcInsn
PpcInsDcbf = PpcInsn
PpcInsDcbi
  succ PpcInsn
PpcInsDcbi = PpcInsn
PpcInsDcbst
  succ PpcInsn
PpcInsDcbst = PpcInsn
PpcInsDcbt
  succ PpcInsn
PpcInsDcbt = PpcInsn
PpcInsDcbtst
  succ PpcInsn
PpcInsDcbtst = PpcInsn
PpcInsDcbz
  succ PpcInsn
PpcInsDcbz = PpcInsn
PpcInsDcbzl
  succ PpcInsn
PpcInsDcbzl = PpcInsn
PpcInsDccci
  succ PpcInsn
PpcInsDccci = PpcInsn
PpcInsDivd
  succ PpcInsn
PpcInsDivd = PpcInsn
PpcInsDivdu
  succ PpcInsn
PpcInsDivdu = PpcInsn
PpcInsDivw
  succ PpcInsn
PpcInsDivw = PpcInsn
PpcInsDivwu
  succ PpcInsn
PpcInsDivwu = PpcInsn
PpcInsDss
  succ PpcInsn
PpcInsDss = PpcInsn
PpcInsDssall
  succ PpcInsn
PpcInsDssall = PpcInsn
PpcInsDst
  succ PpcInsn
PpcInsDst = PpcInsn
PpcInsDstst
  succ PpcInsn
PpcInsDstst = PpcInsn
PpcInsDststt
  succ PpcInsn
PpcInsDststt = PpcInsn
PpcInsDstt
  succ PpcInsn
PpcInsDstt = PpcInsn
PpcInsEqv
  succ PpcInsn
PpcInsEqv = PpcInsn
PpcInsEvabs
  succ PpcInsn
PpcInsEvabs = PpcInsn
PpcInsEvaddiw
  succ PpcInsn
PpcInsEvaddiw = PpcInsn
PpcInsEvaddsmiaaw
  succ PpcInsn
PpcInsEvaddsmiaaw = PpcInsn
PpcInsEvaddssiaaw
  succ PpcInsn
PpcInsEvaddssiaaw = PpcInsn
PpcInsEvaddumiaaw
  succ PpcInsn
PpcInsEvaddumiaaw = PpcInsn
PpcInsEvaddusiaaw
  succ PpcInsn
PpcInsEvaddusiaaw = PpcInsn
PpcInsEvaddw
  succ PpcInsn
PpcInsEvaddw = PpcInsn
PpcInsEvand
  succ PpcInsn
PpcInsEvand = PpcInsn
PpcInsEvandc
  succ PpcInsn
PpcInsEvandc = PpcInsn
PpcInsEvcmpeq
  succ PpcInsn
PpcInsEvcmpeq = PpcInsn
PpcInsEvcmpgts
  succ PpcInsn
PpcInsEvcmpgts = PpcInsn
PpcInsEvcmpgtu
  succ PpcInsn
PpcInsEvcmpgtu = PpcInsn
PpcInsEvcmplts
  succ PpcInsn
PpcInsEvcmplts = PpcInsn
PpcInsEvcmpltu
  succ PpcInsn
PpcInsEvcmpltu = PpcInsn
PpcInsEvcntlsw
  succ PpcInsn
PpcInsEvcntlsw = PpcInsn
PpcInsEvcntlzw
  succ PpcInsn
PpcInsEvcntlzw = PpcInsn
PpcInsEvdivws
  succ PpcInsn
PpcInsEvdivws = PpcInsn
PpcInsEvdivwu
  succ PpcInsn
PpcInsEvdivwu = PpcInsn
PpcInsEveqv
  succ PpcInsn
PpcInsEveqv = PpcInsn
PpcInsEvextsb
  succ PpcInsn
PpcInsEvextsb = PpcInsn
PpcInsEvextsh
  succ PpcInsn
PpcInsEvextsh = PpcInsn
PpcInsEvldd
  succ PpcInsn
PpcInsEvldd = PpcInsn
PpcInsEvlddx
  succ PpcInsn
PpcInsEvlddx = PpcInsn
PpcInsEvldh
  succ PpcInsn
PpcInsEvldh = PpcInsn
PpcInsEvldhx
  succ PpcInsn
PpcInsEvldhx = PpcInsn
PpcInsEvldw
  succ PpcInsn
PpcInsEvldw = PpcInsn
PpcInsEvldwx
  succ PpcInsn
PpcInsEvldwx = PpcInsn
PpcInsEvlhhesplat
  succ PpcInsn
PpcInsEvlhhesplat = PpcInsn
PpcInsEvlhhesplatx
  succ PpcInsn
PpcInsEvlhhesplatx = PpcInsn
PpcInsEvlhhossplat
  succ PpcInsn
PpcInsEvlhhossplat = PpcInsn
PpcInsEvlhhossplatx
  succ PpcInsn
PpcInsEvlhhossplatx = PpcInsn
PpcInsEvlhhousplat
  succ PpcInsn
PpcInsEvlhhousplat = PpcInsn
PpcInsEvlhhousplatx
  succ PpcInsn
PpcInsEvlhhousplatx = PpcInsn
PpcInsEvlwhe
  succ PpcInsn
PpcInsEvlwhe = PpcInsn
PpcInsEvlwhex
  succ PpcInsn
PpcInsEvlwhex = PpcInsn
PpcInsEvlwhos
  succ PpcInsn
PpcInsEvlwhos = PpcInsn
PpcInsEvlwhosx
  succ PpcInsn
PpcInsEvlwhosx = PpcInsn
PpcInsEvlwhou
  succ PpcInsn
PpcInsEvlwhou = PpcInsn
PpcInsEvlwhoux
  succ PpcInsn
PpcInsEvlwhoux = PpcInsn
PpcInsEvlwhsplat
  succ PpcInsn
PpcInsEvlwhsplat = PpcInsn
PpcInsEvlwhsplatx
  succ PpcInsn
PpcInsEvlwhsplatx = PpcInsn
PpcInsEvlwwsplat
  succ PpcInsn
PpcInsEvlwwsplat = PpcInsn
PpcInsEvlwwsplatx
  succ PpcInsn
PpcInsEvlwwsplatx = PpcInsn
PpcInsEvmergehi
  succ PpcInsn
PpcInsEvmergehi = PpcInsn
PpcInsEvmergehilo
  succ PpcInsn
PpcInsEvmergehilo = PpcInsn
PpcInsEvmergelo
  succ PpcInsn
PpcInsEvmergelo = PpcInsn
PpcInsEvmergelohi
  succ PpcInsn
PpcInsEvmergelohi = PpcInsn
PpcInsEvmhegsmfaa
  succ PpcInsn
PpcInsEvmhegsmfaa = PpcInsn
PpcInsEvmhegsmfan
  succ PpcInsn
PpcInsEvmhegsmfan = PpcInsn
PpcInsEvmhegsmiaa
  succ PpcInsn
PpcInsEvmhegsmiaa = PpcInsn
PpcInsEvmhegsmian
  succ PpcInsn
PpcInsEvmhegsmian = PpcInsn
PpcInsEvmhegumiaa
  succ PpcInsn
PpcInsEvmhegumiaa = PpcInsn
PpcInsEvmhegumian
  succ PpcInsn
PpcInsEvmhegumian = PpcInsn
PpcInsEvmhesmf
  succ PpcInsn
PpcInsEvmhesmf = PpcInsn
PpcInsEvmhesmfa
  succ PpcInsn
PpcInsEvmhesmfa = PpcInsn
PpcInsEvmhesmfaaw
  succ PpcInsn
PpcInsEvmhesmfaaw = PpcInsn
PpcInsEvmhesmfanw
  succ PpcInsn
PpcInsEvmhesmfanw = PpcInsn
PpcInsEvmhesmi
  succ PpcInsn
PpcInsEvmhesmi = PpcInsn
PpcInsEvmhesmia
  succ PpcInsn
PpcInsEvmhesmia = PpcInsn
PpcInsEvmhesmiaaw
  succ PpcInsn
PpcInsEvmhesmiaaw = PpcInsn
PpcInsEvmhesmianw
  succ PpcInsn
PpcInsEvmhesmianw = PpcInsn
PpcInsEvmhessf
  succ PpcInsn
PpcInsEvmhessf = PpcInsn
PpcInsEvmhessfa
  succ PpcInsn
PpcInsEvmhessfa = PpcInsn
PpcInsEvmhessfaaw
  succ PpcInsn
PpcInsEvmhessfaaw = PpcInsn
PpcInsEvmhessfanw
  succ PpcInsn
PpcInsEvmhessfanw = PpcInsn
PpcInsEvmhessiaaw
  succ PpcInsn
PpcInsEvmhessiaaw = PpcInsn
PpcInsEvmhessianw
  succ PpcInsn
PpcInsEvmhessianw = PpcInsn
PpcInsEvmheumi
  succ PpcInsn
PpcInsEvmheumi = PpcInsn
PpcInsEvmheumia
  succ PpcInsn
PpcInsEvmheumia = PpcInsn
PpcInsEvmheumiaaw
  succ PpcInsn
PpcInsEvmheumiaaw = PpcInsn
PpcInsEvmheumianw
  succ PpcInsn
PpcInsEvmheumianw = PpcInsn
PpcInsEvmheusiaaw
  succ PpcInsn
PpcInsEvmheusiaaw = PpcInsn
PpcInsEvmheusianw
  succ PpcInsn
PpcInsEvmheusianw = PpcInsn
PpcInsEvmhogsmfaa
  succ PpcInsn
PpcInsEvmhogsmfaa = PpcInsn
PpcInsEvmhogsmfan
  succ PpcInsn
PpcInsEvmhogsmfan = PpcInsn
PpcInsEvmhogsmiaa
  succ PpcInsn
PpcInsEvmhogsmiaa = PpcInsn
PpcInsEvmhogsmian
  succ PpcInsn
PpcInsEvmhogsmian = PpcInsn
PpcInsEvmhogumiaa
  succ PpcInsn
PpcInsEvmhogumiaa = PpcInsn
PpcInsEvmhogumian
  succ PpcInsn
PpcInsEvmhogumian = PpcInsn
PpcInsEvmhosmf
  succ PpcInsn
PpcInsEvmhosmf = PpcInsn
PpcInsEvmhosmfa
  succ PpcInsn
PpcInsEvmhosmfa = PpcInsn
PpcInsEvmhosmfaaw
  succ PpcInsn
PpcInsEvmhosmfaaw = PpcInsn
PpcInsEvmhosmfanw
  succ PpcInsn
PpcInsEvmhosmfanw = PpcInsn
PpcInsEvmhosmi
  succ PpcInsn
PpcInsEvmhosmi = PpcInsn
PpcInsEvmhosmia
  succ PpcInsn
PpcInsEvmhosmia = PpcInsn
PpcInsEvmhosmiaaw
  succ PpcInsn
PpcInsEvmhosmiaaw = PpcInsn
PpcInsEvmhosmianw
  succ PpcInsn
PpcInsEvmhosmianw = PpcInsn
PpcInsEvmhossf
  succ PpcInsn
PpcInsEvmhossf = PpcInsn
PpcInsEvmhossfa
  succ PpcInsn
PpcInsEvmhossfa = PpcInsn
PpcInsEvmhossfaaw
  succ PpcInsn
PpcInsEvmhossfaaw = PpcInsn
PpcInsEvmhossfanw
  succ PpcInsn
PpcInsEvmhossfanw = PpcInsn
PpcInsEvmhossiaaw
  succ PpcInsn
PpcInsEvmhossiaaw = PpcInsn
PpcInsEvmhossianw
  succ PpcInsn
PpcInsEvmhossianw = PpcInsn
PpcInsEvmhoumi
  succ PpcInsn
PpcInsEvmhoumi = PpcInsn
PpcInsEvmhoumia
  succ PpcInsn
PpcInsEvmhoumia = PpcInsn
PpcInsEvmhoumiaaw
  succ PpcInsn
PpcInsEvmhoumiaaw = PpcInsn
PpcInsEvmhoumianw
  succ PpcInsn
PpcInsEvmhoumianw = PpcInsn
PpcInsEvmhousiaaw
  succ PpcInsn
PpcInsEvmhousiaaw = PpcInsn
PpcInsEvmhousianw
  succ PpcInsn
PpcInsEvmhousianw = PpcInsn
PpcInsEvmra
  succ PpcInsn
PpcInsEvmra = PpcInsn
PpcInsEvmwhsmf
  succ PpcInsn
PpcInsEvmwhsmf = PpcInsn
PpcInsEvmwhsmfa
  succ PpcInsn
PpcInsEvmwhsmfa = PpcInsn
PpcInsEvmwhsmi
  succ PpcInsn
PpcInsEvmwhsmi = PpcInsn
PpcInsEvmwhsmia
  succ PpcInsn
PpcInsEvmwhsmia = PpcInsn
PpcInsEvmwhssf
  succ PpcInsn
PpcInsEvmwhssf = PpcInsn
PpcInsEvmwhssfa
  succ PpcInsn
PpcInsEvmwhssfa = PpcInsn
PpcInsEvmwhumi
  succ PpcInsn
PpcInsEvmwhumi = PpcInsn
PpcInsEvmwhumia
  succ PpcInsn
PpcInsEvmwhumia = PpcInsn
PpcInsEvmwlsmiaaw
  succ PpcInsn
PpcInsEvmwlsmiaaw = PpcInsn
PpcInsEvmwlsmianw
  succ PpcInsn
PpcInsEvmwlsmianw = PpcInsn
PpcInsEvmwlssiaaw
  succ PpcInsn
PpcInsEvmwlssiaaw = PpcInsn
PpcInsEvmwlssianw
  succ PpcInsn
PpcInsEvmwlssianw = PpcInsn
PpcInsEvmwlumi
  succ PpcInsn
PpcInsEvmwlumi = PpcInsn
PpcInsEvmwlumia
  succ PpcInsn
PpcInsEvmwlumia = PpcInsn
PpcInsEvmwlumiaaw
  succ PpcInsn
PpcInsEvmwlumiaaw = PpcInsn
PpcInsEvmwlumianw
  succ PpcInsn
PpcInsEvmwlumianw = PpcInsn
PpcInsEvmwlusiaaw
  succ PpcInsn
PpcInsEvmwlusiaaw = PpcInsn
PpcInsEvmwlusianw
  succ PpcInsn
PpcInsEvmwlusianw = PpcInsn
PpcInsEvmwsmf
  succ PpcInsn
PpcInsEvmwsmf = PpcInsn
PpcInsEvmwsmfa
  succ PpcInsn
PpcInsEvmwsmfa = PpcInsn
PpcInsEvmwsmfaa
  succ PpcInsn
PpcInsEvmwsmfaa = PpcInsn
PpcInsEvmwsmfan
  succ PpcInsn
PpcInsEvmwsmfan = PpcInsn
PpcInsEvmwsmi
  succ PpcInsn
PpcInsEvmwsmi = PpcInsn
PpcInsEvmwsmia
  succ PpcInsn
PpcInsEvmwsmia = PpcInsn
PpcInsEvmwsmiaa
  succ PpcInsn
PpcInsEvmwsmiaa = PpcInsn
PpcInsEvmwsmian
  succ PpcInsn
PpcInsEvmwsmian = PpcInsn
PpcInsEvmwssf
  succ PpcInsn
PpcInsEvmwssf = PpcInsn
PpcInsEvmwssfa
  succ PpcInsn
PpcInsEvmwssfa = PpcInsn
PpcInsEvmwssfaa
  succ PpcInsn
PpcInsEvmwssfaa = PpcInsn
PpcInsEvmwssfan
  succ PpcInsn
PpcInsEvmwssfan = PpcInsn
PpcInsEvmwumi
  succ PpcInsn
PpcInsEvmwumi = PpcInsn
PpcInsEvmwumia
  succ PpcInsn
PpcInsEvmwumia = PpcInsn
PpcInsEvmwumiaa
  succ PpcInsn
PpcInsEvmwumiaa = PpcInsn
PpcInsEvmwumian
  succ PpcInsn
PpcInsEvmwumian = PpcInsn
PpcInsEvnand
  succ PpcInsn
PpcInsEvnand = PpcInsn
PpcInsEvneg
  succ PpcInsn
PpcInsEvneg = PpcInsn
PpcInsEvnor
  succ PpcInsn
PpcInsEvnor = PpcInsn
PpcInsEvor
  succ PpcInsn
PpcInsEvor = PpcInsn
PpcInsEvorc
  succ PpcInsn
PpcInsEvorc = PpcInsn
PpcInsEvrlw
  succ PpcInsn
PpcInsEvrlw = PpcInsn
PpcInsEvrlwi
  succ PpcInsn
PpcInsEvrlwi = PpcInsn
PpcInsEvrndw
  succ PpcInsn
PpcInsEvrndw = PpcInsn
PpcInsEvslw
  succ PpcInsn
PpcInsEvslw = PpcInsn
PpcInsEvslwi
  succ PpcInsn
PpcInsEvslwi = PpcInsn
PpcInsEvsplatfi
  succ PpcInsn
PpcInsEvsplatfi = PpcInsn
PpcInsEvsplati
  succ PpcInsn
PpcInsEvsplati = PpcInsn
PpcInsEvsrwis
  succ PpcInsn
PpcInsEvsrwis = PpcInsn
PpcInsEvsrwiu
  succ PpcInsn
PpcInsEvsrwiu = PpcInsn
PpcInsEvsrws
  succ PpcInsn
PpcInsEvsrws = PpcInsn
PpcInsEvsrwu
  succ PpcInsn
PpcInsEvsrwu = PpcInsn
PpcInsEvstdd
  succ PpcInsn
PpcInsEvstdd = PpcInsn
PpcInsEvstddx
  succ PpcInsn
PpcInsEvstddx = PpcInsn
PpcInsEvstdh
  succ PpcInsn
PpcInsEvstdh = PpcInsn
PpcInsEvstdhx
  succ PpcInsn
PpcInsEvstdhx = PpcInsn
PpcInsEvstdw
  succ PpcInsn
PpcInsEvstdw = PpcInsn
PpcInsEvstdwx
  succ PpcInsn
PpcInsEvstdwx = PpcInsn
PpcInsEvstwhe
  succ PpcInsn
PpcInsEvstwhe = PpcInsn
PpcInsEvstwhex
  succ PpcInsn
PpcInsEvstwhex = PpcInsn
PpcInsEvstwho
  succ PpcInsn
PpcInsEvstwho = PpcInsn
PpcInsEvstwhox
  succ PpcInsn
PpcInsEvstwhox = PpcInsn
PpcInsEvstwwe
  succ PpcInsn
PpcInsEvstwwe = PpcInsn
PpcInsEvstwwex
  succ PpcInsn
PpcInsEvstwwex = PpcInsn
PpcInsEvstwwo
  succ PpcInsn
PpcInsEvstwwo = PpcInsn
PpcInsEvstwwox
  succ PpcInsn
PpcInsEvstwwox = PpcInsn
PpcInsEvsubfsmiaaw
  succ PpcInsn
PpcInsEvsubfsmiaaw = PpcInsn
PpcInsEvsubfssiaaw
  succ PpcInsn
PpcInsEvsubfssiaaw = PpcInsn
PpcInsEvsubfumiaaw
  succ PpcInsn
PpcInsEvsubfumiaaw = PpcInsn
PpcInsEvsubfusiaaw
  succ PpcInsn
PpcInsEvsubfusiaaw = PpcInsn
PpcInsEvsubfw
  succ PpcInsn
PpcInsEvsubfw = PpcInsn
PpcInsEvsubifw
  succ PpcInsn
PpcInsEvsubifw = PpcInsn
PpcInsEvxor
  succ PpcInsn
PpcInsEvxor = PpcInsn
PpcInsExtsb
  succ PpcInsn
PpcInsExtsb = PpcInsn
PpcInsExtsh
  succ PpcInsn
PpcInsExtsh = PpcInsn
PpcInsExtsw
  succ PpcInsn
PpcInsExtsw = PpcInsn
PpcInsEieio
  succ PpcInsn
PpcInsEieio = PpcInsn
PpcInsFabs
  succ PpcInsn
PpcInsFabs = PpcInsn
PpcInsFadd
  succ PpcInsn
PpcInsFadd = PpcInsn
PpcInsFadds
  succ PpcInsn
PpcInsFadds = PpcInsn
PpcInsFcfid
  succ PpcInsn
PpcInsFcfid = PpcInsn
PpcInsFcfids
  succ PpcInsn
PpcInsFcfids = PpcInsn
PpcInsFcfidu
  succ PpcInsn
PpcInsFcfidu = PpcInsn
PpcInsFcfidus
  succ PpcInsn
PpcInsFcfidus = PpcInsn
PpcInsFcmpu
  succ PpcInsn
PpcInsFcmpu = PpcInsn
PpcInsFcpsgn
  succ PpcInsn
PpcInsFcpsgn = PpcInsn
PpcInsFctid
  succ PpcInsn
PpcInsFctid = PpcInsn
PpcInsFctiduz
  succ PpcInsn
PpcInsFctiduz = PpcInsn
PpcInsFctidz
  succ PpcInsn
PpcInsFctidz = PpcInsn
PpcInsFctiw
  succ PpcInsn
PpcInsFctiw = PpcInsn
PpcInsFctiwuz
  succ PpcInsn
PpcInsFctiwuz = PpcInsn
PpcInsFctiwz
  succ PpcInsn
PpcInsFctiwz = PpcInsn
PpcInsFdiv
  succ PpcInsn
PpcInsFdiv = PpcInsn
PpcInsFdivs
  succ PpcInsn
PpcInsFdivs = PpcInsn
PpcInsFmadd
  succ PpcInsn
PpcInsFmadd = PpcInsn
PpcInsFmadds
  succ PpcInsn
PpcInsFmadds = PpcInsn
PpcInsFmr
  succ PpcInsn
PpcInsFmr = PpcInsn
PpcInsFmsub
  succ PpcInsn
PpcInsFmsub = PpcInsn
PpcInsFmsubs
  succ PpcInsn
PpcInsFmsubs = PpcInsn
PpcInsFmul
  succ PpcInsn
PpcInsFmul = PpcInsn
PpcInsFmuls
  succ PpcInsn
PpcInsFmuls = PpcInsn
PpcInsFnabs
  succ PpcInsn
PpcInsFnabs = PpcInsn
PpcInsFneg
  succ PpcInsn
PpcInsFneg = PpcInsn
PpcInsFnmadd
  succ PpcInsn
PpcInsFnmadd = PpcInsn
PpcInsFnmadds
  succ PpcInsn
PpcInsFnmadds = PpcInsn
PpcInsFnmsub
  succ PpcInsn
PpcInsFnmsub = PpcInsn
PpcInsFnmsubs
  succ PpcInsn
PpcInsFnmsubs = PpcInsn
PpcInsFre
  succ PpcInsn
PpcInsFre = PpcInsn
PpcInsFres
  succ PpcInsn
PpcInsFres = PpcInsn
PpcInsFrim
  succ PpcInsn
PpcInsFrim = PpcInsn
PpcInsFrin
  succ PpcInsn
PpcInsFrin = PpcInsn
PpcInsFrip
  succ PpcInsn
PpcInsFrip = PpcInsn
PpcInsFriz
  succ PpcInsn
PpcInsFriz = PpcInsn
PpcInsFrsp
  succ PpcInsn
PpcInsFrsp = PpcInsn
PpcInsFrsqrte
  succ PpcInsn
PpcInsFrsqrte = PpcInsn
PpcInsFrsqrtes
  succ PpcInsn
PpcInsFrsqrtes = PpcInsn
PpcInsFsel
  succ PpcInsn
PpcInsFsel = PpcInsn
PpcInsFsqrt
  succ PpcInsn
PpcInsFsqrt = PpcInsn
PpcInsFsqrts
  succ PpcInsn
PpcInsFsqrts = PpcInsn
PpcInsFsub
  succ PpcInsn
PpcInsFsub = PpcInsn
PpcInsFsubs
  succ PpcInsn
PpcInsFsubs = PpcInsn
PpcInsIcbi
  succ PpcInsn
PpcInsIcbi = PpcInsn
PpcInsIcbt
  succ PpcInsn
PpcInsIcbt = PpcInsn
PpcInsIccci
  succ PpcInsn
PpcInsIccci = PpcInsn
PpcInsIsel
  succ PpcInsn
PpcInsIsel = PpcInsn
PpcInsIsync
  succ PpcInsn
PpcInsIsync = PpcInsn
PpcInsLa
  succ PpcInsn
PpcInsLa = PpcInsn
PpcInsLbz
  succ PpcInsn
PpcInsLbz = PpcInsn
PpcInsLbzcix
  succ PpcInsn
PpcInsLbzcix = PpcInsn
PpcInsLbzu
  succ PpcInsn
PpcInsLbzu = PpcInsn
PpcInsLbzux
  succ PpcInsn
PpcInsLbzux = PpcInsn
PpcInsLbzx
  succ PpcInsn
PpcInsLbzx = PpcInsn
PpcInsLd
  succ PpcInsn
PpcInsLd = PpcInsn
PpcInsLdarx
  succ PpcInsn
PpcInsLdarx = PpcInsn
PpcInsLdbrx
  succ PpcInsn
PpcInsLdbrx = PpcInsn
PpcInsLdcix
  succ PpcInsn
PpcInsLdcix = PpcInsn
PpcInsLdu
  succ PpcInsn
PpcInsLdu = PpcInsn
PpcInsLdux
  succ PpcInsn
PpcInsLdux = PpcInsn
PpcInsLdx
  succ PpcInsn
PpcInsLdx = PpcInsn
PpcInsLfd
  succ PpcInsn
PpcInsLfd = PpcInsn
PpcInsLfdu
  succ PpcInsn
PpcInsLfdu = PpcInsn
PpcInsLfdux
  succ PpcInsn
PpcInsLfdux = PpcInsn
PpcInsLfdx
  succ PpcInsn
PpcInsLfdx = PpcInsn
PpcInsLfiwax
  succ PpcInsn
PpcInsLfiwax = PpcInsn
PpcInsLfiwzx
  succ PpcInsn
PpcInsLfiwzx = PpcInsn
PpcInsLfs
  succ PpcInsn
PpcInsLfs = PpcInsn
PpcInsLfsu
  succ PpcInsn
PpcInsLfsu = PpcInsn
PpcInsLfsux
  succ PpcInsn
PpcInsLfsux = PpcInsn
PpcInsLfsx
  succ PpcInsn
PpcInsLfsx = PpcInsn
PpcInsLha
  succ PpcInsn
PpcInsLha = PpcInsn
PpcInsLhau
  succ PpcInsn
PpcInsLhau = PpcInsn
PpcInsLhaux
  succ PpcInsn
PpcInsLhaux = PpcInsn
PpcInsLhax
  succ PpcInsn
PpcInsLhax = PpcInsn
PpcInsLhbrx
  succ PpcInsn
PpcInsLhbrx = PpcInsn
PpcInsLhz
  succ PpcInsn
PpcInsLhz = PpcInsn
PpcInsLhzcix
  succ PpcInsn
PpcInsLhzcix = PpcInsn
PpcInsLhzu
  succ PpcInsn
PpcInsLhzu = PpcInsn
PpcInsLhzux
  succ PpcInsn
PpcInsLhzux = PpcInsn
PpcInsLhzx
  succ PpcInsn
PpcInsLhzx = PpcInsn
PpcInsLi
  succ PpcInsn
PpcInsLi = PpcInsn
PpcInsLis
  succ PpcInsn
PpcInsLis = PpcInsn
PpcInsLmw
  succ PpcInsn
PpcInsLmw = PpcInsn
PpcInsLswi
  succ PpcInsn
PpcInsLswi = PpcInsn
PpcInsLvebx
  succ PpcInsn
PpcInsLvebx = PpcInsn
PpcInsLvehx
  succ PpcInsn
PpcInsLvehx = PpcInsn
PpcInsLvewx
  succ PpcInsn
PpcInsLvewx = PpcInsn
PpcInsLvsl
  succ PpcInsn
PpcInsLvsl = PpcInsn
PpcInsLvsr
  succ PpcInsn
PpcInsLvsr = PpcInsn
PpcInsLvx
  succ PpcInsn
PpcInsLvx = PpcInsn
PpcInsLvxl
  succ PpcInsn
PpcInsLvxl = PpcInsn
PpcInsLwa
  succ PpcInsn
PpcInsLwa = PpcInsn
PpcInsLwarx
  succ PpcInsn
PpcInsLwarx = PpcInsn
PpcInsLwaux
  succ PpcInsn
PpcInsLwaux = PpcInsn
PpcInsLwax
  succ PpcInsn
PpcInsLwax = PpcInsn
PpcInsLwbrx
  succ PpcInsn
PpcInsLwbrx = PpcInsn
PpcInsLwz
  succ PpcInsn
PpcInsLwz = PpcInsn
PpcInsLwzcix
  succ PpcInsn
PpcInsLwzcix = PpcInsn
PpcInsLwzu
  succ PpcInsn
PpcInsLwzu = PpcInsn
PpcInsLwzux
  succ PpcInsn
PpcInsLwzux = PpcInsn
PpcInsLwzx
  succ PpcInsn
PpcInsLwzx = PpcInsn
PpcInsLxsdx
  succ PpcInsn
PpcInsLxsdx = PpcInsn
PpcInsLxvd2x
  succ PpcInsn
PpcInsLxvd2x = PpcInsn
PpcInsLxvdsx
  succ PpcInsn
PpcInsLxvdsx = PpcInsn
PpcInsLxvw4x
  succ PpcInsn
PpcInsLxvw4x = PpcInsn
PpcInsMbar
  succ PpcInsn
PpcInsMbar = PpcInsn
PpcInsMcrf
  succ PpcInsn
PpcInsMcrf = PpcInsn
PpcInsMcrfs
  succ PpcInsn
PpcInsMcrfs = PpcInsn
PpcInsMfcr
  succ PpcInsn
PpcInsMfcr = PpcInsn
PpcInsMfctr
  succ PpcInsn
PpcInsMfctr = PpcInsn
PpcInsMfdcr
  succ PpcInsn
PpcInsMfdcr = PpcInsn
PpcInsMffs
  succ PpcInsn
PpcInsMffs = PpcInsn
PpcInsMflr
  succ PpcInsn
PpcInsMflr = PpcInsn
PpcInsMfmsr
  succ PpcInsn
PpcInsMfmsr = PpcInsn
PpcInsMfocrf
  succ PpcInsn
PpcInsMfocrf = PpcInsn
PpcInsMfspr
  succ PpcInsn
PpcInsMfspr = PpcInsn
PpcInsMfsr
  succ PpcInsn
PpcInsMfsr = PpcInsn
PpcInsMfsrin
  succ PpcInsn
PpcInsMfsrin = PpcInsn
PpcInsMftb
  succ PpcInsn
PpcInsMftb = PpcInsn
PpcInsMfvscr
  succ PpcInsn
PpcInsMfvscr = PpcInsn
PpcInsMsync
  succ PpcInsn
PpcInsMsync = PpcInsn
PpcInsMtcrf
  succ PpcInsn
PpcInsMtcrf = PpcInsn
PpcInsMtctr
  succ PpcInsn
PpcInsMtctr = PpcInsn
PpcInsMtdcr
  succ PpcInsn
PpcInsMtdcr = PpcInsn
PpcInsMtfsb0
  succ PpcInsn
PpcInsMtfsb0 = PpcInsn
PpcInsMtfsb1
  succ PpcInsn
PpcInsMtfsb1 = PpcInsn
PpcInsMtfsf
  succ PpcInsn
PpcInsMtfsf = PpcInsn
PpcInsMtfsfi
  succ PpcInsn
PpcInsMtfsfi = PpcInsn
PpcInsMtlr
  succ PpcInsn
PpcInsMtlr = PpcInsn
PpcInsMtmsr
  succ PpcInsn
PpcInsMtmsr = PpcInsn
PpcInsMtmsrd
  succ PpcInsn
PpcInsMtmsrd = PpcInsn
PpcInsMtocrf
  succ PpcInsn
PpcInsMtocrf = PpcInsn
PpcInsMtspr
  succ PpcInsn
PpcInsMtspr = PpcInsn
PpcInsMtsr
  succ PpcInsn
PpcInsMtsr = PpcInsn
PpcInsMtsrin
  succ PpcInsn
PpcInsMtsrin = PpcInsn
PpcInsMtvscr
  succ PpcInsn
PpcInsMtvscr = PpcInsn
PpcInsMulhd
  succ PpcInsn
PpcInsMulhd = PpcInsn
PpcInsMulhdu
  succ PpcInsn
PpcInsMulhdu = PpcInsn
PpcInsMulhw
  succ PpcInsn
PpcInsMulhw = PpcInsn
PpcInsMulhwu
  succ PpcInsn
PpcInsMulhwu = PpcInsn
PpcInsMulld
  succ PpcInsn
PpcInsMulld = PpcInsn
PpcInsMulli
  succ PpcInsn
PpcInsMulli = PpcInsn
PpcInsMullw
  succ PpcInsn
PpcInsMullw = PpcInsn
PpcInsNand
  succ PpcInsn
PpcInsNand = PpcInsn
PpcInsNeg
  succ PpcInsn
PpcInsNeg = PpcInsn
PpcInsNop
  succ PpcInsn
PpcInsNop = PpcInsn
PpcInsOri
  succ PpcInsn
PpcInsOri = PpcInsn
PpcInsNor
  succ PpcInsn
PpcInsNor = PpcInsn
PpcInsOr
  succ PpcInsn
PpcInsOr = PpcInsn
PpcInsOrc
  succ PpcInsn
PpcInsOrc = PpcInsn
PpcInsOris
  succ PpcInsn
PpcInsOris = PpcInsn
PpcInsPopcntd
  succ PpcInsn
PpcInsPopcntd = PpcInsn
PpcInsPopcntw
  succ PpcInsn
PpcInsPopcntw = PpcInsn
PpcInsQvaligni
  succ PpcInsn
PpcInsQvaligni = PpcInsn
PpcInsQvesplati
  succ PpcInsn
PpcInsQvesplati = PpcInsn
PpcInsQvfabs
  succ PpcInsn
PpcInsQvfabs = PpcInsn
PpcInsQvfadd
  succ PpcInsn
PpcInsQvfadd = PpcInsn
PpcInsQvfadds
  succ PpcInsn
PpcInsQvfadds = PpcInsn
PpcInsQvfcfid
  succ PpcInsn
PpcInsQvfcfid = PpcInsn
PpcInsQvfcfids
  succ PpcInsn
PpcInsQvfcfids = PpcInsn
PpcInsQvfcfidu
  succ PpcInsn
PpcInsQvfcfidu = PpcInsn
PpcInsQvfcfidus
  succ PpcInsn
PpcInsQvfcfidus = PpcInsn
PpcInsQvfcmpeq
  succ PpcInsn
PpcInsQvfcmpeq = PpcInsn
PpcInsQvfcmpgt
  succ PpcInsn
PpcInsQvfcmpgt = PpcInsn
PpcInsQvfcmplt
  succ PpcInsn
PpcInsQvfcmplt = PpcInsn
PpcInsQvfcpsgn
  succ PpcInsn
PpcInsQvfcpsgn = PpcInsn
PpcInsQvfctid
  succ PpcInsn
PpcInsQvfctid = PpcInsn
PpcInsQvfctidu
  succ PpcInsn
PpcInsQvfctidu = PpcInsn
PpcInsQvfctiduz
  succ PpcInsn
PpcInsQvfctiduz = PpcInsn
PpcInsQvfctidz
  succ PpcInsn
PpcInsQvfctidz = PpcInsn
PpcInsQvfctiw
  succ PpcInsn
PpcInsQvfctiw = PpcInsn
PpcInsQvfctiwu
  succ PpcInsn
PpcInsQvfctiwu = PpcInsn
PpcInsQvfctiwuz
  succ PpcInsn
PpcInsQvfctiwuz = PpcInsn
PpcInsQvfctiwz
  succ PpcInsn
PpcInsQvfctiwz = PpcInsn
PpcInsQvflogical
  succ PpcInsn
PpcInsQvflogical = PpcInsn
PpcInsQvfmadd
  succ PpcInsn
PpcInsQvfmadd = PpcInsn
PpcInsQvfmadds
  succ PpcInsn
PpcInsQvfmadds = PpcInsn
PpcInsQvfmr
  succ PpcInsn
PpcInsQvfmr = PpcInsn
PpcInsQvfmsub
  succ PpcInsn
PpcInsQvfmsub = PpcInsn
PpcInsQvfmsubs
  succ PpcInsn
PpcInsQvfmsubs = PpcInsn
PpcInsQvfmul
  succ PpcInsn
PpcInsQvfmul = PpcInsn
PpcInsQvfmuls
  succ PpcInsn
PpcInsQvfmuls = PpcInsn
PpcInsQvfnabs
  succ PpcInsn
PpcInsQvfnabs = PpcInsn
PpcInsQvfneg
  succ PpcInsn
PpcInsQvfneg = PpcInsn
PpcInsQvfnmadd
  succ PpcInsn
PpcInsQvfnmadd = PpcInsn
PpcInsQvfnmadds
  succ PpcInsn
PpcInsQvfnmadds = PpcInsn
PpcInsQvfnmsub
  succ PpcInsn
PpcInsQvfnmsub = PpcInsn
PpcInsQvfnmsubs
  succ PpcInsn
PpcInsQvfnmsubs = PpcInsn
PpcInsQvfperm
  succ PpcInsn
PpcInsQvfperm = PpcInsn
PpcInsQvfre
  succ PpcInsn
PpcInsQvfre = PpcInsn
PpcInsQvfres
  succ PpcInsn
PpcInsQvfres = PpcInsn
PpcInsQvfrim
  succ PpcInsn
PpcInsQvfrim = PpcInsn
PpcInsQvfrin
  succ PpcInsn
PpcInsQvfrin = PpcInsn
PpcInsQvfrip
  succ PpcInsn
PpcInsQvfrip = PpcInsn
PpcInsQvfriz
  succ PpcInsn
PpcInsQvfriz = PpcInsn
PpcInsQvfrsp
  succ PpcInsn
PpcInsQvfrsp = PpcInsn
PpcInsQvfrsqrte
  succ PpcInsn
PpcInsQvfrsqrte = PpcInsn
PpcInsQvfrsqrtes
  succ PpcInsn
PpcInsQvfrsqrtes = PpcInsn
PpcInsQvfsel
  succ PpcInsn
PpcInsQvfsel = PpcInsn
PpcInsQvfsub
  succ PpcInsn
PpcInsQvfsub = PpcInsn
PpcInsQvfsubs
  succ PpcInsn
PpcInsQvfsubs = PpcInsn
PpcInsQvftstnan
  succ PpcInsn
PpcInsQvftstnan = PpcInsn
PpcInsQvfxmadd
  succ PpcInsn
PpcInsQvfxmadd = PpcInsn
PpcInsQvfxmadds
  succ PpcInsn
PpcInsQvfxmadds = PpcInsn
PpcInsQvfxmul
  succ PpcInsn
PpcInsQvfxmul = PpcInsn
PpcInsQvfxmuls
  succ PpcInsn
PpcInsQvfxmuls = PpcInsn
PpcInsQvfxxcpnmadd
  succ PpcInsn
PpcInsQvfxxcpnmadd = PpcInsn
PpcInsQvfxxcpnmadds
  succ PpcInsn
PpcInsQvfxxcpnmadds = PpcInsn
PpcInsQvfxxmadd
  succ PpcInsn
PpcInsQvfxxmadd = PpcInsn
PpcInsQvfxxmadds
  succ PpcInsn
PpcInsQvfxxmadds = PpcInsn
PpcInsQvfxxnpmadd
  succ PpcInsn
PpcInsQvfxxnpmadd = PpcInsn
PpcInsQvfxxnpmadds
  succ PpcInsn
PpcInsQvfxxnpmadds = PpcInsn
PpcInsQvgpci
  succ PpcInsn
PpcInsQvgpci = PpcInsn
PpcInsQvlfcdux
  succ PpcInsn
PpcInsQvlfcdux = PpcInsn
PpcInsQvlfcduxa
  succ PpcInsn
PpcInsQvlfcduxa = PpcInsn
PpcInsQvlfcdx
  succ PpcInsn
PpcInsQvlfcdx = PpcInsn
PpcInsQvlfcdxa
  succ PpcInsn
PpcInsQvlfcdxa = PpcInsn
PpcInsQvlfcsux
  succ PpcInsn
PpcInsQvlfcsux = PpcInsn
PpcInsQvlfcsuxa
  succ PpcInsn
PpcInsQvlfcsuxa = PpcInsn
PpcInsQvlfcsx
  succ PpcInsn
PpcInsQvlfcsx = PpcInsn
PpcInsQvlfcsxa
  succ PpcInsn
PpcInsQvlfcsxa = PpcInsn
PpcInsQvlfdux
  succ PpcInsn
PpcInsQvlfdux = PpcInsn
PpcInsQvlfduxa
  succ PpcInsn
PpcInsQvlfduxa = PpcInsn
PpcInsQvlfdx
  succ PpcInsn
PpcInsQvlfdx = PpcInsn
PpcInsQvlfdxa
  succ PpcInsn
PpcInsQvlfdxa = PpcInsn
PpcInsQvlfiwax
  succ PpcInsn
PpcInsQvlfiwax = PpcInsn
PpcInsQvlfiwaxa
  succ PpcInsn
PpcInsQvlfiwaxa = PpcInsn
PpcInsQvlfiwzx
  succ PpcInsn
PpcInsQvlfiwzx = PpcInsn
PpcInsQvlfiwzxa
  succ PpcInsn
PpcInsQvlfiwzxa = PpcInsn
PpcInsQvlfsux
  succ PpcInsn
PpcInsQvlfsux = PpcInsn
PpcInsQvlfsuxa
  succ PpcInsn
PpcInsQvlfsuxa = PpcInsn
PpcInsQvlfsx
  succ PpcInsn
PpcInsQvlfsx = PpcInsn
PpcInsQvlfsxa
  succ PpcInsn
PpcInsQvlfsxa = PpcInsn
PpcInsQvlpcldx
  succ PpcInsn
PpcInsQvlpcldx = PpcInsn
PpcInsQvlpclsx
  succ PpcInsn
PpcInsQvlpclsx = PpcInsn
PpcInsQvlpcrdx
  succ PpcInsn
PpcInsQvlpcrdx = PpcInsn
PpcInsQvlpcrsx
  succ PpcInsn
PpcInsQvlpcrsx = PpcInsn
PpcInsQvstfcdux
  succ PpcInsn
PpcInsQvstfcdux = PpcInsn
PpcInsQvstfcduxa
  succ PpcInsn
PpcInsQvstfcduxa = PpcInsn
PpcInsQvstfcduxi
  succ PpcInsn
PpcInsQvstfcduxi = PpcInsn
PpcInsQvstfcduxia
  succ PpcInsn
PpcInsQvstfcduxia = PpcInsn
PpcInsQvstfcdx
  succ PpcInsn
PpcInsQvstfcdx = PpcInsn
PpcInsQvstfcdxa
  succ PpcInsn
PpcInsQvstfcdxa = PpcInsn
PpcInsQvstfcdxi
  succ PpcInsn
PpcInsQvstfcdxi = PpcInsn
PpcInsQvstfcdxia
  succ PpcInsn
PpcInsQvstfcdxia = PpcInsn
PpcInsQvstfcsux
  succ PpcInsn
PpcInsQvstfcsux = PpcInsn
PpcInsQvstfcsuxa
  succ PpcInsn
PpcInsQvstfcsuxa = PpcInsn
PpcInsQvstfcsuxi
  succ PpcInsn
PpcInsQvstfcsuxi = PpcInsn
PpcInsQvstfcsuxia
  succ PpcInsn
PpcInsQvstfcsuxia = PpcInsn
PpcInsQvstfcsx
  succ PpcInsn
PpcInsQvstfcsx = PpcInsn
PpcInsQvstfcsxa
  succ PpcInsn
PpcInsQvstfcsxa = PpcInsn
PpcInsQvstfcsxi
  succ PpcInsn
PpcInsQvstfcsxi = PpcInsn
PpcInsQvstfcsxia
  succ PpcInsn
PpcInsQvstfcsxia = PpcInsn
PpcInsQvstfdux
  succ PpcInsn
PpcInsQvstfdux = PpcInsn
PpcInsQvstfduxa
  succ PpcInsn
PpcInsQvstfduxa = PpcInsn
PpcInsQvstfduxi
  succ PpcInsn
PpcInsQvstfduxi = PpcInsn
PpcInsQvstfduxia
  succ PpcInsn
PpcInsQvstfduxia = PpcInsn
PpcInsQvstfdx
  succ PpcInsn
PpcInsQvstfdx = PpcInsn
PpcInsQvstfdxa
  succ PpcInsn
PpcInsQvstfdxa = PpcInsn
PpcInsQvstfdxi
  succ PpcInsn
PpcInsQvstfdxi = PpcInsn
PpcInsQvstfdxia
  succ PpcInsn
PpcInsQvstfdxia = PpcInsn
PpcInsQvstfiwx
  succ PpcInsn
PpcInsQvstfiwx = PpcInsn
PpcInsQvstfiwxa
  succ PpcInsn
PpcInsQvstfiwxa = PpcInsn
PpcInsQvstfsux
  succ PpcInsn
PpcInsQvstfsux = PpcInsn
PpcInsQvstfsuxa
  succ PpcInsn
PpcInsQvstfsuxa = PpcInsn
PpcInsQvstfsuxi
  succ PpcInsn
PpcInsQvstfsuxi = PpcInsn
PpcInsQvstfsuxia
  succ PpcInsn
PpcInsQvstfsuxia = PpcInsn
PpcInsQvstfsx
  succ PpcInsn
PpcInsQvstfsx = PpcInsn
PpcInsQvstfsxa
  succ PpcInsn
PpcInsQvstfsxa = PpcInsn
PpcInsQvstfsxi
  succ PpcInsn
PpcInsQvstfsxi = PpcInsn
PpcInsQvstfsxia
  succ PpcInsn
PpcInsQvstfsxia = PpcInsn
PpcInsRfci
  succ PpcInsn
PpcInsRfci = PpcInsn
PpcInsRfdi
  succ PpcInsn
PpcInsRfdi = PpcInsn
PpcInsRfi
  succ PpcInsn
PpcInsRfi = PpcInsn
PpcInsRfid
  succ PpcInsn
PpcInsRfid = PpcInsn
PpcInsRfmci
  succ PpcInsn
PpcInsRfmci = PpcInsn
PpcInsRldcl
  succ PpcInsn
PpcInsRldcl = PpcInsn
PpcInsRldcr
  succ PpcInsn
PpcInsRldcr = PpcInsn
PpcInsRldic
  succ PpcInsn
PpcInsRldic = PpcInsn
PpcInsRldicl
  succ PpcInsn
PpcInsRldicl = PpcInsn
PpcInsRldicr
  succ PpcInsn
PpcInsRldicr = PpcInsn
PpcInsRldimi
  succ PpcInsn
PpcInsRldimi = PpcInsn
PpcInsRlwimi
  succ PpcInsn
PpcInsRlwimi = PpcInsn
PpcInsRlwinm
  succ PpcInsn
PpcInsRlwinm = PpcInsn
PpcInsRlwnm
  succ PpcInsn
PpcInsRlwnm = PpcInsn
PpcInsSc
  succ PpcInsn
PpcInsSc = PpcInsn
PpcInsSlbia
  succ PpcInsn
PpcInsSlbia = PpcInsn
PpcInsSlbie
  succ PpcInsn
PpcInsSlbie = PpcInsn
PpcInsSlbmfee
  succ PpcInsn
PpcInsSlbmfee = PpcInsn
PpcInsSlbmte
  succ PpcInsn
PpcInsSlbmte = PpcInsn
PpcInsSld
  succ PpcInsn
PpcInsSld = PpcInsn
PpcInsSlw
  succ PpcInsn
PpcInsSlw = PpcInsn
PpcInsSrad
  succ PpcInsn
PpcInsSrad = PpcInsn
PpcInsSradi
  succ PpcInsn
PpcInsSradi = PpcInsn
PpcInsSraw
  succ PpcInsn
PpcInsSraw = PpcInsn
PpcInsSrawi
  succ PpcInsn
PpcInsSrawi = PpcInsn
PpcInsSrd
  succ PpcInsn
PpcInsSrd = PpcInsn
PpcInsSrw
  succ PpcInsn
PpcInsSrw = PpcInsn
PpcInsStb
  succ PpcInsn
PpcInsStb = PpcInsn
PpcInsStbcix
  succ PpcInsn
PpcInsStbcix = PpcInsn
PpcInsStbu
  succ PpcInsn
PpcInsStbu = PpcInsn
PpcInsStbux
  succ PpcInsn
PpcInsStbux = PpcInsn
PpcInsStbx
  succ PpcInsn
PpcInsStbx = PpcInsn
PpcInsStd
  succ PpcInsn
PpcInsStd = PpcInsn
PpcInsStdbrx
  succ PpcInsn
PpcInsStdbrx = PpcInsn
PpcInsStdcix
  succ PpcInsn
PpcInsStdcix = PpcInsn
PpcInsStdcx
  succ PpcInsn
PpcInsStdcx = PpcInsn
PpcInsStdu
  succ PpcInsn
PpcInsStdu = PpcInsn
PpcInsStdux
  succ PpcInsn
PpcInsStdux = PpcInsn
PpcInsStdx
  succ PpcInsn
PpcInsStdx = PpcInsn
PpcInsStfd
  succ PpcInsn
PpcInsStfd = PpcInsn
PpcInsStfdu
  succ PpcInsn
PpcInsStfdu = PpcInsn
PpcInsStfdux
  succ PpcInsn
PpcInsStfdux = PpcInsn
PpcInsStfdx
  succ PpcInsn
PpcInsStfdx = PpcInsn
PpcInsStfiwx
  succ PpcInsn
PpcInsStfiwx = PpcInsn
PpcInsStfs
  succ PpcInsn
PpcInsStfs = PpcInsn
PpcInsStfsu
  succ PpcInsn
PpcInsStfsu = PpcInsn
PpcInsStfsux
  succ PpcInsn
PpcInsStfsux = PpcInsn
PpcInsStfsx
  succ PpcInsn
PpcInsStfsx = PpcInsn
PpcInsSth
  succ PpcInsn
PpcInsSth = PpcInsn
PpcInsSthbrx
  succ PpcInsn
PpcInsSthbrx = PpcInsn
PpcInsSthcix
  succ PpcInsn
PpcInsSthcix = PpcInsn
PpcInsSthu
  succ PpcInsn
PpcInsSthu = PpcInsn
PpcInsSthux
  succ PpcInsn
PpcInsSthux = PpcInsn
PpcInsSthx
  succ PpcInsn
PpcInsSthx = PpcInsn
PpcInsStmw
  succ PpcInsn
PpcInsStmw = PpcInsn
PpcInsStswi
  succ PpcInsn
PpcInsStswi = PpcInsn
PpcInsStvebx
  succ PpcInsn
PpcInsStvebx = PpcInsn
PpcInsStvehx
  succ PpcInsn
PpcInsStvehx = PpcInsn
PpcInsStvewx
  succ PpcInsn
PpcInsStvewx = PpcInsn
PpcInsStvx
  succ PpcInsn
PpcInsStvx = PpcInsn
PpcInsStvxl
  succ PpcInsn
PpcInsStvxl = PpcInsn
PpcInsStw
  succ PpcInsn
PpcInsStw = PpcInsn
PpcInsStwbrx
  succ PpcInsn
PpcInsStwbrx = PpcInsn
PpcInsStwcix
  succ PpcInsn
PpcInsStwcix = PpcInsn
PpcInsStwcx
  succ PpcInsn
PpcInsStwcx = PpcInsn
PpcInsStwu
  succ PpcInsn
PpcInsStwu = PpcInsn
PpcInsStwux
  succ PpcInsn
PpcInsStwux = PpcInsn
PpcInsStwx
  succ PpcInsn
PpcInsStwx = PpcInsn
PpcInsStxsdx
  succ PpcInsn
PpcInsStxsdx = PpcInsn
PpcInsStxvd2x
  succ PpcInsn
PpcInsStxvd2x = PpcInsn
PpcInsStxvw4x
  succ PpcInsn
PpcInsStxvw4x = PpcInsn
PpcInsSubf
  succ PpcInsn
PpcInsSubf = PpcInsn
PpcInsSubfc
  succ PpcInsn
PpcInsSubfc = PpcInsn
PpcInsSubfe
  succ PpcInsn
PpcInsSubfe = PpcInsn
PpcInsSubfic
  succ PpcInsn
PpcInsSubfic = PpcInsn
PpcInsSubfme
  succ PpcInsn
PpcInsSubfme = PpcInsn
PpcInsSubfze
  succ PpcInsn
PpcInsSubfze = PpcInsn
PpcInsSync
  succ PpcInsn
PpcInsSync = PpcInsn
PpcInsTd
  succ PpcInsn
PpcInsTd = PpcInsn
PpcInsTdi
  succ PpcInsn
PpcInsTdi = PpcInsn
PpcInsTlbia
  succ PpcInsn
PpcInsTlbia = PpcInsn
PpcInsTlbie
  succ PpcInsn
PpcInsTlbie = PpcInsn
PpcInsTlbiel
  succ PpcInsn
PpcInsTlbiel = PpcInsn
PpcInsTlbivax
  succ PpcInsn
PpcInsTlbivax = PpcInsn
PpcInsTlbld
  succ PpcInsn
PpcInsTlbld = PpcInsn
PpcInsTlbli
  succ PpcInsn
PpcInsTlbli = PpcInsn
PpcInsTlbre
  succ PpcInsn
PpcInsTlbre = PpcInsn
PpcInsTlbsx
  succ PpcInsn
PpcInsTlbsx = PpcInsn
PpcInsTlbsync
  succ PpcInsn
PpcInsTlbsync = PpcInsn
PpcInsTlbwe
  succ PpcInsn
PpcInsTlbwe = PpcInsn
PpcInsTrap
  succ PpcInsn
PpcInsTrap = PpcInsn
PpcInsTw
  succ PpcInsn
PpcInsTw = PpcInsn
PpcInsTwi
  succ PpcInsn
PpcInsTwi = PpcInsn
PpcInsVaddcuw
  succ PpcInsn
PpcInsVaddcuw = PpcInsn
PpcInsVaddfp
  succ PpcInsn
PpcInsVaddfp = PpcInsn
PpcInsVaddsbs
  succ PpcInsn
PpcInsVaddsbs = PpcInsn
PpcInsVaddshs
  succ PpcInsn
PpcInsVaddshs = PpcInsn
PpcInsVaddsws
  succ PpcInsn
PpcInsVaddsws = PpcInsn
PpcInsVaddubm
  succ PpcInsn
PpcInsVaddubm = PpcInsn
PpcInsVaddubs
  succ PpcInsn
PpcInsVaddubs = PpcInsn
PpcInsVaddudm
  succ PpcInsn
PpcInsVaddudm = PpcInsn
PpcInsVadduhm
  succ PpcInsn
PpcInsVadduhm = PpcInsn
PpcInsVadduhs
  succ PpcInsn
PpcInsVadduhs = PpcInsn
PpcInsVadduwm
  succ PpcInsn
PpcInsVadduwm = PpcInsn
PpcInsVadduws
  succ PpcInsn
PpcInsVadduws = PpcInsn
PpcInsVand
  succ PpcInsn
PpcInsVand = PpcInsn
PpcInsVandc
  succ PpcInsn
PpcInsVandc = PpcInsn
PpcInsVavgsb
  succ PpcInsn
PpcInsVavgsb = PpcInsn
PpcInsVavgsh
  succ PpcInsn
PpcInsVavgsh = PpcInsn
PpcInsVavgsw
  succ PpcInsn
PpcInsVavgsw = PpcInsn
PpcInsVavgub
  succ PpcInsn
PpcInsVavgub = PpcInsn
PpcInsVavguh
  succ PpcInsn
PpcInsVavguh = PpcInsn
PpcInsVavguw
  succ PpcInsn
PpcInsVavguw = PpcInsn
PpcInsVcfsx
  succ PpcInsn
PpcInsVcfsx = PpcInsn
PpcInsVcfux
  succ PpcInsn
PpcInsVcfux = PpcInsn
PpcInsVclzb
  succ PpcInsn
PpcInsVclzb = PpcInsn
PpcInsVclzd
  succ PpcInsn
PpcInsVclzd = PpcInsn
PpcInsVclzh
  succ PpcInsn
PpcInsVclzh = PpcInsn
PpcInsVclzw
  succ PpcInsn
PpcInsVclzw = PpcInsn
PpcInsVcmpbfp
  succ PpcInsn
PpcInsVcmpbfp = PpcInsn
PpcInsVcmpeqfp
  succ PpcInsn
PpcInsVcmpeqfp = PpcInsn
PpcInsVcmpequb
  succ PpcInsn
PpcInsVcmpequb = PpcInsn
PpcInsVcmpequd
  succ PpcInsn
PpcInsVcmpequd = PpcInsn
PpcInsVcmpequh
  succ PpcInsn
PpcInsVcmpequh = PpcInsn
PpcInsVcmpequw
  succ PpcInsn
PpcInsVcmpequw = PpcInsn
PpcInsVcmpgefp
  succ PpcInsn
PpcInsVcmpgefp = PpcInsn
PpcInsVcmpgtfp
  succ PpcInsn
PpcInsVcmpgtfp = PpcInsn
PpcInsVcmpgtsb
  succ PpcInsn
PpcInsVcmpgtsb = PpcInsn
PpcInsVcmpgtsd
  succ PpcInsn
PpcInsVcmpgtsd = PpcInsn
PpcInsVcmpgtsh
  succ PpcInsn
PpcInsVcmpgtsh = PpcInsn
PpcInsVcmpgtsw
  succ PpcInsn
PpcInsVcmpgtsw = PpcInsn
PpcInsVcmpgtub
  succ PpcInsn
PpcInsVcmpgtub = PpcInsn
PpcInsVcmpgtud
  succ PpcInsn
PpcInsVcmpgtud = PpcInsn
PpcInsVcmpgtuh
  succ PpcInsn
PpcInsVcmpgtuh = PpcInsn
PpcInsVcmpgtuw
  succ PpcInsn
PpcInsVcmpgtuw = PpcInsn
PpcInsVctsxs
  succ PpcInsn
PpcInsVctsxs = PpcInsn
PpcInsVctuxs
  succ PpcInsn
PpcInsVctuxs = PpcInsn
PpcInsVeqv
  succ PpcInsn
PpcInsVeqv = PpcInsn
PpcInsVexptefp
  succ PpcInsn
PpcInsVexptefp = PpcInsn
PpcInsVlogefp
  succ PpcInsn
PpcInsVlogefp = PpcInsn
PpcInsVmaddfp
  succ PpcInsn
PpcInsVmaddfp = PpcInsn
PpcInsVmaxfp
  succ PpcInsn
PpcInsVmaxfp = PpcInsn
PpcInsVmaxsb
  succ PpcInsn
PpcInsVmaxsb = PpcInsn
PpcInsVmaxsd
  succ PpcInsn
PpcInsVmaxsd = PpcInsn
PpcInsVmaxsh
  succ PpcInsn
PpcInsVmaxsh = PpcInsn
PpcInsVmaxsw
  succ PpcInsn
PpcInsVmaxsw = PpcInsn
PpcInsVmaxub
  succ PpcInsn
PpcInsVmaxub = PpcInsn
PpcInsVmaxud
  succ PpcInsn
PpcInsVmaxud = PpcInsn
PpcInsVmaxuh
  succ PpcInsn
PpcInsVmaxuh = PpcInsn
PpcInsVmaxuw
  succ PpcInsn
PpcInsVmaxuw = PpcInsn
PpcInsVmhaddshs
  succ PpcInsn
PpcInsVmhaddshs = PpcInsn
PpcInsVmhraddshs
  succ PpcInsn
PpcInsVmhraddshs = PpcInsn
PpcInsVminud
  succ PpcInsn
PpcInsVminud = PpcInsn
PpcInsVminfp
  succ PpcInsn
PpcInsVminfp = PpcInsn
PpcInsVminsb
  succ PpcInsn
PpcInsVminsb = PpcInsn
PpcInsVminsd
  succ PpcInsn
PpcInsVminsd = PpcInsn
PpcInsVminsh
  succ PpcInsn
PpcInsVminsh = PpcInsn
PpcInsVminsw
  succ PpcInsn
PpcInsVminsw = PpcInsn
PpcInsVminub
  succ PpcInsn
PpcInsVminub = PpcInsn
PpcInsVminuh
  succ PpcInsn
PpcInsVminuh = PpcInsn
PpcInsVminuw
  succ PpcInsn
PpcInsVminuw = PpcInsn
PpcInsVmladduhm
  succ PpcInsn
PpcInsVmladduhm = PpcInsn
PpcInsVmrghb
  succ PpcInsn
PpcInsVmrghb = PpcInsn
PpcInsVmrghh
  succ PpcInsn
PpcInsVmrghh = PpcInsn
PpcInsVmrghw
  succ PpcInsn
PpcInsVmrghw = PpcInsn
PpcInsVmrglb
  succ PpcInsn
PpcInsVmrglb = PpcInsn
PpcInsVmrglh
  succ PpcInsn
PpcInsVmrglh = PpcInsn
PpcInsVmrglw
  succ PpcInsn
PpcInsVmrglw = PpcInsn
PpcInsVmsummbm
  succ PpcInsn
PpcInsVmsummbm = PpcInsn
PpcInsVmsumshm
  succ PpcInsn
PpcInsVmsumshm = PpcInsn
PpcInsVmsumshs
  succ PpcInsn
PpcInsVmsumshs = PpcInsn
PpcInsVmsumubm
  succ PpcInsn
PpcInsVmsumubm = PpcInsn
PpcInsVmsumuhm
  succ PpcInsn
PpcInsVmsumuhm = PpcInsn
PpcInsVmsumuhs
  succ PpcInsn
PpcInsVmsumuhs = PpcInsn
PpcInsVmulesb
  succ PpcInsn
PpcInsVmulesb = PpcInsn
PpcInsVmulesh
  succ PpcInsn
PpcInsVmulesh = PpcInsn
PpcInsVmulesw
  succ PpcInsn
PpcInsVmulesw = PpcInsn
PpcInsVmuleub
  succ PpcInsn
PpcInsVmuleub = PpcInsn
PpcInsVmuleuh
  succ PpcInsn
PpcInsVmuleuh = PpcInsn
PpcInsVmuleuw
  succ PpcInsn
PpcInsVmuleuw = PpcInsn
PpcInsVmulosb
  succ PpcInsn
PpcInsVmulosb = PpcInsn
PpcInsVmulosh
  succ PpcInsn
PpcInsVmulosh = PpcInsn
PpcInsVmulosw
  succ PpcInsn
PpcInsVmulosw = PpcInsn
PpcInsVmuloub
  succ PpcInsn
PpcInsVmuloub = PpcInsn
PpcInsVmulouh
  succ PpcInsn
PpcInsVmulouh = PpcInsn
PpcInsVmulouw
  succ PpcInsn
PpcInsVmulouw = PpcInsn
PpcInsVmuluwm
  succ PpcInsn
PpcInsVmuluwm = PpcInsn
PpcInsVnand
  succ PpcInsn
PpcInsVnand = PpcInsn
PpcInsVnmsubfp
  succ PpcInsn
PpcInsVnmsubfp = PpcInsn
PpcInsVnor
  succ PpcInsn
PpcInsVnor = PpcInsn
PpcInsVor
  succ PpcInsn
PpcInsVor = PpcInsn
PpcInsVorc
  succ PpcInsn
PpcInsVorc = PpcInsn
PpcInsVperm
  succ PpcInsn
PpcInsVperm = PpcInsn
PpcInsVpkpx
  succ PpcInsn
PpcInsVpkpx = PpcInsn
PpcInsVpkshss
  succ PpcInsn
PpcInsVpkshss = PpcInsn
PpcInsVpkshus
  succ PpcInsn
PpcInsVpkshus = PpcInsn
PpcInsVpkswss
  succ PpcInsn
PpcInsVpkswss = PpcInsn
PpcInsVpkswus
  succ PpcInsn
PpcInsVpkswus = PpcInsn
PpcInsVpkuhum
  succ PpcInsn
PpcInsVpkuhum = PpcInsn
PpcInsVpkuhus
  succ PpcInsn
PpcInsVpkuhus = PpcInsn
PpcInsVpkuwum
  succ PpcInsn
PpcInsVpkuwum = PpcInsn
PpcInsVpkuwus
  succ PpcInsn
PpcInsVpkuwus = PpcInsn
PpcInsVpopcntb
  succ PpcInsn
PpcInsVpopcntb = PpcInsn
PpcInsVpopcntd
  succ PpcInsn
PpcInsVpopcntd = PpcInsn
PpcInsVpopcnth
  succ PpcInsn
PpcInsVpopcnth = PpcInsn
PpcInsVpopcntw
  succ PpcInsn
PpcInsVpopcntw = PpcInsn
PpcInsVrefp
  succ PpcInsn
PpcInsVrefp = PpcInsn
PpcInsVrfim
  succ PpcInsn
PpcInsVrfim = PpcInsn
PpcInsVrfin
  succ PpcInsn
PpcInsVrfin = PpcInsn
PpcInsVrfip
  succ PpcInsn
PpcInsVrfip = PpcInsn
PpcInsVrfiz
  succ PpcInsn
PpcInsVrfiz = PpcInsn
PpcInsVrlb
  succ PpcInsn
PpcInsVrlb = PpcInsn
PpcInsVrld
  succ PpcInsn
PpcInsVrld = PpcInsn
PpcInsVrlh
  succ PpcInsn
PpcInsVrlh = PpcInsn
PpcInsVrlw
  succ PpcInsn
PpcInsVrlw = PpcInsn
PpcInsVrsqrtefp
  succ PpcInsn
PpcInsVrsqrtefp = PpcInsn
PpcInsVsel
  succ PpcInsn
PpcInsVsel = PpcInsn
PpcInsVsl
  succ PpcInsn
PpcInsVsl = PpcInsn
PpcInsVslb
  succ PpcInsn
PpcInsVslb = PpcInsn
PpcInsVsld
  succ PpcInsn
PpcInsVsld = PpcInsn
PpcInsVsldoi
  succ PpcInsn
PpcInsVsldoi = PpcInsn
PpcInsVslh
  succ PpcInsn
PpcInsVslh = PpcInsn
PpcInsVslo
  succ PpcInsn
PpcInsVslo = PpcInsn
PpcInsVslw
  succ PpcInsn
PpcInsVslw = PpcInsn
PpcInsVspltb
  succ PpcInsn
PpcInsVspltb = PpcInsn
PpcInsVsplth
  succ PpcInsn
PpcInsVsplth = PpcInsn
PpcInsVspltisb
  succ PpcInsn
PpcInsVspltisb = PpcInsn
PpcInsVspltish
  succ PpcInsn
PpcInsVspltish = PpcInsn
PpcInsVspltisw
  succ PpcInsn
PpcInsVspltisw = PpcInsn
PpcInsVspltw
  succ PpcInsn
PpcInsVspltw = PpcInsn
PpcInsVsr
  succ PpcInsn
PpcInsVsr = PpcInsn
PpcInsVsrab
  succ PpcInsn
PpcInsVsrab = PpcInsn
PpcInsVsrad
  succ PpcInsn
PpcInsVsrad = PpcInsn
PpcInsVsrah
  succ PpcInsn
PpcInsVsrah = PpcInsn
PpcInsVsraw
  succ PpcInsn
PpcInsVsraw = PpcInsn
PpcInsVsrb
  succ PpcInsn
PpcInsVsrb = PpcInsn
PpcInsVsrd
  succ PpcInsn
PpcInsVsrd = PpcInsn
PpcInsVsrh
  succ PpcInsn
PpcInsVsrh = PpcInsn
PpcInsVsro
  succ PpcInsn
PpcInsVsro = PpcInsn
PpcInsVsrw
  succ PpcInsn
PpcInsVsrw = PpcInsn
PpcInsVsubcuw
  succ PpcInsn
PpcInsVsubcuw = PpcInsn
PpcInsVsubfp
  succ PpcInsn
PpcInsVsubfp = PpcInsn
PpcInsVsubsbs
  succ PpcInsn
PpcInsVsubsbs = PpcInsn
PpcInsVsubshs
  succ PpcInsn
PpcInsVsubshs = PpcInsn
PpcInsVsubsws
  succ PpcInsn
PpcInsVsubsws = PpcInsn
PpcInsVsububm
  succ PpcInsn
PpcInsVsububm = PpcInsn
PpcInsVsububs
  succ PpcInsn
PpcInsVsububs = PpcInsn
PpcInsVsubudm
  succ PpcInsn
PpcInsVsubudm = PpcInsn
PpcInsVsubuhm
  succ PpcInsn
PpcInsVsubuhm = PpcInsn
PpcInsVsubuhs
  succ PpcInsn
PpcInsVsubuhs = PpcInsn
PpcInsVsubuwm
  succ PpcInsn
PpcInsVsubuwm = PpcInsn
PpcInsVsubuws
  succ PpcInsn
PpcInsVsubuws = PpcInsn
PpcInsVsum2sws
  succ PpcInsn
PpcInsVsum2sws = PpcInsn
PpcInsVsum4sbs
  succ PpcInsn
PpcInsVsum4sbs = PpcInsn
PpcInsVsum4shs
  succ PpcInsn
PpcInsVsum4shs = PpcInsn
PpcInsVsum4ubs
  succ PpcInsn
PpcInsVsum4ubs = PpcInsn
PpcInsVsumsws
  succ PpcInsn
PpcInsVsumsws = PpcInsn
PpcInsVupkhpx
  succ PpcInsn
PpcInsVupkhpx = PpcInsn
PpcInsVupkhsb
  succ PpcInsn
PpcInsVupkhsb = PpcInsn
PpcInsVupkhsh
  succ PpcInsn
PpcInsVupkhsh = PpcInsn
PpcInsVupklpx
  succ PpcInsn
PpcInsVupklpx = PpcInsn
PpcInsVupklsb
  succ PpcInsn
PpcInsVupklsb = PpcInsn
PpcInsVupklsh
  succ PpcInsn
PpcInsVupklsh = PpcInsn
PpcInsVxor
  succ PpcInsn
PpcInsVxor = PpcInsn
PpcInsWait
  succ PpcInsn
PpcInsWait = PpcInsn
PpcInsWrtee
  succ PpcInsn
PpcInsWrtee = PpcInsn
PpcInsWrteei
  succ PpcInsn
PpcInsWrteei = PpcInsn
PpcInsXor
  succ PpcInsn
PpcInsXor = PpcInsn
PpcInsXori
  succ PpcInsn
PpcInsXori = PpcInsn
PpcInsXoris
  succ PpcInsn
PpcInsXoris = PpcInsn
PpcInsXsabsdp
  succ PpcInsn
PpcInsXsabsdp = PpcInsn
PpcInsXsadddp
  succ PpcInsn
PpcInsXsadddp = PpcInsn
PpcInsXscmpodp
  succ PpcInsn
PpcInsXscmpodp = PpcInsn
PpcInsXscmpudp
  succ PpcInsn
PpcInsXscmpudp = PpcInsn
PpcInsXscpsgndp
  succ PpcInsn
PpcInsXscpsgndp = PpcInsn
PpcInsXscvdpsp
  succ PpcInsn
PpcInsXscvdpsp = PpcInsn
PpcInsXscvdpsxds
  succ PpcInsn
PpcInsXscvdpsxds = PpcInsn
PpcInsXscvdpsxws
  succ PpcInsn
PpcInsXscvdpsxws = PpcInsn
PpcInsXscvdpuxds
  succ PpcInsn
PpcInsXscvdpuxds = PpcInsn
PpcInsXscvdpuxws
  succ PpcInsn
PpcInsXscvdpuxws = PpcInsn
PpcInsXscvspdp
  succ PpcInsn
PpcInsXscvspdp = PpcInsn
PpcInsXscvsxddp
  succ PpcInsn
PpcInsXscvsxddp = PpcInsn
PpcInsXscvuxddp
  succ PpcInsn
PpcInsXscvuxddp = PpcInsn
PpcInsXsdivdp
  succ PpcInsn
PpcInsXsdivdp = PpcInsn
PpcInsXsmaddadp
  succ PpcInsn
PpcInsXsmaddadp = PpcInsn
PpcInsXsmaddmdp
  succ PpcInsn
PpcInsXsmaddmdp = PpcInsn
PpcInsXsmaxdp
  succ PpcInsn
PpcInsXsmaxdp = PpcInsn
PpcInsXsmindp
  succ PpcInsn
PpcInsXsmindp = PpcInsn
PpcInsXsmsubadp
  succ PpcInsn
PpcInsXsmsubadp = PpcInsn
PpcInsXsmsubmdp
  succ PpcInsn
PpcInsXsmsubmdp = PpcInsn
PpcInsXsmuldp
  succ PpcInsn
PpcInsXsmuldp = PpcInsn
PpcInsXsnabsdp
  succ PpcInsn
PpcInsXsnabsdp = PpcInsn
PpcInsXsnegdp
  succ PpcInsn
PpcInsXsnegdp = PpcInsn
PpcInsXsnmaddadp
  succ PpcInsn
PpcInsXsnmaddadp = PpcInsn
PpcInsXsnmaddmdp
  succ PpcInsn
PpcInsXsnmaddmdp = PpcInsn
PpcInsXsnmsubadp
  succ PpcInsn
PpcInsXsnmsubadp = PpcInsn
PpcInsXsnmsubmdp
  succ PpcInsn
PpcInsXsnmsubmdp = PpcInsn
PpcInsXsrdpi
  succ PpcInsn
PpcInsXsrdpi = PpcInsn
PpcInsXsrdpic
  succ PpcInsn
PpcInsXsrdpic = PpcInsn
PpcInsXsrdpim
  succ PpcInsn
PpcInsXsrdpim = PpcInsn
PpcInsXsrdpip
  succ PpcInsn
PpcInsXsrdpip = PpcInsn
PpcInsXsrdpiz
  succ PpcInsn
PpcInsXsrdpiz = PpcInsn
PpcInsXsredp
  succ PpcInsn
PpcInsXsredp = PpcInsn
PpcInsXsrsqrtedp
  succ PpcInsn
PpcInsXsrsqrtedp = PpcInsn
PpcInsXssqrtdp
  succ PpcInsn
PpcInsXssqrtdp = PpcInsn
PpcInsXssubdp
  succ PpcInsn
PpcInsXssubdp = PpcInsn
PpcInsXstdivdp
  succ PpcInsn
PpcInsXstdivdp = PpcInsn
PpcInsXstsqrtdp
  succ PpcInsn
PpcInsXstsqrtdp = PpcInsn
PpcInsXvabsdp
  succ PpcInsn
PpcInsXvabsdp = PpcInsn
PpcInsXvabssp
  succ PpcInsn
PpcInsXvabssp = PpcInsn
PpcInsXvadddp
  succ PpcInsn
PpcInsXvadddp = PpcInsn
PpcInsXvaddsp
  succ PpcInsn
PpcInsXvaddsp = PpcInsn
PpcInsXvcmpeqdp
  succ PpcInsn
PpcInsXvcmpeqdp = PpcInsn
PpcInsXvcmpeqsp
  succ PpcInsn
PpcInsXvcmpeqsp = PpcInsn
PpcInsXvcmpgedp
  succ PpcInsn
PpcInsXvcmpgedp = PpcInsn
PpcInsXvcmpgesp
  succ PpcInsn
PpcInsXvcmpgesp = PpcInsn
PpcInsXvcmpgtdp
  succ PpcInsn
PpcInsXvcmpgtdp = PpcInsn
PpcInsXvcmpgtsp
  succ PpcInsn
PpcInsXvcmpgtsp = PpcInsn
PpcInsXvcpsgndp
  succ PpcInsn
PpcInsXvcpsgndp = PpcInsn
PpcInsXvcpsgnsp
  succ PpcInsn
PpcInsXvcpsgnsp = PpcInsn
PpcInsXvcvdpsp
  succ PpcInsn
PpcInsXvcvdpsp = PpcInsn
PpcInsXvcvdpsxds
  succ PpcInsn
PpcInsXvcvdpsxds = PpcInsn
PpcInsXvcvdpsxws
  succ PpcInsn
PpcInsXvcvdpsxws = PpcInsn
PpcInsXvcvdpuxds
  succ PpcInsn
PpcInsXvcvdpuxds = PpcInsn
PpcInsXvcvdpuxws
  succ PpcInsn
PpcInsXvcvdpuxws = PpcInsn
PpcInsXvcvspdp
  succ PpcInsn
PpcInsXvcvspdp = PpcInsn
PpcInsXvcvspsxds
  succ PpcInsn
PpcInsXvcvspsxds = PpcInsn
PpcInsXvcvspsxws
  succ PpcInsn
PpcInsXvcvspsxws = PpcInsn
PpcInsXvcvspuxds
  succ PpcInsn
PpcInsXvcvspuxds = PpcInsn
PpcInsXvcvspuxws
  succ PpcInsn
PpcInsXvcvspuxws = PpcInsn
PpcInsXvcvsxddp
  succ PpcInsn
PpcInsXvcvsxddp = PpcInsn
PpcInsXvcvsxdsp
  succ PpcInsn
PpcInsXvcvsxdsp = PpcInsn
PpcInsXvcvsxwdp
  succ PpcInsn
PpcInsXvcvsxwdp = PpcInsn
PpcInsXvcvsxwsp
  succ PpcInsn
PpcInsXvcvsxwsp = PpcInsn
PpcInsXvcvuxddp
  succ PpcInsn
PpcInsXvcvuxddp = PpcInsn
PpcInsXvcvuxdsp
  succ PpcInsn
PpcInsXvcvuxdsp = PpcInsn
PpcInsXvcvuxwdp
  succ PpcInsn
PpcInsXvcvuxwdp = PpcInsn
PpcInsXvcvuxwsp
  succ PpcInsn
PpcInsXvcvuxwsp = PpcInsn
PpcInsXvdivdp
  succ PpcInsn
PpcInsXvdivdp = PpcInsn
PpcInsXvdivsp
  succ PpcInsn
PpcInsXvdivsp = PpcInsn
PpcInsXvmaddadp
  succ PpcInsn
PpcInsXvmaddadp = PpcInsn
PpcInsXvmaddasp
  succ PpcInsn
PpcInsXvmaddasp = PpcInsn
PpcInsXvmaddmdp
  succ PpcInsn
PpcInsXvmaddmdp = PpcInsn
PpcInsXvmaddmsp
  succ PpcInsn
PpcInsXvmaddmsp = PpcInsn
PpcInsXvmaxdp
  succ PpcInsn
PpcInsXvmaxdp = PpcInsn
PpcInsXvmaxsp
  succ PpcInsn
PpcInsXvmaxsp = PpcInsn
PpcInsXvmindp
  succ PpcInsn
PpcInsXvmindp = PpcInsn
PpcInsXvminsp
  succ PpcInsn
PpcInsXvminsp = PpcInsn
PpcInsXvmsubadp
  succ PpcInsn
PpcInsXvmsubadp = PpcInsn
PpcInsXvmsubasp
  succ PpcInsn
PpcInsXvmsubasp = PpcInsn
PpcInsXvmsubmdp
  succ PpcInsn
PpcInsXvmsubmdp = PpcInsn
PpcInsXvmsubmsp
  succ PpcInsn
PpcInsXvmsubmsp = PpcInsn
PpcInsXvmuldp
  succ PpcInsn
PpcInsXvmuldp = PpcInsn
PpcInsXvmulsp
  succ PpcInsn
PpcInsXvmulsp = PpcInsn
PpcInsXvnabsdp
  succ PpcInsn
PpcInsXvnabsdp = PpcInsn
PpcInsXvnabssp
  succ PpcInsn
PpcInsXvnabssp = PpcInsn
PpcInsXvnegdp
  succ PpcInsn
PpcInsXvnegdp = PpcInsn
PpcInsXvnegsp
  succ PpcInsn
PpcInsXvnegsp = PpcInsn
PpcInsXvnmaddadp
  succ PpcInsn
PpcInsXvnmaddadp = PpcInsn
PpcInsXvnmaddasp
  succ PpcInsn
PpcInsXvnmaddasp = PpcInsn
PpcInsXvnmaddmdp
  succ PpcInsn
PpcInsXvnmaddmdp = PpcInsn
PpcInsXvnmaddmsp
  succ PpcInsn
PpcInsXvnmaddmsp = PpcInsn
PpcInsXvnmsubadp
  succ PpcInsn
PpcInsXvnmsubadp = PpcInsn
PpcInsXvnmsubasp
  succ PpcInsn
PpcInsXvnmsubasp = PpcInsn
PpcInsXvnmsubmdp
  succ PpcInsn
PpcInsXvnmsubmdp = PpcInsn
PpcInsXvnmsubmsp
  succ PpcInsn
PpcInsXvnmsubmsp = PpcInsn
PpcInsXvrdpi
  succ PpcInsn
PpcInsXvrdpi = PpcInsn
PpcInsXvrdpic
  succ PpcInsn
PpcInsXvrdpic = PpcInsn
PpcInsXvrdpim
  succ PpcInsn
PpcInsXvrdpim = PpcInsn
PpcInsXvrdpip
  succ PpcInsn
PpcInsXvrdpip = PpcInsn
PpcInsXvrdpiz
  succ PpcInsn
PpcInsXvrdpiz = PpcInsn
PpcInsXvredp
  succ PpcInsn
PpcInsXvredp = PpcInsn
PpcInsXvresp
  succ PpcInsn
PpcInsXvresp = PpcInsn
PpcInsXvrspi
  succ PpcInsn
PpcInsXvrspi = PpcInsn
PpcInsXvrspic
  succ PpcInsn
PpcInsXvrspic = PpcInsn
PpcInsXvrspim
  succ PpcInsn
PpcInsXvrspim = PpcInsn
PpcInsXvrspip
  succ PpcInsn
PpcInsXvrspip = PpcInsn
PpcInsXvrspiz
  succ PpcInsn
PpcInsXvrspiz = PpcInsn
PpcInsXvrsqrtedp
  succ PpcInsn
PpcInsXvrsqrtedp = PpcInsn
PpcInsXvrsqrtesp
  succ PpcInsn
PpcInsXvrsqrtesp = PpcInsn
PpcInsXvsqrtdp
  succ PpcInsn
PpcInsXvsqrtdp = PpcInsn
PpcInsXvsqrtsp
  succ PpcInsn
PpcInsXvsqrtsp = PpcInsn
PpcInsXvsubdp
  succ PpcInsn
PpcInsXvsubdp = PpcInsn
PpcInsXvsubsp
  succ PpcInsn
PpcInsXvsubsp = PpcInsn
PpcInsXvtdivdp
  succ PpcInsn
PpcInsXvtdivdp = PpcInsn
PpcInsXvtdivsp
  succ PpcInsn
PpcInsXvtdivsp = PpcInsn
PpcInsXvtsqrtdp
  succ PpcInsn
PpcInsXvtsqrtdp = PpcInsn
PpcInsXvtsqrtsp
  succ PpcInsn
PpcInsXvtsqrtsp = PpcInsn
PpcInsXxland
  succ PpcInsn
PpcInsXxland = PpcInsn
PpcInsXxlandc
  succ PpcInsn
PpcInsXxlandc = PpcInsn
PpcInsXxleqv
  succ PpcInsn
PpcInsXxleqv = PpcInsn
PpcInsXxlnand
  succ PpcInsn
PpcInsXxlnand = PpcInsn
PpcInsXxlnor
  succ PpcInsn
PpcInsXxlnor = PpcInsn
PpcInsXxlor
  succ PpcInsn
PpcInsXxlor = PpcInsn
PpcInsXxlorc
  succ PpcInsn
PpcInsXxlorc = PpcInsn
PpcInsXxlxor
  succ PpcInsn
PpcInsXxlxor = PpcInsn
PpcInsXxmrghw
  succ PpcInsn
PpcInsXxmrghw = PpcInsn
PpcInsXxmrglw
  succ PpcInsn
PpcInsXxmrglw = PpcInsn
PpcInsXxpermdi
  succ PpcInsn
PpcInsXxpermdi = PpcInsn
PpcInsXxsel
  succ PpcInsn
PpcInsXxsel = PpcInsn
PpcInsXxsldwi
  succ PpcInsn
PpcInsXxsldwi = PpcInsn
PpcInsXxspltw
  succ PpcInsn
PpcInsXxspltw = PpcInsn
PpcInsBca
  succ PpcInsn
PpcInsBca = PpcInsn
PpcInsBcla
  succ PpcInsn
PpcInsBcla = PpcInsn
PpcInsSlwi
  succ PpcInsn
PpcInsSlwi = PpcInsn
PpcInsSrwi
  succ PpcInsn
PpcInsSrwi = PpcInsn
PpcInsSldi
  succ PpcInsn
PpcInsSldi = PpcInsn
PpcInsBta
  succ PpcInsn
PpcInsBta = PpcInsn
PpcInsCrset
  succ PpcInsn
PpcInsCrset = PpcInsn
PpcInsCrnot
  succ PpcInsn
PpcInsCrnot = PpcInsn
PpcInsCrmove
  succ PpcInsn
PpcInsCrmove = PpcInsn
PpcInsCrclr
  succ PpcInsn
PpcInsCrclr = PpcInsn
PpcInsMfbr0
  succ PpcInsn
PpcInsMfbr0 = PpcInsn
PpcInsMfbr1
  succ PpcInsn
PpcInsMfbr1 = PpcInsn
PpcInsMfbr2
  succ PpcInsn
PpcInsMfbr2 = PpcInsn
PpcInsMfbr3
  succ PpcInsn
PpcInsMfbr3 = PpcInsn
PpcInsMfbr4
  succ PpcInsn
PpcInsMfbr4 = PpcInsn
PpcInsMfbr5
  succ PpcInsn
PpcInsMfbr5 = PpcInsn
PpcInsMfbr6
  succ PpcInsn
PpcInsMfbr6 = PpcInsn
PpcInsMfbr7
  succ PpcInsn
PpcInsMfbr7 = PpcInsn
PpcInsMfxer
  succ PpcInsn
PpcInsMfxer = PpcInsn
PpcInsMfrtcu
  succ PpcInsn
PpcInsMfrtcu = PpcInsn
PpcInsMfrtcl
  succ PpcInsn
PpcInsMfrtcl = PpcInsn
PpcInsMfdscr
  succ PpcInsn
PpcInsMfdscr = PpcInsn
PpcInsMfdsisr
  succ PpcInsn
PpcInsMfdsisr = PpcInsn
PpcInsMfdar
  succ PpcInsn
PpcInsMfdar = PpcInsn
PpcInsMfsrr2
  succ PpcInsn
PpcInsMfsrr2 = PpcInsn
PpcInsMfsrr3
  succ PpcInsn
PpcInsMfsrr3 = PpcInsn
PpcInsMfcfar
  succ PpcInsn
PpcInsMfcfar = PpcInsn
PpcInsMfamr
  succ PpcInsn
PpcInsMfamr = PpcInsn
PpcInsMfpid
  succ PpcInsn
PpcInsMfpid = PpcInsn
PpcInsMftblo
  succ PpcInsn
PpcInsMftblo = PpcInsn
PpcInsMftbhi
  succ PpcInsn
PpcInsMftbhi = PpcInsn
PpcInsMfdbatu
  succ PpcInsn
PpcInsMfdbatu = PpcInsn
PpcInsMfdbatl
  succ PpcInsn
PpcInsMfdbatl = PpcInsn
PpcInsMfibatu
  succ PpcInsn
PpcInsMfibatu = PpcInsn
PpcInsMfibatl
  succ PpcInsn
PpcInsMfibatl = PpcInsn
PpcInsMfdccr
  succ PpcInsn
PpcInsMfdccr = PpcInsn
PpcInsMficcr
  succ PpcInsn
PpcInsMficcr = PpcInsn
PpcInsMfdear
  succ PpcInsn
PpcInsMfdear = PpcInsn
PpcInsMfesr
  succ PpcInsn
PpcInsMfesr = PpcInsn
PpcInsMfspefscr
  succ PpcInsn
PpcInsMfspefscr = PpcInsn
PpcInsMftcr
  succ PpcInsn
PpcInsMftcr = PpcInsn
PpcInsMfasr
  succ PpcInsn
PpcInsMfasr = PpcInsn
PpcInsMfpvr
  succ PpcInsn
PpcInsMfpvr = PpcInsn
PpcInsMftbu
  succ PpcInsn
PpcInsMftbu = PpcInsn
PpcInsMtcr
  succ PpcInsn
PpcInsMtcr = PpcInsn
PpcInsMtbr0
  succ PpcInsn
PpcInsMtbr0 = PpcInsn
PpcInsMtbr1
  succ PpcInsn
PpcInsMtbr1 = PpcInsn
PpcInsMtbr2
  succ PpcInsn
PpcInsMtbr2 = PpcInsn
PpcInsMtbr3
  succ PpcInsn
PpcInsMtbr3 = PpcInsn
PpcInsMtbr4
  succ PpcInsn
PpcInsMtbr4 = PpcInsn
PpcInsMtbr5
  succ PpcInsn
PpcInsMtbr5 = PpcInsn
PpcInsMtbr6
  succ PpcInsn
PpcInsMtbr6 = PpcInsn
PpcInsMtbr7
  succ PpcInsn
PpcInsMtbr7 = PpcInsn
PpcInsMtxer
  succ PpcInsn
PpcInsMtxer = PpcInsn
PpcInsMtdscr
  succ PpcInsn
PpcInsMtdscr = PpcInsn
PpcInsMtdsisr
  succ PpcInsn
PpcInsMtdsisr = PpcInsn
PpcInsMtdar
  succ PpcInsn
PpcInsMtdar = PpcInsn
PpcInsMtsrr2
  succ PpcInsn
PpcInsMtsrr2 = PpcInsn
PpcInsMtsrr3
  succ PpcInsn
PpcInsMtsrr3 = PpcInsn
PpcInsMtcfar
  succ PpcInsn
PpcInsMtcfar = PpcInsn
PpcInsMtamr
  succ PpcInsn
PpcInsMtamr = PpcInsn
PpcInsMtpid
  succ PpcInsn
PpcInsMtpid = PpcInsn
PpcInsMttbl
  succ PpcInsn
PpcInsMttbl = PpcInsn
PpcInsMttbu
  succ PpcInsn
PpcInsMttbu = PpcInsn
PpcInsMttblo
  succ PpcInsn
PpcInsMttblo = PpcInsn
PpcInsMttbhi
  succ PpcInsn
PpcInsMttbhi = PpcInsn
PpcInsMtdbatu
  succ PpcInsn
PpcInsMtdbatu = PpcInsn
PpcInsMtdbatl
  succ PpcInsn
PpcInsMtdbatl = PpcInsn
PpcInsMtibatu
  succ PpcInsn
PpcInsMtibatu = PpcInsn
PpcInsMtibatl
  succ PpcInsn
PpcInsMtibatl = PpcInsn
PpcInsMtdccr
  succ PpcInsn
PpcInsMtdccr = PpcInsn
PpcInsMticcr
  succ PpcInsn
PpcInsMticcr = PpcInsn
PpcInsMtdear
  succ PpcInsn
PpcInsMtdear = PpcInsn
PpcInsMtesr
  succ PpcInsn
PpcInsMtesr = PpcInsn
PpcInsMtspefscr
  succ PpcInsn
PpcInsMtspefscr = PpcInsn
PpcInsMttcr
  succ PpcInsn
PpcInsMttcr = PpcInsn
PpcInsNot
  succ PpcInsn
PpcInsNot = PpcInsn
PpcInsMr
  succ PpcInsn
PpcInsMr = PpcInsn
PpcInsRotld
  succ PpcInsn
PpcInsRotld = PpcInsn
PpcInsRotldi
  succ PpcInsn
PpcInsRotldi = PpcInsn
PpcInsClrldi
  succ PpcInsn
PpcInsClrldi = PpcInsn
PpcInsRotlwi
  succ PpcInsn
PpcInsRotlwi = PpcInsn
PpcInsClrlwi
  succ PpcInsn
PpcInsClrlwi = PpcInsn
PpcInsRotlw
  succ PpcInsn
PpcInsRotlw = PpcInsn
PpcInsSub
  succ PpcInsn
PpcInsSub = PpcInsn
PpcInsSubc
  succ PpcInsn
PpcInsSubc = PpcInsn
PpcInsLwsync
  succ PpcInsn
PpcInsLwsync = PpcInsn
PpcInsPtesync
  succ PpcInsn
PpcInsPtesync = PpcInsn
PpcInsTdlt
  succ PpcInsn
PpcInsTdlt = PpcInsn
PpcInsTdeq
  succ PpcInsn
PpcInsTdeq = PpcInsn
PpcInsTdgt
  succ PpcInsn
PpcInsTdgt = PpcInsn
PpcInsTdne
  succ PpcInsn
PpcInsTdne = PpcInsn
PpcInsTdllt
  succ PpcInsn
PpcInsTdllt = PpcInsn
PpcInsTdlgt
  succ PpcInsn
PpcInsTdlgt = PpcInsn
PpcInsTdu
  succ PpcInsn
PpcInsTdu = PpcInsn
PpcInsTdlti
  succ PpcInsn
PpcInsTdlti = PpcInsn
PpcInsTdeqi
  succ PpcInsn
PpcInsTdeqi = PpcInsn
PpcInsTdgti
  succ PpcInsn
PpcInsTdgti = PpcInsn
PpcInsTdnei
  succ PpcInsn
PpcInsTdnei = PpcInsn
PpcInsTdllti
  succ PpcInsn
PpcInsTdllti = PpcInsn
PpcInsTdlgti
  succ PpcInsn
PpcInsTdlgti = PpcInsn
PpcInsTdui
  succ PpcInsn
PpcInsTdui = PpcInsn
PpcInsTlbrehi
  succ PpcInsn
PpcInsTlbrehi = PpcInsn
PpcInsTlbrelo
  succ PpcInsn
PpcInsTlbrelo = PpcInsn
PpcInsTlbwehi
  succ PpcInsn
PpcInsTlbwehi = PpcInsn
PpcInsTlbwelo
  succ PpcInsn
PpcInsTlbwelo = PpcInsn
PpcInsTwlt
  succ PpcInsn
PpcInsTwlt = PpcInsn
PpcInsTweq
  succ PpcInsn
PpcInsTweq = PpcInsn
PpcInsTwgt
  succ PpcInsn
PpcInsTwgt = PpcInsn
PpcInsTwne
  succ PpcInsn
PpcInsTwne = PpcInsn
PpcInsTwllt
  succ PpcInsn
PpcInsTwllt = PpcInsn
PpcInsTwlgt
  succ PpcInsn
PpcInsTwlgt = PpcInsn
PpcInsTwu
  succ PpcInsn
PpcInsTwu = PpcInsn
PpcInsTwlti
  succ PpcInsn
PpcInsTwlti = PpcInsn
PpcInsTweqi
  succ PpcInsn
PpcInsTweqi = PpcInsn
PpcInsTwgti
  succ PpcInsn
PpcInsTwgti = PpcInsn
PpcInsTwnei
  succ PpcInsn
PpcInsTwnei = PpcInsn
PpcInsTwllti
  succ PpcInsn
PpcInsTwllti = PpcInsn
PpcInsTwlgti
  succ PpcInsn
PpcInsTwlgti = PpcInsn
PpcInsTwui
  succ PpcInsn
PpcInsTwui = PpcInsn
PpcInsWaitrsv
  succ PpcInsn
PpcInsWaitrsv = PpcInsn
PpcInsWaitimpl
  succ PpcInsn
PpcInsWaitimpl = PpcInsn
PpcInsXnop
  succ PpcInsn
PpcInsXnop = PpcInsn
PpcInsXvmovdp
  succ PpcInsn
PpcInsXvmovdp = PpcInsn
PpcInsXvmovsp
  succ PpcInsn
PpcInsXvmovsp = PpcInsn
PpcInsXxspltd
  succ PpcInsn
PpcInsXxspltd = PpcInsn
PpcInsXxmrghd
  succ PpcInsn
PpcInsXxmrghd = PpcInsn
PpcInsXxmrgld
  succ PpcInsn
PpcInsXxmrgld = PpcInsn
PpcInsXxswapd
  succ PpcInsn
PpcInsXxswapd = PpcInsn
PpcInsBt
  succ PpcInsn
PpcInsBt = PpcInsn
PpcInsBf
  succ PpcInsn
PpcInsBf = PpcInsn
PpcInsBdnzt
  succ PpcInsn
PpcInsBdnzt = PpcInsn
PpcInsBdnzf
  succ PpcInsn
PpcInsBdnzf = PpcInsn
PpcInsBdzf
  succ PpcInsn
PpcInsBdzf = PpcInsn
PpcInsBdzt
  succ PpcInsn
PpcInsBdzt = PpcInsn
PpcInsBfa
  succ PpcInsn
PpcInsBfa = PpcInsn
PpcInsBdnzta
  succ PpcInsn
PpcInsBdnzta = PpcInsn
PpcInsBdnzfa
  succ PpcInsn
PpcInsBdnzfa = PpcInsn
PpcInsBdzta
  succ PpcInsn
PpcInsBdzta = PpcInsn
PpcInsBdzfa
  succ PpcInsn
PpcInsBdzfa = PpcInsn
PpcInsBtctr
  succ PpcInsn
PpcInsBtctr = PpcInsn
PpcInsBfctr
  succ PpcInsn
PpcInsBfctr = PpcInsn
PpcInsBtctrl
  succ PpcInsn
PpcInsBtctrl = PpcInsn
PpcInsBfctrl
  succ PpcInsn
PpcInsBfctrl = PpcInsn
PpcInsBtl
  succ PpcInsn
PpcInsBtl = PpcInsn
PpcInsBfl
  succ PpcInsn
PpcInsBfl = PpcInsn
PpcInsBdnztl
  succ PpcInsn
PpcInsBdnztl = PpcInsn
PpcInsBdnzfl
  succ PpcInsn
PpcInsBdnzfl = PpcInsn
PpcInsBdztl
  succ PpcInsn
PpcInsBdztl = PpcInsn
PpcInsBdzfl
  succ PpcInsn
PpcInsBdzfl = PpcInsn
PpcInsBtla
  succ PpcInsn
PpcInsBtla = PpcInsn
PpcInsBfla
  succ PpcInsn
PpcInsBfla = PpcInsn
PpcInsBdnztla
  succ PpcInsn
PpcInsBdnztla = PpcInsn
PpcInsBdnzfla
  succ PpcInsn
PpcInsBdnzfla = PpcInsn
PpcInsBdztla
  succ PpcInsn
PpcInsBdztla = PpcInsn
PpcInsBdzfla
  succ PpcInsn
PpcInsBdzfla = PpcInsn
PpcInsBtlr
  succ PpcInsn
PpcInsBtlr = PpcInsn
PpcInsBflr
  succ PpcInsn
PpcInsBflr = PpcInsn
PpcInsBdnztlr
  succ PpcInsn
PpcInsBdnztlr = PpcInsn
PpcInsBdztlr
  succ PpcInsn
PpcInsBdztlr = PpcInsn
PpcInsBdzflr
  succ PpcInsn
PpcInsBdzflr = PpcInsn
PpcInsBtlrl
  succ PpcInsn
PpcInsBtlrl = PpcInsn
PpcInsBflrl
  succ PpcInsn
PpcInsBflrl = PpcInsn
PpcInsBdnztlrl
  succ PpcInsn
PpcInsBdnztlrl = PpcInsn
PpcInsBdnzflrl
  succ PpcInsn
PpcInsBdnzflrl = PpcInsn
PpcInsBdztlrl
  succ PpcInsn
PpcInsBdztlrl = PpcInsn
PpcInsBdzflrl
  succ PpcInsn
PpcInsBdzflrl = PpcInsn
PpcInsQvfand
  succ PpcInsn
PpcInsQvfand = PpcInsn
PpcInsQvfclr
  succ PpcInsn
PpcInsQvfclr = PpcInsn
PpcInsQvfandc
  succ PpcInsn
PpcInsQvfandc = PpcInsn
PpcInsQvfctfb
  succ PpcInsn
PpcInsQvfctfb = PpcInsn
PpcInsQvfxor
  succ PpcInsn
PpcInsQvfxor = PpcInsn
PpcInsQvfor
  succ PpcInsn
PpcInsQvfor = PpcInsn
PpcInsQvfnor
  succ PpcInsn
PpcInsQvfnor = PpcInsn
PpcInsQvfequ
  succ PpcInsn
PpcInsQvfequ = PpcInsn
PpcInsQvfnot
  succ PpcInsn
PpcInsQvfnot = PpcInsn
PpcInsQvforc
  succ PpcInsn
PpcInsQvforc = PpcInsn
PpcInsQvfnand
  succ PpcInsn
PpcInsQvfnand = PpcInsn
PpcInsQvfset
  succ PpcInsn
PpcInsQvfset = PpcInsn
PpcInsEnding
  succ PpcInsn
PpcInsEnding = String -> PpcInsn
forall a. HasCallStack => String -> a
error String
"PpcInsn.succ: PpcInsEnding has no successor"

  pred :: PpcInsn -> PpcInsn
pred PpcInsn
PpcInsAdd = PpcInsn
PpcInsInvalid
  pred PpcInsn
PpcInsAddc = PpcInsn
PpcInsAdd
  pred PpcInsn
PpcInsAdde = PpcInsn
PpcInsAddc
  pred PpcInsn
PpcInsAddi = PpcInsn
PpcInsAdde
  pred PpcInsn
PpcInsAddic = PpcInsn
PpcInsAddi
  pred PpcInsn
PpcInsAddis = PpcInsn
PpcInsAddic
  pred PpcInsn
PpcInsAddme = PpcInsn
PpcInsAddis
  pred PpcInsn
PpcInsAddze = PpcInsn
PpcInsAddme
  pred PpcInsn
PpcInsAnd = PpcInsn
PpcInsAddze
  pred PpcInsn
PpcInsAndc = PpcInsn
PpcInsAnd
  pred PpcInsn
PpcInsAndis = PpcInsn
PpcInsAndc
  pred PpcInsn
PpcInsAndi = PpcInsn
PpcInsAndis
  pred PpcInsn
PpcInsAttn = PpcInsn
PpcInsAndi
  pred PpcInsn
PpcInsB = PpcInsn
PpcInsAttn
  pred PpcInsn
PpcInsBa = PpcInsn
PpcInsB
  pred PpcInsn
PpcInsBc = PpcInsn
PpcInsBa
  pred PpcInsn
PpcInsBcctr = PpcInsn
PpcInsBc
  pred PpcInsn
PpcInsBcctrl = PpcInsn
PpcInsBcctr
  pred PpcInsn
PpcInsBcl = PpcInsn
PpcInsBcctrl
  pred PpcInsn
PpcInsBclr = PpcInsn
PpcInsBcl
  pred PpcInsn
PpcInsBclrl = PpcInsn
PpcInsBclr
  pred PpcInsn
PpcInsBctr = PpcInsn
PpcInsBclrl
  pred PpcInsn
PpcInsBctrl = PpcInsn
PpcInsBctr
  pred PpcInsn
PpcInsBct = PpcInsn
PpcInsBctrl
  pred PpcInsn
PpcInsBdnz = PpcInsn
PpcInsBct
  pred PpcInsn
PpcInsBdnza = PpcInsn
PpcInsBdnz
  pred PpcInsn
PpcInsBdnzl = PpcInsn
PpcInsBdnza
  pred PpcInsn
PpcInsBdnzla = PpcInsn
PpcInsBdnzl
  pred PpcInsn
PpcInsBdnzlr = PpcInsn
PpcInsBdnzla
  pred PpcInsn
PpcInsBdnzlrl = PpcInsn
PpcInsBdnzlr
  pred PpcInsn
PpcInsBdz = PpcInsn
PpcInsBdnzlrl
  pred PpcInsn
PpcInsBdza = PpcInsn
PpcInsBdz
  pred PpcInsn
PpcInsBdzl = PpcInsn
PpcInsBdza
  pred PpcInsn
PpcInsBdzla = PpcInsn
PpcInsBdzl
  pred PpcInsn
PpcInsBdzlr = PpcInsn
PpcInsBdzla
  pred PpcInsn
PpcInsBdzlrl = PpcInsn
PpcInsBdzlr
  pred PpcInsn
PpcInsBl = PpcInsn
PpcInsBdzlrl
  pred PpcInsn
PpcInsBla = PpcInsn
PpcInsBl
  pred PpcInsn
PpcInsBlr = PpcInsn
PpcInsBla
  pred PpcInsn
PpcInsBlrl = PpcInsn
PpcInsBlr
  pred PpcInsn
PpcInsBrinc = PpcInsn
PpcInsBlrl
  pred PpcInsn
PpcInsCmpb = PpcInsn
PpcInsBrinc
  pred PpcInsn
PpcInsCmpd = PpcInsn
PpcInsCmpb
  pred PpcInsn
PpcInsCmpdi = PpcInsn
PpcInsCmpd
  pred PpcInsn
PpcInsCmpld = PpcInsn
PpcInsCmpdi
  pred PpcInsn
PpcInsCmpldi = PpcInsn
PpcInsCmpld
  pred PpcInsn
PpcInsCmplw = PpcInsn
PpcInsCmpldi
  pred PpcInsn
PpcInsCmplwi = PpcInsn
PpcInsCmplw
  pred PpcInsn
PpcInsCmpw = PpcInsn
PpcInsCmplwi
  pred PpcInsn
PpcInsCmpwi = PpcInsn
PpcInsCmpw
  pred PpcInsn
PpcInsCntlzd = PpcInsn
PpcInsCmpwi
  pred PpcInsn
PpcInsCntlzw = PpcInsn
PpcInsCntlzd
  pred PpcInsn
PpcInsCreqv = PpcInsn
PpcInsCntlzw
  pred PpcInsn
PpcInsCrxor = PpcInsn
PpcInsCreqv
  pred PpcInsn
PpcInsCrand = PpcInsn
PpcInsCrxor
  pred PpcInsn
PpcInsCrandc = PpcInsn
PpcInsCrand
  pred PpcInsn
PpcInsCrnand = PpcInsn
PpcInsCrandc
  pred PpcInsn
PpcInsCrnor = PpcInsn
PpcInsCrnand
  pred PpcInsn
PpcInsCror = PpcInsn
PpcInsCrnor
  pred PpcInsn
PpcInsCrorc = PpcInsn
PpcInsCror
  pred PpcInsn
PpcInsDcba = PpcInsn
PpcInsCrorc
  pred PpcInsn
PpcInsDcbf = PpcInsn
PpcInsDcba
  pred PpcInsn
PpcInsDcbi = PpcInsn
PpcInsDcbf
  pred PpcInsn
PpcInsDcbst = PpcInsn
PpcInsDcbi
  pred PpcInsn
PpcInsDcbt = PpcInsn
PpcInsDcbst
  pred PpcInsn
PpcInsDcbtst = PpcInsn
PpcInsDcbt
  pred PpcInsn
PpcInsDcbz = PpcInsn
PpcInsDcbtst
  pred PpcInsn
PpcInsDcbzl = PpcInsn
PpcInsDcbz
  pred PpcInsn
PpcInsDccci = PpcInsn
PpcInsDcbzl
  pred PpcInsn
PpcInsDivd = PpcInsn
PpcInsDccci
  pred PpcInsn
PpcInsDivdu = PpcInsn
PpcInsDivd
  pred PpcInsn
PpcInsDivw = PpcInsn
PpcInsDivdu
  pred PpcInsn
PpcInsDivwu = PpcInsn
PpcInsDivw
  pred PpcInsn
PpcInsDss = PpcInsn
PpcInsDivwu
  pred PpcInsn
PpcInsDssall = PpcInsn
PpcInsDss
  pred PpcInsn
PpcInsDst = PpcInsn
PpcInsDssall
  pred PpcInsn
PpcInsDstst = PpcInsn
PpcInsDst
  pred PpcInsn
PpcInsDststt = PpcInsn
PpcInsDstst
  pred PpcInsn
PpcInsDstt = PpcInsn
PpcInsDststt
  pred PpcInsn
PpcInsEqv = PpcInsn
PpcInsDstt
  pred PpcInsn
PpcInsEvabs = PpcInsn
PpcInsEqv
  pred PpcInsn
PpcInsEvaddiw = PpcInsn
PpcInsEvabs
  pred PpcInsn
PpcInsEvaddsmiaaw = PpcInsn
PpcInsEvaddiw
  pred PpcInsn
PpcInsEvaddssiaaw = PpcInsn
PpcInsEvaddsmiaaw
  pred PpcInsn
PpcInsEvaddumiaaw = PpcInsn
PpcInsEvaddssiaaw
  pred PpcInsn
PpcInsEvaddusiaaw = PpcInsn
PpcInsEvaddumiaaw
  pred PpcInsn
PpcInsEvaddw = PpcInsn
PpcInsEvaddusiaaw
  pred PpcInsn
PpcInsEvand = PpcInsn
PpcInsEvaddw
  pred PpcInsn
PpcInsEvandc = PpcInsn
PpcInsEvand
  pred PpcInsn
PpcInsEvcmpeq = PpcInsn
PpcInsEvandc
  pred PpcInsn
PpcInsEvcmpgts = PpcInsn
PpcInsEvcmpeq
  pred PpcInsn
PpcInsEvcmpgtu = PpcInsn
PpcInsEvcmpgts
  pred PpcInsn
PpcInsEvcmplts = PpcInsn
PpcInsEvcmpgtu
  pred PpcInsn
PpcInsEvcmpltu = PpcInsn
PpcInsEvcmplts
  pred PpcInsn
PpcInsEvcntlsw = PpcInsn
PpcInsEvcmpltu
  pred PpcInsn
PpcInsEvcntlzw = PpcInsn
PpcInsEvcntlsw
  pred PpcInsn
PpcInsEvdivws = PpcInsn
PpcInsEvcntlzw
  pred PpcInsn
PpcInsEvdivwu = PpcInsn
PpcInsEvdivws
  pred PpcInsn
PpcInsEveqv = PpcInsn
PpcInsEvdivwu
  pred PpcInsn
PpcInsEvextsb = PpcInsn
PpcInsEveqv
  pred PpcInsn
PpcInsEvextsh = PpcInsn
PpcInsEvextsb
  pred PpcInsn
PpcInsEvldd = PpcInsn
PpcInsEvextsh
  pred PpcInsn
PpcInsEvlddx = PpcInsn
PpcInsEvldd
  pred PpcInsn
PpcInsEvldh = PpcInsn
PpcInsEvlddx
  pred PpcInsn
PpcInsEvldhx = PpcInsn
PpcInsEvldh
  pred PpcInsn
PpcInsEvldw = PpcInsn
PpcInsEvldhx
  pred PpcInsn
PpcInsEvldwx = PpcInsn
PpcInsEvldw
  pred PpcInsn
PpcInsEvlhhesplat = PpcInsn
PpcInsEvldwx
  pred PpcInsn
PpcInsEvlhhesplatx = PpcInsn
PpcInsEvlhhesplat
  pred PpcInsn
PpcInsEvlhhossplat = PpcInsn
PpcInsEvlhhesplatx
  pred PpcInsn
PpcInsEvlhhossplatx = PpcInsn
PpcInsEvlhhossplat
  pred PpcInsn
PpcInsEvlhhousplat = PpcInsn
PpcInsEvlhhossplatx
  pred PpcInsn
PpcInsEvlhhousplatx = PpcInsn
PpcInsEvlhhousplat
  pred PpcInsn
PpcInsEvlwhe = PpcInsn
PpcInsEvlhhousplatx
  pred PpcInsn
PpcInsEvlwhex = PpcInsn
PpcInsEvlwhe
  pred PpcInsn
PpcInsEvlwhos = PpcInsn
PpcInsEvlwhex
  pred PpcInsn
PpcInsEvlwhosx = PpcInsn
PpcInsEvlwhos
  pred PpcInsn
PpcInsEvlwhou = PpcInsn
PpcInsEvlwhosx
  pred PpcInsn
PpcInsEvlwhoux = PpcInsn
PpcInsEvlwhou
  pred PpcInsn
PpcInsEvlwhsplat = PpcInsn
PpcInsEvlwhoux
  pred PpcInsn
PpcInsEvlwhsplatx = PpcInsn
PpcInsEvlwhsplat
  pred PpcInsn
PpcInsEvlwwsplat = PpcInsn
PpcInsEvlwhsplatx
  pred PpcInsn
PpcInsEvlwwsplatx = PpcInsn
PpcInsEvlwwsplat
  pred PpcInsn
PpcInsEvmergehi = PpcInsn
PpcInsEvlwwsplatx
  pred PpcInsn
PpcInsEvmergehilo = PpcInsn
PpcInsEvmergehi
  pred PpcInsn
PpcInsEvmergelo = PpcInsn
PpcInsEvmergehilo
  pred PpcInsn
PpcInsEvmergelohi = PpcInsn
PpcInsEvmergelo
  pred PpcInsn
PpcInsEvmhegsmfaa = PpcInsn
PpcInsEvmergelohi
  pred PpcInsn
PpcInsEvmhegsmfan = PpcInsn
PpcInsEvmhegsmfaa
  pred PpcInsn
PpcInsEvmhegsmiaa = PpcInsn
PpcInsEvmhegsmfan
  pred PpcInsn
PpcInsEvmhegsmian = PpcInsn
PpcInsEvmhegsmiaa
  pred PpcInsn
PpcInsEvmhegumiaa = PpcInsn
PpcInsEvmhegsmian
  pred PpcInsn
PpcInsEvmhegumian = PpcInsn
PpcInsEvmhegumiaa
  pred PpcInsn
PpcInsEvmhesmf = PpcInsn
PpcInsEvmhegumian
  pred PpcInsn
PpcInsEvmhesmfa = PpcInsn
PpcInsEvmhesmf
  pred PpcInsn
PpcInsEvmhesmfaaw = PpcInsn
PpcInsEvmhesmfa
  pred PpcInsn
PpcInsEvmhesmfanw = PpcInsn
PpcInsEvmhesmfaaw
  pred PpcInsn
PpcInsEvmhesmi = PpcInsn
PpcInsEvmhesmfanw
  pred PpcInsn
PpcInsEvmhesmia = PpcInsn
PpcInsEvmhesmi
  pred PpcInsn
PpcInsEvmhesmiaaw = PpcInsn
PpcInsEvmhesmia
  pred PpcInsn
PpcInsEvmhesmianw = PpcInsn
PpcInsEvmhesmiaaw
  pred PpcInsn
PpcInsEvmhessf = PpcInsn
PpcInsEvmhesmianw
  pred PpcInsn
PpcInsEvmhessfa = PpcInsn
PpcInsEvmhessf
  pred PpcInsn
PpcInsEvmhessfaaw = PpcInsn
PpcInsEvmhessfa
  pred PpcInsn
PpcInsEvmhessfanw = PpcInsn
PpcInsEvmhessfaaw
  pred PpcInsn
PpcInsEvmhessiaaw = PpcInsn
PpcInsEvmhessfanw
  pred PpcInsn
PpcInsEvmhessianw = PpcInsn
PpcInsEvmhessiaaw
  pred PpcInsn
PpcInsEvmheumi = PpcInsn
PpcInsEvmhessianw
  pred PpcInsn
PpcInsEvmheumia = PpcInsn
PpcInsEvmheumi
  pred PpcInsn
PpcInsEvmheumiaaw = PpcInsn
PpcInsEvmheumia
  pred PpcInsn
PpcInsEvmheumianw = PpcInsn
PpcInsEvmheumiaaw
  pred PpcInsn
PpcInsEvmheusiaaw = PpcInsn
PpcInsEvmheumianw
  pred PpcInsn
PpcInsEvmheusianw = PpcInsn
PpcInsEvmheusiaaw
  pred PpcInsn
PpcInsEvmhogsmfaa = PpcInsn
PpcInsEvmheusianw
  pred PpcInsn
PpcInsEvmhogsmfan = PpcInsn
PpcInsEvmhogsmfaa
  pred PpcInsn
PpcInsEvmhogsmiaa = PpcInsn
PpcInsEvmhogsmfan
  pred PpcInsn
PpcInsEvmhogsmian = PpcInsn
PpcInsEvmhogsmiaa
  pred PpcInsn
PpcInsEvmhogumiaa = PpcInsn
PpcInsEvmhogsmian
  pred PpcInsn
PpcInsEvmhogumian = PpcInsn
PpcInsEvmhogumiaa
  pred PpcInsn
PpcInsEvmhosmf = PpcInsn
PpcInsEvmhogumian
  pred PpcInsn
PpcInsEvmhosmfa = PpcInsn
PpcInsEvmhosmf
  pred PpcInsn
PpcInsEvmhosmfaaw = PpcInsn
PpcInsEvmhosmfa
  pred PpcInsn
PpcInsEvmhosmfanw = PpcInsn
PpcInsEvmhosmfaaw
  pred PpcInsn
PpcInsEvmhosmi = PpcInsn
PpcInsEvmhosmfanw
  pred PpcInsn
PpcInsEvmhosmia = PpcInsn
PpcInsEvmhosmi
  pred PpcInsn
PpcInsEvmhosmiaaw = PpcInsn
PpcInsEvmhosmia
  pred PpcInsn
PpcInsEvmhosmianw = PpcInsn
PpcInsEvmhosmiaaw
  pred PpcInsn
PpcInsEvmhossf = PpcInsn
PpcInsEvmhosmianw
  pred PpcInsn
PpcInsEvmhossfa = PpcInsn
PpcInsEvmhossf
  pred PpcInsn
PpcInsEvmhossfaaw = PpcInsn
PpcInsEvmhossfa
  pred PpcInsn
PpcInsEvmhossfanw = PpcInsn
PpcInsEvmhossfaaw
  pred PpcInsn
PpcInsEvmhossiaaw = PpcInsn
PpcInsEvmhossfanw
  pred PpcInsn
PpcInsEvmhossianw = PpcInsn
PpcInsEvmhossiaaw
  pred PpcInsn
PpcInsEvmhoumi = PpcInsn
PpcInsEvmhossianw
  pred PpcInsn
PpcInsEvmhoumia = PpcInsn
PpcInsEvmhoumi
  pred PpcInsn
PpcInsEvmhoumiaaw = PpcInsn
PpcInsEvmhoumia
  pred PpcInsn
PpcInsEvmhoumianw = PpcInsn
PpcInsEvmhoumiaaw
  pred PpcInsn
PpcInsEvmhousiaaw = PpcInsn
PpcInsEvmhoumianw
  pred PpcInsn
PpcInsEvmhousianw = PpcInsn
PpcInsEvmhousiaaw
  pred PpcInsn
PpcInsEvmra = PpcInsn
PpcInsEvmhousianw
  pred PpcInsn
PpcInsEvmwhsmf = PpcInsn
PpcInsEvmra
  pred PpcInsn
PpcInsEvmwhsmfa = PpcInsn
PpcInsEvmwhsmf
  pred PpcInsn
PpcInsEvmwhsmi = PpcInsn
PpcInsEvmwhsmfa
  pred PpcInsn
PpcInsEvmwhsmia = PpcInsn
PpcInsEvmwhsmi
  pred PpcInsn
PpcInsEvmwhssf = PpcInsn
PpcInsEvmwhsmia
  pred PpcInsn
PpcInsEvmwhssfa = PpcInsn
PpcInsEvmwhssf
  pred PpcInsn
PpcInsEvmwhumi = PpcInsn
PpcInsEvmwhssfa
  pred PpcInsn
PpcInsEvmwhumia = PpcInsn
PpcInsEvmwhumi
  pred PpcInsn
PpcInsEvmwlsmiaaw = PpcInsn
PpcInsEvmwhumia
  pred PpcInsn
PpcInsEvmwlsmianw = PpcInsn
PpcInsEvmwlsmiaaw
  pred PpcInsn
PpcInsEvmwlssiaaw = PpcInsn
PpcInsEvmwlsmianw
  pred PpcInsn
PpcInsEvmwlssianw = PpcInsn
PpcInsEvmwlssiaaw
  pred PpcInsn
PpcInsEvmwlumi = PpcInsn
PpcInsEvmwlssianw
  pred PpcInsn
PpcInsEvmwlumia = PpcInsn
PpcInsEvmwlumi
  pred PpcInsn
PpcInsEvmwlumiaaw = PpcInsn
PpcInsEvmwlumia
  pred PpcInsn
PpcInsEvmwlumianw = PpcInsn
PpcInsEvmwlumiaaw
  pred PpcInsn
PpcInsEvmwlusiaaw = PpcInsn
PpcInsEvmwlumianw
  pred PpcInsn
PpcInsEvmwlusianw = PpcInsn
PpcInsEvmwlusiaaw
  pred PpcInsn
PpcInsEvmwsmf = PpcInsn
PpcInsEvmwlusianw
  pred PpcInsn
PpcInsEvmwsmfa = PpcInsn
PpcInsEvmwsmf
  pred PpcInsn
PpcInsEvmwsmfaa = PpcInsn
PpcInsEvmwsmfa
  pred PpcInsn
PpcInsEvmwsmfan = PpcInsn
PpcInsEvmwsmfaa
  pred PpcInsn
PpcInsEvmwsmi = PpcInsn
PpcInsEvmwsmfan
  pred PpcInsn
PpcInsEvmwsmia = PpcInsn
PpcInsEvmwsmi
  pred PpcInsn
PpcInsEvmwsmiaa = PpcInsn
PpcInsEvmwsmia
  pred PpcInsn
PpcInsEvmwsmian = PpcInsn
PpcInsEvmwsmiaa
  pred PpcInsn
PpcInsEvmwssf = PpcInsn
PpcInsEvmwsmian
  pred PpcInsn
PpcInsEvmwssfa = PpcInsn
PpcInsEvmwssf
  pred PpcInsn
PpcInsEvmwssfaa = PpcInsn
PpcInsEvmwssfa
  pred PpcInsn
PpcInsEvmwssfan = PpcInsn
PpcInsEvmwssfaa
  pred PpcInsn
PpcInsEvmwumi = PpcInsn
PpcInsEvmwssfan
  pred PpcInsn
PpcInsEvmwumia = PpcInsn
PpcInsEvmwumi
  pred PpcInsn
PpcInsEvmwumiaa = PpcInsn
PpcInsEvmwumia
  pred PpcInsn
PpcInsEvmwumian = PpcInsn
PpcInsEvmwumiaa
  pred PpcInsn
PpcInsEvnand = PpcInsn
PpcInsEvmwumian
  pred PpcInsn
PpcInsEvneg = PpcInsn
PpcInsEvnand
  pred PpcInsn
PpcInsEvnor = PpcInsn
PpcInsEvneg
  pred PpcInsn
PpcInsEvor = PpcInsn
PpcInsEvnor
  pred PpcInsn
PpcInsEvorc = PpcInsn
PpcInsEvor
  pred PpcInsn
PpcInsEvrlw = PpcInsn
PpcInsEvorc
  pred PpcInsn
PpcInsEvrlwi = PpcInsn
PpcInsEvrlw
  pred PpcInsn
PpcInsEvrndw = PpcInsn
PpcInsEvrlwi
  pred PpcInsn
PpcInsEvslw = PpcInsn
PpcInsEvrndw
  pred PpcInsn
PpcInsEvslwi = PpcInsn
PpcInsEvslw
  pred PpcInsn
PpcInsEvsplatfi = PpcInsn
PpcInsEvslwi
  pred PpcInsn
PpcInsEvsplati = PpcInsn
PpcInsEvsplatfi
  pred PpcInsn
PpcInsEvsrwis = PpcInsn
PpcInsEvsplati
  pred PpcInsn
PpcInsEvsrwiu = PpcInsn
PpcInsEvsrwis
  pred PpcInsn
PpcInsEvsrws = PpcInsn
PpcInsEvsrwiu
  pred PpcInsn
PpcInsEvsrwu = PpcInsn
PpcInsEvsrws
  pred PpcInsn
PpcInsEvstdd = PpcInsn
PpcInsEvsrwu
  pred PpcInsn
PpcInsEvstddx = PpcInsn
PpcInsEvstdd
  pred PpcInsn
PpcInsEvstdh = PpcInsn
PpcInsEvstddx
  pred PpcInsn
PpcInsEvstdhx = PpcInsn
PpcInsEvstdh
  pred PpcInsn
PpcInsEvstdw = PpcInsn
PpcInsEvstdhx
  pred PpcInsn
PpcInsEvstdwx = PpcInsn
PpcInsEvstdw
  pred PpcInsn
PpcInsEvstwhe = PpcInsn
PpcInsEvstdwx
  pred PpcInsn
PpcInsEvstwhex = PpcInsn
PpcInsEvstwhe
  pred PpcInsn
PpcInsEvstwho = PpcInsn
PpcInsEvstwhex
  pred PpcInsn
PpcInsEvstwhox = PpcInsn
PpcInsEvstwho
  pred PpcInsn
PpcInsEvstwwe = PpcInsn
PpcInsEvstwhox
  pred PpcInsn
PpcInsEvstwwex = PpcInsn
PpcInsEvstwwe
  pred PpcInsn
PpcInsEvstwwo = PpcInsn
PpcInsEvstwwex
  pred PpcInsn
PpcInsEvstwwox = PpcInsn
PpcInsEvstwwo
  pred PpcInsn
PpcInsEvsubfsmiaaw = PpcInsn
PpcInsEvstwwox
  pred PpcInsn
PpcInsEvsubfssiaaw = PpcInsn
PpcInsEvsubfsmiaaw
  pred PpcInsn
PpcInsEvsubfumiaaw = PpcInsn
PpcInsEvsubfssiaaw
  pred PpcInsn
PpcInsEvsubfusiaaw = PpcInsn
PpcInsEvsubfumiaaw
  pred PpcInsn
PpcInsEvsubfw = PpcInsn
PpcInsEvsubfusiaaw
  pred PpcInsn
PpcInsEvsubifw = PpcInsn
PpcInsEvsubfw
  pred PpcInsn
PpcInsEvxor = PpcInsn
PpcInsEvsubifw
  pred PpcInsn
PpcInsExtsb = PpcInsn
PpcInsEvxor
  pred PpcInsn
PpcInsExtsh = PpcInsn
PpcInsExtsb
  pred PpcInsn
PpcInsExtsw = PpcInsn
PpcInsExtsh
  pred PpcInsn
PpcInsEieio = PpcInsn
PpcInsExtsw
  pred PpcInsn
PpcInsFabs = PpcInsn
PpcInsEieio
  pred PpcInsn
PpcInsFadd = PpcInsn
PpcInsFabs
  pred PpcInsn
PpcInsFadds = PpcInsn
PpcInsFadd
  pred PpcInsn
PpcInsFcfid = PpcInsn
PpcInsFadds
  pred PpcInsn
PpcInsFcfids = PpcInsn
PpcInsFcfid
  pred PpcInsn
PpcInsFcfidu = PpcInsn
PpcInsFcfids
  pred PpcInsn
PpcInsFcfidus = PpcInsn
PpcInsFcfidu
  pred PpcInsn
PpcInsFcmpu = PpcInsn
PpcInsFcfidus
  pred PpcInsn
PpcInsFcpsgn = PpcInsn
PpcInsFcmpu
  pred PpcInsn
PpcInsFctid = PpcInsn
PpcInsFcpsgn
  pred PpcInsn
PpcInsFctiduz = PpcInsn
PpcInsFctid
  pred PpcInsn
PpcInsFctidz = PpcInsn
PpcInsFctiduz
  pred PpcInsn
PpcInsFctiw = PpcInsn
PpcInsFctidz
  pred PpcInsn
PpcInsFctiwuz = PpcInsn
PpcInsFctiw
  pred PpcInsn
PpcInsFctiwz = PpcInsn
PpcInsFctiwuz
  pred PpcInsn
PpcInsFdiv = PpcInsn
PpcInsFctiwz
  pred PpcInsn
PpcInsFdivs = PpcInsn
PpcInsFdiv
  pred PpcInsn
PpcInsFmadd = PpcInsn
PpcInsFdivs
  pred PpcInsn
PpcInsFmadds = PpcInsn
PpcInsFmadd
  pred PpcInsn
PpcInsFmr = PpcInsn
PpcInsFmadds
  pred PpcInsn
PpcInsFmsub = PpcInsn
PpcInsFmr
  pred PpcInsn
PpcInsFmsubs = PpcInsn
PpcInsFmsub
  pred PpcInsn
PpcInsFmul = PpcInsn
PpcInsFmsubs
  pred PpcInsn
PpcInsFmuls = PpcInsn
PpcInsFmul
  pred PpcInsn
PpcInsFnabs = PpcInsn
PpcInsFmuls
  pred PpcInsn
PpcInsFneg = PpcInsn
PpcInsFnabs
  pred PpcInsn
PpcInsFnmadd = PpcInsn
PpcInsFneg
  pred PpcInsn
PpcInsFnmadds = PpcInsn
PpcInsFnmadd
  pred PpcInsn
PpcInsFnmsub = PpcInsn
PpcInsFnmadds
  pred PpcInsn
PpcInsFnmsubs = PpcInsn
PpcInsFnmsub
  pred PpcInsn
PpcInsFre = PpcInsn
PpcInsFnmsubs
  pred PpcInsn
PpcInsFres = PpcInsn
PpcInsFre
  pred PpcInsn
PpcInsFrim = PpcInsn
PpcInsFres
  pred PpcInsn
PpcInsFrin = PpcInsn
PpcInsFrim
  pred PpcInsn
PpcInsFrip = PpcInsn
PpcInsFrin
  pred PpcInsn
PpcInsFriz = PpcInsn
PpcInsFrip
  pred PpcInsn
PpcInsFrsp = PpcInsn
PpcInsFriz
  pred PpcInsn
PpcInsFrsqrte = PpcInsn
PpcInsFrsp
  pred PpcInsn
PpcInsFrsqrtes = PpcInsn
PpcInsFrsqrte
  pred PpcInsn
PpcInsFsel = PpcInsn
PpcInsFrsqrtes
  pred PpcInsn
PpcInsFsqrt = PpcInsn
PpcInsFsel
  pred PpcInsn
PpcInsFsqrts = PpcInsn
PpcInsFsqrt
  pred PpcInsn
PpcInsFsub = PpcInsn
PpcInsFsqrts
  pred PpcInsn
PpcInsFsubs = PpcInsn
PpcInsFsub
  pred PpcInsn
PpcInsIcbi = PpcInsn
PpcInsFsubs
  pred PpcInsn
PpcInsIcbt = PpcInsn
PpcInsIcbi
  pred PpcInsn
PpcInsIccci = PpcInsn
PpcInsIcbt
  pred PpcInsn
PpcInsIsel = PpcInsn
PpcInsIccci
  pred PpcInsn
PpcInsIsync = PpcInsn
PpcInsIsel
  pred PpcInsn
PpcInsLa = PpcInsn
PpcInsIsync
  pred PpcInsn
PpcInsLbz = PpcInsn
PpcInsLa
  pred PpcInsn
PpcInsLbzcix = PpcInsn
PpcInsLbz
  pred PpcInsn
PpcInsLbzu = PpcInsn
PpcInsLbzcix
  pred PpcInsn
PpcInsLbzux = PpcInsn
PpcInsLbzu
  pred PpcInsn
PpcInsLbzx = PpcInsn
PpcInsLbzux
  pred PpcInsn
PpcInsLd = PpcInsn
PpcInsLbzx
  pred PpcInsn
PpcInsLdarx = PpcInsn
PpcInsLd
  pred PpcInsn
PpcInsLdbrx = PpcInsn
PpcInsLdarx
  pred PpcInsn
PpcInsLdcix = PpcInsn
PpcInsLdbrx
  pred PpcInsn
PpcInsLdu = PpcInsn
PpcInsLdcix
  pred PpcInsn
PpcInsLdux = PpcInsn
PpcInsLdu
  pred PpcInsn
PpcInsLdx = PpcInsn
PpcInsLdux
  pred PpcInsn
PpcInsLfd = PpcInsn
PpcInsLdx
  pred PpcInsn
PpcInsLfdu = PpcInsn
PpcInsLfd
  pred PpcInsn
PpcInsLfdux = PpcInsn
PpcInsLfdu
  pred PpcInsn
PpcInsLfdx = PpcInsn
PpcInsLfdux
  pred PpcInsn
PpcInsLfiwax = PpcInsn
PpcInsLfdx
  pred PpcInsn
PpcInsLfiwzx = PpcInsn
PpcInsLfiwax
  pred PpcInsn
PpcInsLfs = PpcInsn
PpcInsLfiwzx
  pred PpcInsn
PpcInsLfsu = PpcInsn
PpcInsLfs
  pred PpcInsn
PpcInsLfsux = PpcInsn
PpcInsLfsu
  pred PpcInsn
PpcInsLfsx = PpcInsn
PpcInsLfsux
  pred PpcInsn
PpcInsLha = PpcInsn
PpcInsLfsx
  pred PpcInsn
PpcInsLhau = PpcInsn
PpcInsLha
  pred PpcInsn
PpcInsLhaux = PpcInsn
PpcInsLhau
  pred PpcInsn
PpcInsLhax = PpcInsn
PpcInsLhaux
  pred PpcInsn
PpcInsLhbrx = PpcInsn
PpcInsLhax
  pred PpcInsn
PpcInsLhz = PpcInsn
PpcInsLhbrx
  pred PpcInsn
PpcInsLhzcix = PpcInsn
PpcInsLhz
  pred PpcInsn
PpcInsLhzu = PpcInsn
PpcInsLhzcix
  pred PpcInsn
PpcInsLhzux = PpcInsn
PpcInsLhzu
  pred PpcInsn
PpcInsLhzx = PpcInsn
PpcInsLhzux
  pred PpcInsn
PpcInsLi = PpcInsn
PpcInsLhzx
  pred PpcInsn
PpcInsLis = PpcInsn
PpcInsLi
  pred PpcInsn
PpcInsLmw = PpcInsn
PpcInsLis
  pred PpcInsn
PpcInsLswi = PpcInsn
PpcInsLmw
  pred PpcInsn
PpcInsLvebx = PpcInsn
PpcInsLswi
  pred PpcInsn
PpcInsLvehx = PpcInsn
PpcInsLvebx
  pred PpcInsn
PpcInsLvewx = PpcInsn
PpcInsLvehx
  pred PpcInsn
PpcInsLvsl = PpcInsn
PpcInsLvewx
  pred PpcInsn
PpcInsLvsr = PpcInsn
PpcInsLvsl
  pred PpcInsn
PpcInsLvx = PpcInsn
PpcInsLvsr
  pred PpcInsn
PpcInsLvxl = PpcInsn
PpcInsLvx
  pred PpcInsn
PpcInsLwa = PpcInsn
PpcInsLvxl
  pred PpcInsn
PpcInsLwarx = PpcInsn
PpcInsLwa
  pred PpcInsn
PpcInsLwaux = PpcInsn
PpcInsLwarx
  pred PpcInsn
PpcInsLwax = PpcInsn
PpcInsLwaux
  pred PpcInsn
PpcInsLwbrx = PpcInsn
PpcInsLwax
  pred PpcInsn
PpcInsLwz = PpcInsn
PpcInsLwbrx
  pred PpcInsn
PpcInsLwzcix = PpcInsn
PpcInsLwz
  pred PpcInsn
PpcInsLwzu = PpcInsn
PpcInsLwzcix
  pred PpcInsn
PpcInsLwzux = PpcInsn
PpcInsLwzu
  pred PpcInsn
PpcInsLwzx = PpcInsn
PpcInsLwzux
  pred PpcInsn
PpcInsLxsdx = PpcInsn
PpcInsLwzx
  pred PpcInsn
PpcInsLxvd2x = PpcInsn
PpcInsLxsdx
  pred PpcInsn
PpcInsLxvdsx = PpcInsn
PpcInsLxvd2x
  pred PpcInsn
PpcInsLxvw4x = PpcInsn
PpcInsLxvdsx
  pred PpcInsn
PpcInsMbar = PpcInsn
PpcInsLxvw4x
  pred PpcInsn
PpcInsMcrf = PpcInsn
PpcInsMbar
  pred PpcInsn
PpcInsMcrfs = PpcInsn
PpcInsMcrf
  pred PpcInsn
PpcInsMfcr = PpcInsn
PpcInsMcrfs
  pred PpcInsn
PpcInsMfctr = PpcInsn
PpcInsMfcr
  pred PpcInsn
PpcInsMfdcr = PpcInsn
PpcInsMfctr
  pred PpcInsn
PpcInsMffs = PpcInsn
PpcInsMfdcr
  pred PpcInsn
PpcInsMflr = PpcInsn
PpcInsMffs
  pred PpcInsn
PpcInsMfmsr = PpcInsn
PpcInsMflr
  pred PpcInsn
PpcInsMfocrf = PpcInsn
PpcInsMfmsr
  pred PpcInsn
PpcInsMfspr = PpcInsn
PpcInsMfocrf
  pred PpcInsn
PpcInsMfsr = PpcInsn
PpcInsMfspr
  pred PpcInsn
PpcInsMfsrin = PpcInsn
PpcInsMfsr
  pred PpcInsn
PpcInsMftb = PpcInsn
PpcInsMfsrin
  pred PpcInsn
PpcInsMfvscr = PpcInsn
PpcInsMftb
  pred PpcInsn
PpcInsMsync = PpcInsn
PpcInsMfvscr
  pred PpcInsn
PpcInsMtcrf = PpcInsn
PpcInsMsync
  pred PpcInsn
PpcInsMtctr = PpcInsn
PpcInsMtcrf
  pred PpcInsn
PpcInsMtdcr = PpcInsn
PpcInsMtctr
  pred PpcInsn
PpcInsMtfsb0 = PpcInsn
PpcInsMtdcr
  pred PpcInsn
PpcInsMtfsb1 = PpcInsn
PpcInsMtfsb0
  pred PpcInsn
PpcInsMtfsf = PpcInsn
PpcInsMtfsb1
  pred PpcInsn
PpcInsMtfsfi = PpcInsn
PpcInsMtfsf
  pred PpcInsn
PpcInsMtlr = PpcInsn
PpcInsMtfsfi
  pred PpcInsn
PpcInsMtmsr = PpcInsn
PpcInsMtlr
  pred PpcInsn
PpcInsMtmsrd = PpcInsn
PpcInsMtmsr
  pred PpcInsn
PpcInsMtocrf = PpcInsn
PpcInsMtmsrd
  pred PpcInsn
PpcInsMtspr = PpcInsn
PpcInsMtocrf
  pred PpcInsn
PpcInsMtsr = PpcInsn
PpcInsMtspr
  pred PpcInsn
PpcInsMtsrin = PpcInsn
PpcInsMtsr
  pred PpcInsn
PpcInsMtvscr = PpcInsn
PpcInsMtsrin
  pred PpcInsn
PpcInsMulhd = PpcInsn
PpcInsMtvscr
  pred PpcInsn
PpcInsMulhdu = PpcInsn
PpcInsMulhd
  pred PpcInsn
PpcInsMulhw = PpcInsn
PpcInsMulhdu
  pred PpcInsn
PpcInsMulhwu = PpcInsn
PpcInsMulhw
  pred PpcInsn
PpcInsMulld = PpcInsn
PpcInsMulhwu
  pred PpcInsn
PpcInsMulli = PpcInsn
PpcInsMulld
  pred PpcInsn
PpcInsMullw = PpcInsn
PpcInsMulli
  pred PpcInsn
PpcInsNand = PpcInsn
PpcInsMullw
  pred PpcInsn
PpcInsNeg = PpcInsn
PpcInsNand
  pred PpcInsn
PpcInsNop = PpcInsn
PpcInsNeg
  pred PpcInsn
PpcInsOri = PpcInsn
PpcInsNop
  pred PpcInsn
PpcInsNor = PpcInsn
PpcInsOri
  pred PpcInsn
PpcInsOr = PpcInsn
PpcInsNor
  pred PpcInsn
PpcInsOrc = PpcInsn
PpcInsOr
  pred PpcInsn
PpcInsOris = PpcInsn
PpcInsOrc
  pred PpcInsn
PpcInsPopcntd = PpcInsn
PpcInsOris
  pred PpcInsn
PpcInsPopcntw = PpcInsn
PpcInsPopcntd
  pred PpcInsn
PpcInsQvaligni = PpcInsn
PpcInsPopcntw
  pred PpcInsn
PpcInsQvesplati = PpcInsn
PpcInsQvaligni
  pred PpcInsn
PpcInsQvfabs = PpcInsn
PpcInsQvesplati
  pred PpcInsn
PpcInsQvfadd = PpcInsn
PpcInsQvfabs
  pred PpcInsn
PpcInsQvfadds = PpcInsn
PpcInsQvfadd
  pred PpcInsn
PpcInsQvfcfid = PpcInsn
PpcInsQvfadds
  pred PpcInsn
PpcInsQvfcfids = PpcInsn
PpcInsQvfcfid
  pred PpcInsn
PpcInsQvfcfidu = PpcInsn
PpcInsQvfcfids
  pred PpcInsn
PpcInsQvfcfidus = PpcInsn
PpcInsQvfcfidu
  pred PpcInsn
PpcInsQvfcmpeq = PpcInsn
PpcInsQvfcfidus
  pred PpcInsn
PpcInsQvfcmpgt = PpcInsn
PpcInsQvfcmpeq
  pred PpcInsn
PpcInsQvfcmplt = PpcInsn
PpcInsQvfcmpgt
  pred PpcInsn
PpcInsQvfcpsgn = PpcInsn
PpcInsQvfcmplt
  pred PpcInsn
PpcInsQvfctid = PpcInsn
PpcInsQvfcpsgn
  pred PpcInsn
PpcInsQvfctidu = PpcInsn
PpcInsQvfctid
  pred PpcInsn
PpcInsQvfctiduz = PpcInsn
PpcInsQvfctidu
  pred PpcInsn
PpcInsQvfctidz = PpcInsn
PpcInsQvfctiduz
  pred PpcInsn
PpcInsQvfctiw = PpcInsn
PpcInsQvfctidz
  pred PpcInsn
PpcInsQvfctiwu = PpcInsn
PpcInsQvfctiw
  pred PpcInsn
PpcInsQvfctiwuz = PpcInsn
PpcInsQvfctiwu
  pred PpcInsn
PpcInsQvfctiwz = PpcInsn
PpcInsQvfctiwuz
  pred PpcInsn
PpcInsQvflogical = PpcInsn
PpcInsQvfctiwz
  pred PpcInsn
PpcInsQvfmadd = PpcInsn
PpcInsQvflogical
  pred PpcInsn
PpcInsQvfmadds = PpcInsn
PpcInsQvfmadd
  pred PpcInsn
PpcInsQvfmr = PpcInsn
PpcInsQvfmadds
  pred PpcInsn
PpcInsQvfmsub = PpcInsn
PpcInsQvfmr
  pred PpcInsn
PpcInsQvfmsubs = PpcInsn
PpcInsQvfmsub
  pred PpcInsn
PpcInsQvfmul = PpcInsn
PpcInsQvfmsubs
  pred PpcInsn
PpcInsQvfmuls = PpcInsn
PpcInsQvfmul
  pred PpcInsn
PpcInsQvfnabs = PpcInsn
PpcInsQvfmuls
  pred PpcInsn
PpcInsQvfneg = PpcInsn
PpcInsQvfnabs
  pred PpcInsn
PpcInsQvfnmadd = PpcInsn
PpcInsQvfneg
  pred PpcInsn
PpcInsQvfnmadds = PpcInsn
PpcInsQvfnmadd
  pred PpcInsn
PpcInsQvfnmsub = PpcInsn
PpcInsQvfnmadds
  pred PpcInsn
PpcInsQvfnmsubs = PpcInsn
PpcInsQvfnmsub
  pred PpcInsn
PpcInsQvfperm = PpcInsn
PpcInsQvfnmsubs
  pred PpcInsn
PpcInsQvfre = PpcInsn
PpcInsQvfperm
  pred PpcInsn
PpcInsQvfres = PpcInsn
PpcInsQvfre
  pred PpcInsn
PpcInsQvfrim = PpcInsn
PpcInsQvfres
  pred PpcInsn
PpcInsQvfrin = PpcInsn
PpcInsQvfrim
  pred PpcInsn
PpcInsQvfrip = PpcInsn
PpcInsQvfrin
  pred PpcInsn
PpcInsQvfriz = PpcInsn
PpcInsQvfrip
  pred PpcInsn
PpcInsQvfrsp = PpcInsn
PpcInsQvfriz
  pred PpcInsn
PpcInsQvfrsqrte = PpcInsn
PpcInsQvfrsp
  pred PpcInsn
PpcInsQvfrsqrtes = PpcInsn
PpcInsQvfrsqrte
  pred PpcInsn
PpcInsQvfsel = PpcInsn
PpcInsQvfrsqrtes
  pred PpcInsn
PpcInsQvfsub = PpcInsn
PpcInsQvfsel
  pred PpcInsn
PpcInsQvfsubs = PpcInsn
PpcInsQvfsub
  pred PpcInsn
PpcInsQvftstnan = PpcInsn
PpcInsQvfsubs
  pred PpcInsn
PpcInsQvfxmadd = PpcInsn
PpcInsQvftstnan
  pred PpcInsn
PpcInsQvfxmadds = PpcInsn
PpcInsQvfxmadd
  pred PpcInsn
PpcInsQvfxmul = PpcInsn
PpcInsQvfxmadds
  pred PpcInsn
PpcInsQvfxmuls = PpcInsn
PpcInsQvfxmul
  pred PpcInsn
PpcInsQvfxxcpnmadd = PpcInsn
PpcInsQvfxmuls
  pred PpcInsn
PpcInsQvfxxcpnmadds = PpcInsn
PpcInsQvfxxcpnmadd
  pred PpcInsn
PpcInsQvfxxmadd = PpcInsn
PpcInsQvfxxcpnmadds
  pred PpcInsn
PpcInsQvfxxmadds = PpcInsn
PpcInsQvfxxmadd
  pred PpcInsn
PpcInsQvfxxnpmadd = PpcInsn
PpcInsQvfxxmadds
  pred PpcInsn
PpcInsQvfxxnpmadds = PpcInsn
PpcInsQvfxxnpmadd
  pred PpcInsn
PpcInsQvgpci = PpcInsn
PpcInsQvfxxnpmadds
  pred PpcInsn
PpcInsQvlfcdux = PpcInsn
PpcInsQvgpci
  pred PpcInsn
PpcInsQvlfcduxa = PpcInsn
PpcInsQvlfcdux
  pred PpcInsn
PpcInsQvlfcdx = PpcInsn
PpcInsQvlfcduxa
  pred PpcInsn
PpcInsQvlfcdxa = PpcInsn
PpcInsQvlfcdx
  pred PpcInsn
PpcInsQvlfcsux = PpcInsn
PpcInsQvlfcdxa
  pred PpcInsn
PpcInsQvlfcsuxa = PpcInsn
PpcInsQvlfcsux
  pred PpcInsn
PpcInsQvlfcsx = PpcInsn
PpcInsQvlfcsuxa
  pred PpcInsn
PpcInsQvlfcsxa = PpcInsn
PpcInsQvlfcsx
  pred PpcInsn
PpcInsQvlfdux = PpcInsn
PpcInsQvlfcsxa
  pred PpcInsn
PpcInsQvlfduxa = PpcInsn
PpcInsQvlfdux
  pred PpcInsn
PpcInsQvlfdx = PpcInsn
PpcInsQvlfduxa
  pred PpcInsn
PpcInsQvlfdxa = PpcInsn
PpcInsQvlfdx
  pred PpcInsn
PpcInsQvlfiwax = PpcInsn
PpcInsQvlfdxa
  pred PpcInsn
PpcInsQvlfiwaxa = PpcInsn
PpcInsQvlfiwax
  pred PpcInsn
PpcInsQvlfiwzx = PpcInsn
PpcInsQvlfiwaxa
  pred PpcInsn
PpcInsQvlfiwzxa = PpcInsn
PpcInsQvlfiwzx
  pred PpcInsn
PpcInsQvlfsux = PpcInsn
PpcInsQvlfiwzxa
  pred PpcInsn
PpcInsQvlfsuxa = PpcInsn
PpcInsQvlfsux
  pred PpcInsn
PpcInsQvlfsx = PpcInsn
PpcInsQvlfsuxa
  pred PpcInsn
PpcInsQvlfsxa = PpcInsn
PpcInsQvlfsx
  pred PpcInsn
PpcInsQvlpcldx = PpcInsn
PpcInsQvlfsxa
  pred PpcInsn
PpcInsQvlpclsx = PpcInsn
PpcInsQvlpcldx
  pred PpcInsn
PpcInsQvlpcrdx = PpcInsn
PpcInsQvlpclsx
  pred PpcInsn
PpcInsQvlpcrsx = PpcInsn
PpcInsQvlpcrdx
  pred PpcInsn
PpcInsQvstfcdux = PpcInsn
PpcInsQvlpcrsx
  pred PpcInsn
PpcInsQvstfcduxa = PpcInsn
PpcInsQvstfcdux
  pred PpcInsn
PpcInsQvstfcduxi = PpcInsn
PpcInsQvstfcduxa
  pred PpcInsn
PpcInsQvstfcduxia = PpcInsn
PpcInsQvstfcduxi
  pred PpcInsn
PpcInsQvstfcdx = PpcInsn
PpcInsQvstfcduxia
  pred PpcInsn
PpcInsQvstfcdxa = PpcInsn
PpcInsQvstfcdx
  pred PpcInsn
PpcInsQvstfcdxi = PpcInsn
PpcInsQvstfcdxa
  pred PpcInsn
PpcInsQvstfcdxia = PpcInsn
PpcInsQvstfcdxi
  pred PpcInsn
PpcInsQvstfcsux = PpcInsn
PpcInsQvstfcdxia
  pred PpcInsn
PpcInsQvstfcsuxa = PpcInsn
PpcInsQvstfcsux
  pred PpcInsn
PpcInsQvstfcsuxi = PpcInsn
PpcInsQvstfcsuxa
  pred PpcInsn
PpcInsQvstfcsuxia = PpcInsn
PpcInsQvstfcsuxi
  pred PpcInsn
PpcInsQvstfcsx = PpcInsn
PpcInsQvstfcsuxia
  pred PpcInsn
PpcInsQvstfcsxa = PpcInsn
PpcInsQvstfcsx
  pred PpcInsn
PpcInsQvstfcsxi = PpcInsn
PpcInsQvstfcsxa
  pred PpcInsn
PpcInsQvstfcsxia = PpcInsn
PpcInsQvstfcsxi
  pred PpcInsn
PpcInsQvstfdux = PpcInsn
PpcInsQvstfcsxia
  pred PpcInsn
PpcInsQvstfduxa = PpcInsn
PpcInsQvstfdux
  pred PpcInsn
PpcInsQvstfduxi = PpcInsn
PpcInsQvstfduxa
  pred PpcInsn
PpcInsQvstfduxia = PpcInsn
PpcInsQvstfduxi
  pred PpcInsn
PpcInsQvstfdx = PpcInsn
PpcInsQvstfduxia
  pred PpcInsn
PpcInsQvstfdxa = PpcInsn
PpcInsQvstfdx
  pred PpcInsn
PpcInsQvstfdxi = PpcInsn
PpcInsQvstfdxa
  pred PpcInsn
PpcInsQvstfdxia = PpcInsn
PpcInsQvstfdxi
  pred PpcInsn
PpcInsQvstfiwx = PpcInsn
PpcInsQvstfdxia
  pred PpcInsn
PpcInsQvstfiwxa = PpcInsn
PpcInsQvstfiwx
  pred PpcInsn
PpcInsQvstfsux = PpcInsn
PpcInsQvstfiwxa
  pred PpcInsn
PpcInsQvstfsuxa = PpcInsn
PpcInsQvstfsux
  pred PpcInsn
PpcInsQvstfsuxi = PpcInsn
PpcInsQvstfsuxa
  pred PpcInsn
PpcInsQvstfsuxia = PpcInsn
PpcInsQvstfsuxi
  pred PpcInsn
PpcInsQvstfsx = PpcInsn
PpcInsQvstfsuxia
  pred PpcInsn
PpcInsQvstfsxa = PpcInsn
PpcInsQvstfsx
  pred PpcInsn
PpcInsQvstfsxi = PpcInsn
PpcInsQvstfsxa
  pred PpcInsn
PpcInsQvstfsxia = PpcInsn
PpcInsQvstfsxi
  pred PpcInsn
PpcInsRfci = PpcInsn
PpcInsQvstfsxia
  pred PpcInsn
PpcInsRfdi = PpcInsn
PpcInsRfci
  pred PpcInsn
PpcInsRfi = PpcInsn
PpcInsRfdi
  pred PpcInsn
PpcInsRfid = PpcInsn
PpcInsRfi
  pred PpcInsn
PpcInsRfmci = PpcInsn
PpcInsRfid
  pred PpcInsn
PpcInsRldcl = PpcInsn
PpcInsRfmci
  pred PpcInsn
PpcInsRldcr = PpcInsn
PpcInsRldcl
  pred PpcInsn
PpcInsRldic = PpcInsn
PpcInsRldcr
  pred PpcInsn
PpcInsRldicl = PpcInsn
PpcInsRldic
  pred PpcInsn
PpcInsRldicr = PpcInsn
PpcInsRldicl
  pred PpcInsn
PpcInsRldimi = PpcInsn
PpcInsRldicr
  pred PpcInsn
PpcInsRlwimi = PpcInsn
PpcInsRldimi
  pred PpcInsn
PpcInsRlwinm = PpcInsn
PpcInsRlwimi
  pred PpcInsn
PpcInsRlwnm = PpcInsn
PpcInsRlwinm
  pred PpcInsn
PpcInsSc = PpcInsn
PpcInsRlwnm
  pred PpcInsn
PpcInsSlbia = PpcInsn
PpcInsSc
  pred PpcInsn
PpcInsSlbie = PpcInsn
PpcInsSlbia
  pred PpcInsn
PpcInsSlbmfee = PpcInsn
PpcInsSlbie
  pred PpcInsn
PpcInsSlbmte = PpcInsn
PpcInsSlbmfee
  pred PpcInsn
PpcInsSld = PpcInsn
PpcInsSlbmte
  pred PpcInsn
PpcInsSlw = PpcInsn
PpcInsSld
  pred PpcInsn
PpcInsSrad = PpcInsn
PpcInsSlw
  pred PpcInsn
PpcInsSradi = PpcInsn
PpcInsSrad
  pred PpcInsn
PpcInsSraw = PpcInsn
PpcInsSradi
  pred PpcInsn
PpcInsSrawi = PpcInsn
PpcInsSraw
  pred PpcInsn
PpcInsSrd = PpcInsn
PpcInsSrawi
  pred PpcInsn
PpcInsSrw = PpcInsn
PpcInsSrd
  pred PpcInsn
PpcInsStb = PpcInsn
PpcInsSrw
  pred PpcInsn
PpcInsStbcix = PpcInsn
PpcInsStb
  pred PpcInsn
PpcInsStbu = PpcInsn
PpcInsStbcix
  pred PpcInsn
PpcInsStbux = PpcInsn
PpcInsStbu
  pred PpcInsn
PpcInsStbx = PpcInsn
PpcInsStbux
  pred PpcInsn
PpcInsStd = PpcInsn
PpcInsStbx
  pred PpcInsn
PpcInsStdbrx = PpcInsn
PpcInsStd
  pred PpcInsn
PpcInsStdcix = PpcInsn
PpcInsStdbrx
  pred PpcInsn
PpcInsStdcx = PpcInsn
PpcInsStdcix
  pred PpcInsn
PpcInsStdu = PpcInsn
PpcInsStdcx
  pred PpcInsn
PpcInsStdux = PpcInsn
PpcInsStdu
  pred PpcInsn
PpcInsStdx = PpcInsn
PpcInsStdux
  pred PpcInsn
PpcInsStfd = PpcInsn
PpcInsStdx
  pred PpcInsn
PpcInsStfdu = PpcInsn
PpcInsStfd
  pred PpcInsn
PpcInsStfdux = PpcInsn
PpcInsStfdu
  pred PpcInsn
PpcInsStfdx = PpcInsn
PpcInsStfdux
  pred PpcInsn
PpcInsStfiwx = PpcInsn
PpcInsStfdx
  pred PpcInsn
PpcInsStfs = PpcInsn
PpcInsStfiwx
  pred PpcInsn
PpcInsStfsu = PpcInsn
PpcInsStfs
  pred PpcInsn
PpcInsStfsux = PpcInsn
PpcInsStfsu
  pred PpcInsn
PpcInsStfsx = PpcInsn
PpcInsStfsux
  pred PpcInsn
PpcInsSth = PpcInsn
PpcInsStfsx
  pred PpcInsn
PpcInsSthbrx = PpcInsn
PpcInsSth
  pred PpcInsn
PpcInsSthcix = PpcInsn
PpcInsSthbrx
  pred PpcInsn
PpcInsSthu = PpcInsn
PpcInsSthcix
  pred PpcInsn
PpcInsSthux = PpcInsn
PpcInsSthu
  pred PpcInsn
PpcInsSthx = PpcInsn
PpcInsSthux
  pred PpcInsn
PpcInsStmw = PpcInsn
PpcInsSthx
  pred PpcInsn
PpcInsStswi = PpcInsn
PpcInsStmw
  pred PpcInsn
PpcInsStvebx = PpcInsn
PpcInsStswi
  pred PpcInsn
PpcInsStvehx = PpcInsn
PpcInsStvebx
  pred PpcInsn
PpcInsStvewx = PpcInsn
PpcInsStvehx
  pred PpcInsn
PpcInsStvx = PpcInsn
PpcInsStvewx
  pred PpcInsn
PpcInsStvxl = PpcInsn
PpcInsStvx
  pred PpcInsn
PpcInsStw = PpcInsn
PpcInsStvxl
  pred PpcInsn
PpcInsStwbrx = PpcInsn
PpcInsStw
  pred PpcInsn
PpcInsStwcix = PpcInsn
PpcInsStwbrx
  pred PpcInsn
PpcInsStwcx = PpcInsn
PpcInsStwcix
  pred PpcInsn
PpcInsStwu = PpcInsn
PpcInsStwcx
  pred PpcInsn
PpcInsStwux = PpcInsn
PpcInsStwu
  pred PpcInsn
PpcInsStwx = PpcInsn
PpcInsStwux
  pred PpcInsn
PpcInsStxsdx = PpcInsn
PpcInsStwx
  pred PpcInsn
PpcInsStxvd2x = PpcInsn
PpcInsStxsdx
  pred PpcInsn
PpcInsStxvw4x = PpcInsn
PpcInsStxvd2x
  pred PpcInsn
PpcInsSubf = PpcInsn
PpcInsStxvw4x
  pred PpcInsn
PpcInsSubfc = PpcInsn
PpcInsSubf
  pred PpcInsn
PpcInsSubfe = PpcInsn
PpcInsSubfc
  pred PpcInsn
PpcInsSubfic = PpcInsn
PpcInsSubfe
  pred PpcInsn
PpcInsSubfme = PpcInsn
PpcInsSubfic
  pred PpcInsn
PpcInsSubfze = PpcInsn
PpcInsSubfme
  pred PpcInsn
PpcInsSync = PpcInsn
PpcInsSubfze
  pred PpcInsn
PpcInsTd = PpcInsn
PpcInsSync
  pred PpcInsn
PpcInsTdi = PpcInsn
PpcInsTd
  pred PpcInsn
PpcInsTlbia = PpcInsn
PpcInsTdi
  pred PpcInsn
PpcInsTlbie = PpcInsn
PpcInsTlbia
  pred PpcInsn
PpcInsTlbiel = PpcInsn
PpcInsTlbie
  pred PpcInsn
PpcInsTlbivax = PpcInsn
PpcInsTlbiel
  pred PpcInsn
PpcInsTlbld = PpcInsn
PpcInsTlbivax
  pred PpcInsn
PpcInsTlbli = PpcInsn
PpcInsTlbld
  pred PpcInsn
PpcInsTlbre = PpcInsn
PpcInsTlbli
  pred PpcInsn
PpcInsTlbsx = PpcInsn
PpcInsTlbre
  pred PpcInsn
PpcInsTlbsync = PpcInsn
PpcInsTlbsx
  pred PpcInsn
PpcInsTlbwe = PpcInsn
PpcInsTlbsync
  pred PpcInsn
PpcInsTrap = PpcInsn
PpcInsTlbwe
  pred PpcInsn
PpcInsTw = PpcInsn
PpcInsTrap
  pred PpcInsn
PpcInsTwi = PpcInsn
PpcInsTw
  pred PpcInsn
PpcInsVaddcuw = PpcInsn
PpcInsTwi
  pred PpcInsn
PpcInsVaddfp = PpcInsn
PpcInsVaddcuw
  pred PpcInsn
PpcInsVaddsbs = PpcInsn
PpcInsVaddfp
  pred PpcInsn
PpcInsVaddshs = PpcInsn
PpcInsVaddsbs
  pred PpcInsn
PpcInsVaddsws = PpcInsn
PpcInsVaddshs
  pred PpcInsn
PpcInsVaddubm = PpcInsn
PpcInsVaddsws
  pred PpcInsn
PpcInsVaddubs = PpcInsn
PpcInsVaddubm
  pred PpcInsn
PpcInsVaddudm = PpcInsn
PpcInsVaddubs
  pred PpcInsn
PpcInsVadduhm = PpcInsn
PpcInsVaddudm
  pred PpcInsn
PpcInsVadduhs = PpcInsn
PpcInsVadduhm
  pred PpcInsn
PpcInsVadduwm = PpcInsn
PpcInsVadduhs
  pred PpcInsn
PpcInsVadduws = PpcInsn
PpcInsVadduwm
  pred PpcInsn
PpcInsVand = PpcInsn
PpcInsVadduws
  pred PpcInsn
PpcInsVandc = PpcInsn
PpcInsVand
  pred PpcInsn
PpcInsVavgsb = PpcInsn
PpcInsVandc
  pred PpcInsn
PpcInsVavgsh = PpcInsn
PpcInsVavgsb
  pred PpcInsn
PpcInsVavgsw = PpcInsn
PpcInsVavgsh
  pred PpcInsn
PpcInsVavgub = PpcInsn
PpcInsVavgsw
  pred PpcInsn
PpcInsVavguh = PpcInsn
PpcInsVavgub
  pred PpcInsn
PpcInsVavguw = PpcInsn
PpcInsVavguh
  pred PpcInsn
PpcInsVcfsx = PpcInsn
PpcInsVavguw
  pred PpcInsn
PpcInsVcfux = PpcInsn
PpcInsVcfsx
  pred PpcInsn
PpcInsVclzb = PpcInsn
PpcInsVcfux
  pred PpcInsn
PpcInsVclzd = PpcInsn
PpcInsVclzb
  pred PpcInsn
PpcInsVclzh = PpcInsn
PpcInsVclzd
  pred PpcInsn
PpcInsVclzw = PpcInsn
PpcInsVclzh
  pred PpcInsn
PpcInsVcmpbfp = PpcInsn
PpcInsVclzw
  pred PpcInsn
PpcInsVcmpeqfp = PpcInsn
PpcInsVcmpbfp
  pred PpcInsn
PpcInsVcmpequb = PpcInsn
PpcInsVcmpeqfp
  pred PpcInsn
PpcInsVcmpequd = PpcInsn
PpcInsVcmpequb
  pred PpcInsn
PpcInsVcmpequh = PpcInsn
PpcInsVcmpequd
  pred PpcInsn
PpcInsVcmpequw = PpcInsn
PpcInsVcmpequh
  pred PpcInsn
PpcInsVcmpgefp = PpcInsn
PpcInsVcmpequw
  pred PpcInsn
PpcInsVcmpgtfp = PpcInsn
PpcInsVcmpgefp
  pred PpcInsn
PpcInsVcmpgtsb = PpcInsn
PpcInsVcmpgtfp
  pred PpcInsn
PpcInsVcmpgtsd = PpcInsn
PpcInsVcmpgtsb
  pred PpcInsn
PpcInsVcmpgtsh = PpcInsn
PpcInsVcmpgtsd
  pred PpcInsn
PpcInsVcmpgtsw = PpcInsn
PpcInsVcmpgtsh
  pred PpcInsn
PpcInsVcmpgtub = PpcInsn
PpcInsVcmpgtsw
  pred PpcInsn
PpcInsVcmpgtud = PpcInsn
PpcInsVcmpgtub
  pred PpcInsn
PpcInsVcmpgtuh = PpcInsn
PpcInsVcmpgtud
  pred PpcInsn
PpcInsVcmpgtuw = PpcInsn
PpcInsVcmpgtuh
  pred PpcInsn
PpcInsVctsxs = PpcInsn
PpcInsVcmpgtuw
  pred PpcInsn
PpcInsVctuxs = PpcInsn
PpcInsVctsxs
  pred PpcInsn
PpcInsVeqv = PpcInsn
PpcInsVctuxs
  pred PpcInsn
PpcInsVexptefp = PpcInsn
PpcInsVeqv
  pred PpcInsn
PpcInsVlogefp = PpcInsn
PpcInsVexptefp
  pred PpcInsn
PpcInsVmaddfp = PpcInsn
PpcInsVlogefp
  pred PpcInsn
PpcInsVmaxfp = PpcInsn
PpcInsVmaddfp
  pred PpcInsn
PpcInsVmaxsb = PpcInsn
PpcInsVmaxfp
  pred PpcInsn
PpcInsVmaxsd = PpcInsn
PpcInsVmaxsb
  pred PpcInsn
PpcInsVmaxsh = PpcInsn
PpcInsVmaxsd
  pred PpcInsn
PpcInsVmaxsw = PpcInsn
PpcInsVmaxsh
  pred PpcInsn
PpcInsVmaxub = PpcInsn
PpcInsVmaxsw
  pred PpcInsn
PpcInsVmaxud = PpcInsn
PpcInsVmaxub
  pred PpcInsn
PpcInsVmaxuh = PpcInsn
PpcInsVmaxud
  pred PpcInsn
PpcInsVmaxuw = PpcInsn
PpcInsVmaxuh
  pred PpcInsn
PpcInsVmhaddshs = PpcInsn
PpcInsVmaxuw
  pred PpcInsn
PpcInsVmhraddshs = PpcInsn
PpcInsVmhaddshs
  pred PpcInsn
PpcInsVminud = PpcInsn
PpcInsVmhraddshs
  pred PpcInsn
PpcInsVminfp = PpcInsn
PpcInsVminud
  pred PpcInsn
PpcInsVminsb = PpcInsn
PpcInsVminfp
  pred PpcInsn
PpcInsVminsd = PpcInsn
PpcInsVminsb
  pred PpcInsn
PpcInsVminsh = PpcInsn
PpcInsVminsd
  pred PpcInsn
PpcInsVminsw = PpcInsn
PpcInsVminsh
  pred PpcInsn
PpcInsVminub = PpcInsn
PpcInsVminsw
  pred PpcInsn
PpcInsVminuh = PpcInsn
PpcInsVminub
  pred PpcInsn
PpcInsVminuw = PpcInsn
PpcInsVminuh
  pred PpcInsn
PpcInsVmladduhm = PpcInsn
PpcInsVminuw
  pred PpcInsn
PpcInsVmrghb = PpcInsn
PpcInsVmladduhm
  pred PpcInsn
PpcInsVmrghh = PpcInsn
PpcInsVmrghb
  pred PpcInsn
PpcInsVmrghw = PpcInsn
PpcInsVmrghh
  pred PpcInsn
PpcInsVmrglb = PpcInsn
PpcInsVmrghw
  pred PpcInsn
PpcInsVmrglh = PpcInsn
PpcInsVmrglb
  pred PpcInsn
PpcInsVmrglw = PpcInsn
PpcInsVmrglh
  pred PpcInsn
PpcInsVmsummbm = PpcInsn
PpcInsVmrglw
  pred PpcInsn
PpcInsVmsumshm = PpcInsn
PpcInsVmsummbm
  pred PpcInsn
PpcInsVmsumshs = PpcInsn
PpcInsVmsumshm
  pred PpcInsn
PpcInsVmsumubm = PpcInsn
PpcInsVmsumshs
  pred PpcInsn
PpcInsVmsumuhm = PpcInsn
PpcInsVmsumubm
  pred PpcInsn
PpcInsVmsumuhs = PpcInsn
PpcInsVmsumuhm
  pred PpcInsn
PpcInsVmulesb = PpcInsn
PpcInsVmsumuhs
  pred PpcInsn
PpcInsVmulesh = PpcInsn
PpcInsVmulesb
  pred PpcInsn
PpcInsVmulesw = PpcInsn
PpcInsVmulesh
  pred PpcInsn
PpcInsVmuleub = PpcInsn
PpcInsVmulesw
  pred PpcInsn
PpcInsVmuleuh = PpcInsn
PpcInsVmuleub
  pred PpcInsn
PpcInsVmuleuw = PpcInsn
PpcInsVmuleuh
  pred PpcInsn
PpcInsVmulosb = PpcInsn
PpcInsVmuleuw
  pred PpcInsn
PpcInsVmulosh = PpcInsn
PpcInsVmulosb
  pred PpcInsn
PpcInsVmulosw = PpcInsn
PpcInsVmulosh
  pred PpcInsn
PpcInsVmuloub = PpcInsn
PpcInsVmulosw
  pred PpcInsn
PpcInsVmulouh = PpcInsn
PpcInsVmuloub
  pred PpcInsn
PpcInsVmulouw = PpcInsn
PpcInsVmulouh
  pred PpcInsn
PpcInsVmuluwm = PpcInsn
PpcInsVmulouw
  pred PpcInsn
PpcInsVnand = PpcInsn
PpcInsVmuluwm
  pred PpcInsn
PpcInsVnmsubfp = PpcInsn
PpcInsVnand
  pred PpcInsn
PpcInsVnor = PpcInsn
PpcInsVnmsubfp
  pred PpcInsn
PpcInsVor = PpcInsn
PpcInsVnor
  pred PpcInsn
PpcInsVorc = PpcInsn
PpcInsVor
  pred PpcInsn
PpcInsVperm = PpcInsn
PpcInsVorc
  pred PpcInsn
PpcInsVpkpx = PpcInsn
PpcInsVperm
  pred PpcInsn
PpcInsVpkshss = PpcInsn
PpcInsVpkpx
  pred PpcInsn
PpcInsVpkshus = PpcInsn
PpcInsVpkshss
  pred PpcInsn
PpcInsVpkswss = PpcInsn
PpcInsVpkshus
  pred PpcInsn
PpcInsVpkswus = PpcInsn
PpcInsVpkswss
  pred PpcInsn
PpcInsVpkuhum = PpcInsn
PpcInsVpkswus
  pred PpcInsn
PpcInsVpkuhus = PpcInsn
PpcInsVpkuhum
  pred PpcInsn
PpcInsVpkuwum = PpcInsn
PpcInsVpkuhus
  pred PpcInsn
PpcInsVpkuwus = PpcInsn
PpcInsVpkuwum
  pred PpcInsn
PpcInsVpopcntb = PpcInsn
PpcInsVpkuwus
  pred PpcInsn
PpcInsVpopcntd = PpcInsn
PpcInsVpopcntb
  pred PpcInsn
PpcInsVpopcnth = PpcInsn
PpcInsVpopcntd
  pred PpcInsn
PpcInsVpopcntw = PpcInsn
PpcInsVpopcnth
  pred PpcInsn
PpcInsVrefp = PpcInsn
PpcInsVpopcntw
  pred PpcInsn
PpcInsVrfim = PpcInsn
PpcInsVrefp
  pred PpcInsn
PpcInsVrfin = PpcInsn
PpcInsVrfim
  pred PpcInsn
PpcInsVrfip = PpcInsn
PpcInsVrfin
  pred PpcInsn
PpcInsVrfiz = PpcInsn
PpcInsVrfip
  pred PpcInsn
PpcInsVrlb = PpcInsn
PpcInsVrfiz
  pred PpcInsn
PpcInsVrld = PpcInsn
PpcInsVrlb
  pred PpcInsn
PpcInsVrlh = PpcInsn
PpcInsVrld
  pred PpcInsn
PpcInsVrlw = PpcInsn
PpcInsVrlh
  pred PpcInsn
PpcInsVrsqrtefp = PpcInsn
PpcInsVrlw
  pred PpcInsn
PpcInsVsel = PpcInsn
PpcInsVrsqrtefp
  pred PpcInsn
PpcInsVsl = PpcInsn
PpcInsVsel
  pred PpcInsn
PpcInsVslb = PpcInsn
PpcInsVsl
  pred PpcInsn
PpcInsVsld = PpcInsn
PpcInsVslb
  pred PpcInsn
PpcInsVsldoi = PpcInsn
PpcInsVsld
  pred PpcInsn
PpcInsVslh = PpcInsn
PpcInsVsldoi
  pred PpcInsn
PpcInsVslo = PpcInsn
PpcInsVslh
  pred PpcInsn
PpcInsVslw = PpcInsn
PpcInsVslo
  pred PpcInsn
PpcInsVspltb = PpcInsn
PpcInsVslw
  pred PpcInsn
PpcInsVsplth = PpcInsn
PpcInsVspltb
  pred PpcInsn
PpcInsVspltisb = PpcInsn
PpcInsVsplth
  pred PpcInsn
PpcInsVspltish = PpcInsn
PpcInsVspltisb
  pred PpcInsn
PpcInsVspltisw = PpcInsn
PpcInsVspltish
  pred PpcInsn
PpcInsVspltw = PpcInsn
PpcInsVspltisw
  pred PpcInsn
PpcInsVsr = PpcInsn
PpcInsVspltw
  pred PpcInsn
PpcInsVsrab = PpcInsn
PpcInsVsr
  pred PpcInsn
PpcInsVsrad = PpcInsn
PpcInsVsrab
  pred PpcInsn
PpcInsVsrah = PpcInsn
PpcInsVsrad
  pred PpcInsn
PpcInsVsraw = PpcInsn
PpcInsVsrah
  pred PpcInsn
PpcInsVsrb = PpcInsn
PpcInsVsraw
  pred PpcInsn
PpcInsVsrd = PpcInsn
PpcInsVsrb
  pred PpcInsn
PpcInsVsrh = PpcInsn
PpcInsVsrd
  pred PpcInsn
PpcInsVsro = PpcInsn
PpcInsVsrh
  pred PpcInsn
PpcInsVsrw = PpcInsn
PpcInsVsro
  pred PpcInsn
PpcInsVsubcuw = PpcInsn
PpcInsVsrw
  pred PpcInsn
PpcInsVsubfp = PpcInsn
PpcInsVsubcuw
  pred PpcInsn
PpcInsVsubsbs = PpcInsn
PpcInsVsubfp
  pred PpcInsn
PpcInsVsubshs = PpcInsn
PpcInsVsubsbs
  pred PpcInsn
PpcInsVsubsws = PpcInsn
PpcInsVsubshs
  pred PpcInsn
PpcInsVsububm = PpcInsn
PpcInsVsubsws
  pred PpcInsn
PpcInsVsububs = PpcInsn
PpcInsVsububm
  pred PpcInsn
PpcInsVsubudm = PpcInsn
PpcInsVsububs
  pred PpcInsn
PpcInsVsubuhm = PpcInsn
PpcInsVsubudm
  pred PpcInsn
PpcInsVsubuhs = PpcInsn
PpcInsVsubuhm
  pred PpcInsn
PpcInsVsubuwm = PpcInsn
PpcInsVsubuhs
  pred PpcInsn
PpcInsVsubuws = PpcInsn
PpcInsVsubuwm
  pred PpcInsn
PpcInsVsum2sws = PpcInsn
PpcInsVsubuws
  pred PpcInsn
PpcInsVsum4sbs = PpcInsn
PpcInsVsum2sws
  pred PpcInsn
PpcInsVsum4shs = PpcInsn
PpcInsVsum4sbs
  pred PpcInsn
PpcInsVsum4ubs = PpcInsn
PpcInsVsum4shs
  pred PpcInsn
PpcInsVsumsws = PpcInsn
PpcInsVsum4ubs
  pred PpcInsn
PpcInsVupkhpx = PpcInsn
PpcInsVsumsws
  pred PpcInsn
PpcInsVupkhsb = PpcInsn
PpcInsVupkhpx
  pred PpcInsn
PpcInsVupkhsh = PpcInsn
PpcInsVupkhsb
  pred PpcInsn
PpcInsVupklpx = PpcInsn
PpcInsVupkhsh
  pred PpcInsn
PpcInsVupklsb = PpcInsn
PpcInsVupklpx
  pred PpcInsn
PpcInsVupklsh = PpcInsn
PpcInsVupklsb
  pred PpcInsn
PpcInsVxor = PpcInsn
PpcInsVupklsh
  pred PpcInsn
PpcInsWait = PpcInsn
PpcInsVxor
  pred PpcInsn
PpcInsWrtee = PpcInsn
PpcInsWait
  pred PpcInsn
PpcInsWrteei = PpcInsn
PpcInsWrtee
  pred PpcInsn
PpcInsXor = PpcInsn
PpcInsWrteei
  pred PpcInsn
PpcInsXori = PpcInsn
PpcInsXor
  pred PpcInsn
PpcInsXoris = PpcInsn
PpcInsXori
  pred PpcInsn
PpcInsXsabsdp = PpcInsn
PpcInsXoris
  pred PpcInsn
PpcInsXsadddp = PpcInsn
PpcInsXsabsdp
  pred PpcInsn
PpcInsXscmpodp = PpcInsn
PpcInsXsadddp
  pred PpcInsn
PpcInsXscmpudp = PpcInsn
PpcInsXscmpodp
  pred PpcInsn
PpcInsXscpsgndp = PpcInsn
PpcInsXscmpudp
  pred PpcInsn
PpcInsXscvdpsp = PpcInsn
PpcInsXscpsgndp
  pred PpcInsn
PpcInsXscvdpsxds = PpcInsn
PpcInsXscvdpsp
  pred PpcInsn
PpcInsXscvdpsxws = PpcInsn
PpcInsXscvdpsxds
  pred PpcInsn
PpcInsXscvdpuxds = PpcInsn
PpcInsXscvdpsxws
  pred PpcInsn
PpcInsXscvdpuxws = PpcInsn
PpcInsXscvdpuxds
  pred PpcInsn
PpcInsXscvspdp = PpcInsn
PpcInsXscvdpuxws
  pred PpcInsn
PpcInsXscvsxddp = PpcInsn
PpcInsXscvspdp
  pred PpcInsn
PpcInsXscvuxddp = PpcInsn
PpcInsXscvsxddp
  pred PpcInsn
PpcInsXsdivdp = PpcInsn
PpcInsXscvuxddp
  pred PpcInsn
PpcInsXsmaddadp = PpcInsn
PpcInsXsdivdp
  pred PpcInsn
PpcInsXsmaddmdp = PpcInsn
PpcInsXsmaddadp
  pred PpcInsn
PpcInsXsmaxdp = PpcInsn
PpcInsXsmaddmdp
  pred PpcInsn
PpcInsXsmindp = PpcInsn
PpcInsXsmaxdp
  pred PpcInsn
PpcInsXsmsubadp = PpcInsn
PpcInsXsmindp
  pred PpcInsn
PpcInsXsmsubmdp = PpcInsn
PpcInsXsmsubadp
  pred PpcInsn
PpcInsXsmuldp = PpcInsn
PpcInsXsmsubmdp
  pred PpcInsn
PpcInsXsnabsdp = PpcInsn
PpcInsXsmuldp
  pred PpcInsn
PpcInsXsnegdp = PpcInsn
PpcInsXsnabsdp
  pred PpcInsn
PpcInsXsnmaddadp = PpcInsn
PpcInsXsnegdp
  pred PpcInsn
PpcInsXsnmaddmdp = PpcInsn
PpcInsXsnmaddadp
  pred PpcInsn
PpcInsXsnmsubadp = PpcInsn
PpcInsXsnmaddmdp
  pred PpcInsn
PpcInsXsnmsubmdp = PpcInsn
PpcInsXsnmsubadp
  pred PpcInsn
PpcInsXsrdpi = PpcInsn
PpcInsXsnmsubmdp
  pred PpcInsn
PpcInsXsrdpic = PpcInsn
PpcInsXsrdpi
  pred PpcInsn
PpcInsXsrdpim = PpcInsn
PpcInsXsrdpic
  pred PpcInsn
PpcInsXsrdpip = PpcInsn
PpcInsXsrdpim
  pred PpcInsn
PpcInsXsrdpiz = PpcInsn
PpcInsXsrdpip
  pred PpcInsn
PpcInsXsredp = PpcInsn
PpcInsXsrdpiz
  pred PpcInsn
PpcInsXsrsqrtedp = PpcInsn
PpcInsXsredp
  pred PpcInsn
PpcInsXssqrtdp = PpcInsn
PpcInsXsrsqrtedp
  pred PpcInsn
PpcInsXssubdp = PpcInsn
PpcInsXssqrtdp
  pred PpcInsn
PpcInsXstdivdp = PpcInsn
PpcInsXssubdp
  pred PpcInsn
PpcInsXstsqrtdp = PpcInsn
PpcInsXstdivdp
  pred PpcInsn
PpcInsXvabsdp = PpcInsn
PpcInsXstsqrtdp
  pred PpcInsn
PpcInsXvabssp = PpcInsn
PpcInsXvabsdp
  pred PpcInsn
PpcInsXvadddp = PpcInsn
PpcInsXvabssp
  pred PpcInsn
PpcInsXvaddsp = PpcInsn
PpcInsXvadddp
  pred PpcInsn
PpcInsXvcmpeqdp = PpcInsn
PpcInsXvaddsp
  pred PpcInsn
PpcInsXvcmpeqsp = PpcInsn
PpcInsXvcmpeqdp
  pred PpcInsn
PpcInsXvcmpgedp = PpcInsn
PpcInsXvcmpeqsp
  pred PpcInsn
PpcInsXvcmpgesp = PpcInsn
PpcInsXvcmpgedp
  pred PpcInsn
PpcInsXvcmpgtdp = PpcInsn
PpcInsXvcmpgesp
  pred PpcInsn
PpcInsXvcmpgtsp = PpcInsn
PpcInsXvcmpgtdp
  pred PpcInsn
PpcInsXvcpsgndp = PpcInsn
PpcInsXvcmpgtsp
  pred PpcInsn
PpcInsXvcpsgnsp = PpcInsn
PpcInsXvcpsgndp
  pred PpcInsn
PpcInsXvcvdpsp = PpcInsn
PpcInsXvcpsgnsp
  pred PpcInsn
PpcInsXvcvdpsxds = PpcInsn
PpcInsXvcvdpsp
  pred PpcInsn
PpcInsXvcvdpsxws = PpcInsn
PpcInsXvcvdpsxds
  pred PpcInsn
PpcInsXvcvdpuxds = PpcInsn
PpcInsXvcvdpsxws
  pred PpcInsn
PpcInsXvcvdpuxws = PpcInsn
PpcInsXvcvdpuxds
  pred PpcInsn
PpcInsXvcvspdp = PpcInsn
PpcInsXvcvdpuxws
  pred PpcInsn
PpcInsXvcvspsxds = PpcInsn
PpcInsXvcvspdp
  pred PpcInsn
PpcInsXvcvspsxws = PpcInsn
PpcInsXvcvspsxds
  pred PpcInsn
PpcInsXvcvspuxds = PpcInsn
PpcInsXvcvspsxws
  pred PpcInsn
PpcInsXvcvspuxws = PpcInsn
PpcInsXvcvspuxds
  pred PpcInsn
PpcInsXvcvsxddp = PpcInsn
PpcInsXvcvspuxws
  pred PpcInsn
PpcInsXvcvsxdsp = PpcInsn
PpcInsXvcvsxddp
  pred PpcInsn
PpcInsXvcvsxwdp = PpcInsn
PpcInsXvcvsxdsp
  pred PpcInsn
PpcInsXvcvsxwsp = PpcInsn
PpcInsXvcvsxwdp
  pred PpcInsn
PpcInsXvcvuxddp = PpcInsn
PpcInsXvcvsxwsp
  pred PpcInsn
PpcInsXvcvuxdsp = PpcInsn
PpcInsXvcvuxddp
  pred PpcInsn
PpcInsXvcvuxwdp = PpcInsn
PpcInsXvcvuxdsp
  pred PpcInsn
PpcInsXvcvuxwsp = PpcInsn
PpcInsXvcvuxwdp
  pred PpcInsn
PpcInsXvdivdp = PpcInsn
PpcInsXvcvuxwsp
  pred PpcInsn
PpcInsXvdivsp = PpcInsn
PpcInsXvdivdp
  pred PpcInsn
PpcInsXvmaddadp = PpcInsn
PpcInsXvdivsp
  pred PpcInsn
PpcInsXvmaddasp = PpcInsn
PpcInsXvmaddadp
  pred PpcInsn
PpcInsXvmaddmdp = PpcInsn
PpcInsXvmaddasp
  pred PpcInsn
PpcInsXvmaddmsp = PpcInsn
PpcInsXvmaddmdp
  pred PpcInsn
PpcInsXvmaxdp = PpcInsn
PpcInsXvmaddmsp
  pred PpcInsn
PpcInsXvmaxsp = PpcInsn
PpcInsXvmaxdp
  pred PpcInsn
PpcInsXvmindp = PpcInsn
PpcInsXvmaxsp
  pred PpcInsn
PpcInsXvminsp = PpcInsn
PpcInsXvmindp
  pred PpcInsn
PpcInsXvmsubadp = PpcInsn
PpcInsXvminsp
  pred PpcInsn
PpcInsXvmsubasp = PpcInsn
PpcInsXvmsubadp
  pred PpcInsn
PpcInsXvmsubmdp = PpcInsn
PpcInsXvmsubasp
  pred PpcInsn
PpcInsXvmsubmsp = PpcInsn
PpcInsXvmsubmdp
  pred PpcInsn
PpcInsXvmuldp = PpcInsn
PpcInsXvmsubmsp
  pred PpcInsn
PpcInsXvmulsp = PpcInsn
PpcInsXvmuldp
  pred PpcInsn
PpcInsXvnabsdp = PpcInsn
PpcInsXvmulsp
  pred PpcInsn
PpcInsXvnabssp = PpcInsn
PpcInsXvnabsdp
  pred PpcInsn
PpcInsXvnegdp = PpcInsn
PpcInsXvnabssp
  pred PpcInsn
PpcInsXvnegsp = PpcInsn
PpcInsXvnegdp
  pred PpcInsn
PpcInsXvnmaddadp = PpcInsn
PpcInsXvnegsp
  pred PpcInsn
PpcInsXvnmaddasp = PpcInsn
PpcInsXvnmaddadp
  pred PpcInsn
PpcInsXvnmaddmdp = PpcInsn
PpcInsXvnmaddasp
  pred PpcInsn
PpcInsXvnmaddmsp = PpcInsn
PpcInsXvnmaddmdp
  pred PpcInsn
PpcInsXvnmsubadp = PpcInsn
PpcInsXvnmaddmsp
  pred PpcInsn
PpcInsXvnmsubasp = PpcInsn
PpcInsXvnmsubadp
  pred PpcInsn
PpcInsXvnmsubmdp = PpcInsn
PpcInsXvnmsubasp
  pred PpcInsn
PpcInsXvnmsubmsp = PpcInsn
PpcInsXvnmsubmdp
  pred PpcInsn
PpcInsXvrdpi = PpcInsn
PpcInsXvnmsubmsp
  pred PpcInsn
PpcInsXvrdpic = PpcInsn
PpcInsXvrdpi
  pred PpcInsn
PpcInsXvrdpim = PpcInsn
PpcInsXvrdpic
  pred PpcInsn
PpcInsXvrdpip = PpcInsn
PpcInsXvrdpim
  pred PpcInsn
PpcInsXvrdpiz = PpcInsn
PpcInsXvrdpip
  pred PpcInsn
PpcInsXvredp = PpcInsn
PpcInsXvrdpiz
  pred PpcInsn
PpcInsXvresp = PpcInsn
PpcInsXvredp
  pred PpcInsn
PpcInsXvrspi = PpcInsn
PpcInsXvresp
  pred PpcInsn
PpcInsXvrspic = PpcInsn
PpcInsXvrspi
  pred PpcInsn
PpcInsXvrspim = PpcInsn
PpcInsXvrspic
  pred PpcInsn
PpcInsXvrspip = PpcInsn
PpcInsXvrspim
  pred PpcInsn
PpcInsXvrspiz = PpcInsn
PpcInsXvrspip
  pred PpcInsn
PpcInsXvrsqrtedp = PpcInsn
PpcInsXvrspiz
  pred PpcInsn
PpcInsXvrsqrtesp = PpcInsn
PpcInsXvrsqrtedp
  pred PpcInsn
PpcInsXvsqrtdp = PpcInsn
PpcInsXvrsqrtesp
  pred PpcInsn
PpcInsXvsqrtsp = PpcInsn
PpcInsXvsqrtdp
  pred PpcInsn
PpcInsXvsubdp = PpcInsn
PpcInsXvsqrtsp
  pred PpcInsn
PpcInsXvsubsp = PpcInsn
PpcInsXvsubdp
  pred PpcInsn
PpcInsXvtdivdp = PpcInsn
PpcInsXvsubsp
  pred PpcInsn
PpcInsXvtdivsp = PpcInsn
PpcInsXvtdivdp
  pred PpcInsn
PpcInsXvtsqrtdp = PpcInsn
PpcInsXvtdivsp
  pred PpcInsn
PpcInsXvtsqrtsp = PpcInsn
PpcInsXvtsqrtdp
  pred PpcInsn
PpcInsXxland = PpcInsn
PpcInsXvtsqrtsp
  pred PpcInsn
PpcInsXxlandc = PpcInsn
PpcInsXxland
  pred PpcInsn
PpcInsXxleqv = PpcInsn
PpcInsXxlandc
  pred PpcInsn
PpcInsXxlnand = PpcInsn
PpcInsXxleqv
  pred PpcInsn
PpcInsXxlnor = PpcInsn
PpcInsXxlnand
  pred PpcInsn
PpcInsXxlor = PpcInsn
PpcInsXxlnor
  pred PpcInsn
PpcInsXxlorc = PpcInsn
PpcInsXxlor
  pred PpcInsn
PpcInsXxlxor = PpcInsn
PpcInsXxlorc
  pred PpcInsn
PpcInsXxmrghw = PpcInsn
PpcInsXxlxor
  pred PpcInsn
PpcInsXxmrglw = PpcInsn
PpcInsXxmrghw
  pred PpcInsn
PpcInsXxpermdi = PpcInsn
PpcInsXxmrglw
  pred PpcInsn
PpcInsXxsel = PpcInsn
PpcInsXxpermdi
  pred PpcInsn
PpcInsXxsldwi = PpcInsn
PpcInsXxsel
  pred PpcInsn
PpcInsXxspltw = PpcInsn
PpcInsXxsldwi
  pred PpcInsn
PpcInsBca = PpcInsn
PpcInsXxspltw
  pred PpcInsn
PpcInsBcla = PpcInsn
PpcInsBca
  pred PpcInsn
PpcInsSlwi = PpcInsn
PpcInsBcla
  pred PpcInsn
PpcInsSrwi = PpcInsn
PpcInsSlwi
  pred PpcInsn
PpcInsSldi = PpcInsn
PpcInsSrwi
  pred PpcInsn
PpcInsBta = PpcInsn
PpcInsSldi
  pred PpcInsn
PpcInsCrset = PpcInsn
PpcInsBta
  pred PpcInsn
PpcInsCrnot = PpcInsn
PpcInsCrset
  pred PpcInsn
PpcInsCrmove = PpcInsn
PpcInsCrnot
  pred PpcInsn
PpcInsCrclr = PpcInsn
PpcInsCrmove
  pred PpcInsn
PpcInsMfbr0 = PpcInsn
PpcInsCrclr
  pred PpcInsn
PpcInsMfbr1 = PpcInsn
PpcInsMfbr0
  pred PpcInsn
PpcInsMfbr2 = PpcInsn
PpcInsMfbr1
  pred PpcInsn
PpcInsMfbr3 = PpcInsn
PpcInsMfbr2
  pred PpcInsn
PpcInsMfbr4 = PpcInsn
PpcInsMfbr3
  pred PpcInsn
PpcInsMfbr5 = PpcInsn
PpcInsMfbr4
  pred PpcInsn
PpcInsMfbr6 = PpcInsn
PpcInsMfbr5
  pred PpcInsn
PpcInsMfbr7 = PpcInsn
PpcInsMfbr6
  pred PpcInsn
PpcInsMfxer = PpcInsn
PpcInsMfbr7
  pred PpcInsn
PpcInsMfrtcu = PpcInsn
PpcInsMfxer
  pred PpcInsn
PpcInsMfrtcl = PpcInsn
PpcInsMfrtcu
  pred PpcInsn
PpcInsMfdscr = PpcInsn
PpcInsMfrtcl
  pred PpcInsn
PpcInsMfdsisr = PpcInsn
PpcInsMfdscr
  pred PpcInsn
PpcInsMfdar = PpcInsn
PpcInsMfdsisr
  pred PpcInsn
PpcInsMfsrr2 = PpcInsn
PpcInsMfdar
  pred PpcInsn
PpcInsMfsrr3 = PpcInsn
PpcInsMfsrr2
  pred PpcInsn
PpcInsMfcfar = PpcInsn
PpcInsMfsrr3
  pred PpcInsn
PpcInsMfamr = PpcInsn
PpcInsMfcfar
  pred PpcInsn
PpcInsMfpid = PpcInsn
PpcInsMfamr
  pred PpcInsn
PpcInsMftblo = PpcInsn
PpcInsMfpid
  pred PpcInsn
PpcInsMftbhi = PpcInsn
PpcInsMftblo
  pred PpcInsn
PpcInsMfdbatu = PpcInsn
PpcInsMftbhi
  pred PpcInsn
PpcInsMfdbatl = PpcInsn
PpcInsMfdbatu
  pred PpcInsn
PpcInsMfibatu = PpcInsn
PpcInsMfdbatl
  pred PpcInsn
PpcInsMfibatl = PpcInsn
PpcInsMfibatu
  pred PpcInsn
PpcInsMfdccr = PpcInsn
PpcInsMfibatl
  pred PpcInsn
PpcInsMficcr = PpcInsn
PpcInsMfdccr
  pred PpcInsn
PpcInsMfdear = PpcInsn
PpcInsMficcr
  pred PpcInsn
PpcInsMfesr = PpcInsn
PpcInsMfdear
  pred PpcInsn
PpcInsMfspefscr = PpcInsn
PpcInsMfesr
  pred PpcInsn
PpcInsMftcr = PpcInsn
PpcInsMfspefscr
  pred PpcInsn
PpcInsMfasr = PpcInsn
PpcInsMftcr
  pred PpcInsn
PpcInsMfpvr = PpcInsn
PpcInsMfasr
  pred PpcInsn
PpcInsMftbu = PpcInsn
PpcInsMfpvr
  pred PpcInsn
PpcInsMtcr = PpcInsn
PpcInsMftbu
  pred PpcInsn
PpcInsMtbr0 = PpcInsn
PpcInsMtcr
  pred PpcInsn
PpcInsMtbr1 = PpcInsn
PpcInsMtbr0
  pred PpcInsn
PpcInsMtbr2 = PpcInsn
PpcInsMtbr1
  pred PpcInsn
PpcInsMtbr3 = PpcInsn
PpcInsMtbr2
  pred PpcInsn
PpcInsMtbr4 = PpcInsn
PpcInsMtbr3
  pred PpcInsn
PpcInsMtbr5 = PpcInsn
PpcInsMtbr4
  pred PpcInsn
PpcInsMtbr6 = PpcInsn
PpcInsMtbr5
  pred PpcInsn
PpcInsMtbr7 = PpcInsn
PpcInsMtbr6
  pred PpcInsn
PpcInsMtxer = PpcInsn
PpcInsMtbr7
  pred PpcInsn
PpcInsMtdscr = PpcInsn
PpcInsMtxer
  pred PpcInsn
PpcInsMtdsisr = PpcInsn
PpcInsMtdscr
  pred PpcInsn
PpcInsMtdar = PpcInsn
PpcInsMtdsisr
  pred PpcInsn
PpcInsMtsrr2 = PpcInsn
PpcInsMtdar
  pred PpcInsn
PpcInsMtsrr3 = PpcInsn
PpcInsMtsrr2
  pred PpcInsn
PpcInsMtcfar = PpcInsn
PpcInsMtsrr3
  pred PpcInsn
PpcInsMtamr = PpcInsn
PpcInsMtcfar
  pred PpcInsn
PpcInsMtpid = PpcInsn
PpcInsMtamr
  pred PpcInsn
PpcInsMttbl = PpcInsn
PpcInsMtpid
  pred PpcInsn
PpcInsMttbu = PpcInsn
PpcInsMttbl
  pred PpcInsn
PpcInsMttblo = PpcInsn
PpcInsMttbu
  pred PpcInsn
PpcInsMttbhi = PpcInsn
PpcInsMttblo
  pred PpcInsn
PpcInsMtdbatu = PpcInsn
PpcInsMttbhi
  pred PpcInsn
PpcInsMtdbatl = PpcInsn
PpcInsMtdbatu
  pred PpcInsn
PpcInsMtibatu = PpcInsn
PpcInsMtdbatl
  pred PpcInsn
PpcInsMtibatl = PpcInsn
PpcInsMtibatu
  pred PpcInsn
PpcInsMtdccr = PpcInsn
PpcInsMtibatl
  pred PpcInsn
PpcInsMticcr = PpcInsn
PpcInsMtdccr
  pred PpcInsn
PpcInsMtdear = PpcInsn
PpcInsMticcr
  pred PpcInsn
PpcInsMtesr = PpcInsn
PpcInsMtdear
  pred PpcInsn
PpcInsMtspefscr = PpcInsn
PpcInsMtesr
  pred PpcInsn
PpcInsMttcr = PpcInsn
PpcInsMtspefscr
  pred PpcInsn
PpcInsNot = PpcInsn
PpcInsMttcr
  pred PpcInsn
PpcInsMr = PpcInsn
PpcInsNot
  pred PpcInsn
PpcInsRotld = PpcInsn
PpcInsMr
  pred PpcInsn
PpcInsRotldi = PpcInsn
PpcInsRotld
  pred PpcInsn
PpcInsClrldi = PpcInsn
PpcInsRotldi
  pred PpcInsn
PpcInsRotlwi = PpcInsn
PpcInsClrldi
  pred PpcInsn
PpcInsClrlwi = PpcInsn
PpcInsRotlwi
  pred PpcInsn
PpcInsRotlw = PpcInsn
PpcInsClrlwi
  pred PpcInsn
PpcInsSub = PpcInsn
PpcInsRotlw
  pred PpcInsn
PpcInsSubc = PpcInsn
PpcInsSub
  pred PpcInsn
PpcInsLwsync = PpcInsn
PpcInsSubc
  pred PpcInsn
PpcInsPtesync = PpcInsn
PpcInsLwsync
  pred PpcInsn
PpcInsTdlt = PpcInsn
PpcInsPtesync
  pred PpcInsn
PpcInsTdeq = PpcInsn
PpcInsTdlt
  pred PpcInsn
PpcInsTdgt = PpcInsn
PpcInsTdeq
  pred PpcInsn
PpcInsTdne = PpcInsn
PpcInsTdgt
  pred PpcInsn
PpcInsTdllt = PpcInsn
PpcInsTdne
  pred PpcInsn
PpcInsTdlgt = PpcInsn
PpcInsTdllt
  pred PpcInsn
PpcInsTdu = PpcInsn
PpcInsTdlgt
  pred PpcInsn
PpcInsTdlti = PpcInsn
PpcInsTdu
  pred PpcInsn
PpcInsTdeqi = PpcInsn
PpcInsTdlti
  pred PpcInsn
PpcInsTdgti = PpcInsn
PpcInsTdeqi
  pred PpcInsn
PpcInsTdnei = PpcInsn
PpcInsTdgti
  pred PpcInsn
PpcInsTdllti = PpcInsn
PpcInsTdnei
  pred PpcInsn
PpcInsTdlgti = PpcInsn
PpcInsTdllti
  pred PpcInsn
PpcInsTdui = PpcInsn
PpcInsTdlgti
  pred PpcInsn
PpcInsTlbrehi = PpcInsn
PpcInsTdui
  pred PpcInsn
PpcInsTlbrelo = PpcInsn
PpcInsTlbrehi
  pred PpcInsn
PpcInsTlbwehi = PpcInsn
PpcInsTlbrelo
  pred PpcInsn
PpcInsTlbwelo = PpcInsn
PpcInsTlbwehi
  pred PpcInsn
PpcInsTwlt = PpcInsn
PpcInsTlbwelo
  pred PpcInsn
PpcInsTweq = PpcInsn
PpcInsTwlt
  pred PpcInsn
PpcInsTwgt = PpcInsn
PpcInsTweq
  pred PpcInsn
PpcInsTwne = PpcInsn
PpcInsTwgt
  pred PpcInsn
PpcInsTwllt = PpcInsn
PpcInsTwne
  pred PpcInsn
PpcInsTwlgt = PpcInsn
PpcInsTwllt
  pred PpcInsn
PpcInsTwu = PpcInsn
PpcInsTwlgt
  pred PpcInsn
PpcInsTwlti = PpcInsn
PpcInsTwu
  pred PpcInsn
PpcInsTweqi = PpcInsn
PpcInsTwlti
  pred PpcInsn
PpcInsTwgti = PpcInsn
PpcInsTweqi
  pred PpcInsn
PpcInsTwnei = PpcInsn
PpcInsTwgti
  pred PpcInsn
PpcInsTwllti = PpcInsn
PpcInsTwnei
  pred PpcInsn
PpcInsTwlgti = PpcInsn
PpcInsTwllti
  pred PpcInsn
PpcInsTwui = PpcInsn
PpcInsTwlgti
  pred PpcInsn
PpcInsWaitrsv = PpcInsn
PpcInsTwui
  pred PpcInsn
PpcInsWaitimpl = PpcInsn
PpcInsWaitrsv
  pred PpcInsn
PpcInsXnop = PpcInsn
PpcInsWaitimpl
  pred PpcInsn
PpcInsXvmovdp = PpcInsn
PpcInsXnop
  pred PpcInsn
PpcInsXvmovsp = PpcInsn
PpcInsXvmovdp
  pred PpcInsn
PpcInsXxspltd = PpcInsn
PpcInsXvmovsp
  pred PpcInsn
PpcInsXxmrghd = PpcInsn
PpcInsXxspltd
  pred PpcInsn
PpcInsXxmrgld = PpcInsn
PpcInsXxmrghd
  pred PpcInsn
PpcInsXxswapd = PpcInsn
PpcInsXxmrgld
  pred PpcInsn
PpcInsBt = PpcInsn
PpcInsXxswapd
  pred PpcInsn
PpcInsBf = PpcInsn
PpcInsBt
  pred PpcInsn
PpcInsBdnzt = PpcInsn
PpcInsBf
  pred PpcInsn
PpcInsBdnzf = PpcInsn
PpcInsBdnzt
  pred PpcInsn
PpcInsBdzf = PpcInsn
PpcInsBdnzf
  pred PpcInsn
PpcInsBdzt = PpcInsn
PpcInsBdzf
  pred PpcInsn
PpcInsBfa = PpcInsn
PpcInsBdzt
  pred PpcInsn
PpcInsBdnzta = PpcInsn
PpcInsBfa
  pred PpcInsn
PpcInsBdnzfa = PpcInsn
PpcInsBdnzta
  pred PpcInsn
PpcInsBdzta = PpcInsn
PpcInsBdnzfa
  pred PpcInsn
PpcInsBdzfa = PpcInsn
PpcInsBdzta
  pred PpcInsn
PpcInsBtctr = PpcInsn
PpcInsBdzfa
  pred PpcInsn
PpcInsBfctr = PpcInsn
PpcInsBtctr
  pred PpcInsn
PpcInsBtctrl = PpcInsn
PpcInsBfctr
  pred PpcInsn
PpcInsBfctrl = PpcInsn
PpcInsBtctrl
  pred PpcInsn
PpcInsBtl = PpcInsn
PpcInsBfctrl
  pred PpcInsn
PpcInsBfl = PpcInsn
PpcInsBtl
  pred PpcInsn
PpcInsBdnztl = PpcInsn
PpcInsBfl
  pred PpcInsn
PpcInsBdnzfl = PpcInsn
PpcInsBdnztl
  pred PpcInsn
PpcInsBdztl = PpcInsn
PpcInsBdnzfl
  pred PpcInsn
PpcInsBdzfl = PpcInsn
PpcInsBdztl
  pred PpcInsn
PpcInsBtla = PpcInsn
PpcInsBdzfl
  pred PpcInsn
PpcInsBfla = PpcInsn
PpcInsBtla
  pred PpcInsn
PpcInsBdnztla = PpcInsn
PpcInsBfla
  pred PpcInsn
PpcInsBdnzfla = PpcInsn
PpcInsBdnztla
  pred PpcInsn
PpcInsBdztla = PpcInsn
PpcInsBdnzfla
  pred PpcInsn
PpcInsBdzfla = PpcInsn
PpcInsBdztla
  pred PpcInsn
PpcInsBtlr = PpcInsn
PpcInsBdzfla
  pred PpcInsn
PpcInsBflr = PpcInsn
PpcInsBtlr
  pred PpcInsn
PpcInsBdnztlr = PpcInsn
PpcInsBflr
  pred PpcInsn
PpcInsBdztlr = PpcInsn
PpcInsBdnztlr
  pred PpcInsn
PpcInsBdzflr = PpcInsn
PpcInsBdztlr
  pred PpcInsn
PpcInsBtlrl = PpcInsn
PpcInsBdzflr
  pred PpcInsn
PpcInsBflrl = PpcInsn
PpcInsBtlrl
  pred PpcInsn
PpcInsBdnztlrl = PpcInsn
PpcInsBflrl
  pred PpcInsn
PpcInsBdnzflrl = PpcInsn
PpcInsBdnztlrl
  pred PpcInsn
PpcInsBdztlrl = PpcInsn
PpcInsBdnzflrl
  pred PpcInsn
PpcInsBdzflrl = PpcInsn
PpcInsBdztlrl
  pred PpcInsn
PpcInsQvfand = PpcInsn
PpcInsBdzflrl
  pred PpcInsn
PpcInsQvfclr = PpcInsn
PpcInsQvfand
  pred PpcInsn
PpcInsQvfandc = PpcInsn
PpcInsQvfclr
  pred PpcInsn
PpcInsQvfctfb = PpcInsn
PpcInsQvfandc
  pred PpcInsn
PpcInsQvfxor = PpcInsn
PpcInsQvfctfb
  pred PpcInsn
PpcInsQvfor = PpcInsn
PpcInsQvfxor
  pred PpcInsn
PpcInsQvfnor = PpcInsn
PpcInsQvfor
  pred PpcInsn
PpcInsQvfequ = PpcInsn
PpcInsQvfnor
  pred PpcInsn
PpcInsQvfnot = PpcInsn
PpcInsQvfequ
  pred PpcInsn
PpcInsQvforc = PpcInsn
PpcInsQvfnot
  pred PpcInsn
PpcInsQvfnand = PpcInsn
PpcInsQvforc
  pred PpcInsn
PpcInsQvfset = PpcInsn
PpcInsQvfnand
  pred PpcInsn
PpcInsEnding = PpcInsn
PpcInsQvfset
  pred PpcInsn
PpcInsInvalid = String -> PpcInsn
forall a. HasCallStack => String -> a
error String
"PpcInsn.pred: PpcInsInvalid has no predecessor"

  enumFromTo :: PpcInsn -> PpcInsn -> [PpcInsn]
enumFromTo PpcInsn
from PpcInsn
to = PpcInsn -> [PpcInsn]
forall t. Enum t => t -> [t]
go PpcInsn
from
    where
      end :: Int
end = PpcInsn -> Int
forall a. Enum a => a -> Int
fromEnum PpcInsn
to
      go :: t -> [t]
go t
v = case Int -> Int -> Ordering
forall a. Ord a => a -> a -> Ordering
compare (t -> Int
forall a. Enum a => a -> Int
fromEnum t
v) Int
end of
                 Ordering
LT -> t
v t -> [t] -> [t]
forall a. a -> [a] -> [a]
: t -> [t]
go (t -> t
forall a. Enum a => a -> a
succ t
v)
                 Ordering
EQ -> [t
v]
                 Ordering
GT -> []

  enumFrom :: PpcInsn -> [PpcInsn]
enumFrom PpcInsn
from = PpcInsn -> PpcInsn -> [PpcInsn]
forall a. Enum a => a -> a -> [a]
enumFromTo PpcInsn
from PpcInsn
PpcInsEnding

  fromEnum :: PpcInsn -> Int
fromEnum PpcInsn
PpcInsInvalid = Int
0
  fromEnum PpcInsn
PpcInsAdd = Int
1
  fromEnum PpcInsn
PpcInsAddc = Int
2
  fromEnum PpcInsn
PpcInsAdde = Int
3
  fromEnum PpcInsn
PpcInsAddi = Int
4
  fromEnum PpcInsn
PpcInsAddic = Int
5
  fromEnum PpcInsn
PpcInsAddis = Int
6
  fromEnum PpcInsn
PpcInsAddme = Int
7
  fromEnum PpcInsn
PpcInsAddze = Int
8
  fromEnum PpcInsn
PpcInsAnd = Int
9
  fromEnum PpcInsn
PpcInsAndc = Int
10
  fromEnum PpcInsn
PpcInsAndis = Int
11
  fromEnum PpcInsn
PpcInsAndi = Int
12
  fromEnum PpcInsn
PpcInsAttn = Int
13
  fromEnum PpcInsn
PpcInsB = Int
14
  fromEnum PpcInsn
PpcInsBa = Int
15
  fromEnum PpcInsn
PpcInsBc = Int
16
  fromEnum PpcInsn
PpcInsBcctr = Int
17
  fromEnum PpcInsn
PpcInsBcctrl = Int
18
  fromEnum PpcInsn
PpcInsBcl = Int
19
  fromEnum PpcInsn
PpcInsBclr = Int
20
  fromEnum PpcInsn
PpcInsBclrl = Int
21
  fromEnum PpcInsn
PpcInsBctr = Int
22
  fromEnum PpcInsn
PpcInsBctrl = Int
23
  fromEnum PpcInsn
PpcInsBct = Int
24
  fromEnum PpcInsn
PpcInsBdnz = Int
25
  fromEnum PpcInsn
PpcInsBdnza = Int
26
  fromEnum PpcInsn
PpcInsBdnzl = Int
27
  fromEnum PpcInsn
PpcInsBdnzla = Int
28
  fromEnum PpcInsn
PpcInsBdnzlr = Int
29
  fromEnum PpcInsn
PpcInsBdnzlrl = Int
30
  fromEnum PpcInsn
PpcInsBdz = Int
31
  fromEnum PpcInsn
PpcInsBdza = Int
32
  fromEnum PpcInsn
PpcInsBdzl = Int
33
  fromEnum PpcInsn
PpcInsBdzla = Int
34
  fromEnum PpcInsn
PpcInsBdzlr = Int
35
  fromEnum PpcInsn
PpcInsBdzlrl = Int
36
  fromEnum PpcInsn
PpcInsBl = Int
37
  fromEnum PpcInsn
PpcInsBla = Int
38
  fromEnum PpcInsn
PpcInsBlr = Int
39
  fromEnum PpcInsn
PpcInsBlrl = Int
40
  fromEnum PpcInsn
PpcInsBrinc = Int
41
  fromEnum PpcInsn
PpcInsCmpb = Int
42
  fromEnum PpcInsn
PpcInsCmpd = Int
43
  fromEnum PpcInsn
PpcInsCmpdi = Int
44
  fromEnum PpcInsn
PpcInsCmpld = Int
45
  fromEnum PpcInsn
PpcInsCmpldi = Int
46
  fromEnum PpcInsn
PpcInsCmplw = Int
47
  fromEnum PpcInsn
PpcInsCmplwi = Int
48
  fromEnum PpcInsn
PpcInsCmpw = Int
49
  fromEnum PpcInsn
PpcInsCmpwi = Int
50
  fromEnum PpcInsn
PpcInsCntlzd = Int
51
  fromEnum PpcInsn
PpcInsCntlzw = Int
52
  fromEnum PpcInsn
PpcInsCreqv = Int
53
  fromEnum PpcInsn
PpcInsCrxor = Int
54
  fromEnum PpcInsn
PpcInsCrand = Int
55
  fromEnum PpcInsn
PpcInsCrandc = Int
56
  fromEnum PpcInsn
PpcInsCrnand = Int
57
  fromEnum PpcInsn
PpcInsCrnor = Int
58
  fromEnum PpcInsn
PpcInsCror = Int
59
  fromEnum PpcInsn
PpcInsCrorc = Int
60
  fromEnum PpcInsn
PpcInsDcba = Int
61
  fromEnum PpcInsn
PpcInsDcbf = Int
62
  fromEnum PpcInsn
PpcInsDcbi = Int
63
  fromEnum PpcInsn
PpcInsDcbst = Int
64
  fromEnum PpcInsn
PpcInsDcbt = Int
65
  fromEnum PpcInsn
PpcInsDcbtst = Int
66
  fromEnum PpcInsn
PpcInsDcbz = Int
67
  fromEnum PpcInsn
PpcInsDcbzl = Int
68
  fromEnum PpcInsn
PpcInsDccci = Int
69
  fromEnum PpcInsn
PpcInsDivd = Int
70
  fromEnum PpcInsn
PpcInsDivdu = Int
71
  fromEnum PpcInsn
PpcInsDivw = Int
72
  fromEnum PpcInsn
PpcInsDivwu = Int
73
  fromEnum PpcInsn
PpcInsDss = Int
74
  fromEnum PpcInsn
PpcInsDssall = Int
75
  fromEnum PpcInsn
PpcInsDst = Int
76
  fromEnum PpcInsn
PpcInsDstst = Int
77
  fromEnum PpcInsn
PpcInsDststt = Int
78
  fromEnum PpcInsn
PpcInsDstt = Int
79
  fromEnum PpcInsn
PpcInsEqv = Int
80
  fromEnum PpcInsn
PpcInsEvabs = Int
81
  fromEnum PpcInsn
PpcInsEvaddiw = Int
82
  fromEnum PpcInsn
PpcInsEvaddsmiaaw = Int
83
  fromEnum PpcInsn
PpcInsEvaddssiaaw = Int
84
  fromEnum PpcInsn
PpcInsEvaddumiaaw = Int
85
  fromEnum PpcInsn
PpcInsEvaddusiaaw = Int
86
  fromEnum PpcInsn
PpcInsEvaddw = Int
87
  fromEnum PpcInsn
PpcInsEvand = Int
88
  fromEnum PpcInsn
PpcInsEvandc = Int
89
  fromEnum PpcInsn
PpcInsEvcmpeq = Int
90
  fromEnum PpcInsn
PpcInsEvcmpgts = Int
91
  fromEnum PpcInsn
PpcInsEvcmpgtu = Int
92
  fromEnum PpcInsn
PpcInsEvcmplts = Int
93
  fromEnum PpcInsn
PpcInsEvcmpltu = Int
94
  fromEnum PpcInsn
PpcInsEvcntlsw = Int
95
  fromEnum PpcInsn
PpcInsEvcntlzw = Int
96
  fromEnum PpcInsn
PpcInsEvdivws = Int
97
  fromEnum PpcInsn
PpcInsEvdivwu = Int
98
  fromEnum PpcInsn
PpcInsEveqv = Int
99
  fromEnum PpcInsn
PpcInsEvextsb = Int
100
  fromEnum PpcInsn
PpcInsEvextsh = Int
101
  fromEnum PpcInsn
PpcInsEvldd = Int
102
  fromEnum PpcInsn
PpcInsEvlddx = Int
103
  fromEnum PpcInsn
PpcInsEvldh = Int
104
  fromEnum PpcInsn
PpcInsEvldhx = Int
105
  fromEnum PpcInsn
PpcInsEvldw = Int
106
  fromEnum PpcInsn
PpcInsEvldwx = Int
107
  fromEnum PpcInsn
PpcInsEvlhhesplat = Int
108
  fromEnum PpcInsn
PpcInsEvlhhesplatx = Int
109
  fromEnum PpcInsn
PpcInsEvlhhossplat = Int
110
  fromEnum PpcInsn
PpcInsEvlhhossplatx = Int
111
  fromEnum PpcInsn
PpcInsEvlhhousplat = Int
112
  fromEnum PpcInsn
PpcInsEvlhhousplatx = Int
113
  fromEnum PpcInsn
PpcInsEvlwhe = Int
114
  fromEnum PpcInsn
PpcInsEvlwhex = Int
115
  fromEnum PpcInsn
PpcInsEvlwhos = Int
116
  fromEnum PpcInsn
PpcInsEvlwhosx = Int
117
  fromEnum PpcInsn
PpcInsEvlwhou = Int
118
  fromEnum PpcInsn
PpcInsEvlwhoux = Int
119
  fromEnum PpcInsn
PpcInsEvlwhsplat = Int
120
  fromEnum PpcInsn
PpcInsEvlwhsplatx = Int
121
  fromEnum PpcInsn
PpcInsEvlwwsplat = Int
122
  fromEnum PpcInsn
PpcInsEvlwwsplatx = Int
123
  fromEnum PpcInsn
PpcInsEvmergehi = Int
124
  fromEnum PpcInsn
PpcInsEvmergehilo = Int
125
  fromEnum PpcInsn
PpcInsEvmergelo = Int
126
  fromEnum PpcInsn
PpcInsEvmergelohi = Int
127
  fromEnum PpcInsn
PpcInsEvmhegsmfaa = Int
128
  fromEnum PpcInsn
PpcInsEvmhegsmfan = Int
129
  fromEnum PpcInsn
PpcInsEvmhegsmiaa = Int
130
  fromEnum PpcInsn
PpcInsEvmhegsmian = Int
131
  fromEnum PpcInsn
PpcInsEvmhegumiaa = Int
132
  fromEnum PpcInsn
PpcInsEvmhegumian = Int
133
  fromEnum PpcInsn
PpcInsEvmhesmf = Int
134
  fromEnum PpcInsn
PpcInsEvmhesmfa = Int
135
  fromEnum PpcInsn
PpcInsEvmhesmfaaw = Int
136
  fromEnum PpcInsn
PpcInsEvmhesmfanw = Int
137
  fromEnum PpcInsn
PpcInsEvmhesmi = Int
138
  fromEnum PpcInsn
PpcInsEvmhesmia = Int
139
  fromEnum PpcInsn
PpcInsEvmhesmiaaw = Int
140
  fromEnum PpcInsn
PpcInsEvmhesmianw = Int
141
  fromEnum PpcInsn
PpcInsEvmhessf = Int
142
  fromEnum PpcInsn
PpcInsEvmhessfa = Int
143
  fromEnum PpcInsn
PpcInsEvmhessfaaw = Int
144
  fromEnum PpcInsn
PpcInsEvmhessfanw = Int
145
  fromEnum PpcInsn
PpcInsEvmhessiaaw = Int
146
  fromEnum PpcInsn
PpcInsEvmhessianw = Int
147
  fromEnum PpcInsn
PpcInsEvmheumi = Int
148
  fromEnum PpcInsn
PpcInsEvmheumia = Int
149
  fromEnum PpcInsn
PpcInsEvmheumiaaw = Int
150
  fromEnum PpcInsn
PpcInsEvmheumianw = Int
151
  fromEnum PpcInsn
PpcInsEvmheusiaaw = Int
152
  fromEnum PpcInsn
PpcInsEvmheusianw = Int
153
  fromEnum PpcInsn
PpcInsEvmhogsmfaa = Int
154
  fromEnum PpcInsn
PpcInsEvmhogsmfan = Int
155
  fromEnum PpcInsn
PpcInsEvmhogsmiaa = Int
156
  fromEnum PpcInsn
PpcInsEvmhogsmian = Int
157
  fromEnum PpcInsn
PpcInsEvmhogumiaa = Int
158
  fromEnum PpcInsn
PpcInsEvmhogumian = Int
159
  fromEnum PpcInsn
PpcInsEvmhosmf = Int
160
  fromEnum PpcInsn
PpcInsEvmhosmfa = Int
161
  fromEnum PpcInsn
PpcInsEvmhosmfaaw = Int
162
  fromEnum PpcInsn
PpcInsEvmhosmfanw = Int
163
  fromEnum PpcInsn
PpcInsEvmhosmi = Int
164
  fromEnum PpcInsn
PpcInsEvmhosmia = Int
165
  fromEnum PpcInsn
PpcInsEvmhosmiaaw = Int
166
  fromEnum PpcInsn
PpcInsEvmhosmianw = Int
167
  fromEnum PpcInsn
PpcInsEvmhossf = Int
168
  fromEnum PpcInsn
PpcInsEvmhossfa = Int
169
  fromEnum PpcInsn
PpcInsEvmhossfaaw = Int
170
  fromEnum PpcInsn
PpcInsEvmhossfanw = Int
171
  fromEnum PpcInsn
PpcInsEvmhossiaaw = Int
172
  fromEnum PpcInsn
PpcInsEvmhossianw = Int
173
  fromEnum PpcInsn
PpcInsEvmhoumi = Int
174
  fromEnum PpcInsn
PpcInsEvmhoumia = Int
175
  fromEnum PpcInsn
PpcInsEvmhoumiaaw = Int
176
  fromEnum PpcInsn
PpcInsEvmhoumianw = Int
177
  fromEnum PpcInsn
PpcInsEvmhousiaaw = Int
178
  fromEnum PpcInsn
PpcInsEvmhousianw = Int
179
  fromEnum PpcInsn
PpcInsEvmra = Int
180
  fromEnum PpcInsn
PpcInsEvmwhsmf = Int
181
  fromEnum PpcInsn
PpcInsEvmwhsmfa = Int
182
  fromEnum PpcInsn
PpcInsEvmwhsmi = Int
183
  fromEnum PpcInsn
PpcInsEvmwhsmia = Int
184
  fromEnum PpcInsn
PpcInsEvmwhssf = Int
185
  fromEnum PpcInsn
PpcInsEvmwhssfa = Int
186
  fromEnum PpcInsn
PpcInsEvmwhumi = Int
187
  fromEnum PpcInsn
PpcInsEvmwhumia = Int
188
  fromEnum PpcInsn
PpcInsEvmwlsmiaaw = Int
189
  fromEnum PpcInsn
PpcInsEvmwlsmianw = Int
190
  fromEnum PpcInsn
PpcInsEvmwlssiaaw = Int
191
  fromEnum PpcInsn
PpcInsEvmwlssianw = Int
192
  fromEnum PpcInsn
PpcInsEvmwlumi = Int
193
  fromEnum PpcInsn
PpcInsEvmwlumia = Int
194
  fromEnum PpcInsn
PpcInsEvmwlumiaaw = Int
195
  fromEnum PpcInsn
PpcInsEvmwlumianw = Int
196
  fromEnum PpcInsn
PpcInsEvmwlusiaaw = Int
197
  fromEnum PpcInsn
PpcInsEvmwlusianw = Int
198
  fromEnum PpcInsn
PpcInsEvmwsmf = Int
199
  fromEnum PpcInsn
PpcInsEvmwsmfa = Int
200
  fromEnum PpcInsn
PpcInsEvmwsmfaa = Int
201
  fromEnum PpcInsn
PpcInsEvmwsmfan = Int
202
  fromEnum PpcInsn
PpcInsEvmwsmi = Int
203
  fromEnum PpcInsn
PpcInsEvmwsmia = Int
204
  fromEnum PpcInsn
PpcInsEvmwsmiaa = Int
205
  fromEnum PpcInsn
PpcInsEvmwsmian = Int
206
  fromEnum PpcInsn
PpcInsEvmwssf = Int
207
  fromEnum PpcInsn
PpcInsEvmwssfa = Int
208
  fromEnum PpcInsn
PpcInsEvmwssfaa = Int
209
  fromEnum PpcInsn
PpcInsEvmwssfan = Int
210
  fromEnum PpcInsn
PpcInsEvmwumi = Int
211
  fromEnum PpcInsn
PpcInsEvmwumia = Int
212
  fromEnum PpcInsn
PpcInsEvmwumiaa = Int
213
  fromEnum PpcInsn
PpcInsEvmwumian = Int
214
  fromEnum PpcInsn
PpcInsEvnand = Int
215
  fromEnum PpcInsn
PpcInsEvneg = Int
216
  fromEnum PpcInsn
PpcInsEvnor = Int
217
  fromEnum PpcInsn
PpcInsEvor = Int
218
  fromEnum PpcInsn
PpcInsEvorc = Int
219
  fromEnum PpcInsn
PpcInsEvrlw = Int
220
  fromEnum PpcInsn
PpcInsEvrlwi = Int
221
  fromEnum PpcInsn
PpcInsEvrndw = Int
222
  fromEnum PpcInsn
PpcInsEvslw = Int
223
  fromEnum PpcInsn
PpcInsEvslwi = Int
224
  fromEnum PpcInsn
PpcInsEvsplatfi = Int
225
  fromEnum PpcInsn
PpcInsEvsplati = Int
226
  fromEnum PpcInsn
PpcInsEvsrwis = Int
227
  fromEnum PpcInsn
PpcInsEvsrwiu = Int
228
  fromEnum PpcInsn
PpcInsEvsrws = Int
229
  fromEnum PpcInsn
PpcInsEvsrwu = Int
230
  fromEnum PpcInsn
PpcInsEvstdd = Int
231
  fromEnum PpcInsn
PpcInsEvstddx = Int
232
  fromEnum PpcInsn
PpcInsEvstdh = Int
233
  fromEnum PpcInsn
PpcInsEvstdhx = Int
234
  fromEnum PpcInsn
PpcInsEvstdw = Int
235
  fromEnum PpcInsn
PpcInsEvstdwx = Int
236
  fromEnum PpcInsn
PpcInsEvstwhe = Int
237
  fromEnum PpcInsn
PpcInsEvstwhex = Int
238
  fromEnum PpcInsn
PpcInsEvstwho = Int
239
  fromEnum PpcInsn
PpcInsEvstwhox = Int
240
  fromEnum PpcInsn
PpcInsEvstwwe = Int
241
  fromEnum PpcInsn
PpcInsEvstwwex = Int
242
  fromEnum PpcInsn
PpcInsEvstwwo = Int
243
  fromEnum PpcInsn
PpcInsEvstwwox = Int
244
  fromEnum PpcInsn
PpcInsEvsubfsmiaaw = Int
245
  fromEnum PpcInsn
PpcInsEvsubfssiaaw = Int
246
  fromEnum PpcInsn
PpcInsEvsubfumiaaw = Int
247
  fromEnum PpcInsn
PpcInsEvsubfusiaaw = Int
248
  fromEnum PpcInsn
PpcInsEvsubfw = Int
249
  fromEnum PpcInsn
PpcInsEvsubifw = Int
250
  fromEnum PpcInsn
PpcInsEvxor = Int
251
  fromEnum PpcInsn
PpcInsExtsb = Int
252
  fromEnum PpcInsn
PpcInsExtsh = Int
253
  fromEnum PpcInsn
PpcInsExtsw = Int
254
  fromEnum PpcInsn
PpcInsEieio = Int
255
  fromEnum PpcInsn
PpcInsFabs = Int
256
  fromEnum PpcInsn
PpcInsFadd = Int
257
  fromEnum PpcInsn
PpcInsFadds = Int
258
  fromEnum PpcInsn
PpcInsFcfid = Int
259
  fromEnum PpcInsn
PpcInsFcfids = Int
260
  fromEnum PpcInsn
PpcInsFcfidu = Int
261
  fromEnum PpcInsn
PpcInsFcfidus = Int
262
  fromEnum PpcInsn
PpcInsFcmpu = Int
263
  fromEnum PpcInsn
PpcInsFcpsgn = Int
264
  fromEnum PpcInsn
PpcInsFctid = Int
265
  fromEnum PpcInsn
PpcInsFctiduz = Int
266
  fromEnum PpcInsn
PpcInsFctidz = Int
267
  fromEnum PpcInsn
PpcInsFctiw = Int
268
  fromEnum PpcInsn
PpcInsFctiwuz = Int
269
  fromEnum PpcInsn
PpcInsFctiwz = Int
270
  fromEnum PpcInsn
PpcInsFdiv = Int
271
  fromEnum PpcInsn
PpcInsFdivs = Int
272
  fromEnum PpcInsn
PpcInsFmadd = Int
273
  fromEnum PpcInsn
PpcInsFmadds = Int
274
  fromEnum PpcInsn
PpcInsFmr = Int
275
  fromEnum PpcInsn
PpcInsFmsub = Int
276
  fromEnum PpcInsn
PpcInsFmsubs = Int
277
  fromEnum PpcInsn
PpcInsFmul = Int
278
  fromEnum PpcInsn
PpcInsFmuls = Int
279
  fromEnum PpcInsn
PpcInsFnabs = Int
280
  fromEnum PpcInsn
PpcInsFneg = Int
281
  fromEnum PpcInsn
PpcInsFnmadd = Int
282
  fromEnum PpcInsn
PpcInsFnmadds = Int
283
  fromEnum PpcInsn
PpcInsFnmsub = Int
284
  fromEnum PpcInsn
PpcInsFnmsubs = Int
285
  fromEnum PpcInsn
PpcInsFre = Int
286
  fromEnum PpcInsn
PpcInsFres = Int
287
  fromEnum PpcInsn
PpcInsFrim = Int
288
  fromEnum PpcInsn
PpcInsFrin = Int
289
  fromEnum PpcInsn
PpcInsFrip = Int
290
  fromEnum PpcInsn
PpcInsFriz = Int
291
  fromEnum PpcInsn
PpcInsFrsp = Int
292
  fromEnum PpcInsn
PpcInsFrsqrte = Int
293
  fromEnum PpcInsn
PpcInsFrsqrtes = Int
294
  fromEnum PpcInsn
PpcInsFsel = Int
295
  fromEnum PpcInsn
PpcInsFsqrt = Int
296
  fromEnum PpcInsn
PpcInsFsqrts = Int
297
  fromEnum PpcInsn
PpcInsFsub = Int
298
  fromEnum PpcInsn
PpcInsFsubs = Int
299
  fromEnum PpcInsn
PpcInsIcbi = Int
300
  fromEnum PpcInsn
PpcInsIcbt = Int
301
  fromEnum PpcInsn
PpcInsIccci = Int
302
  fromEnum PpcInsn
PpcInsIsel = Int
303
  fromEnum PpcInsn
PpcInsIsync = Int
304
  fromEnum PpcInsn
PpcInsLa = Int
305
  fromEnum PpcInsn
PpcInsLbz = Int
306
  fromEnum PpcInsn
PpcInsLbzcix = Int
307
  fromEnum PpcInsn
PpcInsLbzu = Int
308
  fromEnum PpcInsn
PpcInsLbzux = Int
309
  fromEnum PpcInsn
PpcInsLbzx = Int
310
  fromEnum PpcInsn
PpcInsLd = Int
311
  fromEnum PpcInsn
PpcInsLdarx = Int
312
  fromEnum PpcInsn
PpcInsLdbrx = Int
313
  fromEnum PpcInsn
PpcInsLdcix = Int
314
  fromEnum PpcInsn
PpcInsLdu = Int
315
  fromEnum PpcInsn
PpcInsLdux = Int
316
  fromEnum PpcInsn
PpcInsLdx = Int
317
  fromEnum PpcInsn
PpcInsLfd = Int
318
  fromEnum PpcInsn
PpcInsLfdu = Int
319
  fromEnum PpcInsn
PpcInsLfdux = Int
320
  fromEnum PpcInsn
PpcInsLfdx = Int
321
  fromEnum PpcInsn
PpcInsLfiwax = Int
322
  fromEnum PpcInsn
PpcInsLfiwzx = Int
323
  fromEnum PpcInsn
PpcInsLfs = Int
324
  fromEnum PpcInsn
PpcInsLfsu = Int
325
  fromEnum PpcInsn
PpcInsLfsux = Int
326
  fromEnum PpcInsn
PpcInsLfsx = Int
327
  fromEnum PpcInsn
PpcInsLha = Int
328
  fromEnum PpcInsn
PpcInsLhau = Int
329
  fromEnum PpcInsn
PpcInsLhaux = Int
330
  fromEnum PpcInsn
PpcInsLhax = Int
331
  fromEnum PpcInsn
PpcInsLhbrx = Int
332
  fromEnum PpcInsn
PpcInsLhz = Int
333
  fromEnum PpcInsn
PpcInsLhzcix = Int
334
  fromEnum PpcInsn
PpcInsLhzu = Int
335
  fromEnum PpcInsn
PpcInsLhzux = Int
336
  fromEnum PpcInsn
PpcInsLhzx = Int
337
  fromEnum PpcInsn
PpcInsLi = Int
338
  fromEnum PpcInsn
PpcInsLis = Int
339
  fromEnum PpcInsn
PpcInsLmw = Int
340
  fromEnum PpcInsn
PpcInsLswi = Int
341
  fromEnum PpcInsn
PpcInsLvebx = Int
342
  fromEnum PpcInsn
PpcInsLvehx = Int
343
  fromEnum PpcInsn
PpcInsLvewx = Int
344
  fromEnum PpcInsn
PpcInsLvsl = Int
345
  fromEnum PpcInsn
PpcInsLvsr = Int
346
  fromEnum PpcInsn
PpcInsLvx = Int
347
  fromEnum PpcInsn
PpcInsLvxl = Int
348
  fromEnum PpcInsn
PpcInsLwa = Int
349
  fromEnum PpcInsn
PpcInsLwarx = Int
350
  fromEnum PpcInsn
PpcInsLwaux = Int
351
  fromEnum PpcInsn
PpcInsLwax = Int
352
  fromEnum PpcInsn
PpcInsLwbrx = Int
353
  fromEnum PpcInsn
PpcInsLwz = Int
354
  fromEnum PpcInsn
PpcInsLwzcix = Int
355
  fromEnum PpcInsn
PpcInsLwzu = Int
356
  fromEnum PpcInsn
PpcInsLwzux = Int
357
  fromEnum PpcInsn
PpcInsLwzx = Int
358
  fromEnum PpcInsn
PpcInsLxsdx = Int
359
  fromEnum PpcInsn
PpcInsLxvd2x = Int
360
  fromEnum PpcInsn
PpcInsLxvdsx = Int
361
  fromEnum PpcInsn
PpcInsLxvw4x = Int
362
  fromEnum PpcInsn
PpcInsMbar = Int
363
  fromEnum PpcInsn
PpcInsMcrf = Int
364
  fromEnum PpcInsn
PpcInsMcrfs = Int
365
  fromEnum PpcInsn
PpcInsMfcr = Int
366
  fromEnum PpcInsn
PpcInsMfctr = Int
367
  fromEnum PpcInsn
PpcInsMfdcr = Int
368
  fromEnum PpcInsn
PpcInsMffs = Int
369
  fromEnum PpcInsn
PpcInsMflr = Int
370
  fromEnum PpcInsn
PpcInsMfmsr = Int
371
  fromEnum PpcInsn
PpcInsMfocrf = Int
372
  fromEnum PpcInsn
PpcInsMfspr = Int
373
  fromEnum PpcInsn
PpcInsMfsr = Int
374
  fromEnum PpcInsn
PpcInsMfsrin = Int
375
  fromEnum PpcInsn
PpcInsMftb = Int
376
  fromEnum PpcInsn
PpcInsMfvscr = Int
377
  fromEnum PpcInsn
PpcInsMsync = Int
378
  fromEnum PpcInsn
PpcInsMtcrf = Int
379
  fromEnum PpcInsn
PpcInsMtctr = Int
380
  fromEnum PpcInsn
PpcInsMtdcr = Int
381
  fromEnum PpcInsn
PpcInsMtfsb0 = Int
382
  fromEnum PpcInsn
PpcInsMtfsb1 = Int
383
  fromEnum PpcInsn
PpcInsMtfsf = Int
384
  fromEnum PpcInsn
PpcInsMtfsfi = Int
385
  fromEnum PpcInsn
PpcInsMtlr = Int
386
  fromEnum PpcInsn
PpcInsMtmsr = Int
387
  fromEnum PpcInsn
PpcInsMtmsrd = Int
388
  fromEnum PpcInsn
PpcInsMtocrf = Int
389
  fromEnum PpcInsn
PpcInsMtspr = Int
390
  fromEnum PpcInsn
PpcInsMtsr = Int
391
  fromEnum PpcInsn
PpcInsMtsrin = Int
392
  fromEnum PpcInsn
PpcInsMtvscr = Int
393
  fromEnum PpcInsn
PpcInsMulhd = Int
394
  fromEnum PpcInsn
PpcInsMulhdu = Int
395
  fromEnum PpcInsn
PpcInsMulhw = Int
396
  fromEnum PpcInsn
PpcInsMulhwu = Int
397
  fromEnum PpcInsn
PpcInsMulld = Int
398
  fromEnum PpcInsn
PpcInsMulli = Int
399
  fromEnum PpcInsn
PpcInsMullw = Int
400
  fromEnum PpcInsn
PpcInsNand = Int
401
  fromEnum PpcInsn
PpcInsNeg = Int
402
  fromEnum PpcInsn
PpcInsNop = Int
403
  fromEnum PpcInsn
PpcInsOri = Int
404
  fromEnum PpcInsn
PpcInsNor = Int
405
  fromEnum PpcInsn
PpcInsOr = Int
406
  fromEnum PpcInsn
PpcInsOrc = Int
407
  fromEnum PpcInsn
PpcInsOris = Int
408
  fromEnum PpcInsn
PpcInsPopcntd = Int
409
  fromEnum PpcInsn
PpcInsPopcntw = Int
410
  fromEnum PpcInsn
PpcInsQvaligni = Int
411
  fromEnum PpcInsn
PpcInsQvesplati = Int
412
  fromEnum PpcInsn
PpcInsQvfabs = Int
413
  fromEnum PpcInsn
PpcInsQvfadd = Int
414
  fromEnum PpcInsn
PpcInsQvfadds = Int
415
  fromEnum PpcInsn
PpcInsQvfcfid = Int
416
  fromEnum PpcInsn
PpcInsQvfcfids = Int
417
  fromEnum PpcInsn
PpcInsQvfcfidu = Int
418
  fromEnum PpcInsn
PpcInsQvfcfidus = Int
419
  fromEnum PpcInsn
PpcInsQvfcmpeq = Int
420
  fromEnum PpcInsn
PpcInsQvfcmpgt = Int
421
  fromEnum PpcInsn
PpcInsQvfcmplt = Int
422
  fromEnum PpcInsn
PpcInsQvfcpsgn = Int
423
  fromEnum PpcInsn
PpcInsQvfctid = Int
424
  fromEnum PpcInsn
PpcInsQvfctidu = Int
425
  fromEnum PpcInsn
PpcInsQvfctiduz = Int
426
  fromEnum PpcInsn
PpcInsQvfctidz = Int
427
  fromEnum PpcInsn
PpcInsQvfctiw = Int
428
  fromEnum PpcInsn
PpcInsQvfctiwu = Int
429
  fromEnum PpcInsn
PpcInsQvfctiwuz = Int
430
  fromEnum PpcInsn
PpcInsQvfctiwz = Int
431
  fromEnum PpcInsn
PpcInsQvflogical = Int
432
  fromEnum PpcInsn
PpcInsQvfmadd = Int
433
  fromEnum PpcInsn
PpcInsQvfmadds = Int
434
  fromEnum PpcInsn
PpcInsQvfmr = Int
435
  fromEnum PpcInsn
PpcInsQvfmsub = Int
436
  fromEnum PpcInsn
PpcInsQvfmsubs = Int
437
  fromEnum PpcInsn
PpcInsQvfmul = Int
438
  fromEnum PpcInsn
PpcInsQvfmuls = Int
439
  fromEnum PpcInsn
PpcInsQvfnabs = Int
440
  fromEnum PpcInsn
PpcInsQvfneg = Int
441
  fromEnum PpcInsn
PpcInsQvfnmadd = Int
442
  fromEnum PpcInsn
PpcInsQvfnmadds = Int
443
  fromEnum PpcInsn
PpcInsQvfnmsub = Int
444
  fromEnum PpcInsn
PpcInsQvfnmsubs = Int
445
  fromEnum PpcInsn
PpcInsQvfperm = Int
446
  fromEnum PpcInsn
PpcInsQvfre = Int
447
  fromEnum PpcInsn
PpcInsQvfres = Int
448
  fromEnum PpcInsn
PpcInsQvfrim = Int
449
  fromEnum PpcInsn
PpcInsQvfrin = Int
450
  fromEnum PpcInsn
PpcInsQvfrip = Int
451
  fromEnum PpcInsn
PpcInsQvfriz = Int
452
  fromEnum PpcInsn
PpcInsQvfrsp = Int
453
  fromEnum PpcInsn
PpcInsQvfrsqrte = Int
454
  fromEnum PpcInsn
PpcInsQvfrsqrtes = Int
455
  fromEnum PpcInsn
PpcInsQvfsel = Int
456
  fromEnum PpcInsn
PpcInsQvfsub = Int
457
  fromEnum PpcInsn
PpcInsQvfsubs = Int
458
  fromEnum PpcInsn
PpcInsQvftstnan = Int
459
  fromEnum PpcInsn
PpcInsQvfxmadd = Int
460
  fromEnum PpcInsn
PpcInsQvfxmadds = Int
461
  fromEnum PpcInsn
PpcInsQvfxmul = Int
462
  fromEnum PpcInsn
PpcInsQvfxmuls = Int
463
  fromEnum PpcInsn
PpcInsQvfxxcpnmadd = Int
464
  fromEnum PpcInsn
PpcInsQvfxxcpnmadds = Int
465
  fromEnum PpcInsn
PpcInsQvfxxmadd = Int
466
  fromEnum PpcInsn
PpcInsQvfxxmadds = Int
467
  fromEnum PpcInsn
PpcInsQvfxxnpmadd = Int
468
  fromEnum PpcInsn
PpcInsQvfxxnpmadds = Int
469
  fromEnum PpcInsn
PpcInsQvgpci = Int
470
  fromEnum PpcInsn
PpcInsQvlfcdux = Int
471
  fromEnum PpcInsn
PpcInsQvlfcduxa = Int
472
  fromEnum PpcInsn
PpcInsQvlfcdx = Int
473
  fromEnum PpcInsn
PpcInsQvlfcdxa = Int
474
  fromEnum PpcInsn
PpcInsQvlfcsux = Int
475
  fromEnum PpcInsn
PpcInsQvlfcsuxa = Int
476
  fromEnum PpcInsn
PpcInsQvlfcsx = Int
477
  fromEnum PpcInsn
PpcInsQvlfcsxa = Int
478
  fromEnum PpcInsn
PpcInsQvlfdux = Int
479
  fromEnum PpcInsn
PpcInsQvlfduxa = Int
480
  fromEnum PpcInsn
PpcInsQvlfdx = Int
481
  fromEnum PpcInsn
PpcInsQvlfdxa = Int
482
  fromEnum PpcInsn
PpcInsQvlfiwax = Int
483
  fromEnum PpcInsn
PpcInsQvlfiwaxa = Int
484
  fromEnum PpcInsn
PpcInsQvlfiwzx = Int
485
  fromEnum PpcInsn
PpcInsQvlfiwzxa = Int
486
  fromEnum PpcInsn
PpcInsQvlfsux = Int
487
  fromEnum PpcInsn
PpcInsQvlfsuxa = Int
488
  fromEnum PpcInsn
PpcInsQvlfsx = Int
489
  fromEnum PpcInsn
PpcInsQvlfsxa = Int
490
  fromEnum PpcInsn
PpcInsQvlpcldx = Int
491
  fromEnum PpcInsn
PpcInsQvlpclsx = Int
492
  fromEnum PpcInsn
PpcInsQvlpcrdx = Int
493
  fromEnum PpcInsn
PpcInsQvlpcrsx = Int
494
  fromEnum PpcInsn
PpcInsQvstfcdux = Int
495
  fromEnum PpcInsn
PpcInsQvstfcduxa = Int
496
  fromEnum PpcInsn
PpcInsQvstfcduxi = Int
497
  fromEnum PpcInsn
PpcInsQvstfcduxia = Int
498
  fromEnum PpcInsn
PpcInsQvstfcdx = Int
499
  fromEnum PpcInsn
PpcInsQvstfcdxa = Int
500
  fromEnum PpcInsn
PpcInsQvstfcdxi = Int
501
  fromEnum PpcInsn
PpcInsQvstfcdxia = Int
502
  fromEnum PpcInsn
PpcInsQvstfcsux = Int
503
  fromEnum PpcInsn
PpcInsQvstfcsuxa = Int
504
  fromEnum PpcInsn
PpcInsQvstfcsuxi = Int
505
  fromEnum PpcInsn
PpcInsQvstfcsuxia = Int
506
  fromEnum PpcInsn
PpcInsQvstfcsx = Int
507
  fromEnum PpcInsn
PpcInsQvstfcsxa = Int
508
  fromEnum PpcInsn
PpcInsQvstfcsxi = Int
509
  fromEnum PpcInsn
PpcInsQvstfcsxia = Int
510
  fromEnum PpcInsn
PpcInsQvstfdux = Int
511
  fromEnum PpcInsn
PpcInsQvstfduxa = Int
512
  fromEnum PpcInsn
PpcInsQvstfduxi = Int
513
  fromEnum PpcInsn
PpcInsQvstfduxia = Int
514
  fromEnum PpcInsn
PpcInsQvstfdx = Int
515
  fromEnum PpcInsn
PpcInsQvstfdxa = Int
516
  fromEnum PpcInsn
PpcInsQvstfdxi = Int
517
  fromEnum PpcInsn
PpcInsQvstfdxia = Int
518
  fromEnum PpcInsn
PpcInsQvstfiwx = Int
519
  fromEnum PpcInsn
PpcInsQvstfiwxa = Int
520
  fromEnum PpcInsn
PpcInsQvstfsux = Int
521
  fromEnum PpcInsn
PpcInsQvstfsuxa = Int
522
  fromEnum PpcInsn
PpcInsQvstfsuxi = Int
523
  fromEnum PpcInsn
PpcInsQvstfsuxia = Int
524
  fromEnum PpcInsn
PpcInsQvstfsx = Int
525
  fromEnum PpcInsn
PpcInsQvstfsxa = Int
526
  fromEnum PpcInsn
PpcInsQvstfsxi = Int
527
  fromEnum PpcInsn
PpcInsQvstfsxia = Int
528
  fromEnum PpcInsn
PpcInsRfci = Int
529
  fromEnum PpcInsn
PpcInsRfdi = Int
530
  fromEnum PpcInsn
PpcInsRfi = Int
531
  fromEnum PpcInsn
PpcInsRfid = Int
532
  fromEnum PpcInsn
PpcInsRfmci = Int
533
  fromEnum PpcInsn
PpcInsRldcl = Int
534
  fromEnum PpcInsn
PpcInsRldcr = Int
535
  fromEnum PpcInsn
PpcInsRldic = Int
536
  fromEnum PpcInsn
PpcInsRldicl = Int
537
  fromEnum PpcInsn
PpcInsRldicr = Int
538
  fromEnum PpcInsn
PpcInsRldimi = Int
539
  fromEnum PpcInsn
PpcInsRlwimi = Int
540
  fromEnum PpcInsn
PpcInsRlwinm = Int
541
  fromEnum PpcInsn
PpcInsRlwnm = Int
542
  fromEnum PpcInsn
PpcInsSc = Int
543
  fromEnum PpcInsn
PpcInsSlbia = Int
544
  fromEnum PpcInsn
PpcInsSlbie = Int
545
  fromEnum PpcInsn
PpcInsSlbmfee = Int
546
  fromEnum PpcInsn
PpcInsSlbmte = Int
547
  fromEnum PpcInsn
PpcInsSld = Int
548
  fromEnum PpcInsn
PpcInsSlw = Int
549
  fromEnum PpcInsn
PpcInsSrad = Int
550
  fromEnum PpcInsn
PpcInsSradi = Int
551
  fromEnum PpcInsn
PpcInsSraw = Int
552
  fromEnum PpcInsn
PpcInsSrawi = Int
553
  fromEnum PpcInsn
PpcInsSrd = Int
554
  fromEnum PpcInsn
PpcInsSrw = Int
555
  fromEnum PpcInsn
PpcInsStb = Int
556
  fromEnum PpcInsn
PpcInsStbcix = Int
557
  fromEnum PpcInsn
PpcInsStbu = Int
558
  fromEnum PpcInsn
PpcInsStbux = Int
559
  fromEnum PpcInsn
PpcInsStbx = Int
560
  fromEnum PpcInsn
PpcInsStd = Int
561
  fromEnum PpcInsn
PpcInsStdbrx = Int
562
  fromEnum PpcInsn
PpcInsStdcix = Int
563
  fromEnum PpcInsn
PpcInsStdcx = Int
564
  fromEnum PpcInsn
PpcInsStdu = Int
565
  fromEnum PpcInsn
PpcInsStdux = Int
566
  fromEnum PpcInsn
PpcInsStdx = Int
567
  fromEnum PpcInsn
PpcInsStfd = Int
568
  fromEnum PpcInsn
PpcInsStfdu = Int
569
  fromEnum PpcInsn
PpcInsStfdux = Int
570
  fromEnum PpcInsn
PpcInsStfdx = Int
571
  fromEnum PpcInsn
PpcInsStfiwx = Int
572
  fromEnum PpcInsn
PpcInsStfs = Int
573
  fromEnum PpcInsn
PpcInsStfsu = Int
574
  fromEnum PpcInsn
PpcInsStfsux = Int
575
  fromEnum PpcInsn
PpcInsStfsx = Int
576
  fromEnum PpcInsn
PpcInsSth = Int
577
  fromEnum PpcInsn
PpcInsSthbrx = Int
578
  fromEnum PpcInsn
PpcInsSthcix = Int
579
  fromEnum PpcInsn
PpcInsSthu = Int
580
  fromEnum PpcInsn
PpcInsSthux = Int
581
  fromEnum PpcInsn
PpcInsSthx = Int
582
  fromEnum PpcInsn
PpcInsStmw = Int
583
  fromEnum PpcInsn
PpcInsStswi = Int
584
  fromEnum PpcInsn
PpcInsStvebx = Int
585
  fromEnum PpcInsn
PpcInsStvehx = Int
586
  fromEnum PpcInsn
PpcInsStvewx = Int
587
  fromEnum PpcInsn
PpcInsStvx = Int
588
  fromEnum PpcInsn
PpcInsStvxl = Int
589
  fromEnum PpcInsn
PpcInsStw = Int
590
  fromEnum PpcInsn
PpcInsStwbrx = Int
591
  fromEnum PpcInsn
PpcInsStwcix = Int
592
  fromEnum PpcInsn
PpcInsStwcx = Int
593
  fromEnum PpcInsn
PpcInsStwu = Int
594
  fromEnum PpcInsn
PpcInsStwux = Int
595
  fromEnum PpcInsn
PpcInsStwx = Int
596
  fromEnum PpcInsn
PpcInsStxsdx = Int
597
  fromEnum PpcInsn
PpcInsStxvd2x = Int
598
  fromEnum PpcInsn
PpcInsStxvw4x = Int
599
  fromEnum PpcInsn
PpcInsSubf = Int
600
  fromEnum PpcInsn
PpcInsSubfc = Int
601
  fromEnum PpcInsn
PpcInsSubfe = Int
602
  fromEnum PpcInsn
PpcInsSubfic = Int
603
  fromEnum PpcInsn
PpcInsSubfme = Int
604
  fromEnum PpcInsn
PpcInsSubfze = Int
605
  fromEnum PpcInsn
PpcInsSync = Int
606
  fromEnum PpcInsn
PpcInsTd = Int
607
  fromEnum PpcInsn
PpcInsTdi = Int
608
  fromEnum PpcInsn
PpcInsTlbia = Int
609
  fromEnum PpcInsn
PpcInsTlbie = Int
610
  fromEnum PpcInsn
PpcInsTlbiel = Int
611
  fromEnum PpcInsn
PpcInsTlbivax = Int
612
  fromEnum PpcInsn
PpcInsTlbld = Int
613
  fromEnum PpcInsn
PpcInsTlbli = Int
614
  fromEnum PpcInsn
PpcInsTlbre = Int
615
  fromEnum PpcInsn
PpcInsTlbsx = Int
616
  fromEnum PpcInsn
PpcInsTlbsync = Int
617
  fromEnum PpcInsn
PpcInsTlbwe = Int
618
  fromEnum PpcInsn
PpcInsTrap = Int
619
  fromEnum PpcInsn
PpcInsTw = Int
620
  fromEnum PpcInsn
PpcInsTwi = Int
621
  fromEnum PpcInsn
PpcInsVaddcuw = Int
622
  fromEnum PpcInsn
PpcInsVaddfp = Int
623
  fromEnum PpcInsn
PpcInsVaddsbs = Int
624
  fromEnum PpcInsn
PpcInsVaddshs = Int
625
  fromEnum PpcInsn
PpcInsVaddsws = Int
626
  fromEnum PpcInsn
PpcInsVaddubm = Int
627
  fromEnum PpcInsn
PpcInsVaddubs = Int
628
  fromEnum PpcInsn
PpcInsVaddudm = Int
629
  fromEnum PpcInsn
PpcInsVadduhm = Int
630
  fromEnum PpcInsn
PpcInsVadduhs = Int
631
  fromEnum PpcInsn
PpcInsVadduwm = Int
632
  fromEnum PpcInsn
PpcInsVadduws = Int
633
  fromEnum PpcInsn
PpcInsVand = Int
634
  fromEnum PpcInsn
PpcInsVandc = Int
635
  fromEnum PpcInsn
PpcInsVavgsb = Int
636
  fromEnum PpcInsn
PpcInsVavgsh = Int
637
  fromEnum PpcInsn
PpcInsVavgsw = Int
638
  fromEnum PpcInsn
PpcInsVavgub = Int
639
  fromEnum PpcInsn
PpcInsVavguh = Int
640
  fromEnum PpcInsn
PpcInsVavguw = Int
641
  fromEnum PpcInsn
PpcInsVcfsx = Int
642
  fromEnum PpcInsn
PpcInsVcfux = Int
643
  fromEnum PpcInsn
PpcInsVclzb = Int
644
  fromEnum PpcInsn
PpcInsVclzd = Int
645
  fromEnum PpcInsn
PpcInsVclzh = Int
646
  fromEnum PpcInsn
PpcInsVclzw = Int
647
  fromEnum PpcInsn
PpcInsVcmpbfp = Int
648
  fromEnum PpcInsn
PpcInsVcmpeqfp = Int
649
  fromEnum PpcInsn
PpcInsVcmpequb = Int
650
  fromEnum PpcInsn
PpcInsVcmpequd = Int
651
  fromEnum PpcInsn
PpcInsVcmpequh = Int
652
  fromEnum PpcInsn
PpcInsVcmpequw = Int
653
  fromEnum PpcInsn
PpcInsVcmpgefp = Int
654
  fromEnum PpcInsn
PpcInsVcmpgtfp = Int
655
  fromEnum PpcInsn
PpcInsVcmpgtsb = Int
656
  fromEnum PpcInsn
PpcInsVcmpgtsd = Int
657
  fromEnum PpcInsn
PpcInsVcmpgtsh = Int
658
  fromEnum PpcInsn
PpcInsVcmpgtsw = Int
659
  fromEnum PpcInsn
PpcInsVcmpgtub = Int
660
  fromEnum PpcInsn
PpcInsVcmpgtud = Int
661
  fromEnum PpcInsn
PpcInsVcmpgtuh = Int
662
  fromEnum PpcInsn
PpcInsVcmpgtuw = Int
663
  fromEnum PpcInsn
PpcInsVctsxs = Int
664
  fromEnum PpcInsn
PpcInsVctuxs = Int
665
  fromEnum PpcInsn
PpcInsVeqv = Int
666
  fromEnum PpcInsn
PpcInsVexptefp = Int
667
  fromEnum PpcInsn
PpcInsVlogefp = Int
668
  fromEnum PpcInsn
PpcInsVmaddfp = Int
669
  fromEnum PpcInsn
PpcInsVmaxfp = Int
670
  fromEnum PpcInsn
PpcInsVmaxsb = Int
671
  fromEnum PpcInsn
PpcInsVmaxsd = Int
672
  fromEnum PpcInsn
PpcInsVmaxsh = Int
673
  fromEnum PpcInsn
PpcInsVmaxsw = Int
674
  fromEnum PpcInsn
PpcInsVmaxub = Int
675
  fromEnum PpcInsn
PpcInsVmaxud = Int
676
  fromEnum PpcInsn
PpcInsVmaxuh = Int
677
  fromEnum PpcInsn
PpcInsVmaxuw = Int
678
  fromEnum PpcInsn
PpcInsVmhaddshs = Int
679
  fromEnum PpcInsn
PpcInsVmhraddshs = Int
680
  fromEnum PpcInsn
PpcInsVminud = Int
681
  fromEnum PpcInsn
PpcInsVminfp = Int
682
  fromEnum PpcInsn
PpcInsVminsb = Int
683
  fromEnum PpcInsn
PpcInsVminsd = Int
684
  fromEnum PpcInsn
PpcInsVminsh = Int
685
  fromEnum PpcInsn
PpcInsVminsw = Int
686
  fromEnum PpcInsn
PpcInsVminub = Int
687
  fromEnum PpcInsn
PpcInsVminuh = Int
688
  fromEnum PpcInsn
PpcInsVminuw = Int
689
  fromEnum PpcInsn
PpcInsVmladduhm = Int
690
  fromEnum PpcInsn
PpcInsVmrghb = Int
691
  fromEnum PpcInsn
PpcInsVmrghh = Int
692
  fromEnum PpcInsn
PpcInsVmrghw = Int
693
  fromEnum PpcInsn
PpcInsVmrglb = Int
694
  fromEnum PpcInsn
PpcInsVmrglh = Int
695
  fromEnum PpcInsn
PpcInsVmrglw = Int
696
  fromEnum PpcInsn
PpcInsVmsummbm = Int
697
  fromEnum PpcInsn
PpcInsVmsumshm = Int
698
  fromEnum PpcInsn
PpcInsVmsumshs = Int
699
  fromEnum PpcInsn
PpcInsVmsumubm = Int
700
  fromEnum PpcInsn
PpcInsVmsumuhm = Int
701
  fromEnum PpcInsn
PpcInsVmsumuhs = Int
702
  fromEnum PpcInsn
PpcInsVmulesb = Int
703
  fromEnum PpcInsn
PpcInsVmulesh = Int
704
  fromEnum PpcInsn
PpcInsVmulesw = Int
705
  fromEnum PpcInsn
PpcInsVmuleub = Int
706
  fromEnum PpcInsn
PpcInsVmuleuh = Int
707
  fromEnum PpcInsn
PpcInsVmuleuw = Int
708
  fromEnum PpcInsn
PpcInsVmulosb = Int
709
  fromEnum PpcInsn
PpcInsVmulosh = Int
710
  fromEnum PpcInsn
PpcInsVmulosw = Int
711
  fromEnum PpcInsn
PpcInsVmuloub = Int
712
  fromEnum PpcInsn
PpcInsVmulouh = Int
713
  fromEnum PpcInsn
PpcInsVmulouw = Int
714
  fromEnum PpcInsn
PpcInsVmuluwm = Int
715
  fromEnum PpcInsn
PpcInsVnand = Int
716
  fromEnum PpcInsn
PpcInsVnmsubfp = Int
717
  fromEnum PpcInsn
PpcInsVnor = Int
718
  fromEnum PpcInsn
PpcInsVor = Int
719
  fromEnum PpcInsn
PpcInsVorc = Int
720
  fromEnum PpcInsn
PpcInsVperm = Int
721
  fromEnum PpcInsn
PpcInsVpkpx = Int
722
  fromEnum PpcInsn
PpcInsVpkshss = Int
723
  fromEnum PpcInsn
PpcInsVpkshus = Int
724
  fromEnum PpcInsn
PpcInsVpkswss = Int
725
  fromEnum PpcInsn
PpcInsVpkswus = Int
726
  fromEnum PpcInsn
PpcInsVpkuhum = Int
727
  fromEnum PpcInsn
PpcInsVpkuhus = Int
728
  fromEnum PpcInsn
PpcInsVpkuwum = Int
729
  fromEnum PpcInsn
PpcInsVpkuwus = Int
730
  fromEnum PpcInsn
PpcInsVpopcntb = Int
731
  fromEnum PpcInsn
PpcInsVpopcntd = Int
732
  fromEnum PpcInsn
PpcInsVpopcnth = Int
733
  fromEnum PpcInsn
PpcInsVpopcntw = Int
734
  fromEnum PpcInsn
PpcInsVrefp = Int
735
  fromEnum PpcInsn
PpcInsVrfim = Int
736
  fromEnum PpcInsn
PpcInsVrfin = Int
737
  fromEnum PpcInsn
PpcInsVrfip = Int
738
  fromEnum PpcInsn
PpcInsVrfiz = Int
739
  fromEnum PpcInsn
PpcInsVrlb = Int
740
  fromEnum PpcInsn
PpcInsVrld = Int
741
  fromEnum PpcInsn
PpcInsVrlh = Int
742
  fromEnum PpcInsn
PpcInsVrlw = Int
743
  fromEnum PpcInsn
PpcInsVrsqrtefp = Int
744
  fromEnum PpcInsn
PpcInsVsel = Int
745
  fromEnum PpcInsn
PpcInsVsl = Int
746
  fromEnum PpcInsn
PpcInsVslb = Int
747
  fromEnum PpcInsn
PpcInsVsld = Int
748
  fromEnum PpcInsn
PpcInsVsldoi = Int
749
  fromEnum PpcInsn
PpcInsVslh = Int
750
  fromEnum PpcInsn
PpcInsVslo = Int
751
  fromEnum PpcInsn
PpcInsVslw = Int
752
  fromEnum PpcInsn
PpcInsVspltb = Int
753
  fromEnum PpcInsn
PpcInsVsplth = Int
754
  fromEnum PpcInsn
PpcInsVspltisb = Int
755
  fromEnum PpcInsn
PpcInsVspltish = Int
756
  fromEnum PpcInsn
PpcInsVspltisw = Int
757
  fromEnum PpcInsn
PpcInsVspltw = Int
758
  fromEnum PpcInsn
PpcInsVsr = Int
759
  fromEnum PpcInsn
PpcInsVsrab = Int
760
  fromEnum PpcInsn
PpcInsVsrad = Int
761
  fromEnum PpcInsn
PpcInsVsrah = Int
762
  fromEnum PpcInsn
PpcInsVsraw = Int
763
  fromEnum PpcInsn
PpcInsVsrb = Int
764
  fromEnum PpcInsn
PpcInsVsrd = Int
765
  fromEnum PpcInsn
PpcInsVsrh = Int
766
  fromEnum PpcInsn
PpcInsVsro = Int
767
  fromEnum PpcInsn
PpcInsVsrw = Int
768
  fromEnum PpcInsn
PpcInsVsubcuw = Int
769
  fromEnum PpcInsn
PpcInsVsubfp = Int
770
  fromEnum PpcInsn
PpcInsVsubsbs = Int
771
  fromEnum PpcInsn
PpcInsVsubshs = Int
772
  fromEnum PpcInsn
PpcInsVsubsws = Int
773
  fromEnum PpcInsn
PpcInsVsububm = Int
774
  fromEnum PpcInsn
PpcInsVsububs = Int
775
  fromEnum PpcInsn
PpcInsVsubudm = Int
776
  fromEnum PpcInsn
PpcInsVsubuhm = Int
777
  fromEnum PpcInsn
PpcInsVsubuhs = Int
778
  fromEnum PpcInsn
PpcInsVsubuwm = Int
779
  fromEnum PpcInsn
PpcInsVsubuws = Int
780
  fromEnum PpcInsn
PpcInsVsum2sws = Int
781
  fromEnum PpcInsn
PpcInsVsum4sbs = Int
782
  fromEnum PpcInsn
PpcInsVsum4shs = Int
783
  fromEnum PpcInsn
PpcInsVsum4ubs = Int
784
  fromEnum PpcInsn
PpcInsVsumsws = Int
785
  fromEnum PpcInsn
PpcInsVupkhpx = Int
786
  fromEnum PpcInsn
PpcInsVupkhsb = Int
787
  fromEnum PpcInsn
PpcInsVupkhsh = Int
788
  fromEnum PpcInsn
PpcInsVupklpx = Int
789
  fromEnum PpcInsn
PpcInsVupklsb = Int
790
  fromEnum PpcInsn
PpcInsVupklsh = Int
791
  fromEnum PpcInsn
PpcInsVxor = Int
792
  fromEnum PpcInsn
PpcInsWait = Int
793
  fromEnum PpcInsn
PpcInsWrtee = Int
794
  fromEnum PpcInsn
PpcInsWrteei = Int
795
  fromEnum PpcInsn
PpcInsXor = Int
796
  fromEnum PpcInsn
PpcInsXori = Int
797
  fromEnum PpcInsn
PpcInsXoris = Int
798
  fromEnum PpcInsn
PpcInsXsabsdp = Int
799
  fromEnum PpcInsn
PpcInsXsadddp = Int
800
  fromEnum PpcInsn
PpcInsXscmpodp = Int
801
  fromEnum PpcInsn
PpcInsXscmpudp = Int
802
  fromEnum PpcInsn
PpcInsXscpsgndp = Int
803
  fromEnum PpcInsn
PpcInsXscvdpsp = Int
804
  fromEnum PpcInsn
PpcInsXscvdpsxds = Int
805
  fromEnum PpcInsn
PpcInsXscvdpsxws = Int
806
  fromEnum PpcInsn
PpcInsXscvdpuxds = Int
807
  fromEnum PpcInsn
PpcInsXscvdpuxws = Int
808
  fromEnum PpcInsn
PpcInsXscvspdp = Int
809
  fromEnum PpcInsn
PpcInsXscvsxddp = Int
810
  fromEnum PpcInsn
PpcInsXscvuxddp = Int
811
  fromEnum PpcInsn
PpcInsXsdivdp = Int
812
  fromEnum PpcInsn
PpcInsXsmaddadp = Int
813
  fromEnum PpcInsn
PpcInsXsmaddmdp = Int
814
  fromEnum PpcInsn
PpcInsXsmaxdp = Int
815
  fromEnum PpcInsn
PpcInsXsmindp = Int
816
  fromEnum PpcInsn
PpcInsXsmsubadp = Int
817
  fromEnum PpcInsn
PpcInsXsmsubmdp = Int
818
  fromEnum PpcInsn
PpcInsXsmuldp = Int
819
  fromEnum PpcInsn
PpcInsXsnabsdp = Int
820
  fromEnum PpcInsn
PpcInsXsnegdp = Int
821
  fromEnum PpcInsn
PpcInsXsnmaddadp = Int
822
  fromEnum PpcInsn
PpcInsXsnmaddmdp = Int
823
  fromEnum PpcInsn
PpcInsXsnmsubadp = Int
824
  fromEnum PpcInsn
PpcInsXsnmsubmdp = Int
825
  fromEnum PpcInsn
PpcInsXsrdpi = Int
826
  fromEnum PpcInsn
PpcInsXsrdpic = Int
827
  fromEnum PpcInsn
PpcInsXsrdpim = Int
828
  fromEnum PpcInsn
PpcInsXsrdpip = Int
829
  fromEnum PpcInsn
PpcInsXsrdpiz = Int
830
  fromEnum PpcInsn
PpcInsXsredp = Int
831
  fromEnum PpcInsn
PpcInsXsrsqrtedp = Int
832
  fromEnum PpcInsn
PpcInsXssqrtdp = Int
833
  fromEnum PpcInsn
PpcInsXssubdp = Int
834
  fromEnum PpcInsn
PpcInsXstdivdp = Int
835
  fromEnum PpcInsn
PpcInsXstsqrtdp = Int
836
  fromEnum PpcInsn
PpcInsXvabsdp = Int
837
  fromEnum PpcInsn
PpcInsXvabssp = Int
838
  fromEnum PpcInsn
PpcInsXvadddp = Int
839
  fromEnum PpcInsn
PpcInsXvaddsp = Int
840
  fromEnum PpcInsn
PpcInsXvcmpeqdp = Int
841
  fromEnum PpcInsn
PpcInsXvcmpeqsp = Int
842
  fromEnum PpcInsn
PpcInsXvcmpgedp = Int
843
  fromEnum PpcInsn
PpcInsXvcmpgesp = Int
844
  fromEnum PpcInsn
PpcInsXvcmpgtdp = Int
845
  fromEnum PpcInsn
PpcInsXvcmpgtsp = Int
846
  fromEnum PpcInsn
PpcInsXvcpsgndp = Int
847
  fromEnum PpcInsn
PpcInsXvcpsgnsp = Int
848
  fromEnum PpcInsn
PpcInsXvcvdpsp = Int
849
  fromEnum PpcInsn
PpcInsXvcvdpsxds = Int
850
  fromEnum PpcInsn
PpcInsXvcvdpsxws = Int
851
  fromEnum PpcInsn
PpcInsXvcvdpuxds = Int
852
  fromEnum PpcInsn
PpcInsXvcvdpuxws = Int
853
  fromEnum PpcInsn
PpcInsXvcvspdp = Int
854
  fromEnum PpcInsn
PpcInsXvcvspsxds = Int
855
  fromEnum PpcInsn
PpcInsXvcvspsxws = Int
856
  fromEnum PpcInsn
PpcInsXvcvspuxds = Int
857
  fromEnum PpcInsn
PpcInsXvcvspuxws = Int
858
  fromEnum PpcInsn
PpcInsXvcvsxddp = Int
859
  fromEnum PpcInsn
PpcInsXvcvsxdsp = Int
860
  fromEnum PpcInsn
PpcInsXvcvsxwdp = Int
861
  fromEnum PpcInsn
PpcInsXvcvsxwsp = Int
862
  fromEnum PpcInsn
PpcInsXvcvuxddp = Int
863
  fromEnum PpcInsn
PpcInsXvcvuxdsp = Int
864
  fromEnum PpcInsn
PpcInsXvcvuxwdp = Int
865
  fromEnum PpcInsn
PpcInsXvcvuxwsp = Int
866
  fromEnum PpcInsn
PpcInsXvdivdp = Int
867
  fromEnum PpcInsn
PpcInsXvdivsp = Int
868
  fromEnum PpcInsn
PpcInsXvmaddadp = Int
869
  fromEnum PpcInsn
PpcInsXvmaddasp = Int
870
  fromEnum PpcInsn
PpcInsXvmaddmdp = Int
871
  fromEnum PpcInsn
PpcInsXvmaddmsp = Int
872
  fromEnum PpcInsn
PpcInsXvmaxdp = Int
873
  fromEnum PpcInsn
PpcInsXvmaxsp = Int
874
  fromEnum PpcInsn
PpcInsXvmindp = Int
875
  fromEnum PpcInsn
PpcInsXvminsp = Int
876
  fromEnum PpcInsn
PpcInsXvmsubadp = Int
877
  fromEnum PpcInsn
PpcInsXvmsubasp = Int
878
  fromEnum PpcInsn
PpcInsXvmsubmdp = Int
879
  fromEnum PpcInsn
PpcInsXvmsubmsp = Int
880
  fromEnum PpcInsn
PpcInsXvmuldp = Int
881
  fromEnum PpcInsn
PpcInsXvmulsp = Int
882
  fromEnum PpcInsn
PpcInsXvnabsdp = Int
883
  fromEnum PpcInsn
PpcInsXvnabssp = Int
884
  fromEnum PpcInsn
PpcInsXvnegdp = Int
885
  fromEnum PpcInsn
PpcInsXvnegsp = Int
886
  fromEnum PpcInsn
PpcInsXvnmaddadp = Int
887
  fromEnum PpcInsn
PpcInsXvnmaddasp = Int
888
  fromEnum PpcInsn
PpcInsXvnmaddmdp = Int
889
  fromEnum PpcInsn
PpcInsXvnmaddmsp = Int
890
  fromEnum PpcInsn
PpcInsXvnmsubadp = Int
891
  fromEnum PpcInsn
PpcInsXvnmsubasp = Int
892
  fromEnum PpcInsn
PpcInsXvnmsubmdp = Int
893
  fromEnum PpcInsn
PpcInsXvnmsubmsp = Int
894
  fromEnum PpcInsn
PpcInsXvrdpi = Int
895
  fromEnum PpcInsn
PpcInsXvrdpic = Int
896
  fromEnum PpcInsn
PpcInsXvrdpim = Int
897
  fromEnum PpcInsn
PpcInsXvrdpip = Int
898
  fromEnum PpcInsn
PpcInsXvrdpiz = Int
899
  fromEnum PpcInsn
PpcInsXvredp = Int
900
  fromEnum PpcInsn
PpcInsXvresp = Int
901
  fromEnum PpcInsn
PpcInsXvrspi = Int
902
  fromEnum PpcInsn
PpcInsXvrspic = Int
903
  fromEnum PpcInsn
PpcInsXvrspim = Int
904
  fromEnum PpcInsn
PpcInsXvrspip = Int
905
  fromEnum PpcInsn
PpcInsXvrspiz = Int
906
  fromEnum PpcInsn
PpcInsXvrsqrtedp = Int
907
  fromEnum PpcInsn
PpcInsXvrsqrtesp = Int
908
  fromEnum PpcInsn
PpcInsXvsqrtdp = Int
909
  fromEnum PpcInsn
PpcInsXvsqrtsp = Int
910
  fromEnum PpcInsn
PpcInsXvsubdp = Int
911
  fromEnum PpcInsn
PpcInsXvsubsp = Int
912
  fromEnum PpcInsn
PpcInsXvtdivdp = Int
913
  fromEnum PpcInsn
PpcInsXvtdivsp = Int
914
  fromEnum PpcInsn
PpcInsXvtsqrtdp = Int
915
  fromEnum PpcInsn
PpcInsXvtsqrtsp = Int
916
  fromEnum PpcInsn
PpcInsXxland = Int
917
  fromEnum PpcInsn
PpcInsXxlandc = Int
918
  fromEnum PpcInsn
PpcInsXxleqv = Int
919
  fromEnum PpcInsn
PpcInsXxlnand = Int
920
  fromEnum PpcInsn
PpcInsXxlnor = Int
921
  fromEnum PpcInsn
PpcInsXxlor = Int
922
  fromEnum PpcInsn
PpcInsXxlorc = Int
923
  fromEnum PpcInsn
PpcInsXxlxor = Int
924
  fromEnum PpcInsn
PpcInsXxmrghw = Int
925
  fromEnum PpcInsn
PpcInsXxmrglw = Int
926
  fromEnum PpcInsn
PpcInsXxpermdi = Int
927
  fromEnum PpcInsn
PpcInsXxsel = Int
928
  fromEnum PpcInsn
PpcInsXxsldwi = Int
929
  fromEnum PpcInsn
PpcInsXxspltw = Int
930
  fromEnum PpcInsn
PpcInsBca = Int
931
  fromEnum PpcInsn
PpcInsBcla = Int
932
  fromEnum PpcInsn
PpcInsSlwi = Int
933
  fromEnum PpcInsn
PpcInsSrwi = Int
934
  fromEnum PpcInsn
PpcInsSldi = Int
935
  fromEnum PpcInsn
PpcInsBta = Int
936
  fromEnum PpcInsn
PpcInsCrset = Int
937
  fromEnum PpcInsn
PpcInsCrnot = Int
938
  fromEnum PpcInsn
PpcInsCrmove = Int
939
  fromEnum PpcInsn
PpcInsCrclr = Int
940
  fromEnum PpcInsn
PpcInsMfbr0 = Int
941
  fromEnum PpcInsn
PpcInsMfbr1 = Int
942
  fromEnum PpcInsn
PpcInsMfbr2 = Int
943
  fromEnum PpcInsn
PpcInsMfbr3 = Int
944
  fromEnum PpcInsn
PpcInsMfbr4 = Int
945
  fromEnum PpcInsn
PpcInsMfbr5 = Int
946
  fromEnum PpcInsn
PpcInsMfbr6 = Int
947
  fromEnum PpcInsn
PpcInsMfbr7 = Int
948
  fromEnum PpcInsn
PpcInsMfxer = Int
949
  fromEnum PpcInsn
PpcInsMfrtcu = Int
950
  fromEnum PpcInsn
PpcInsMfrtcl = Int
951
  fromEnum PpcInsn
PpcInsMfdscr = Int
952
  fromEnum PpcInsn
PpcInsMfdsisr = Int
953
  fromEnum PpcInsn
PpcInsMfdar = Int
954
  fromEnum PpcInsn
PpcInsMfsrr2 = Int
955
  fromEnum PpcInsn
PpcInsMfsrr3 = Int
956
  fromEnum PpcInsn
PpcInsMfcfar = Int
957
  fromEnum PpcInsn
PpcInsMfamr = Int
958
  fromEnum PpcInsn
PpcInsMfpid = Int
959
  fromEnum PpcInsn
PpcInsMftblo = Int
960
  fromEnum PpcInsn
PpcInsMftbhi = Int
961
  fromEnum PpcInsn
PpcInsMfdbatu = Int
962
  fromEnum PpcInsn
PpcInsMfdbatl = Int
963
  fromEnum PpcInsn
PpcInsMfibatu = Int
964
  fromEnum PpcInsn
PpcInsMfibatl = Int
965
  fromEnum PpcInsn
PpcInsMfdccr = Int
966
  fromEnum PpcInsn
PpcInsMficcr = Int
967
  fromEnum PpcInsn
PpcInsMfdear = Int
968
  fromEnum PpcInsn
PpcInsMfesr = Int
969
  fromEnum PpcInsn
PpcInsMfspefscr = Int
970
  fromEnum PpcInsn
PpcInsMftcr = Int
971
  fromEnum PpcInsn
PpcInsMfasr = Int
972
  fromEnum PpcInsn
PpcInsMfpvr = Int
973
  fromEnum PpcInsn
PpcInsMftbu = Int
974
  fromEnum PpcInsn
PpcInsMtcr = Int
975
  fromEnum PpcInsn
PpcInsMtbr0 = Int
976
  fromEnum PpcInsn
PpcInsMtbr1 = Int
977
  fromEnum PpcInsn
PpcInsMtbr2 = Int
978
  fromEnum PpcInsn
PpcInsMtbr3 = Int
979
  fromEnum PpcInsn
PpcInsMtbr4 = Int
980
  fromEnum PpcInsn
PpcInsMtbr5 = Int
981
  fromEnum PpcInsn
PpcInsMtbr6 = Int
982
  fromEnum PpcInsn
PpcInsMtbr7 = Int
983
  fromEnum PpcInsn
PpcInsMtxer = Int
984
  fromEnum PpcInsn
PpcInsMtdscr = Int
985
  fromEnum PpcInsn
PpcInsMtdsisr = Int
986
  fromEnum PpcInsn
PpcInsMtdar = Int
987
  fromEnum PpcInsn
PpcInsMtsrr2 = Int
988
  fromEnum PpcInsn
PpcInsMtsrr3 = Int
989
  fromEnum PpcInsn
PpcInsMtcfar = Int
990
  fromEnum PpcInsn
PpcInsMtamr = Int
991
  fromEnum PpcInsn
PpcInsMtpid = Int
992
  fromEnum PpcInsn
PpcInsMttbl = Int
993
  fromEnum PpcInsn
PpcInsMttbu = Int
994
  fromEnum PpcInsn
PpcInsMttblo = Int
995
  fromEnum PpcInsn
PpcInsMttbhi = Int
996
  fromEnum PpcInsn
PpcInsMtdbatu = Int
997
  fromEnum PpcInsn
PpcInsMtdbatl = Int
998
  fromEnum PpcInsn
PpcInsMtibatu = Int
999
  fromEnum PpcInsn
PpcInsMtibatl = Int
1000
  fromEnum PpcInsn
PpcInsMtdccr = Int
1001
  fromEnum PpcInsn
PpcInsMticcr = Int
1002
  fromEnum PpcInsn
PpcInsMtdear = Int
1003
  fromEnum PpcInsn
PpcInsMtesr = Int
1004
  fromEnum PpcInsn
PpcInsMtspefscr = Int
1005
  fromEnum PpcInsn
PpcInsMttcr = Int
1006
  fromEnum PpcInsn
PpcInsNot = Int
1007
  fromEnum PpcInsn
PpcInsMr = Int
1008
  fromEnum PpcInsn
PpcInsRotld = Int
1009
  fromEnum PpcInsn
PpcInsRotldi = Int
1010
  fromEnum PpcInsn
PpcInsClrldi = Int
1011
  fromEnum PpcInsn
PpcInsRotlwi = Int
1012
  fromEnum PpcInsn
PpcInsClrlwi = Int
1013
  fromEnum PpcInsn
PpcInsRotlw = Int
1014
  fromEnum PpcInsn
PpcInsSub = Int
1015
  fromEnum PpcInsn
PpcInsSubc = Int
1016
  fromEnum PpcInsn
PpcInsLwsync = Int
1017
  fromEnum PpcInsn
PpcInsPtesync = Int
1018
  fromEnum PpcInsn
PpcInsTdlt = Int
1019
  fromEnum PpcInsn
PpcInsTdeq = Int
1020
  fromEnum PpcInsn
PpcInsTdgt = Int
1021
  fromEnum PpcInsn
PpcInsTdne = Int
1022
  fromEnum PpcInsn
PpcInsTdllt = Int
1023
  fromEnum PpcInsn
PpcInsTdlgt = Int
1024
  fromEnum PpcInsn
PpcInsTdu = Int
1025
  fromEnum PpcInsn
PpcInsTdlti = Int
1026
  fromEnum PpcInsn
PpcInsTdeqi = Int
1027
  fromEnum PpcInsn
PpcInsTdgti = Int
1028
  fromEnum PpcInsn
PpcInsTdnei = Int
1029
  fromEnum PpcInsn
PpcInsTdllti = Int
1030
  fromEnum PpcInsn
PpcInsTdlgti = Int
1031
  fromEnum PpcInsn
PpcInsTdui = Int
1032
  fromEnum PpcInsn
PpcInsTlbrehi = Int
1033
  fromEnum PpcInsn
PpcInsTlbrelo = Int
1034
  fromEnum PpcInsn
PpcInsTlbwehi = Int
1035
  fromEnum PpcInsn
PpcInsTlbwelo = Int
1036
  fromEnum PpcInsn
PpcInsTwlt = Int
1037
  fromEnum PpcInsn
PpcInsTweq = Int
1038
  fromEnum PpcInsn
PpcInsTwgt = Int
1039
  fromEnum PpcInsn
PpcInsTwne = Int
1040
  fromEnum PpcInsn
PpcInsTwllt = Int
1041
  fromEnum PpcInsn
PpcInsTwlgt = Int
1042
  fromEnum PpcInsn
PpcInsTwu = Int
1043
  fromEnum PpcInsn
PpcInsTwlti = Int
1044
  fromEnum PpcInsn
PpcInsTweqi = Int
1045
  fromEnum PpcInsn
PpcInsTwgti = Int
1046
  fromEnum PpcInsn
PpcInsTwnei = Int
1047
  fromEnum PpcInsn
PpcInsTwllti = Int
1048
  fromEnum PpcInsn
PpcInsTwlgti = Int
1049
  fromEnum PpcInsn
PpcInsTwui = Int
1050
  fromEnum PpcInsn
PpcInsWaitrsv = Int
1051
  fromEnum PpcInsn
PpcInsWaitimpl = Int
1052
  fromEnum PpcInsn
PpcInsXnop = Int
1053
  fromEnum PpcInsn
PpcInsXvmovdp = Int
1054
  fromEnum PpcInsn
PpcInsXvmovsp = Int
1055
  fromEnum PpcInsn
PpcInsXxspltd = Int
1056
  fromEnum PpcInsn
PpcInsXxmrghd = Int
1057
  fromEnum PpcInsn
PpcInsXxmrgld = Int
1058
  fromEnum PpcInsn
PpcInsXxswapd = Int
1059
  fromEnum PpcInsn
PpcInsBt = Int
1060
  fromEnum PpcInsn
PpcInsBf = Int
1061
  fromEnum PpcInsn
PpcInsBdnzt = Int
1062
  fromEnum PpcInsn
PpcInsBdnzf = Int
1063
  fromEnum PpcInsn
PpcInsBdzf = Int
1064
  fromEnum PpcInsn
PpcInsBdzt = Int
1065
  fromEnum PpcInsn
PpcInsBfa = Int
1066
  fromEnum PpcInsn
PpcInsBdnzta = Int
1067
  fromEnum PpcInsn
PpcInsBdnzfa = Int
1068
  fromEnum PpcInsn
PpcInsBdzta = Int
1069
  fromEnum PpcInsn
PpcInsBdzfa = Int
1070
  fromEnum PpcInsn
PpcInsBtctr = Int
1071
  fromEnum PpcInsn
PpcInsBfctr = Int
1072
  fromEnum PpcInsn
PpcInsBtctrl = Int
1073
  fromEnum PpcInsn
PpcInsBfctrl = Int
1074
  fromEnum PpcInsn
PpcInsBtl = Int
1075
  fromEnum PpcInsn
PpcInsBfl = Int
1076
  fromEnum PpcInsn
PpcInsBdnztl = Int
1077
  fromEnum PpcInsn
PpcInsBdnzfl = Int
1078
  fromEnum PpcInsn
PpcInsBdztl = Int
1079
  fromEnum PpcInsn
PpcInsBdzfl = Int
1080
  fromEnum PpcInsn
PpcInsBtla = Int
1081
  fromEnum PpcInsn
PpcInsBfla = Int
1082
  fromEnum PpcInsn
PpcInsBdnztla = Int
1083
  fromEnum PpcInsn
PpcInsBdnzfla = Int
1084
  fromEnum PpcInsn
PpcInsBdztla = Int
1085
  fromEnum PpcInsn
PpcInsBdzfla = Int
1086
  fromEnum PpcInsn
PpcInsBtlr = Int
1087
  fromEnum PpcInsn
PpcInsBflr = Int
1088
  fromEnum PpcInsn
PpcInsBdnztlr = Int
1089
  fromEnum PpcInsn
PpcInsBdztlr = Int
1090
  fromEnum PpcInsn
PpcInsBdzflr = Int
1091
  fromEnum PpcInsn
PpcInsBtlrl = Int
1092
  fromEnum PpcInsn
PpcInsBflrl = Int
1093
  fromEnum PpcInsn
PpcInsBdnztlrl = Int
1094
  fromEnum PpcInsn
PpcInsBdnzflrl = Int
1095
  fromEnum PpcInsn
PpcInsBdztlrl = Int
1096
  fromEnum PpcInsn
PpcInsBdzflrl = Int
1097
  fromEnum PpcInsn
PpcInsQvfand = Int
1098
  fromEnum PpcInsn
PpcInsQvfclr = Int
1099
  fromEnum PpcInsn
PpcInsQvfandc = Int
1100
  fromEnum PpcInsn
PpcInsQvfctfb = Int
1101
  fromEnum PpcInsn
PpcInsQvfxor = Int
1102
  fromEnum PpcInsn
PpcInsQvfor = Int
1103
  fromEnum PpcInsn
PpcInsQvfnor = Int
1104
  fromEnum PpcInsn
PpcInsQvfequ = Int
1105
  fromEnum PpcInsn
PpcInsQvfnot = Int
1106
  fromEnum PpcInsn
PpcInsQvforc = Int
1107
  fromEnum PpcInsn
PpcInsQvfnand = Int
1108
  fromEnum PpcInsn
PpcInsQvfset = Int
1109
  fromEnum PpcInsn
PpcInsEnding = Int
1110

  toEnum :: Int -> PpcInsn
toEnum Int
0 = PpcInsn
PpcInsInvalid
  toEnum Int
1 = PpcInsn
PpcInsAdd
  toEnum Int
2 = PpcInsn
PpcInsAddc
  toEnum Int
3 = PpcInsn
PpcInsAdde
  toEnum Int
4 = PpcInsn
PpcInsAddi
  toEnum Int
5 = PpcInsn
PpcInsAddic
  toEnum Int
6 = PpcInsn
PpcInsAddis
  toEnum Int
7 = PpcInsn
PpcInsAddme
  toEnum Int
8 = PpcInsn
PpcInsAddze
  toEnum Int
9 = PpcInsn
PpcInsAnd
  toEnum Int
10 = PpcInsn
PpcInsAndc
  toEnum Int
11 = PpcInsn
PpcInsAndis
  toEnum Int
12 = PpcInsn
PpcInsAndi
  toEnum Int
13 = PpcInsn
PpcInsAttn
  toEnum Int
14 = PpcInsn
PpcInsB
  toEnum Int
15 = PpcInsn
PpcInsBa
  toEnum Int
16 = PpcInsn
PpcInsBc
  toEnum Int
17 = PpcInsn
PpcInsBcctr
  toEnum Int
18 = PpcInsn
PpcInsBcctrl
  toEnum Int
19 = PpcInsn
PpcInsBcl
  toEnum Int
20 = PpcInsn
PpcInsBclr
  toEnum Int
21 = PpcInsn
PpcInsBclrl
  toEnum Int
22 = PpcInsn
PpcInsBctr
  toEnum Int
23 = PpcInsn
PpcInsBctrl
  toEnum Int
24 = PpcInsn
PpcInsBct
  toEnum Int
25 = PpcInsn
PpcInsBdnz
  toEnum Int
26 = PpcInsn
PpcInsBdnza
  toEnum Int
27 = PpcInsn
PpcInsBdnzl
  toEnum Int
28 = PpcInsn
PpcInsBdnzla
  toEnum Int
29 = PpcInsn
PpcInsBdnzlr
  toEnum Int
30 = PpcInsn
PpcInsBdnzlrl
  toEnum Int
31 = PpcInsn
PpcInsBdz
  toEnum Int
32 = PpcInsn
PpcInsBdza
  toEnum Int
33 = PpcInsn
PpcInsBdzl
  toEnum Int
34 = PpcInsn
PpcInsBdzla
  toEnum Int
35 = PpcInsn
PpcInsBdzlr
  toEnum Int
36 = PpcInsn
PpcInsBdzlrl
  toEnum Int
37 = PpcInsn
PpcInsBl
  toEnum Int
38 = PpcInsn
PpcInsBla
  toEnum Int
39 = PpcInsn
PpcInsBlr
  toEnum Int
40 = PpcInsn
PpcInsBlrl
  toEnum Int
41 = PpcInsn
PpcInsBrinc
  toEnum Int
42 = PpcInsn
PpcInsCmpb
  toEnum Int
43 = PpcInsn
PpcInsCmpd
  toEnum Int
44 = PpcInsn
PpcInsCmpdi
  toEnum Int
45 = PpcInsn
PpcInsCmpld
  toEnum Int
46 = PpcInsn
PpcInsCmpldi
  toEnum Int
47 = PpcInsn
PpcInsCmplw
  toEnum Int
48 = PpcInsn
PpcInsCmplwi
  toEnum Int
49 = PpcInsn
PpcInsCmpw
  toEnum Int
50 = PpcInsn
PpcInsCmpwi
  toEnum Int
51 = PpcInsn
PpcInsCntlzd
  toEnum Int
52 = PpcInsn
PpcInsCntlzw
  toEnum Int
53 = PpcInsn
PpcInsCreqv
  toEnum Int
54 = PpcInsn
PpcInsCrxor
  toEnum Int
55 = PpcInsn
PpcInsCrand
  toEnum Int
56 = PpcInsn
PpcInsCrandc
  toEnum Int
57 = PpcInsn
PpcInsCrnand
  toEnum Int
58 = PpcInsn
PpcInsCrnor
  toEnum Int
59 = PpcInsn
PpcInsCror
  toEnum Int
60 = PpcInsn
PpcInsCrorc
  toEnum Int
61 = PpcInsn
PpcInsDcba
  toEnum Int
62 = PpcInsn
PpcInsDcbf
  toEnum Int
63 = PpcInsn
PpcInsDcbi
  toEnum Int
64 = PpcInsn
PpcInsDcbst
  toEnum Int
65 = PpcInsn
PpcInsDcbt
  toEnum Int
66 = PpcInsn
PpcInsDcbtst
  toEnum Int
67 = PpcInsn
PpcInsDcbz
  toEnum Int
68 = PpcInsn
PpcInsDcbzl
  toEnum Int
69 = PpcInsn
PpcInsDccci
  toEnum Int
70 = PpcInsn
PpcInsDivd
  toEnum Int
71 = PpcInsn
PpcInsDivdu
  toEnum Int
72 = PpcInsn
PpcInsDivw
  toEnum Int
73 = PpcInsn
PpcInsDivwu
  toEnum Int
74 = PpcInsn
PpcInsDss
  toEnum Int
75 = PpcInsn
PpcInsDssall
  toEnum Int
76 = PpcInsn
PpcInsDst
  toEnum Int
77 = PpcInsn
PpcInsDstst
  toEnum Int
78 = PpcInsn
PpcInsDststt
  toEnum Int
79 = PpcInsn
PpcInsDstt
  toEnum Int
80 = PpcInsn
PpcInsEqv
  toEnum Int
81 = PpcInsn
PpcInsEvabs
  toEnum Int
82 = PpcInsn
PpcInsEvaddiw
  toEnum Int
83 = PpcInsn
PpcInsEvaddsmiaaw
  toEnum Int
84 = PpcInsn
PpcInsEvaddssiaaw
  toEnum Int
85 = PpcInsn
PpcInsEvaddumiaaw
  toEnum Int
86 = PpcInsn
PpcInsEvaddusiaaw
  toEnum Int
87 = PpcInsn
PpcInsEvaddw
  toEnum Int
88 = PpcInsn
PpcInsEvand
  toEnum Int
89 = PpcInsn
PpcInsEvandc
  toEnum Int
90 = PpcInsn
PpcInsEvcmpeq
  toEnum Int
91 = PpcInsn
PpcInsEvcmpgts
  toEnum Int
92 = PpcInsn
PpcInsEvcmpgtu
  toEnum Int
93 = PpcInsn
PpcInsEvcmplts
  toEnum Int
94 = PpcInsn
PpcInsEvcmpltu
  toEnum Int
95 = PpcInsn
PpcInsEvcntlsw
  toEnum Int
96 = PpcInsn
PpcInsEvcntlzw
  toEnum Int
97 = PpcInsn
PpcInsEvdivws
  toEnum Int
98 = PpcInsn
PpcInsEvdivwu
  toEnum Int
99 = PpcInsn
PpcInsEveqv
  toEnum Int
100 = PpcInsn
PpcInsEvextsb
  toEnum Int
101 = PpcInsn
PpcInsEvextsh
  toEnum Int
102 = PpcInsn
PpcInsEvldd
  toEnum Int
103 = PpcInsn
PpcInsEvlddx
  toEnum Int
104 = PpcInsn
PpcInsEvldh
  toEnum Int
105 = PpcInsn
PpcInsEvldhx
  toEnum Int
106 = PpcInsn
PpcInsEvldw
  toEnum Int
107 = PpcInsn
PpcInsEvldwx
  toEnum Int
108 = PpcInsn
PpcInsEvlhhesplat
  toEnum Int
109 = PpcInsn
PpcInsEvlhhesplatx
  toEnum Int
110 = PpcInsn
PpcInsEvlhhossplat
  toEnum Int
111 = PpcInsn
PpcInsEvlhhossplatx
  toEnum Int
112 = PpcInsn
PpcInsEvlhhousplat
  toEnum Int
113 = PpcInsn
PpcInsEvlhhousplatx
  toEnum Int
114 = PpcInsn
PpcInsEvlwhe
  toEnum Int
115 = PpcInsn
PpcInsEvlwhex
  toEnum Int
116 = PpcInsn
PpcInsEvlwhos
  toEnum Int
117 = PpcInsn
PpcInsEvlwhosx
  toEnum Int
118 = PpcInsn
PpcInsEvlwhou
  toEnum Int
119 = PpcInsn
PpcInsEvlwhoux
  toEnum Int
120 = PpcInsn
PpcInsEvlwhsplat
  toEnum Int
121 = PpcInsn
PpcInsEvlwhsplatx
  toEnum Int
122 = PpcInsn
PpcInsEvlwwsplat
  toEnum Int
123 = PpcInsn
PpcInsEvlwwsplatx
  toEnum Int
124 = PpcInsn
PpcInsEvmergehi
  toEnum Int
125 = PpcInsn
PpcInsEvmergehilo
  toEnum Int
126 = PpcInsn
PpcInsEvmergelo
  toEnum Int
127 = PpcInsn
PpcInsEvmergelohi
  toEnum Int
128 = PpcInsn
PpcInsEvmhegsmfaa
  toEnum Int
129 = PpcInsn
PpcInsEvmhegsmfan
  toEnum Int
130 = PpcInsn
PpcInsEvmhegsmiaa
  toEnum Int
131 = PpcInsn
PpcInsEvmhegsmian
  toEnum Int
132 = PpcInsn
PpcInsEvmhegumiaa
  toEnum Int
133 = PpcInsn
PpcInsEvmhegumian
  toEnum Int
134 = PpcInsn
PpcInsEvmhesmf
  toEnum Int
135 = PpcInsn
PpcInsEvmhesmfa
  toEnum Int
136 = PpcInsn
PpcInsEvmhesmfaaw
  toEnum Int
137 = PpcInsn
PpcInsEvmhesmfanw
  toEnum Int
138 = PpcInsn
PpcInsEvmhesmi
  toEnum Int
139 = PpcInsn
PpcInsEvmhesmia
  toEnum Int
140 = PpcInsn
PpcInsEvmhesmiaaw
  toEnum Int
141 = PpcInsn
PpcInsEvmhesmianw
  toEnum Int
142 = PpcInsn
PpcInsEvmhessf
  toEnum Int
143 = PpcInsn
PpcInsEvmhessfa
  toEnum Int
144 = PpcInsn
PpcInsEvmhessfaaw
  toEnum Int
145 = PpcInsn
PpcInsEvmhessfanw
  toEnum Int
146 = PpcInsn
PpcInsEvmhessiaaw
  toEnum Int
147 = PpcInsn
PpcInsEvmhessianw
  toEnum Int
148 = PpcInsn
PpcInsEvmheumi
  toEnum Int
149 = PpcInsn
PpcInsEvmheumia
  toEnum Int
150 = PpcInsn
PpcInsEvmheumiaaw
  toEnum Int
151 = PpcInsn
PpcInsEvmheumianw
  toEnum Int
152 = PpcInsn
PpcInsEvmheusiaaw
  toEnum Int
153 = PpcInsn
PpcInsEvmheusianw
  toEnum Int
154 = PpcInsn
PpcInsEvmhogsmfaa
  toEnum Int
155 = PpcInsn
PpcInsEvmhogsmfan
  toEnum Int
156 = PpcInsn
PpcInsEvmhogsmiaa
  toEnum Int
157 = PpcInsn
PpcInsEvmhogsmian
  toEnum Int
158 = PpcInsn
PpcInsEvmhogumiaa
  toEnum Int
159 = PpcInsn
PpcInsEvmhogumian
  toEnum Int
160 = PpcInsn
PpcInsEvmhosmf
  toEnum Int
161 = PpcInsn
PpcInsEvmhosmfa
  toEnum Int
162 = PpcInsn
PpcInsEvmhosmfaaw
  toEnum Int
163 = PpcInsn
PpcInsEvmhosmfanw
  toEnum Int
164 = PpcInsn
PpcInsEvmhosmi
  toEnum Int
165 = PpcInsn
PpcInsEvmhosmia
  toEnum Int
166 = PpcInsn
PpcInsEvmhosmiaaw
  toEnum Int
167 = PpcInsn
PpcInsEvmhosmianw
  toEnum Int
168 = PpcInsn
PpcInsEvmhossf
  toEnum Int
169 = PpcInsn
PpcInsEvmhossfa
  toEnum Int
170 = PpcInsn
PpcInsEvmhossfaaw
  toEnum Int
171 = PpcInsn
PpcInsEvmhossfanw
  toEnum Int
172 = PpcInsn
PpcInsEvmhossiaaw
  toEnum Int
173 = PpcInsn
PpcInsEvmhossianw
  toEnum Int
174 = PpcInsn
PpcInsEvmhoumi
  toEnum Int
175 = PpcInsn
PpcInsEvmhoumia
  toEnum Int
176 = PpcInsn
PpcInsEvmhoumiaaw
  toEnum Int
177 = PpcInsn
PpcInsEvmhoumianw
  toEnum Int
178 = PpcInsn
PpcInsEvmhousiaaw
  toEnum Int
179 = PpcInsn
PpcInsEvmhousianw
  toEnum Int
180 = PpcInsn
PpcInsEvmra
  toEnum Int
181 = PpcInsn
PpcInsEvmwhsmf
  toEnum Int
182 = PpcInsn
PpcInsEvmwhsmfa
  toEnum Int
183 = PpcInsn
PpcInsEvmwhsmi
  toEnum Int
184 = PpcInsn
PpcInsEvmwhsmia
  toEnum Int
185 = PpcInsn
PpcInsEvmwhssf
  toEnum Int
186 = PpcInsn
PpcInsEvmwhssfa
  toEnum Int
187 = PpcInsn
PpcInsEvmwhumi
  toEnum Int
188 = PpcInsn
PpcInsEvmwhumia
  toEnum Int
189 = PpcInsn
PpcInsEvmwlsmiaaw
  toEnum Int
190 = PpcInsn
PpcInsEvmwlsmianw
  toEnum Int
191 = PpcInsn
PpcInsEvmwlssiaaw
  toEnum Int
192 = PpcInsn
PpcInsEvmwlssianw
  toEnum Int
193 = PpcInsn
PpcInsEvmwlumi
  toEnum Int
194 = PpcInsn
PpcInsEvmwlumia
  toEnum Int
195 = PpcInsn
PpcInsEvmwlumiaaw
  toEnum Int
196 = PpcInsn
PpcInsEvmwlumianw
  toEnum Int
197 = PpcInsn
PpcInsEvmwlusiaaw
  toEnum Int
198 = PpcInsn
PpcInsEvmwlusianw
  toEnum Int
199 = PpcInsn
PpcInsEvmwsmf
  toEnum Int
200 = PpcInsn
PpcInsEvmwsmfa
  toEnum Int
201 = PpcInsn
PpcInsEvmwsmfaa
  toEnum Int
202 = PpcInsn
PpcInsEvmwsmfan
  toEnum Int
203 = PpcInsn
PpcInsEvmwsmi
  toEnum Int
204 = PpcInsn
PpcInsEvmwsmia
  toEnum Int
205 = PpcInsn
PpcInsEvmwsmiaa
  toEnum Int
206 = PpcInsn
PpcInsEvmwsmian
  toEnum Int
207 = PpcInsn
PpcInsEvmwssf
  toEnum Int
208 = PpcInsn
PpcInsEvmwssfa
  toEnum Int
209 = PpcInsn
PpcInsEvmwssfaa
  toEnum Int
210 = PpcInsn
PpcInsEvmwssfan
  toEnum Int
211 = PpcInsn
PpcInsEvmwumi
  toEnum Int
212 = PpcInsn
PpcInsEvmwumia
  toEnum Int
213 = PpcInsn
PpcInsEvmwumiaa
  toEnum Int
214 = PpcInsn
PpcInsEvmwumian
  toEnum Int
215 = PpcInsn
PpcInsEvnand
  toEnum Int
216 = PpcInsn
PpcInsEvneg
  toEnum Int
217 = PpcInsn
PpcInsEvnor
  toEnum Int
218 = PpcInsn
PpcInsEvor
  toEnum Int
219 = PpcInsn
PpcInsEvorc
  toEnum Int
220 = PpcInsn
PpcInsEvrlw
  toEnum Int
221 = PpcInsn
PpcInsEvrlwi
  toEnum Int
222 = PpcInsn
PpcInsEvrndw
  toEnum Int
223 = PpcInsn
PpcInsEvslw
  toEnum Int
224 = PpcInsn
PpcInsEvslwi
  toEnum Int
225 = PpcInsn
PpcInsEvsplatfi
  toEnum Int
226 = PpcInsn
PpcInsEvsplati
  toEnum Int
227 = PpcInsn
PpcInsEvsrwis
  toEnum Int
228 = PpcInsn
PpcInsEvsrwiu
  toEnum Int
229 = PpcInsn
PpcInsEvsrws
  toEnum Int
230 = PpcInsn
PpcInsEvsrwu
  toEnum Int
231 = PpcInsn
PpcInsEvstdd
  toEnum Int
232 = PpcInsn
PpcInsEvstddx
  toEnum Int
233 = PpcInsn
PpcInsEvstdh
  toEnum Int
234 = PpcInsn
PpcInsEvstdhx
  toEnum Int
235 = PpcInsn
PpcInsEvstdw
  toEnum Int
236 = PpcInsn
PpcInsEvstdwx
  toEnum Int
237 = PpcInsn
PpcInsEvstwhe
  toEnum Int
238 = PpcInsn
PpcInsEvstwhex
  toEnum Int
239 = PpcInsn
PpcInsEvstwho
  toEnum Int
240 = PpcInsn
PpcInsEvstwhox
  toEnum Int
241 = PpcInsn
PpcInsEvstwwe
  toEnum Int
242 = PpcInsn
PpcInsEvstwwex
  toEnum Int
243 = PpcInsn
PpcInsEvstwwo
  toEnum Int
244 = PpcInsn
PpcInsEvstwwox
  toEnum Int
245 = PpcInsn
PpcInsEvsubfsmiaaw
  toEnum Int
246 = PpcInsn
PpcInsEvsubfssiaaw
  toEnum Int
247 = PpcInsn
PpcInsEvsubfumiaaw
  toEnum Int
248 = PpcInsn
PpcInsEvsubfusiaaw
  toEnum Int
249 = PpcInsn
PpcInsEvsubfw
  toEnum Int
250 = PpcInsn
PpcInsEvsubifw
  toEnum Int
251 = PpcInsn
PpcInsEvxor
  toEnum Int
252 = PpcInsn
PpcInsExtsb
  toEnum Int
253 = PpcInsn
PpcInsExtsh
  toEnum Int
254 = PpcInsn
PpcInsExtsw
  toEnum Int
255 = PpcInsn
PpcInsEieio
  toEnum Int
256 = PpcInsn
PpcInsFabs
  toEnum Int
257 = PpcInsn
PpcInsFadd
  toEnum Int
258 = PpcInsn
PpcInsFadds
  toEnum Int
259 = PpcInsn
PpcInsFcfid
  toEnum Int
260 = PpcInsn
PpcInsFcfids
  toEnum Int
261 = PpcInsn
PpcInsFcfidu
  toEnum Int
262 = PpcInsn
PpcInsFcfidus
  toEnum Int
263 = PpcInsn
PpcInsFcmpu
  toEnum Int
264 = PpcInsn
PpcInsFcpsgn
  toEnum Int
265 = PpcInsn
PpcInsFctid
  toEnum Int
266 = PpcInsn
PpcInsFctiduz
  toEnum Int
267 = PpcInsn
PpcInsFctidz
  toEnum Int
268 = PpcInsn
PpcInsFctiw
  toEnum Int
269 = PpcInsn
PpcInsFctiwuz
  toEnum Int
270 = PpcInsn
PpcInsFctiwz
  toEnum Int
271 = PpcInsn
PpcInsFdiv
  toEnum Int
272 = PpcInsn
PpcInsFdivs
  toEnum Int
273 = PpcInsn
PpcInsFmadd
  toEnum Int
274 = PpcInsn
PpcInsFmadds
  toEnum Int
275 = PpcInsn
PpcInsFmr
  toEnum Int
276 = PpcInsn
PpcInsFmsub
  toEnum Int
277 = PpcInsn
PpcInsFmsubs
  toEnum Int
278 = PpcInsn
PpcInsFmul
  toEnum Int
279 = PpcInsn
PpcInsFmuls
  toEnum Int
280 = PpcInsn
PpcInsFnabs
  toEnum Int
281 = PpcInsn
PpcInsFneg
  toEnum Int
282 = PpcInsn
PpcInsFnmadd
  toEnum Int
283 = PpcInsn
PpcInsFnmadds
  toEnum Int
284 = PpcInsn
PpcInsFnmsub
  toEnum Int
285 = PpcInsn
PpcInsFnmsubs
  toEnum Int
286 = PpcInsn
PpcInsFre
  toEnum Int
287 = PpcInsn
PpcInsFres
  toEnum Int
288 = PpcInsn
PpcInsFrim
  toEnum Int
289 = PpcInsn
PpcInsFrin
  toEnum Int
290 = PpcInsn
PpcInsFrip
  toEnum Int
291 = PpcInsn
PpcInsFriz
  toEnum Int
292 = PpcInsn
PpcInsFrsp
  toEnum Int
293 = PpcInsn
PpcInsFrsqrte
  toEnum Int
294 = PpcInsn
PpcInsFrsqrtes
  toEnum Int
295 = PpcInsn
PpcInsFsel
  toEnum Int
296 = PpcInsn
PpcInsFsqrt
  toEnum Int
297 = PpcInsn
PpcInsFsqrts
  toEnum Int
298 = PpcInsn
PpcInsFsub
  toEnum Int
299 = PpcInsn
PpcInsFsubs
  toEnum Int
300 = PpcInsn
PpcInsIcbi
  toEnum Int
301 = PpcInsn
PpcInsIcbt
  toEnum Int
302 = PpcInsn
PpcInsIccci
  toEnum Int
303 = PpcInsn
PpcInsIsel
  toEnum Int
304 = PpcInsn
PpcInsIsync
  toEnum Int
305 = PpcInsn
PpcInsLa
  toEnum Int
306 = PpcInsn
PpcInsLbz
  toEnum Int
307 = PpcInsn
PpcInsLbzcix
  toEnum Int
308 = PpcInsn
PpcInsLbzu
  toEnum Int
309 = PpcInsn
PpcInsLbzux
  toEnum Int
310 = PpcInsn
PpcInsLbzx
  toEnum Int
311 = PpcInsn
PpcInsLd
  toEnum Int
312 = PpcInsn
PpcInsLdarx
  toEnum Int
313 = PpcInsn
PpcInsLdbrx
  toEnum Int
314 = PpcInsn
PpcInsLdcix
  toEnum Int
315 = PpcInsn
PpcInsLdu
  toEnum Int
316 = PpcInsn
PpcInsLdux
  toEnum Int
317 = PpcInsn
PpcInsLdx
  toEnum Int
318 = PpcInsn
PpcInsLfd
  toEnum Int
319 = PpcInsn
PpcInsLfdu
  toEnum Int
320 = PpcInsn
PpcInsLfdux
  toEnum Int
321 = PpcInsn
PpcInsLfdx
  toEnum Int
322 = PpcInsn
PpcInsLfiwax
  toEnum Int
323 = PpcInsn
PpcInsLfiwzx
  toEnum Int
324 = PpcInsn
PpcInsLfs
  toEnum Int
325 = PpcInsn
PpcInsLfsu
  toEnum Int
326 = PpcInsn
PpcInsLfsux
  toEnum Int
327 = PpcInsn
PpcInsLfsx
  toEnum Int
328 = PpcInsn
PpcInsLha
  toEnum Int
329 = PpcInsn
PpcInsLhau
  toEnum Int
330 = PpcInsn
PpcInsLhaux
  toEnum Int
331 = PpcInsn
PpcInsLhax
  toEnum Int
332 = PpcInsn
PpcInsLhbrx
  toEnum Int
333 = PpcInsn
PpcInsLhz
  toEnum Int
334 = PpcInsn
PpcInsLhzcix
  toEnum Int
335 = PpcInsn
PpcInsLhzu
  toEnum Int
336 = PpcInsn
PpcInsLhzux
  toEnum Int
337 = PpcInsn
PpcInsLhzx
  toEnum Int
338 = PpcInsn
PpcInsLi
  toEnum Int
339 = PpcInsn
PpcInsLis
  toEnum Int
340 = PpcInsn
PpcInsLmw
  toEnum Int
341 = PpcInsn
PpcInsLswi
  toEnum Int
342 = PpcInsn
PpcInsLvebx
  toEnum Int
343 = PpcInsn
PpcInsLvehx
  toEnum Int
344 = PpcInsn
PpcInsLvewx
  toEnum Int
345 = PpcInsn
PpcInsLvsl
  toEnum Int
346 = PpcInsn
PpcInsLvsr
  toEnum Int
347 = PpcInsn
PpcInsLvx
  toEnum Int
348 = PpcInsn
PpcInsLvxl
  toEnum Int
349 = PpcInsn
PpcInsLwa
  toEnum Int
350 = PpcInsn
PpcInsLwarx
  toEnum Int
351 = PpcInsn
PpcInsLwaux
  toEnum Int
352 = PpcInsn
PpcInsLwax
  toEnum Int
353 = PpcInsn
PpcInsLwbrx
  toEnum Int
354 = PpcInsn
PpcInsLwz
  toEnum Int
355 = PpcInsn
PpcInsLwzcix
  toEnum Int
356 = PpcInsn
PpcInsLwzu
  toEnum Int
357 = PpcInsn
PpcInsLwzux
  toEnum Int
358 = PpcInsn
PpcInsLwzx
  toEnum Int
359 = PpcInsn
PpcInsLxsdx
  toEnum Int
360 = PpcInsn
PpcInsLxvd2x
  toEnum Int
361 = PpcInsn
PpcInsLxvdsx
  toEnum Int
362 = PpcInsn
PpcInsLxvw4x
  toEnum Int
363 = PpcInsn
PpcInsMbar
  toEnum Int
364 = PpcInsn
PpcInsMcrf
  toEnum Int
365 = PpcInsn
PpcInsMcrfs
  toEnum Int
366 = PpcInsn
PpcInsMfcr
  toEnum Int
367 = PpcInsn
PpcInsMfctr
  toEnum Int
368 = PpcInsn
PpcInsMfdcr
  toEnum Int
369 = PpcInsn
PpcInsMffs
  toEnum Int
370 = PpcInsn
PpcInsMflr
  toEnum Int
371 = PpcInsn
PpcInsMfmsr
  toEnum Int
372 = PpcInsn
PpcInsMfocrf
  toEnum Int
373 = PpcInsn
PpcInsMfspr
  toEnum Int
374 = PpcInsn
PpcInsMfsr
  toEnum Int
375 = PpcInsn
PpcInsMfsrin
  toEnum Int
376 = PpcInsn
PpcInsMftb
  toEnum Int
377 = PpcInsn
PpcInsMfvscr
  toEnum Int
378 = PpcInsn
PpcInsMsync
  toEnum Int
379 = PpcInsn
PpcInsMtcrf
  toEnum Int
380 = PpcInsn
PpcInsMtctr
  toEnum Int
381 = PpcInsn
PpcInsMtdcr
  toEnum Int
382 = PpcInsn
PpcInsMtfsb0
  toEnum Int
383 = PpcInsn
PpcInsMtfsb1
  toEnum Int
384 = PpcInsn
PpcInsMtfsf
  toEnum Int
385 = PpcInsn
PpcInsMtfsfi
  toEnum Int
386 = PpcInsn
PpcInsMtlr
  toEnum Int
387 = PpcInsn
PpcInsMtmsr
  toEnum Int
388 = PpcInsn
PpcInsMtmsrd
  toEnum Int
389 = PpcInsn
PpcInsMtocrf
  toEnum Int
390 = PpcInsn
PpcInsMtspr
  toEnum Int
391 = PpcInsn
PpcInsMtsr
  toEnum Int
392 = PpcInsn
PpcInsMtsrin
  toEnum Int
393 = PpcInsn
PpcInsMtvscr
  toEnum Int
394 = PpcInsn
PpcInsMulhd
  toEnum Int
395 = PpcInsn
PpcInsMulhdu
  toEnum Int
396 = PpcInsn
PpcInsMulhw
  toEnum Int
397 = PpcInsn
PpcInsMulhwu
  toEnum Int
398 = PpcInsn
PpcInsMulld
  toEnum Int
399 = PpcInsn
PpcInsMulli
  toEnum Int
400 = PpcInsn
PpcInsMullw
  toEnum Int
401 = PpcInsn
PpcInsNand
  toEnum Int
402 = PpcInsn
PpcInsNeg
  toEnum Int
403 = PpcInsn
PpcInsNop
  toEnum Int
404 = PpcInsn
PpcInsOri
  toEnum Int
405 = PpcInsn
PpcInsNor
  toEnum Int
406 = PpcInsn
PpcInsOr
  toEnum Int
407 = PpcInsn
PpcInsOrc
  toEnum Int
408 = PpcInsn
PpcInsOris
  toEnum Int
409 = PpcInsn
PpcInsPopcntd
  toEnum Int
410 = PpcInsn
PpcInsPopcntw
  toEnum Int
411 = PpcInsn
PpcInsQvaligni
  toEnum Int
412 = PpcInsn
PpcInsQvesplati
  toEnum Int
413 = PpcInsn
PpcInsQvfabs
  toEnum Int
414 = PpcInsn
PpcInsQvfadd
  toEnum Int
415 = PpcInsn
PpcInsQvfadds
  toEnum Int
416 = PpcInsn
PpcInsQvfcfid
  toEnum Int
417 = PpcInsn
PpcInsQvfcfids
  toEnum Int
418 = PpcInsn
PpcInsQvfcfidu
  toEnum Int
419 = PpcInsn
PpcInsQvfcfidus
  toEnum Int
420 = PpcInsn
PpcInsQvfcmpeq
  toEnum Int
421 = PpcInsn
PpcInsQvfcmpgt
  toEnum Int
422 = PpcInsn
PpcInsQvfcmplt
  toEnum Int
423 = PpcInsn
PpcInsQvfcpsgn
  toEnum Int
424 = PpcInsn
PpcInsQvfctid
  toEnum Int
425 = PpcInsn
PpcInsQvfctidu
  toEnum Int
426 = PpcInsn
PpcInsQvfctiduz
  toEnum Int
427 = PpcInsn
PpcInsQvfctidz
  toEnum Int
428 = PpcInsn
PpcInsQvfctiw
  toEnum Int
429 = PpcInsn
PpcInsQvfctiwu
  toEnum Int
430 = PpcInsn
PpcInsQvfctiwuz
  toEnum Int
431 = PpcInsn
PpcInsQvfctiwz
  toEnum Int
432 = PpcInsn
PpcInsQvflogical
  toEnum Int
433 = PpcInsn
PpcInsQvfmadd
  toEnum Int
434 = PpcInsn
PpcInsQvfmadds
  toEnum Int
435 = PpcInsn
PpcInsQvfmr
  toEnum Int
436 = PpcInsn
PpcInsQvfmsub
  toEnum Int
437 = PpcInsn
PpcInsQvfmsubs
  toEnum Int
438 = PpcInsn
PpcInsQvfmul
  toEnum Int
439 = PpcInsn
PpcInsQvfmuls
  toEnum Int
440 = PpcInsn
PpcInsQvfnabs
  toEnum Int
441 = PpcInsn
PpcInsQvfneg
  toEnum Int
442 = PpcInsn
PpcInsQvfnmadd
  toEnum Int
443 = PpcInsn
PpcInsQvfnmadds
  toEnum Int
444 = PpcInsn
PpcInsQvfnmsub
  toEnum Int
445 = PpcInsn
PpcInsQvfnmsubs
  toEnum Int
446 = PpcInsn
PpcInsQvfperm
  toEnum Int
447 = PpcInsn
PpcInsQvfre
  toEnum Int
448 = PpcInsn
PpcInsQvfres
  toEnum Int
449 = PpcInsn
PpcInsQvfrim
  toEnum Int
450 = PpcInsn
PpcInsQvfrin
  toEnum Int
451 = PpcInsn
PpcInsQvfrip
  toEnum Int
452 = PpcInsn
PpcInsQvfriz
  toEnum Int
453 = PpcInsn
PpcInsQvfrsp
  toEnum Int
454 = PpcInsn
PpcInsQvfrsqrte
  toEnum Int
455 = PpcInsn
PpcInsQvfrsqrtes
  toEnum Int
456 = PpcInsn
PpcInsQvfsel
  toEnum Int
457 = PpcInsn
PpcInsQvfsub
  toEnum Int
458 = PpcInsn
PpcInsQvfsubs
  toEnum Int
459 = PpcInsn
PpcInsQvftstnan
  toEnum Int
460 = PpcInsn
PpcInsQvfxmadd
  toEnum Int
461 = PpcInsn
PpcInsQvfxmadds
  toEnum Int
462 = PpcInsn
PpcInsQvfxmul
  toEnum Int
463 = PpcInsn
PpcInsQvfxmuls
  toEnum Int
464 = PpcInsn
PpcInsQvfxxcpnmadd
  toEnum Int
465 = PpcInsn
PpcInsQvfxxcpnmadds
  toEnum Int
466 = PpcInsn
PpcInsQvfxxmadd
  toEnum Int
467 = PpcInsn
PpcInsQvfxxmadds
  toEnum Int
468 = PpcInsn
PpcInsQvfxxnpmadd
  toEnum Int
469 = PpcInsn
PpcInsQvfxxnpmadds
  toEnum Int
470 = PpcInsn
PpcInsQvgpci
  toEnum Int
471 = PpcInsn
PpcInsQvlfcdux
  toEnum Int
472 = PpcInsn
PpcInsQvlfcduxa
  toEnum Int
473 = PpcInsn
PpcInsQvlfcdx
  toEnum Int
474 = PpcInsn
PpcInsQvlfcdxa
  toEnum Int
475 = PpcInsn
PpcInsQvlfcsux
  toEnum Int
476 = PpcInsn
PpcInsQvlfcsuxa
  toEnum Int
477 = PpcInsn
PpcInsQvlfcsx
  toEnum Int
478 = PpcInsn
PpcInsQvlfcsxa
  toEnum Int
479 = PpcInsn
PpcInsQvlfdux
  toEnum Int
480 = PpcInsn
PpcInsQvlfduxa
  toEnum Int
481 = PpcInsn
PpcInsQvlfdx
  toEnum Int
482 = PpcInsn
PpcInsQvlfdxa
  toEnum Int
483 = PpcInsn
PpcInsQvlfiwax
  toEnum Int
484 = PpcInsn
PpcInsQvlfiwaxa
  toEnum Int
485 = PpcInsn
PpcInsQvlfiwzx
  toEnum Int
486 = PpcInsn
PpcInsQvlfiwzxa
  toEnum Int
487 = PpcInsn
PpcInsQvlfsux
  toEnum Int
488 = PpcInsn
PpcInsQvlfsuxa
  toEnum Int
489 = PpcInsn
PpcInsQvlfsx
  toEnum Int
490 = PpcInsn
PpcInsQvlfsxa
  toEnum Int
491 = PpcInsn
PpcInsQvlpcldx
  toEnum Int
492 = PpcInsn
PpcInsQvlpclsx
  toEnum Int
493 = PpcInsn
PpcInsQvlpcrdx
  toEnum Int
494 = PpcInsn
PpcInsQvlpcrsx
  toEnum Int
495 = PpcInsn
PpcInsQvstfcdux
  toEnum Int
496 = PpcInsn
PpcInsQvstfcduxa
  toEnum Int
497 = PpcInsn
PpcInsQvstfcduxi
  toEnum Int
498 = PpcInsn
PpcInsQvstfcduxia
  toEnum Int
499 = PpcInsn
PpcInsQvstfcdx
  toEnum Int
500 = PpcInsn
PpcInsQvstfcdxa
  toEnum Int
501 = PpcInsn
PpcInsQvstfcdxi
  toEnum Int
502 = PpcInsn
PpcInsQvstfcdxia
  toEnum Int
503 = PpcInsn
PpcInsQvstfcsux
  toEnum Int
504 = PpcInsn
PpcInsQvstfcsuxa
  toEnum Int
505 = PpcInsn
PpcInsQvstfcsuxi
  toEnum Int
506 = PpcInsn
PpcInsQvstfcsuxia
  toEnum Int
507 = PpcInsn
PpcInsQvstfcsx
  toEnum Int
508 = PpcInsn
PpcInsQvstfcsxa
  toEnum Int
509 = PpcInsn
PpcInsQvstfcsxi
  toEnum Int
510 = PpcInsn
PpcInsQvstfcsxia
  toEnum Int
511 = PpcInsn
PpcInsQvstfdux
  toEnum Int
512 = PpcInsn
PpcInsQvstfduxa
  toEnum Int
513 = PpcInsn
PpcInsQvstfduxi
  toEnum Int
514 = PpcInsn
PpcInsQvstfduxia
  toEnum Int
515 = PpcInsn
PpcInsQvstfdx
  toEnum Int
516 = PpcInsn
PpcInsQvstfdxa
  toEnum Int
517 = PpcInsn
PpcInsQvstfdxi
  toEnum Int
518 = PpcInsn
PpcInsQvstfdxia
  toEnum Int
519 = PpcInsn
PpcInsQvstfiwx
  toEnum Int
520 = PpcInsn
PpcInsQvstfiwxa
  toEnum Int
521 = PpcInsn
PpcInsQvstfsux
  toEnum Int
522 = PpcInsn
PpcInsQvstfsuxa
  toEnum Int
523 = PpcInsn
PpcInsQvstfsuxi
  toEnum Int
524 = PpcInsn
PpcInsQvstfsuxia
  toEnum Int
525 = PpcInsn
PpcInsQvstfsx
  toEnum Int
526 = PpcInsn
PpcInsQvstfsxa
  toEnum Int
527 = PpcInsn
PpcInsQvstfsxi
  toEnum Int
528 = PpcInsn
PpcInsQvstfsxia
  toEnum Int
529 = PpcInsn
PpcInsRfci
  toEnum Int
530 = PpcInsn
PpcInsRfdi
  toEnum Int
531 = PpcInsn
PpcInsRfi
  toEnum Int
532 = PpcInsn
PpcInsRfid
  toEnum Int
533 = PpcInsn
PpcInsRfmci
  toEnum Int
534 = PpcInsn
PpcInsRldcl
  toEnum Int
535 = PpcInsn
PpcInsRldcr
  toEnum Int
536 = PpcInsn
PpcInsRldic
  toEnum Int
537 = PpcInsn
PpcInsRldicl
  toEnum Int
538 = PpcInsn
PpcInsRldicr
  toEnum Int
539 = PpcInsn
PpcInsRldimi
  toEnum Int
540 = PpcInsn
PpcInsRlwimi
  toEnum Int
541 = PpcInsn
PpcInsRlwinm
  toEnum Int
542 = PpcInsn
PpcInsRlwnm
  toEnum Int
543 = PpcInsn
PpcInsSc
  toEnum Int
544 = PpcInsn
PpcInsSlbia
  toEnum Int
545 = PpcInsn
PpcInsSlbie
  toEnum Int
546 = PpcInsn
PpcInsSlbmfee
  toEnum Int
547 = PpcInsn
PpcInsSlbmte
  toEnum Int
548 = PpcInsn
PpcInsSld
  toEnum Int
549 = PpcInsn
PpcInsSlw
  toEnum Int
550 = PpcInsn
PpcInsSrad
  toEnum Int
551 = PpcInsn
PpcInsSradi
  toEnum Int
552 = PpcInsn
PpcInsSraw
  toEnum Int
553 = PpcInsn
PpcInsSrawi
  toEnum Int
554 = PpcInsn
PpcInsSrd
  toEnum Int
555 = PpcInsn
PpcInsSrw
  toEnum Int
556 = PpcInsn
PpcInsStb
  toEnum Int
557 = PpcInsn
PpcInsStbcix
  toEnum Int
558 = PpcInsn
PpcInsStbu
  toEnum Int
559 = PpcInsn
PpcInsStbux
  toEnum Int
560 = PpcInsn
PpcInsStbx
  toEnum Int
561 = PpcInsn
PpcInsStd
  toEnum Int
562 = PpcInsn
PpcInsStdbrx
  toEnum Int
563 = PpcInsn
PpcInsStdcix
  toEnum Int
564 = PpcInsn
PpcInsStdcx
  toEnum Int
565 = PpcInsn
PpcInsStdu
  toEnum Int
566 = PpcInsn
PpcInsStdux
  toEnum Int
567 = PpcInsn
PpcInsStdx
  toEnum Int
568 = PpcInsn
PpcInsStfd
  toEnum Int
569 = PpcInsn
PpcInsStfdu
  toEnum Int
570 = PpcInsn
PpcInsStfdux
  toEnum Int
571 = PpcInsn
PpcInsStfdx
  toEnum Int
572 = PpcInsn
PpcInsStfiwx
  toEnum Int
573 = PpcInsn
PpcInsStfs
  toEnum Int
574 = PpcInsn
PpcInsStfsu
  toEnum Int
575 = PpcInsn
PpcInsStfsux
  toEnum Int
576 = PpcInsn
PpcInsStfsx
  toEnum Int
577 = PpcInsn
PpcInsSth
  toEnum Int
578 = PpcInsn
PpcInsSthbrx
  toEnum Int
579 = PpcInsn
PpcInsSthcix
  toEnum Int
580 = PpcInsn
PpcInsSthu
  toEnum Int
581 = PpcInsn
PpcInsSthux
  toEnum Int
582 = PpcInsn
PpcInsSthx
  toEnum Int
583 = PpcInsn
PpcInsStmw
  toEnum Int
584 = PpcInsn
PpcInsStswi
  toEnum Int
585 = PpcInsn
PpcInsStvebx
  toEnum Int
586 = PpcInsn
PpcInsStvehx
  toEnum Int
587 = PpcInsn
PpcInsStvewx
  toEnum Int
588 = PpcInsn
PpcInsStvx
  toEnum Int
589 = PpcInsn
PpcInsStvxl
  toEnum Int
590 = PpcInsn
PpcInsStw
  toEnum Int
591 = PpcInsn
PpcInsStwbrx
  toEnum Int
592 = PpcInsn
PpcInsStwcix
  toEnum Int
593 = PpcInsn
PpcInsStwcx
  toEnum Int
594 = PpcInsn
PpcInsStwu
  toEnum Int
595 = PpcInsn
PpcInsStwux
  toEnum Int
596 = PpcInsn
PpcInsStwx
  toEnum Int
597 = PpcInsn
PpcInsStxsdx
  toEnum Int
598 = PpcInsn
PpcInsStxvd2x
  toEnum Int
599 = PpcInsn
PpcInsStxvw4x
  toEnum Int
600 = PpcInsn
PpcInsSubf
  toEnum Int
601 = PpcInsn
PpcInsSubfc
  toEnum Int
602 = PpcInsn
PpcInsSubfe
  toEnum Int
603 = PpcInsn
PpcInsSubfic
  toEnum Int
604 = PpcInsn
PpcInsSubfme
  toEnum Int
605 = PpcInsn
PpcInsSubfze
  toEnum Int
606 = PpcInsn
PpcInsSync
  toEnum Int
607 = PpcInsn
PpcInsTd
  toEnum Int
608 = PpcInsn
PpcInsTdi
  toEnum Int
609 = PpcInsn
PpcInsTlbia
  toEnum Int
610 = PpcInsn
PpcInsTlbie
  toEnum Int
611 = PpcInsn
PpcInsTlbiel
  toEnum Int
612 = PpcInsn
PpcInsTlbivax
  toEnum Int
613 = PpcInsn
PpcInsTlbld
  toEnum Int
614 = PpcInsn
PpcInsTlbli
  toEnum Int
615 = PpcInsn
PpcInsTlbre
  toEnum Int
616 = PpcInsn
PpcInsTlbsx
  toEnum Int
617 = PpcInsn
PpcInsTlbsync
  toEnum Int
618 = PpcInsn
PpcInsTlbwe
  toEnum Int
619 = PpcInsn
PpcInsTrap
  toEnum Int
620 = PpcInsn
PpcInsTw
  toEnum Int
621 = PpcInsn
PpcInsTwi
  toEnum Int
622 = PpcInsn
PpcInsVaddcuw
  toEnum Int
623 = PpcInsn
PpcInsVaddfp
  toEnum Int
624 = PpcInsn
PpcInsVaddsbs
  toEnum Int
625 = PpcInsn
PpcInsVaddshs
  toEnum Int
626 = PpcInsn
PpcInsVaddsws
  toEnum Int
627 = PpcInsn
PpcInsVaddubm
  toEnum Int
628 = PpcInsn
PpcInsVaddubs
  toEnum Int
629 = PpcInsn
PpcInsVaddudm
  toEnum Int
630 = PpcInsn
PpcInsVadduhm
  toEnum Int
631 = PpcInsn
PpcInsVadduhs
  toEnum Int
632 = PpcInsn
PpcInsVadduwm
  toEnum Int
633 = PpcInsn
PpcInsVadduws
  toEnum Int
634 = PpcInsn
PpcInsVand
  toEnum Int
635 = PpcInsn
PpcInsVandc
  toEnum Int
636 = PpcInsn
PpcInsVavgsb
  toEnum Int
637 = PpcInsn
PpcInsVavgsh
  toEnum Int
638 = PpcInsn
PpcInsVavgsw
  toEnum Int
639 = PpcInsn
PpcInsVavgub
  toEnum Int
640 = PpcInsn
PpcInsVavguh
  toEnum Int
641 = PpcInsn
PpcInsVavguw
  toEnum Int
642 = PpcInsn
PpcInsVcfsx
  toEnum Int
643 = PpcInsn
PpcInsVcfux
  toEnum Int
644 = PpcInsn
PpcInsVclzb
  toEnum Int
645 = PpcInsn
PpcInsVclzd
  toEnum Int
646 = PpcInsn
PpcInsVclzh
  toEnum Int
647 = PpcInsn
PpcInsVclzw
  toEnum Int
648 = PpcInsn
PpcInsVcmpbfp
  toEnum Int
649 = PpcInsn
PpcInsVcmpeqfp
  toEnum Int
650 = PpcInsn
PpcInsVcmpequb
  toEnum Int
651 = PpcInsn
PpcInsVcmpequd
  toEnum Int
652 = PpcInsn
PpcInsVcmpequh
  toEnum Int
653 = PpcInsn
PpcInsVcmpequw
  toEnum Int
654 = PpcInsn
PpcInsVcmpgefp
  toEnum Int
655 = PpcInsn
PpcInsVcmpgtfp
  toEnum Int
656 = PpcInsn
PpcInsVcmpgtsb
  toEnum Int
657 = PpcInsn
PpcInsVcmpgtsd
  toEnum Int
658 = PpcInsn
PpcInsVcmpgtsh
  toEnum Int
659 = PpcInsn
PpcInsVcmpgtsw
  toEnum Int
660 = PpcInsn
PpcInsVcmpgtub
  toEnum Int
661 = PpcInsn
PpcInsVcmpgtud
  toEnum Int
662 = PpcInsn
PpcInsVcmpgtuh
  toEnum Int
663 = PpcInsn
PpcInsVcmpgtuw
  toEnum Int
664 = PpcInsn
PpcInsVctsxs
  toEnum Int
665 = PpcInsn
PpcInsVctuxs
  toEnum Int
666 = PpcInsn
PpcInsVeqv
  toEnum Int
667 = PpcInsn
PpcInsVexptefp
  toEnum Int
668 = PpcInsn
PpcInsVlogefp
  toEnum Int
669 = PpcInsn
PpcInsVmaddfp
  toEnum Int
670 = PpcInsn
PpcInsVmaxfp
  toEnum Int
671 = PpcInsn
PpcInsVmaxsb
  toEnum Int
672 = PpcInsn
PpcInsVmaxsd
  toEnum Int
673 = PpcInsn
PpcInsVmaxsh
  toEnum Int
674 = PpcInsn
PpcInsVmaxsw
  toEnum Int
675 = PpcInsn
PpcInsVmaxub
  toEnum Int
676 = PpcInsn
PpcInsVmaxud
  toEnum Int
677 = PpcInsn
PpcInsVmaxuh
  toEnum Int
678 = PpcInsn
PpcInsVmaxuw
  toEnum Int
679 = PpcInsn
PpcInsVmhaddshs
  toEnum Int
680 = PpcInsn
PpcInsVmhraddshs
  toEnum Int
681 = PpcInsn
PpcInsVminud
  toEnum Int
682 = PpcInsn
PpcInsVminfp
  toEnum Int
683 = PpcInsn
PpcInsVminsb
  toEnum Int
684 = PpcInsn
PpcInsVminsd
  toEnum Int
685 = PpcInsn
PpcInsVminsh
  toEnum Int
686 = PpcInsn
PpcInsVminsw
  toEnum Int
687 = PpcInsn
PpcInsVminub
  toEnum Int
688 = PpcInsn
PpcInsVminuh
  toEnum Int
689 = PpcInsn
PpcInsVminuw
  toEnum Int
690 = PpcInsn
PpcInsVmladduhm
  toEnum Int
691 = PpcInsn
PpcInsVmrghb
  toEnum Int
692 = PpcInsn
PpcInsVmrghh
  toEnum Int
693 = PpcInsn
PpcInsVmrghw
  toEnum Int
694 = PpcInsn
PpcInsVmrglb
  toEnum Int
695 = PpcInsn
PpcInsVmrglh
  toEnum Int
696 = PpcInsn
PpcInsVmrglw
  toEnum Int
697 = PpcInsn
PpcInsVmsummbm
  toEnum Int
698 = PpcInsn
PpcInsVmsumshm
  toEnum Int
699 = PpcInsn
PpcInsVmsumshs
  toEnum Int
700 = PpcInsn
PpcInsVmsumubm
  toEnum Int
701 = PpcInsn
PpcInsVmsumuhm
  toEnum Int
702 = PpcInsn
PpcInsVmsumuhs
  toEnum Int
703 = PpcInsn
PpcInsVmulesb
  toEnum Int
704 = PpcInsn
PpcInsVmulesh
  toEnum Int
705 = PpcInsn
PpcInsVmulesw
  toEnum Int
706 = PpcInsn
PpcInsVmuleub
  toEnum Int
707 = PpcInsn
PpcInsVmuleuh
  toEnum Int
708 = PpcInsn
PpcInsVmuleuw
  toEnum Int
709 = PpcInsn
PpcInsVmulosb
  toEnum Int
710 = PpcInsn
PpcInsVmulosh
  toEnum Int
711 = PpcInsn
PpcInsVmulosw
  toEnum Int
712 = PpcInsn
PpcInsVmuloub
  toEnum Int
713 = PpcInsn
PpcInsVmulouh
  toEnum Int
714 = PpcInsn
PpcInsVmulouw
  toEnum Int
715 = PpcInsn
PpcInsVmuluwm
  toEnum Int
716 = PpcInsn
PpcInsVnand
  toEnum Int
717 = PpcInsn
PpcInsVnmsubfp
  toEnum Int
718 = PpcInsn
PpcInsVnor
  toEnum Int
719 = PpcInsn
PpcInsVor
  toEnum Int
720 = PpcInsn
PpcInsVorc
  toEnum Int
721 = PpcInsn
PpcInsVperm
  toEnum Int
722 = PpcInsn
PpcInsVpkpx
  toEnum Int
723 = PpcInsn
PpcInsVpkshss
  toEnum Int
724 = PpcInsn
PpcInsVpkshus
  toEnum Int
725 = PpcInsn
PpcInsVpkswss
  toEnum Int
726 = PpcInsn
PpcInsVpkswus
  toEnum Int
727 = PpcInsn
PpcInsVpkuhum
  toEnum Int
728 = PpcInsn
PpcInsVpkuhus
  toEnum Int
729 = PpcInsn
PpcInsVpkuwum
  toEnum Int
730 = PpcInsn
PpcInsVpkuwus
  toEnum Int
731 = PpcInsn
PpcInsVpopcntb
  toEnum Int
732 = PpcInsn
PpcInsVpopcntd
  toEnum Int
733 = PpcInsn
PpcInsVpopcnth
  toEnum Int
734 = PpcInsn
PpcInsVpopcntw
  toEnum Int
735 = PpcInsn
PpcInsVrefp
  toEnum Int
736 = PpcInsn
PpcInsVrfim
  toEnum Int
737 = PpcInsn
PpcInsVrfin
  toEnum Int
738 = PpcInsn
PpcInsVrfip
  toEnum Int
739 = PpcInsn
PpcInsVrfiz
  toEnum Int
740 = PpcInsn
PpcInsVrlb
  toEnum Int
741 = PpcInsn
PpcInsVrld
  toEnum Int
742 = PpcInsn
PpcInsVrlh
  toEnum Int
743 = PpcInsn
PpcInsVrlw
  toEnum Int
744 = PpcInsn
PpcInsVrsqrtefp
  toEnum Int
745 = PpcInsn
PpcInsVsel
  toEnum Int
746 = PpcInsn
PpcInsVsl
  toEnum Int
747 = PpcInsn
PpcInsVslb
  toEnum Int
748 = PpcInsn
PpcInsVsld
  toEnum Int
749 = PpcInsn
PpcInsVsldoi
  toEnum Int
750 = PpcInsn
PpcInsVslh
  toEnum Int
751 = PpcInsn
PpcInsVslo
  toEnum Int
752 = PpcInsn
PpcInsVslw
  toEnum Int
753 = PpcInsn
PpcInsVspltb
  toEnum Int
754 = PpcInsn
PpcInsVsplth
  toEnum Int
755 = PpcInsn
PpcInsVspltisb
  toEnum Int
756 = PpcInsn
PpcInsVspltish
  toEnum Int
757 = PpcInsn
PpcInsVspltisw
  toEnum Int
758 = PpcInsn
PpcInsVspltw
  toEnum Int
759 = PpcInsn
PpcInsVsr
  toEnum Int
760 = PpcInsn
PpcInsVsrab
  toEnum Int
761 = PpcInsn
PpcInsVsrad
  toEnum Int
762 = PpcInsn
PpcInsVsrah
  toEnum Int
763 = PpcInsn
PpcInsVsraw
  toEnum Int
764 = PpcInsn
PpcInsVsrb
  toEnum Int
765 = PpcInsn
PpcInsVsrd
  toEnum Int
766 = PpcInsn
PpcInsVsrh
  toEnum Int
767 = PpcInsn
PpcInsVsro
  toEnum Int
768 = PpcInsn
PpcInsVsrw
  toEnum Int
769 = PpcInsn
PpcInsVsubcuw
  toEnum Int
770 = PpcInsn
PpcInsVsubfp
  toEnum Int
771 = PpcInsn
PpcInsVsubsbs
  toEnum Int
772 = PpcInsn
PpcInsVsubshs
  toEnum Int
773 = PpcInsn
PpcInsVsubsws
  toEnum Int
774 = PpcInsn
PpcInsVsububm
  toEnum Int
775 = PpcInsn
PpcInsVsububs
  toEnum Int
776 = PpcInsn
PpcInsVsubudm
  toEnum Int
777 = PpcInsn
PpcInsVsubuhm
  toEnum Int
778 = PpcInsn
PpcInsVsubuhs
  toEnum Int
779 = PpcInsn
PpcInsVsubuwm
  toEnum Int
780 = PpcInsn
PpcInsVsubuws
  toEnum Int
781 = PpcInsn
PpcInsVsum2sws
  toEnum Int
782 = PpcInsn
PpcInsVsum4sbs
  toEnum Int
783 = PpcInsn
PpcInsVsum4shs
  toEnum Int
784 = PpcInsn
PpcInsVsum4ubs
  toEnum Int
785 = PpcInsn
PpcInsVsumsws
  toEnum Int
786 = PpcInsn
PpcInsVupkhpx
  toEnum Int
787 = PpcInsn
PpcInsVupkhsb
  toEnum Int
788 = PpcInsn
PpcInsVupkhsh
  toEnum Int
789 = PpcInsn
PpcInsVupklpx
  toEnum Int
790 = PpcInsn
PpcInsVupklsb
  toEnum Int
791 = PpcInsn
PpcInsVupklsh
  toEnum Int
792 = PpcInsn
PpcInsVxor
  toEnum Int
793 = PpcInsn
PpcInsWait
  toEnum Int
794 = PpcInsn
PpcInsWrtee
  toEnum Int
795 = PpcInsn
PpcInsWrteei
  toEnum Int
796 = PpcInsn
PpcInsXor
  toEnum Int
797 = PpcInsn
PpcInsXori
  toEnum Int
798 = PpcInsn
PpcInsXoris
  toEnum Int
799 = PpcInsn
PpcInsXsabsdp
  toEnum Int
800 = PpcInsn
PpcInsXsadddp
  toEnum Int
801 = PpcInsn
PpcInsXscmpodp
  toEnum Int
802 = PpcInsn
PpcInsXscmpudp
  toEnum Int
803 = PpcInsn
PpcInsXscpsgndp
  toEnum Int
804 = PpcInsn
PpcInsXscvdpsp
  toEnum Int
805 = PpcInsn
PpcInsXscvdpsxds
  toEnum Int
806 = PpcInsn
PpcInsXscvdpsxws
  toEnum Int
807 = PpcInsn
PpcInsXscvdpuxds
  toEnum Int
808 = PpcInsn
PpcInsXscvdpuxws
  toEnum Int
809 = PpcInsn
PpcInsXscvspdp
  toEnum Int
810 = PpcInsn
PpcInsXscvsxddp
  toEnum Int
811 = PpcInsn
PpcInsXscvuxddp
  toEnum Int
812 = PpcInsn
PpcInsXsdivdp
  toEnum Int
813 = PpcInsn
PpcInsXsmaddadp
  toEnum Int
814 = PpcInsn
PpcInsXsmaddmdp
  toEnum Int
815 = PpcInsn
PpcInsXsmaxdp
  toEnum Int
816 = PpcInsn
PpcInsXsmindp
  toEnum Int
817 = PpcInsn
PpcInsXsmsubadp
  toEnum Int
818 = PpcInsn
PpcInsXsmsubmdp
  toEnum Int
819 = PpcInsn
PpcInsXsmuldp
  toEnum Int
820 = PpcInsn
PpcInsXsnabsdp
  toEnum Int
821 = PpcInsn
PpcInsXsnegdp
  toEnum Int
822 = PpcInsn
PpcInsXsnmaddadp
  toEnum Int
823 = PpcInsn
PpcInsXsnmaddmdp
  toEnum Int
824 = PpcInsn
PpcInsXsnmsubadp
  toEnum Int
825 = PpcInsn
PpcInsXsnmsubmdp
  toEnum Int
826 = PpcInsn
PpcInsXsrdpi
  toEnum Int
827 = PpcInsn
PpcInsXsrdpic
  toEnum Int
828 = PpcInsn
PpcInsXsrdpim
  toEnum Int
829 = PpcInsn
PpcInsXsrdpip
  toEnum Int
830 = PpcInsn
PpcInsXsrdpiz
  toEnum Int
831 = PpcInsn
PpcInsXsredp
  toEnum Int
832 = PpcInsn
PpcInsXsrsqrtedp
  toEnum Int
833 = PpcInsn
PpcInsXssqrtdp
  toEnum Int
834 = PpcInsn
PpcInsXssubdp
  toEnum Int
835 = PpcInsn
PpcInsXstdivdp
  toEnum Int
836 = PpcInsn
PpcInsXstsqrtdp
  toEnum Int
837 = PpcInsn
PpcInsXvabsdp
  toEnum Int
838 = PpcInsn
PpcInsXvabssp
  toEnum Int
839 = PpcInsn
PpcInsXvadddp
  toEnum Int
840 = PpcInsn
PpcInsXvaddsp
  toEnum Int
841 = PpcInsn
PpcInsXvcmpeqdp
  toEnum Int
842 = PpcInsn
PpcInsXvcmpeqsp
  toEnum Int
843 = PpcInsn
PpcInsXvcmpgedp
  toEnum Int
844 = PpcInsn
PpcInsXvcmpgesp
  toEnum Int
845 = PpcInsn
PpcInsXvcmpgtdp
  toEnum Int
846 = PpcInsn
PpcInsXvcmpgtsp
  toEnum Int
847 = PpcInsn
PpcInsXvcpsgndp
  toEnum Int
848 = PpcInsn
PpcInsXvcpsgnsp
  toEnum Int
849 = PpcInsn
PpcInsXvcvdpsp
  toEnum Int
850 = PpcInsn
PpcInsXvcvdpsxds
  toEnum Int
851 = PpcInsn
PpcInsXvcvdpsxws
  toEnum Int
852 = PpcInsn
PpcInsXvcvdpuxds
  toEnum Int
853 = PpcInsn
PpcInsXvcvdpuxws
  toEnum Int
854 = PpcInsn
PpcInsXvcvspdp
  toEnum Int
855 = PpcInsn
PpcInsXvcvspsxds
  toEnum Int
856 = PpcInsn
PpcInsXvcvspsxws
  toEnum Int
857 = PpcInsn
PpcInsXvcvspuxds
  toEnum Int
858 = PpcInsn
PpcInsXvcvspuxws
  toEnum Int
859 = PpcInsn
PpcInsXvcvsxddp
  toEnum Int
860 = PpcInsn
PpcInsXvcvsxdsp
  toEnum Int
861 = PpcInsn
PpcInsXvcvsxwdp
  toEnum Int
862 = PpcInsn
PpcInsXvcvsxwsp
  toEnum Int
863 = PpcInsn
PpcInsXvcvuxddp
  toEnum Int
864 = PpcInsn
PpcInsXvcvuxdsp
  toEnum Int
865 = PpcInsn
PpcInsXvcvuxwdp
  toEnum Int
866 = PpcInsn
PpcInsXvcvuxwsp
  toEnum Int
867 = PpcInsn
PpcInsXvdivdp
  toEnum Int
868 = PpcInsn
PpcInsXvdivsp
  toEnum Int
869 = PpcInsn
PpcInsXvmaddadp
  toEnum Int
870 = PpcInsn
PpcInsXvmaddasp
  toEnum Int
871 = PpcInsn
PpcInsXvmaddmdp
  toEnum Int
872 = PpcInsn
PpcInsXvmaddmsp
  toEnum Int
873 = PpcInsn
PpcInsXvmaxdp
  toEnum Int
874 = PpcInsn
PpcInsXvmaxsp
  toEnum Int
875 = PpcInsn
PpcInsXvmindp
  toEnum Int
876 = PpcInsn
PpcInsXvminsp
  toEnum Int
877 = PpcInsn
PpcInsXvmsubadp
  toEnum Int
878 = PpcInsn
PpcInsXvmsubasp
  toEnum Int
879 = PpcInsn
PpcInsXvmsubmdp
  toEnum Int
880 = PpcInsn
PpcInsXvmsubmsp
  toEnum Int
881 = PpcInsn
PpcInsXvmuldp
  toEnum Int
882 = PpcInsn
PpcInsXvmulsp
  toEnum Int
883 = PpcInsn
PpcInsXvnabsdp
  toEnum Int
884 = PpcInsn
PpcInsXvnabssp
  toEnum Int
885 = PpcInsn
PpcInsXvnegdp
  toEnum Int
886 = PpcInsn
PpcInsXvnegsp
  toEnum Int
887 = PpcInsn
PpcInsXvnmaddadp
  toEnum Int
888 = PpcInsn
PpcInsXvnmaddasp
  toEnum Int
889 = PpcInsn
PpcInsXvnmaddmdp
  toEnum Int
890 = PpcInsn
PpcInsXvnmaddmsp
  toEnum Int
891 = PpcInsn
PpcInsXvnmsubadp
  toEnum Int
892 = PpcInsn
PpcInsXvnmsubasp
  toEnum Int
893 = PpcInsn
PpcInsXvnmsubmdp
  toEnum Int
894 = PpcInsn
PpcInsXvnmsubmsp
  toEnum Int
895 = PpcInsn
PpcInsXvrdpi
  toEnum Int
896 = PpcInsn
PpcInsXvrdpic
  toEnum Int
897 = PpcInsn
PpcInsXvrdpim
  toEnum Int
898 = PpcInsn
PpcInsXvrdpip
  toEnum Int
899 = PpcInsn
PpcInsXvrdpiz
  toEnum Int
900 = PpcInsn
PpcInsXvredp
  toEnum Int
901 = PpcInsn
PpcInsXvresp
  toEnum Int
902 = PpcInsn
PpcInsXvrspi
  toEnum Int
903 = PpcInsn
PpcInsXvrspic
  toEnum Int
904 = PpcInsn
PpcInsXvrspim
  toEnum Int
905 = PpcInsn
PpcInsXvrspip
  toEnum Int
906 = PpcInsn
PpcInsXvrspiz
  toEnum Int
907 = PpcInsn
PpcInsXvrsqrtedp
  toEnum Int
908 = PpcInsn
PpcInsXvrsqrtesp
  toEnum Int
909 = PpcInsn
PpcInsXvsqrtdp
  toEnum Int
910 = PpcInsn
PpcInsXvsqrtsp
  toEnum Int
911 = PpcInsn
PpcInsXvsubdp
  toEnum Int
912 = PpcInsn
PpcInsXvsubsp
  toEnum Int
913 = PpcInsn
PpcInsXvtdivdp
  toEnum Int
914 = PpcInsn
PpcInsXvtdivsp
  toEnum Int
915 = PpcInsn
PpcInsXvtsqrtdp
  toEnum Int
916 = PpcInsn
PpcInsXvtsqrtsp
  toEnum Int
917 = PpcInsn
PpcInsXxland
  toEnum Int
918 = PpcInsn
PpcInsXxlandc
  toEnum Int
919 = PpcInsn
PpcInsXxleqv
  toEnum Int
920 = PpcInsn
PpcInsXxlnand
  toEnum Int
921 = PpcInsn
PpcInsXxlnor
  toEnum Int
922 = PpcInsn
PpcInsXxlor
  toEnum Int
923 = PpcInsn
PpcInsXxlorc
  toEnum Int
924 = PpcInsn
PpcInsXxlxor
  toEnum Int
925 = PpcInsn
PpcInsXxmrghw
  toEnum Int
926 = PpcInsn
PpcInsXxmrglw
  toEnum Int
927 = PpcInsn
PpcInsXxpermdi
  toEnum Int
928 = PpcInsn
PpcInsXxsel
  toEnum Int
929 = PpcInsn
PpcInsXxsldwi
  toEnum Int
930 = PpcInsn
PpcInsXxspltw
  toEnum Int
931 = PpcInsn
PpcInsBca
  toEnum Int
932 = PpcInsn
PpcInsBcla
  toEnum Int
933 = PpcInsn
PpcInsSlwi
  toEnum Int
934 = PpcInsn
PpcInsSrwi
  toEnum Int
935 = PpcInsn
PpcInsSldi
  toEnum Int
936 = PpcInsn
PpcInsBta
  toEnum Int
937 = PpcInsn
PpcInsCrset
  toEnum Int
938 = PpcInsn
PpcInsCrnot
  toEnum Int
939 = PpcInsn
PpcInsCrmove
  toEnum Int
940 = PpcInsn
PpcInsCrclr
  toEnum Int
941 = PpcInsn
PpcInsMfbr0
  toEnum Int
942 = PpcInsn
PpcInsMfbr1
  toEnum Int
943 = PpcInsn
PpcInsMfbr2
  toEnum Int
944 = PpcInsn
PpcInsMfbr3
  toEnum Int
945 = PpcInsn
PpcInsMfbr4
  toEnum Int
946 = PpcInsn
PpcInsMfbr5
  toEnum Int
947 = PpcInsn
PpcInsMfbr6
  toEnum Int
948 = PpcInsn
PpcInsMfbr7
  toEnum Int
949 = PpcInsn
PpcInsMfxer
  toEnum Int
950 = PpcInsn
PpcInsMfrtcu
  toEnum Int
951 = PpcInsn
PpcInsMfrtcl
  toEnum Int
952 = PpcInsn
PpcInsMfdscr
  toEnum Int
953 = PpcInsn
PpcInsMfdsisr
  toEnum Int
954 = PpcInsn
PpcInsMfdar
  toEnum Int
955 = PpcInsn
PpcInsMfsrr2
  toEnum Int
956 = PpcInsn
PpcInsMfsrr3
  toEnum Int
957 = PpcInsn
PpcInsMfcfar
  toEnum Int
958 = PpcInsn
PpcInsMfamr
  toEnum Int
959 = PpcInsn
PpcInsMfpid
  toEnum Int
960 = PpcInsn
PpcInsMftblo
  toEnum Int
961 = PpcInsn
PpcInsMftbhi
  toEnum Int
962 = PpcInsn
PpcInsMfdbatu
  toEnum Int
963 = PpcInsn
PpcInsMfdbatl
  toEnum Int
964 = PpcInsn
PpcInsMfibatu
  toEnum Int
965 = PpcInsn
PpcInsMfibatl
  toEnum Int
966 = PpcInsn
PpcInsMfdccr
  toEnum Int
967 = PpcInsn
PpcInsMficcr
  toEnum Int
968 = PpcInsn
PpcInsMfdear
  toEnum Int
969 = PpcInsn
PpcInsMfesr
  toEnum Int
970 = PpcInsn
PpcInsMfspefscr
  toEnum Int
971 = PpcInsn
PpcInsMftcr
  toEnum Int
972 = PpcInsn
PpcInsMfasr
  toEnum Int
973 = PpcInsn
PpcInsMfpvr
  toEnum Int
974 = PpcInsn
PpcInsMftbu
  toEnum Int
975 = PpcInsn
PpcInsMtcr
  toEnum Int
976 = PpcInsn
PpcInsMtbr0
  toEnum Int
977 = PpcInsn
PpcInsMtbr1
  toEnum Int
978 = PpcInsn
PpcInsMtbr2
  toEnum Int
979 = PpcInsn
PpcInsMtbr3
  toEnum Int
980 = PpcInsn
PpcInsMtbr4
  toEnum Int
981 = PpcInsn
PpcInsMtbr5
  toEnum Int
982 = PpcInsn
PpcInsMtbr6
  toEnum Int
983 = PpcInsn
PpcInsMtbr7
  toEnum Int
984 = PpcInsn
PpcInsMtxer
  toEnum Int
985 = PpcInsn
PpcInsMtdscr
  toEnum Int
986 = PpcInsn
PpcInsMtdsisr
  toEnum Int
987 = PpcInsn
PpcInsMtdar
  toEnum Int
988 = PpcInsn
PpcInsMtsrr2
  toEnum Int
989 = PpcInsn
PpcInsMtsrr3
  toEnum Int
990 = PpcInsn
PpcInsMtcfar
  toEnum Int
991 = PpcInsn
PpcInsMtamr
  toEnum Int
992 = PpcInsn
PpcInsMtpid
  toEnum Int
993 = PpcInsn
PpcInsMttbl
  toEnum Int
994 = PpcInsn
PpcInsMttbu
  toEnum Int
995 = PpcInsn
PpcInsMttblo
  toEnum Int
996 = PpcInsn
PpcInsMttbhi
  toEnum Int
997 = PpcInsn
PpcInsMtdbatu
  toEnum Int
998 = PpcInsn
PpcInsMtdbatl
  toEnum Int
999 = PpcInsn
PpcInsMtibatu
  toEnum Int
1000 = PpcInsn
PpcInsMtibatl
  toEnum Int
1001 = PpcInsn
PpcInsMtdccr
  toEnum Int
1002 = PpcInsn
PpcInsMticcr
  toEnum Int
1003 = PpcInsn
PpcInsMtdear
  toEnum Int
1004 = PpcInsn
PpcInsMtesr
  toEnum Int
1005 = PpcInsn
PpcInsMtspefscr
  toEnum Int
1006 = PpcInsn
PpcInsMttcr
  toEnum Int
1007 = PpcInsn
PpcInsNot
  toEnum Int
1008 = PpcInsn
PpcInsMr
  toEnum Int
1009 = PpcInsn
PpcInsRotld
  toEnum Int
1010 = PpcInsn
PpcInsRotldi
  toEnum Int
1011 = PpcInsn
PpcInsClrldi
  toEnum Int
1012 = PpcInsn
PpcInsRotlwi
  toEnum Int
1013 = PpcInsn
PpcInsClrlwi
  toEnum Int
1014 = PpcInsn
PpcInsRotlw
  toEnum Int
1015 = PpcInsn
PpcInsSub
  toEnum Int
1016 = PpcInsn
PpcInsSubc
  toEnum Int
1017 = PpcInsn
PpcInsLwsync
  toEnum Int
1018 = PpcInsn
PpcInsPtesync
  toEnum Int
1019 = PpcInsn
PpcInsTdlt
  toEnum Int
1020 = PpcInsn
PpcInsTdeq
  toEnum Int
1021 = PpcInsn
PpcInsTdgt
  toEnum Int
1022 = PpcInsn
PpcInsTdne
  toEnum Int
1023 = PpcInsn
PpcInsTdllt
  toEnum Int
1024 = PpcInsn
PpcInsTdlgt
  toEnum Int
1025 = PpcInsn
PpcInsTdu
  toEnum Int
1026 = PpcInsn
PpcInsTdlti
  toEnum Int
1027 = PpcInsn
PpcInsTdeqi
  toEnum Int
1028 = PpcInsn
PpcInsTdgti
  toEnum Int
1029 = PpcInsn
PpcInsTdnei
  toEnum Int
1030 = PpcInsn
PpcInsTdllti
  toEnum Int
1031 = PpcInsn
PpcInsTdlgti
  toEnum Int
1032 = PpcInsn
PpcInsTdui
  toEnum Int
1033 = PpcInsn
PpcInsTlbrehi
  toEnum Int
1034 = PpcInsn
PpcInsTlbrelo
  toEnum Int
1035 = PpcInsn
PpcInsTlbwehi
  toEnum Int
1036 = PpcInsn
PpcInsTlbwelo
  toEnum Int
1037 = PpcInsn
PpcInsTwlt
  toEnum Int
1038 = PpcInsn
PpcInsTweq
  toEnum Int
1039 = PpcInsn
PpcInsTwgt
  toEnum Int
1040 = PpcInsn
PpcInsTwne
  toEnum Int
1041 = PpcInsn
PpcInsTwllt
  toEnum Int
1042 = PpcInsn
PpcInsTwlgt
  toEnum Int
1043 = PpcInsn
PpcInsTwu
  toEnum Int
1044 = PpcInsn
PpcInsTwlti
  toEnum Int
1045 = PpcInsn
PpcInsTweqi
  toEnum Int
1046 = PpcInsn
PpcInsTwgti
  toEnum Int
1047 = PpcInsn
PpcInsTwnei
  toEnum Int
1048 = PpcInsn
PpcInsTwllti
  toEnum Int
1049 = PpcInsn
PpcInsTwlgti
  toEnum Int
1050 = PpcInsn
PpcInsTwui
  toEnum Int
1051 = PpcInsn
PpcInsWaitrsv
  toEnum Int
1052 = PpcInsn
PpcInsWaitimpl
  toEnum Int
1053 = PpcInsn
PpcInsXnop
  toEnum Int
1054 = PpcInsn
PpcInsXvmovdp
  toEnum Int
1055 = PpcInsn
PpcInsXvmovsp
  toEnum Int
1056 = PpcInsn
PpcInsXxspltd
  toEnum Int
1057 = PpcInsn
PpcInsXxmrghd
  toEnum Int
1058 = PpcInsn
PpcInsXxmrgld
  toEnum Int
1059 = PpcInsn
PpcInsXxswapd
  toEnum Int
1060 = PpcInsn
PpcInsBt
  toEnum Int
1061 = PpcInsn
PpcInsBf
  toEnum Int
1062 = PpcInsn
PpcInsBdnzt
  toEnum Int
1063 = PpcInsn
PpcInsBdnzf
  toEnum Int
1064 = PpcInsn
PpcInsBdzf
  toEnum Int
1065 = PpcInsn
PpcInsBdzt
  toEnum Int
1066 = PpcInsn
PpcInsBfa
  toEnum Int
1067 = PpcInsn
PpcInsBdnzta
  toEnum Int
1068 = PpcInsn
PpcInsBdnzfa
  toEnum Int
1069 = PpcInsn
PpcInsBdzta
  toEnum Int
1070 = PpcInsn
PpcInsBdzfa
  toEnum Int
1071 = PpcInsn
PpcInsBtctr
  toEnum Int
1072 = PpcInsn
PpcInsBfctr
  toEnum Int
1073 = PpcInsn
PpcInsBtctrl
  toEnum Int
1074 = PpcInsn
PpcInsBfctrl
  toEnum Int
1075 = PpcInsn
PpcInsBtl
  toEnum Int
1076 = PpcInsn
PpcInsBfl
  toEnum Int
1077 = PpcInsn
PpcInsBdnztl
  toEnum Int
1078 = PpcInsn
PpcInsBdnzfl
  toEnum Int
1079 = PpcInsn
PpcInsBdztl
  toEnum Int
1080 = PpcInsn
PpcInsBdzfl
  toEnum Int
1081 = PpcInsn
PpcInsBtla
  toEnum Int
1082 = PpcInsn
PpcInsBfla
  toEnum Int
1083 = PpcInsn
PpcInsBdnztla
  toEnum Int
1084 = PpcInsn
PpcInsBdnzfla
  toEnum Int
1085 = PpcInsn
PpcInsBdztla
  toEnum Int
1086 = PpcInsn
PpcInsBdzfla
  toEnum Int
1087 = PpcInsn
PpcInsBtlr
  toEnum Int
1088 = PpcInsn
PpcInsBflr
  toEnum Int
1089 = PpcInsn
PpcInsBdnztlr
  toEnum Int
1090 = PpcInsn
PpcInsBdztlr
  toEnum Int
1091 = PpcInsn
PpcInsBdzflr
  toEnum Int
1092 = PpcInsn
PpcInsBtlrl
  toEnum Int
1093 = PpcInsn
PpcInsBflrl
  toEnum Int
1094 = PpcInsn
PpcInsBdnztlrl
  toEnum Int
1095 = PpcInsn
PpcInsBdnzflrl
  toEnum Int
1096 = PpcInsn
PpcInsBdztlrl
  toEnum Int
1097 = PpcInsn
PpcInsBdzflrl
  toEnum Int
1098 = PpcInsn
PpcInsQvfand
  toEnum Int
1099 = PpcInsn
PpcInsQvfclr
  toEnum Int
1100 = PpcInsn
PpcInsQvfandc
  toEnum Int
1101 = PpcInsn
PpcInsQvfctfb
  toEnum Int
1102 = PpcInsn
PpcInsQvfxor
  toEnum Int
1103 = PpcInsn
PpcInsQvfor
  toEnum Int
1104 = PpcInsn
PpcInsQvfnor
  toEnum Int
1105 = PpcInsn
PpcInsQvfequ
  toEnum Int
1106 = PpcInsn
PpcInsQvfnot
  toEnum Int
1107 = PpcInsn
PpcInsQvforc
  toEnum Int
1108 = PpcInsn
PpcInsQvfnand
  toEnum Int
1109 = PpcInsn
PpcInsQvfset
  toEnum Int
1110 = PpcInsn
PpcInsEnding
  toEnum Int
unmatched = String -> PpcInsn
forall a. HasCallStack => String -> a
error (String
"PpcInsn.toEnum: Cannot match " String -> ShowS
forall a. [a] -> [a] -> [a]
++ Int -> String
forall a. Show a => a -> String
show Int
unmatched)

{-# LINE 153 "src/Hapstone/Internal/Ppc.chs" #-}

-- | PPC instruction groups
data PpcInsnGroup = PpcGrpInvalid
                  | PpcGrpJump
                  | PpcGrpAltivec
                  | PpcGrpMode32
                  | PpcGrpMode64
                  | PpcGrpBooke
                  | PpcGrpNotbooke
                  | PpcGrpSpe
                  | PpcGrpVsx
                  | PpcGrpE500
                  | PpcGrpPpc4xx
                  | PpcGrpPpc6xx
                  | PpcGrpIcbt
                  | PpcGrpP8altivec
                  | PpcGrpP8vector
                  | PpcGrpQpx
                  | PpcGrpEnding
  deriving (Show,Eq,Bounded)
instance Enum PpcInsnGroup where
  succ PpcGrpInvalid = PpcGrpJump
  succ PpcGrpJump = PpcGrpAltivec
  succ PpcGrpAltivec = PpcGrpMode32
  succ PpcGrpMode32 = PpcGrpMode64
  succ PpcGrpMode64 = PpcGrpBooke
  succ PpcGrpBooke = PpcGrpNotbooke
  succ PpcGrpNotbooke = PpcGrpSpe
  succ PpcGrpSpe = PpcGrpVsx
  succ PpcGrpVsx = PpcGrpE500
  succ PpcGrpE500 = PpcGrpPpc4xx
  succ PpcGrpPpc4xx = PpcGrpPpc6xx
  succ PpcGrpPpc6xx = PpcGrpIcbt
  succ PpcGrpIcbt = PpcGrpP8altivec
  succ PpcGrpP8altivec = PpcGrpP8vector
  succ PpcGrpP8vector = PpcGrpQpx
  succ PpcGrpQpx = PpcGrpEnding
  succ PpcGrpEnding = error "PpcInsnGroup.succ: PpcGrpEnding has no successor"

  pred PpcGrpJump = PpcGrpInvalid
  pred PpcGrpAltivec = PpcGrpJump
  pred PpcGrpMode32 = PpcGrpAltivec
  pred PpcGrpMode64 = PpcGrpMode32
  pred PpcGrpBooke = PpcGrpMode64
  pred PpcGrpNotbooke = PpcGrpBooke
  pred PpcGrpSpe = PpcGrpNotbooke
  pred PpcGrpVsx = PpcGrpSpe
  pred PpcGrpE500 = PpcGrpVsx
  pred PpcGrpPpc4xx = PpcGrpE500
  pred PpcGrpPpc6xx = PpcGrpPpc4xx
  pred PpcGrpIcbt = PpcGrpPpc6xx
  pred PpcGrpP8altivec = PpcGrpIcbt
  pred PpcGrpP8vector = PpcGrpP8altivec
  pred PpcGrpQpx = PpcGrpP8vector
  pred PpcGrpEnding = PpcGrpQpx
  pred PpcGrpInvalid = error "PpcInsnGroup.pred: PpcGrpInvalid has no predecessor"

  enumFromTo from to = go from
    where
      end = fromEnum to
      go v = case compare (fromEnum v) end of
                 LT -> v : go (succ v)
                 EQ -> [v]
                 GT -> []

  enumFrom from = enumFromTo from PpcGrpEnding

  fromEnum PpcGrpInvalid = 0
  fromEnum PpcGrpJump = 1
  fromEnum PpcGrpAltivec = 128
  fromEnum PpcGrpMode32 = 129
  fromEnum PpcGrpMode64 = 130
  fromEnum PpcGrpBooke = 131
  fromEnum PpcGrpNotbooke = 132
  fromEnum PpcGrpSpe = 133
  fromEnum PpcGrpVsx = 134
  fromEnum PpcGrpE500 = 135
  fromEnum PpcGrpPpc4xx = 136
  fromEnum PpcGrpPpc6xx = 137
  fromEnum PpcGrpIcbt = 138
  fromEnum PpcGrpP8altivec = 139
  fromEnum PpcGrpP8vector = 140
  fromEnum PpcGrpQpx = 141
  fromEnum PpcGrpEnding = 142

  toEnum 0 = PpcGrpInvalid
  toEnum 1 = PpcGrpJump
  toEnum 128 = PpcGrpAltivec
  toEnum 129 = PpcGrpMode32
  toEnum 130 = PpcGrpMode64
  toEnum 131 = PpcGrpBooke
  toEnum 132 = PpcGrpNotbooke
  toEnum 133 = PpcGrpSpe
  toEnum 134 = PpcGrpVsx
  toEnum 135 = PpcGrpE500
  toEnum 136 = PpcGrpPpc4xx
  toEnum 137 = PpcGrpPpc6xx
  toEnum 138 = PpcGrpIcbt
  toEnum 139 = PpcGrpP8altivec
  toEnum 140 = PpcGrpP8vector
  toEnum 141 = PpcGrpQpx
  toEnum 142 = PpcGrpEnding
  toEnum unmatched = error ("PpcInsnGroup.toEnum: Cannot match " ++ show unmatched)

{-# LINE 156 "src/Hapstone/Internal/Ppc.chs" #-}