-
Notifications
You must be signed in to change notification settings - Fork 16
/
Quil.g4
271 lines (195 loc) · 7.59 KB
/
Quil.g4
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
grammar Quil;
////////////////////
// PARSER
////////////////////
quil : allInstr? ( NEWLINE+ allInstr )* NEWLINE* EOF ;
allInstr : defGate
| defCircuit
| instr
;
instr : gate
| measure
| defLabel
| halt
| jump
| jumpWhen
| jumpUnless
| resetState
| wait
| classicalUnary
| classicalBinary
| classicalComparison
| load
| store
| nop
| include
| pragma
| memoryDescriptor
| extern
| call
;
// C. Static and Parametric Gates
gate : modifier* name ( LPAREN param ( COMMA param )* RPAREN )? qubit+ ;
name : IDENTIFIER ;
qubit : INT ;
param : expression ;
modifier : CONTROLLED
| DAGGER ;
// D. Gate Definitions
defGate : DEFGATE name ( ( LPAREN variable ( COMMA variable )* RPAREN ) | ( AS gateType ) )? COLON NEWLINE matrix ;
variable : PERCENTAGE IDENTIFIER ;
gateType : MATRIX | PERMUTATION ;
matrix : ( matrixRow NEWLINE )* matrixRow ;
matrixRow : TAB expression ( COMMA expression )* ;
// E. Circuits
defCircuit : DEFCIRCUIT name ( LPAREN variable ( COMMA variable )* RPAREN )? qubitVariable* COLON NEWLINE circuit ;
qubitVariable : IDENTIFIER ;
circuitQubit : qubit | qubitVariable ;
circuitGate : name ( LPAREN param ( COMMA param )* RPAREN )? circuitQubit+ ;
circuitMeasure : MEASURE circuitQubit addr? ;
circuitResetState : RESET circuitQubit? ;
circuitInstr : circuitGate | circuitMeasure | circuitResetState | instr ;
circuit : ( TAB circuitInstr NEWLINE )* TAB circuitInstr ;
// F. Measurement
measure : MEASURE qubit addr? ;
addr : IDENTIFIER | ( IDENTIFIER? LBRACKET INT RBRACKET );
// G. Program control
defLabel : LABEL label ;
label : AT IDENTIFIER ;
halt : HALT ;
jump : JUMP label ;
jumpWhen : JUMPWHEN label addr ;
jumpUnless : JUMPUNLESS label addr ;
// H. Zeroing the Quantum State
resetState : RESET qubit? ; // NB: cannot be named "reset" due to conflict with Antlr implementation
// I. Classical/Quantum Synchronization
wait : WAIT ;
// J. Classical Instructions
memoryDescriptor : DECLARE IDENTIFIER IDENTIFIER ( LBRACKET INT RBRACKET )? ( SHARING IDENTIFIER ( offsetDescriptor )* )? ;
offsetDescriptor : OFFSET INT IDENTIFIER ;
classicalUnary : ( NEG | NOT | TRUE | FALSE ) addr ;
classicalBinary : logicalBinaryOp | arithmeticBinaryOp | move | exchange | convert ;
logicalBinaryOp : ( AND | OR | IOR | XOR ) addr ( addr | INT ) ;
arithmeticBinaryOp : ( ADD | SUB | MUL | DIV ) addr ( addr | number ) ;
move : MOVE addr ( addr | number );
exchange : EXCHANGE addr addr ;
convert : CONVERT addr addr ;
load : LOAD addr IDENTIFIER addr ;
store : STORE IDENTIFIER addr ( addr | number );
classicalComparison : ( EQ | GT | GE | LT | LE ) addr addr ( addr | number );
// K. The No-Operation Instruction
nop : NOP ;
// L. File Inclusion
include : INCLUDE STRING ;
// M. Pragma Support
pragma : PRAGMA IDENTIFIER pragma_name* STRING? ;
pragma_name : IDENTIFIER | INT ;
// N. Declaring and Calling External Functions
extern : EXTERN IDENTIFIER ;
call : CALL IDENTIFIER call_arg+ ;
call_arg : addr | number ;
// Expressions (in order of precedence)
expression : LPAREN expression RPAREN #parenthesisExp
| sign expression #signedExp
| <assoc=right> expression POWER expression #powerExp
| expression ( TIMES | DIVIDE ) expression #mulDivExp
| expression ( PLUS | MINUS ) expression #addSubExp
| function LPAREN expression RPAREN #functionExp
| number #numberExp
| variable #variableExp
| addr #addrExp
;
function : SIN | COS | SQRT | EXP | CIS | IDENTIFIER;
sign : PLUS | MINUS ;
// Numbers
// We suffix -N onto these names so they don't conflict with already defined Python types
number : MINUS? ( realN | imaginaryN | I | PI ) ;
imaginaryN : realN I ;
realN : FLOAT | INT ;
////////////////////
// LEXER
////////////////////
// Keywords
DEFGATE : 'DEFGATE' ;
DEFCIRCUIT : 'DEFCIRCUIT' ;
MEASURE : 'MEASURE' ;
LABEL : 'LABEL' ;
HALT : 'HALT' ;
JUMP : 'JUMP' ;
JUMPWHEN : 'JUMP-WHEN' ;
JUMPUNLESS : 'JUMP-UNLESS' ;
RESET : 'RESET' ;
WAIT : 'WAIT' ;
NOP : 'NOP' ;
INCLUDE : 'INCLUDE' ;
PRAGMA : 'PRAGMA' ;
DECLARE : 'DECLARE' ;
SHARING : 'SHARING' ;
OFFSET : 'OFFSET' ;
NEG : 'NEG' ;
NOT : 'NOT' ;
TRUE : 'TRUE' ; // Deprecated
FALSE : 'FALSE' ; // Deprecated
AND : 'AND' ;
IOR : 'IOR' ;
XOR : 'XOR' ;
OR : 'OR' ; // Deprecated
ADD : 'ADD' ;
SUB : 'SUB' ;
MUL : 'MUL' ;
DIV : 'DIV' ;
MOVE : 'MOVE' ;
EXCHANGE : 'EXCHANGE' ;
CONVERT : 'CONVERT' ;
EQ : 'EQ';
GT : 'GT';
GE : 'GE';
LT : 'LT';
LE : 'LE';
LOAD : 'LOAD' ;
STORE : 'STORE' ;
PI : 'pi' ;
I : 'i' ;
SIN : 'SIN' ;
COS : 'COS' ;
SQRT : 'SQRT' ;
EXP : 'EXP' ;
CIS : 'CIS' ;
MATRIX : 'MATRIX' ;
PERMUTATION : 'PERMUTATION' ;
// Operators
PLUS : '+' ;
MINUS : '-' ;
TIMES : '*' ;
DIVIDE : '/' ;
POWER : '^' ;
// Modifiers
CONTROLLED : 'CONTROLLED' ;
DAGGER : 'DAGGER' ;
// Identifiers
IDENTIFIER : ( ( [A-Za-z_] ) | ( [A-Za-z_] [A-Za-z0-9\-_]* [A-Za-z0-9_] ) ) ;
// Numbers
INT : [0-9]+ ;
FLOAT : [0-9]+ ( '.' [0-9]+ )? ( ( 'e'|'E' ) ( '+' | '-' )? [0-9]+ )? ;
// String
STRING : '"' ~( '\n' | '\r' )* '"';
// Punctuation
PERIOD : '.' ;
COMMA : ',' ;
LPAREN : '(' ;
RPAREN : ')' ;
LBRACKET : '[' ;
RBRACKET : ']' ;
COLON : ':' ;
PERCENTAGE : '%' ;
AT : '@' ;
QUOTE : '"' ;
UNDERSCORE : '_' ;
// Whitespace
TAB : ' ' ;
NEWLINE : (' ' | '\t' )* ( '\r'? '\n' | '\r' )+ ;
// Skips
COMMENT : (' ' | '\t' )* '#' ~( '\n' | '\r' )* -> skip ;
SPACE : ' ' -> skip ;
// Error
INVALID : . ;