{-# LANGUAGE TemplateHaskell #-} module LLVM.General.Internal.InstructionDefs ( astInstructionRecs, astConstantRecs, instructionDefs, ID.InstructionKind(..), ID.InstructionDef(..), instrP, innerJoin, outerJoin ) where import qualified Language.Haskell.TH as TH import qualified Language.Haskell.TH.Quote as TH import Data.Map (Map) import qualified Data.Map as Map import qualified LLVM.General.Internal.FFI.InstructionDefs as ID import qualified LLVM.General.AST.Instruction as A import qualified LLVM.General.AST.Constant as A.C $(do let ctorRecs t = do TH.TyConI (TH.DataD _ _ _ cons _) <- TH.reify t TH.dataToExpQ (const Nothing) $ [ (TH.nameBase n, rec) | rec@(TH.RecC n _) <- cons ] [d| astInstructionRecs = Map.fromList $(ctorRecs ''A.Instruction) astConstantRecs = Map.fromList $(ctorRecs ''A.C.Constant) |] ) instructionDefs = Map.fromList [ ((refName . ID.cAPIName $ i), i) | i <- ID.instructionDefs ] where refName "AtomicCmpXchg" = "CmpXchg" refName "PHI" = "Phi" refName x = x innerJoin :: Ord k => Map k a -> Map k b -> Map k (a,b) innerJoin = Map.mergeWithKey (\_ a b -> Just (a,b)) (const Map.empty) (const Map.empty) outerJoin :: Ord k => Map k a -> Map k b -> Map k (Maybe a, Maybe b) outerJoin = Map.mergeWithKey (\_ a b -> Just (Just a, Just b)) (Map.map $ \a -> (Just a, Nothing)) (Map.map $ \b -> (Nothing, Just b)) instrP = TH.QuasiQuoter { TH.quoteExp = undefined, TH.quotePat = let m = Map.fromList [ (ID.cAPIName i, ID.cppOpcode i) | i <- ID.instructionDefs ] in TH.dataToPatQ (const Nothing) . (m Map.!), TH.quoteType = undefined, TH.quoteDec = undefined }