implement am26 support for constants
[fleet.git] / src / edu / berkeley / fleet / assembler / fleet.g
1 // The FLEET Assembly Language Grammar
2 // Updated 05-Nov-2006
3
4 // Note that this is the *entire, complete* formal specification of
5 // the grammar.  An equivalent lex+yacc grammar and support code would
6 // be several times as long.
7
8 Comment        = "//" ~[\n\r]!* [\r\n]!
9                | "/*" ~[\n\r]!* "*/"
10 ws             = ([\r\n ] | Comment)!* -> ~[\r\n ]
11
12 s               = ws! Program ws!
13 Program         = Program:: Directive+/ws
14                 | Program:: ("":: Directive+/ws) ws! CodeBagBody
15
16 Statement       = Fiber::                  Source  ":" ("":: Instruction +/ ws)     /ws
17                 | Literal::                int     ":" "sendto" Port       ";" /ws
18                 | ShipSpecificLiteral::    SSL     ":" "sendto" Port       ";" /ws
19                 | CodeBagDescriptor::      CodeBag ":" "sendto" Port       ";" /ws
20                 | NamedCodeBag::           name    ":" "{" CodeBagBody "}"     /ws
21
22 CountField      = Brack::     "[" int "]"
23                 | Paren::     "(" int ")"
24                 | BrackStar:: "[*]"
25                 | ParenStar:: "(*)"
26 Instruction     = Instruction::
27                         ("":: (CountField ws!)?)
28                         ("":: Command +/ (ws! "," ws!) ws! ";"!)
29 Command         = Nop::      "nop"
30                 | Kill::     "kill"
31                 | KillStar:: "kill*"
32                 | Wait::     "wait"
33                 | Discard::  "dismiss"
34                 | Take::     ("take"|"receive")
35                 | SendTo::   "sendto" ws! Port
36                 | DataOutDest::   "send"
37                 | Deliver::  "deliver"
38                 | Ack::      "notify" ws! Port
39
40 Source         = Port
41                | ShipSpecific
42
43 SSL            = ShipSpecificLiteral:: shiptype "." portname "[" SSLSpec "]"
44 Port           = Port::     shipname "." portname
45                | SubPort::  shipname "." portname "." portname
46                |           ^"()"
47
48 SSLSpec::      = SSLElement +/ ","
49 SSLElement     = "":: [a-zA-Z0-9=_]++
50
51 CodeBagBody::  = Statement +/ ws
52 CodeBag        = CodeBagRef:: CodeBagName
53                | AnonymousCodeBag:: "{" CodeBagBody "}" /ws
54
55 CodeBagName         = name
56 shipname            = name
57 shiptype            = Name:: [A-Z]    ("":: [A-Za-z0-9_]**)
58 ShipSpecificLiteral = Name:: [A-Z]    ("":: [A-Z0-9_]**)
59 portname            = Name:: [a-z]    ("":: [A-Za-z0-9_]**)
60 name                = Name:: [A-Za-z] ("":: [A-Za-z0-9_]**)
61 index               = "[" ("":: [0-9]+) "]" | ("":: [0-9]+)
62 int                 = "":: [\-0-9]++
63 ShipSpecific        = ShipSpecific:: "\"" (~[\"])++ "\""
64
65 // the following are not part of the official FLEET syntax and are
66 // specific to Adam's interpreter.
67
68 Directive      =           "#memory" "{" (Memory:: int +/ (ws! "," ws!)) "}" /ws
69                | Import::  "#import" [A-Za-z_.]++ /ws
70                | Include:: "#include" ws! "\"" ~[\"]+ "\""
71                | Ship::    "#ship" shipname ":" ("":: [0-9A-Za-z_.]++) /ws
72                | Expect::  "#expect" int /ws
73                | Skip::    "#skip"
74