1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
|
-- | Qualification compilation pha se.
--
-- The qualification phase is responsible for resolving all type references in
-- the AST to their fully-qualified counterparts. This process involves
-- replacing unqualified references with their fully-qualified names and
-- attaching the necessary metadata to each reference. This enriched information
-- is then available for use in later stages of the compilation pipeline.
--
-- In this phase, symbol resolution statements (such as 'using' statements) are
-- removed, as they become unnecessary once references are fully qualified.
module Language.Fiddle.Compiler.Qualification (qualificationPhase) where
import Control.Monad.RWS (MonadWriter (tell))
import Control.Monad.State
import Data.Foldable (foldlM, toList)
import Data.List (intercalate)
import Data.List.NonEmpty (NonEmpty (..))
import qualified Data.List.NonEmpty as NonEmpty
import Data.Maybe (isNothing, mapMaybe)
import qualified Data.Text
import Data.Word
import Language.Fiddle.Ast
import Language.Fiddle.Compiler
import Language.Fiddle.Compiler.ConsistencyCheck ()
import Language.Fiddle.Internal.Scopes
import Language.Fiddle.Internal.UnitInterface as UnitInterface
import Language.Fiddle.Internal.UnitNumbers
import Language.Fiddle.Types
import Text.Printf (printf)
type S = Expanded
data GlobalState = GlobalState
{ unitInterface :: UnitInterface,
uniqueCounter :: Int
}
data LocalState = LocalState
{ currentScopePath :: ScopePath String,
-- | Current qualified path, used for building metadata.
currentQualifiedPath :: QualifiedPath (),
ephemeralScope :: Scope String (Metadata, ExportedDecl)
}
type F = Either [Diagnostic]
type A = Commented SourceSpan
type M = Compile GlobalState
uniqueString :: String -> M String
uniqueString prefix = do
cnt <- gets uniqueCounter
modify $ \g -> g {uniqueCounter = cnt + 1}
return $ "_" ++ prefix ++ show cnt
uniqueIdentifier :: String -> a -> M (Identifier F a)
uniqueIdentifier prefix a = (\s -> Identifier (Data.Text.pack s) a) <$> uniqueString prefix
instance CompilationStage Expanded where
type StageAfter Expanded = Qualified
type StageMonad Expanded = M
type StageState Expanded = LocalState
type StageFunctor Expanded = F
type StageAnnotation Expanded = A
pushPackage :: NonEmpty String -> LocalState -> (QualifiedPath String, LocalState)
pushPackage pk ls =
let q = currentQualifiedPath ls
in ( qualifyPackage pk,
ls
{ currentScopePath = pushScope pk (currentScopePath ls),
currentQualifiedPath =
q
{ packagePart = packagePart q ++ NonEmpty.toList pk
}
}
)
where
qualifyPackage :: NonEmpty String -> QualifiedPath String
qualifyPackage (NonEmpty.reverse -> (l :| (reverse -> h))) =
let q = currentQualifiedPath ls
in q {packagePart = packagePart q ++ h, basenamePart = l}
pushObject :: NonEmpty String -> LocalState -> (QualifiedPath String, LocalState)
pushObject obj ls =
let q = currentQualifiedPath ls
in ( qualifyObject obj,
ls
{ currentScopePath = pushScope obj (currentScopePath ls),
currentQualifiedPath =
q
{ objectPart = objectPart q ++ NonEmpty.toList obj
}
}
)
where
qualifyObject :: NonEmpty String -> QualifiedPath String
qualifyObject (NonEmpty.reverse -> (l :| (reverse -> h))) =
let q = currentQualifiedPath ls
in q {objectPart = objectPart q ++ h, basenamePart = l}
pushRegister :: String -> LocalState -> (QualifiedPath String, LocalState)
pushRegister regName ls =
let q = currentQualifiedPath ls
in ( fmap (const regName) q,
ls
{ currentScopePath = pushScope (NonEmpty.singleton regName) (currentScopePath ls),
currentQualifiedPath =
q
{ registerPart = registerPart q ++ [regName]
}
}
)
qualificationPhase :: CompilationPhase Expanded Qualified
qualificationPhase =
let initialQualifiedPath = QualifiedPath [] [] [] ()
in pureCompilationPhase $ \t -> do
raw <-
fmap snd $
subCompile (GlobalState mempty 0) $
advanceStage
(LocalState mempty initialQualifiedPath mempty)
(soakA t)
squeezeDiagnostics raw
instance
StageConvertible
Expanded
(When False String)
(When True String)
where
convertInStage _ _ _ _ = Present <$> uniqueString "reserved"
instance AdvanceStage S (ConstExpression u) where
advanceStage ls (ConstExpression (RightV exp) a) =
case exp of
Var var _ -> do
(ExportedLocationDecl _ v) <- resolveOrFail =<< resolveName var ls
return $ ConstExpression (LeftV $ fromIntegral v) a
LitNum (RightV v) _ -> return $ ConstExpression (LeftV v) a
deriving instance AdvanceStage S ObjTypeBody
deriving instance AdvanceStage S DeferredRegisterBody
deriving instance AdvanceStage S RegisterBody
deriving instance AdvanceStage S AnonymousBitsType
deriving instance AdvanceStage S ImportStatement
deriving instance AdvanceStage S BitType
deriving instance AdvanceStage S EnumBody
deriving instance AdvanceStage S EnumConstantDecl
instance AdvanceStage S RegisterBitsDecl where
advanceStage localState = \case
ReservedBits expr an -> ReservedBits <$> advanceStage localState expr <*> pure an
BitsSubStructure bod name an ->
BitsSubStructure
<$> advanceStage localState bod
<*> pure name
<*> pure an
DefinedBits _ mod ident typ an -> do
let (path, _) = pushRegister (identToString ident) localState
qMeta =
QBitsMetadata
{ bitsSpan = Vacant,
bitsFullPath = path
}
DefinedBits (Present qMeta) (guarantee (ModifierKeyword Rw an) mod) ident
<$> advanceStage localState typ
<*> pure an
getProperRegSize :: (stage .< Expanded ~ False) => Expression Bits stage F A -> M RegSz
getProperRegSize expr = do
v <- expressionToIntM expr
case v of
8 -> return RegSz8
16 -> return RegSz16
32 -> return RegSz32
64 -> return RegSz64
_ -> do
emitDiagnosticError "Exotic register size." (annot expr)
return RegSz32
instance AdvanceStage S ObjTypeDecl where
advanceStage localState = \case
AssertPosStatement d e a ->
AssertPosStatement d <$> advanceStage localState e <*> pure a
RegisterDecl _ mod ident size bod ann -> do
ident' <- guaranteeM (uniqueIdentifier "reg" ann) ident
let (qualified, localState') =
pushRegister (identToString $ unwrap ident') localState
-- Avoid pushing the anonymized name onto the stack.
localState'' =
if isNothing (toMaybe ident) then localState else localState'
let qRegMeta =
QRegMetadata
{ regSpan = Vacant,
regIsPadding = False,
regIsUnnamed = isNothing (toMaybe ident),
regFullPath = qualified
}
RegisterDecl
(Present qRegMeta)
(guarantee (ModifierKeyword Rw ann) mod)
ident'
<$> progressBackM getProperRegSize size
<*> mapM (advanceStage localState'') bod
<*> pure ann
ReservedDecl _ expr ann -> do
ident <- uniqueIdentifier "reserved" ann
let (q, _) = pushRegister (identToString ident) localState
let qRegMeta =
QRegMetadata
{ regSpan = Vacant,
regIsPadding = True,
regIsUnnamed = True,
regFullPath = q
}
RegisterDecl
(Present qRegMeta)
(Guaranteed $ ModifierKeyword Pr ann)
(Guaranteed ident)
<$> fmap LeftV (getProperRegSize expr)
<*> pure Nothing
<*> pure ann
TypeSubStructure bod name an -> do
let localState' =
maybe
localState
(\n -> snd $ pushRegister (identToString n) localState)
name
TypeSubStructure
<$> mapM (advanceStage localState') bod
<*> pure name
<*> pure an
deriving instance AdvanceStage S (Expression u)
instance AdvanceStage S RegisterBitsTypeRef where
advanceStage localState = \case
RegisterBitsArray a b c ->
RegisterBitsArray
<$> advanceStage localState a
<*> advanceStage localState b
<*> pure c
RegisterBitsJustBits a b ->
RegisterBitsJustBits
<$> advanceStage localState a
<*> pure b
RegisterBitsReference _ name a -> do
v <- fmap Present <$> resolveName name localState
return $ RegisterBitsReference v name a
instance AdvanceStage S ObjType where
advanceStage localState = \case
ArrayObjType a b c ->
ArrayObjType
<$> advanceStage localState a
<*> advanceStage localState b
<*> pure c
ReferencedObjType _ name a -> do
v <- fmap Present <$> resolveName name localState
return $ ReferencedObjType v name a
deriving instance (AdvanceStage S t) => AdvanceStage S (Directed t)
instance AdvanceStage S PackageBody where
advanceStage localState (PackageBody decls a) =
PackageBody <$> advanceFiddleDecls localState decls <*> pure a
instance AdvanceStage S FiddleUnit where
advanceStage localState (FiddleUnit v decls a) =
FiddleUnit v <$> advanceFiddleDecls localState decls <*> pure a
modifyEphemeralScope ::
( Scope String (Metadata, ExportedDecl) -> Scope String (Metadata, ExportedDecl)
) ->
LocalState ->
LocalState
modifyEphemeralScope fn ls@LocalState {ephemeralScope = es} =
ls {ephemeralScope = fn es}
modifyCurrentScopePath ::
(ScopePath String -> ScopePath String) ->
LocalState ->
LocalState
modifyCurrentScopePath fn ls@LocalState {currentScopePath = cs} =
ls {currentScopePath = fn cs}
resolveIdent :: (ExportableDecl d, Functor f) => Identifier f A -> LocalState -> M (F d)
resolveIdent i = resolveSymbol (annot i) [identToString i]
resolveName :: (ExportableDecl d, Functor f) => Name f A -> LocalState -> M (F d)
resolveName n = resolveSymbol (annot n) (toList $ nameToList n)
resolveSymbol :: (ExportableDecl d) => A -> [String] -> LocalState -> M (F d)
resolveSymbol a (p : ps) (LocalState {ephemeralScope = ephemeralScope, currentScopePath = currentPath}) = do
GlobalState {unitInterface = UnitInterface {rootScope = rootScope}} <- get
let matches =
concatMap
( mapMaybe (\(p, (m, e)) -> (p,) . (m,) <$> fromExportedDecl e)
. lookupScopeWithPath currentPath (p :| ps)
)
[rootScope, ephemeralScope]
return $
case matches of
[(_, (_, e))] -> Right e
[] ->
Left
[ Diagnostic
Error
( printf "Could not resolve symbol %s" (intercalate "." (p : ps))
)
(unCommented a)
]
(_ : _ : _) -> do
Left
[ Diagnostic
Error
( printf
"Ambiguous occurance of %s"
(intercalate "." (p : ps))
)
(unCommented a)
]
resolveSymbol a _ _ =
return $ Left [Diagnostic Error "Empty path provided (this is a bug)" (unCommented a)]
qMd :: (Applicative f) => t -> f (QMd Qualified t)
qMd = pure . Present
advanceFiddleDecls ::
LocalState ->
[Directed FiddleDecl S F A] ->
M [Directed FiddleDecl Qualified F A]
advanceFiddleDecls localState decls = fmap (reverse . fst) $ do
foldlM
( \(declsRet, localState' :: LocalState) unsqeezedd -> do
d <- case squeeze unsqeezedd of
Left diags -> tell diags >> compilationFailure
Right x -> return x
case unsqeezedd of
(Directed directives t dann) ->
let doReturn ::
FiddleDecl Qualified F A ->
M ([Directed FiddleDecl Qualified F A], LocalState)
doReturn v = return (Directed directives v dann : declsRet, localState')
doReturnWith s v = return (Directed directives v dann : declsRet, s)
metadata = directiveToMetadata d
in case t of
UsingDecl {usingName = name} ->
return (declsRet, modifyCurrentScopePath (addUsingPath (nameToList name)) localState')
OptionDecl key value ann -> doReturn $ OptionDecl key value ann
ImportDecl st@(ImportStatement {importInterface = interface}) a ->
let localState'' = modifyEphemeralScope (<> rootScope (unwrap interface)) localState'
in doReturnWith localState''
=<< ImportDecl
<$> advanceStage localState'' st
<*> pure a
PackageDecl _ name body ann ->
let (qualifiedName, localState'') =
pushPackage
(nameToList name)
localState'
decl = ExportedPackageDecl (metadata qualifiedName)
in do
insertDecl decl
doReturn
=<< PackageDecl
(qMd decl)
name
<$> mapM (advanceStage localState'') body
<*> pure ann
LocationDecl _ ident expr ann ->
let qualifiedName =
fmap
(const $ identToString ident)
(currentQualifiedPath localState')
in do
expr' <- advanceStage localState' expr
let decl =
ExportedLocationDecl
(metadata qualifiedName)
(trueValue expr')
insertDecl decl
doReturn
=<< LocationDecl
(qMd decl)
ident
<$> advanceStage localState' expr
<*> pure ann
BitsDecl _ name@(Name ids _) typ ann ->
let (qualifiedName, _) =
pushObject
(fmap identToString ids)
localState
in do
sizeBits <- getBitTypeDeclaredSize typ
let decl =
ExportedBitsDecl
(metadata qualifiedName)
sizeBits
insertDecl decl
doReturn
=<< BitsDecl
(qMd decl)
name
<$> advanceStage localState' typ
<*> pure ann
ObjTypeDecl _ name@(Name ids _) body ann ->
let (qualifiedName, localState'') =
pushObject
(fmap identToString ids)
localState
in do
typeSize <- calculateTypeSize =<< resolveOrFail body
let decl =
ExportedTypeDecl
(metadata qualifiedName)
typeSize
insertDecl decl
doReturn
=<< ObjTypeDecl
(qMd decl)
name
<$> mapM (advanceStage localState'') body
<*> pure ann
ObjectDecl _ ident loc typ ann ->
let qualifiedName =
fmap
(const $ identToString ident)
(currentQualifiedPath localState)
in do
location <- resolveLocationExpression localState' loc
typ' <- advanceStage localState' typ
exportedType <- objTypeToExport localState' typ'
let decl =
ExportedObjectDecl
(metadata qualifiedName)
location
exportedType
insertDecl decl
doReturn
=<< ObjectDecl
(qMd decl)
ident
<$> advanceStage localState' loc
<*> pure typ'
<*> pure ann
)
([], localState)
decls
insertDecl :: (ExportableDecl d) => d -> M ()
insertDecl decl =
modify $ \(GlobalState ui c) -> GlobalState (UnitInterface.insert decl ui) c
objTypeToExport :: LocalState -> ObjType Qualified F A -> M ReferencedObjectType
objTypeToExport ls = \case
ArrayObjType {arraySize = size, arrayObjType = objType} ->
ArrayObjectType
<$> objTypeToExport ls objType
<*> pure (trueValue size)
ReferencedObjType {refName = n} -> do
(td :: ExportedTypeDecl) <- resolveOrFail =<< resolveName n ls
return $ ReferencedObjectType (metadataFullyQualifiedPath $ getMetadata td)
calculateTypeSize :: ObjTypeBody Expanded F A -> M (N Bytes)
calculateTypeSize (ObjTypeBody bodyType decls _) =
( case bodyType of
Union {} -> maximum
Struct {} -> sum
)
<$> mapM calculateDeclSize decls
where
calculateDeclSize :: Directed ObjTypeDecl Expanded F A -> M (N Bytes)
calculateDeclSize (undirected -> decl) =
case decl of
AssertPosStatement {} -> return 0
RegisterDecl {regSize = size} -> fst . bitsToBytes <$> expressionToIntM (getRight size)
ReservedDecl {reservedExpr = size} -> fst . bitsToBytes <$> expressionToIntM size
TypeSubStructure {subStructureBody = b} -> calculateTypeSize =<< resolveOrFail b
getBitTypeDeclaredSize :: BitType Expanded F A -> M (N Bits)
getBitTypeDeclaredSize = \case
(EnumBitType declaredSize _ _) -> expressionToIntM declaredSize
(RawBits declaredSize _) -> expressionToIntM declaredSize
resolveLocationExpression ::
(stage .< Expanded ~ False) =>
LocalState ->
Expression u stage F A ->
M (N u)
resolveLocationExpression ls (Var var _) = do
(ExportedLocationDecl _ v) <- resolveOrFail =<< resolveName var ls
return (fromIntegral v)
resolveLocationExpression _ e = expressionToIntM e
expressionToIntM ::
(stage .< Expanded ~ False) =>
Expression u stage f A ->
M (N u)
expressionToIntM expr =
resolveOrFail $
either
( \reason -> Left [Diagnostic Error reason (unCommented $ annot expr)]
)
return
(expressionToInt expr)
|