llvm-hs-pure-5.1.1: Pure Haskell LLVM functionality (no FFI).

Safe HaskellSafe
LanguageHaskell98

LLVM.AST.InlineAssembly

Description

A representation of an LLVM inline assembly

Synopsis

Documentation

data Dialect Source #

the dialect of assembly used in an inline assembly string http://en.wikipedia.org/wiki/X86_assembly_language#Syntax

Constructors

ATTDialect 
IntelDialect 

Instances

Eq Dialect Source # 

Methods

(==) :: Dialect -> Dialect -> Bool #

(/=) :: Dialect -> Dialect -> Bool #

Data Dialect Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Dialect -> c Dialect #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Dialect #

toConstr :: Dialect -> Constr #

dataTypeOf :: Dialect -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Dialect) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Dialect) #

gmapT :: (forall b. Data b => b -> b) -> Dialect -> Dialect #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Dialect -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Dialect -> r #

gmapQ :: (forall d. Data d => d -> u) -> Dialect -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Dialect -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Dialect -> m Dialect #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Dialect -> m Dialect #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Dialect -> m Dialect #

Read Dialect Source # 
Show Dialect Source # 
Generic Dialect Source # 

Associated Types

type Rep Dialect :: * -> * #

Methods

from :: Dialect -> Rep Dialect x #

to :: Rep Dialect x -> Dialect #

type Rep Dialect Source # 
type Rep Dialect = D1 * (MetaData "Dialect" "LLVM.AST.InlineAssembly" "llvm-hs-pure-5.1.1-A50TaxGLKsoFnCqinrVaVN" False) ((:+:) * (C1 * (MetaCons "ATTDialect" PrefixI False) (U1 *)) (C1 * (MetaCons "IntelDialect" PrefixI False) (U1 *)))

data InlineAssembly Source #

Instances

Eq InlineAssembly Source # 
Data InlineAssembly Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> InlineAssembly -> c InlineAssembly #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c InlineAssembly #

toConstr :: InlineAssembly -> Constr #

dataTypeOf :: InlineAssembly -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c InlineAssembly) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c InlineAssembly) #

gmapT :: (forall b. Data b => b -> b) -> InlineAssembly -> InlineAssembly #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> InlineAssembly -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> InlineAssembly -> r #

gmapQ :: (forall d. Data d => d -> u) -> InlineAssembly -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> InlineAssembly -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> InlineAssembly -> m InlineAssembly #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> InlineAssembly -> m InlineAssembly #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> InlineAssembly -> m InlineAssembly #

Read InlineAssembly Source # 
Show InlineAssembly Source # 
Generic InlineAssembly Source # 

Associated Types

type Rep InlineAssembly :: * -> * #

Typed CallableOperand Source # 
type Rep InlineAssembly Source #