blob: 322036b2c209083f208f3df8cbe1e4869a39d6ca [file] [log] [blame]
Dan Gohman890c31c2008-05-22 22:45:03 +00001(*
2
3polygen grammar for LLVM assembly language.
4
5This file defines an LLVM assembly language grammar for polygen,
6which is a tool for generating random text based on a grammar.
7It is strictly syntax-based, and makes no attempt to generate
8IR that is semantically valid. Most of the IR produced doesn't
9pass the Verifier.
10
Dan Gohmana2858522010-08-04 17:01:59 +000011TODO: Metadata, in all its forms
Dan Gohmana2858522010-08-04 17:01:59 +000012
Dan Gohman890c31c2008-05-22 22:45:03 +000013*)
14
15I ::= "title: LLVM assembly language\n"
16 ^ "status: experimental\n"
17 ^ "audience: LLVM developers\n"
18;
19
20S ::= Module ;
21
22(*
23Define rules for non-keyword tokens. This is currently just a bunch
24of hacks. They don't cover many valid forms of tokens, and they also
25generate some invalid forms of tokens. The LLVM parser has custom
26C++ code to lex these; custom C++ code for emitting them would be
27convenient, but polygen doesn't support that.
28*)
29NonZeroDecimalDigit ::= 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 ;
30DecimalDigit ::= 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 ;
31DecimalDigitSeq ::= DecimalDigit [^ DecimalDigitSeq ];
32HexDigit ::= 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
33 | a | b | c | d | e | f ;
34HexDigitSeq ::= HexDigit [^ HexDigitSeq ];
35StringChar ::= a | b | c | d | e | f | g | h | i | j | k | l | m
36 | n | o | p | q | r | s | t | u | v | w | x | y | z ;
37StringConstantSeq ::= StringChar [^ StringConstantSeq ];
38StringConstant ::= StringChar [^ StringConstantSeq ];
39EUINT64VAL ::= NonZeroDecimalDigit [^ DecimalDigitSeq ];
40ESINT64VAL ::= [ "-" ] ^ EUINT64VAL ;
41EUAPINTVAL ::= EUINT64VAL ;
42ESAPINTVAL ::= ESINT64VAL ;
43LOCALVALID ::= "%" ^ DecimalDigitSeq ;
44GLOBALVALID ::= "@" ^ DecimalDigitSeq ;
45INTTYPE ::= "i" ^ EUINT64VAL ;
46GLOBALVAR ::= "@" ^ StringConstant ;
47LOCALVAR ::= "%" ^ StringConstant ;
48STRINGCONSTANT ::= "\"" ^ StringConstant ^ "\"" ;
49ATSTRINGCONSTANT ::= "@" ^ STRINGCONSTANT ;
50PCTSTRINGCONSTANT ::= "%" ^ STRINGCONSTANT ;
51LABELSTR ::= StringConstant ;
52FPVAL ::= ESAPINTVAL ^ "." ^ EUAPINTVAL | "0x" ^ HexDigitSeq ;
53
54(*
55The rest of this file is derived directly from llvmAsmParser.y.
56*)
57
Dan Gohmanbfacb7e2009-07-22 22:45:30 +000058ArithmeticOps ::= + OptNW add | fadd | OptNW sub | fsub | OptNW mul | fmul |
59 udiv | OptExact sdiv | fdiv | urem | srem | frem ;
Dan Gohman890c31c2008-05-22 22:45:03 +000060LogicalOps ::= shl | lshr | ashr | and | or | xor;
61CastOps ::= trunc | zext | sext | fptrunc | fpext | bitcast |
62 uitofp | sitofp | fptoui | fptosi | inttoptr | ptrtoint ;
63
64IPredicates ::= eq | ne | slt | sgt | sle | sge | ult | ugt | ule | uge ;
65
66FPredicates ::= oeq | one | olt | ogt | ole | oge | ord | uno | ueq | une
67 | ult | ugt | ule | uge | true | false ;
68
69IntType ::= INTTYPE;
70FPType ::= float | double | "ppc_fp128" | fp128 | "x86_fp80";
71
72LocalName ::= LOCALVAR | STRINGCONSTANT | PCTSTRINGCONSTANT ;
73OptLocalName ::= LocalName | _ ;
74
Dan Gohman8f56eba2009-01-05 17:29:42 +000075OptAddrSpace ::= - addrspace ^ "(" ^ EUINT64VAL ^ ")" | _ ;
Dan Gohman890c31c2008-05-22 22:45:03 +000076
77OptLocalAssign ::= LocalName "=" | _ ;
78
79GlobalName ::= GLOBALVAR | ATSTRINGCONSTANT ;
80
81OptGlobalAssign ::= GlobalAssign | _ ;
82
83GlobalAssign ::= GlobalName "=" ;
84
85GVInternalLinkage
86 ::= + internal
87 | weak
Duncan Sands667d4b82009-03-07 15:45:40 +000088 | "weak_odr"
Dan Gohman890c31c2008-05-22 22:45:03 +000089 | linkonce
Duncan Sands667d4b82009-03-07 15:45:40 +000090 | "linkonce_odr"
Dan Gohman890c31c2008-05-22 22:45:03 +000091 | appending
92 | dllexport
93 | common
Dan Gohman923a5792009-07-17 01:07:45 +000094 | private
Dan Gohmana2858522010-08-04 17:01:59 +000095 | "linker_private"
96 | "linker_private_weak"
Dan Gohman890c31c2008-05-22 22:45:03 +000097 ;
98
99GVExternalLinkage
100 ::= dllimport
101 | "extern_weak"
102 | + external
103 ;
104
105GVVisibilityStyle
106 ::= + _
107 | default
108 | hidden
109 | protected
110 ;
111
112FunctionDeclareLinkage
113 ::= + _
114 | dllimport
115 | "extern_weak"
116 ;
117
118FunctionDefineLinkage
119 ::= + _
120 | internal
121 | linkonce
Duncan Sands667d4b82009-03-07 15:45:40 +0000122 | "linkonce_odr"
Dan Gohman890c31c2008-05-22 22:45:03 +0000123 | weak
Duncan Sands667d4b82009-03-07 15:45:40 +0000124 | "weak_odr"
Dan Gohman890c31c2008-05-22 22:45:03 +0000125 | dllexport
126 ;
127
Duncan Sands667d4b82009-03-07 15:45:40 +0000128AliasLinkage ::= + _ | weak | "weak_odr" | internal ;
Dan Gohman890c31c2008-05-22 22:45:03 +0000129
130OptCallingConv ::= + _ |
131 ccc |
132 fastcc |
133 coldcc |
134 "x86_stdcallcc" |
135 "x86_fastcallcc" |
136 cc EUINT64VAL ;
137
138ParamAttr ::= zeroext
Dan Gohman890c31c2008-05-22 22:45:03 +0000139 | signext
Dan Gohman890c31c2008-05-22 22:45:03 +0000140 | inreg
141 | sret
142 | noalias
Dan Gohman571238a2009-01-05 03:21:23 +0000143 | nocapture
Dan Gohman890c31c2008-05-22 22:45:03 +0000144 | byval
145 | nest
146 | align EUINT64VAL
147 ;
148
149OptParamAttrs ::= + _ | OptParamAttrs ParamAttr ;
150
Dan Gohman571238a2009-01-05 03:21:23 +0000151RetAttr ::= inreg
152 | zeroext
153 | signext
154 | noalias
155 ;
156
157OptRetAttrs ::= _
158 | OptRetAttrs RetAttr
159 ;
160
Dan Gohman890c31c2008-05-22 22:45:03 +0000161FuncAttr ::= noreturn
162 | nounwind
Dan Gohman571238a2009-01-05 03:21:23 +0000163 | inreg
Dan Gohman890c31c2008-05-22 22:45:03 +0000164 | zeroext
165 | signext
166 | readnone
167 | readonly
Jakob Stoklund Olesen570a4a52010-02-06 01:16:28 +0000168 | inlinehint
Dan Gohmanc235a0c2010-03-01 17:53:39 +0000169 | alignstack
Dan Gohman571238a2009-01-05 03:21:23 +0000170 | noinline
171 | alwaysinline
172 | optsize
173 | ssp
174 | sspreq
Rafael Espindolab3c4e262011-10-04 03:08:43 +0000175 | returns_twice
John McCall3a3465b2011-06-15 20:36:13 +0000176 | nonlazybind
Kostya Serebryany164b86b2012-01-20 17:56:17 +0000177 | address_safety
Dan Gohman890c31c2008-05-22 22:45:03 +0000178 ;
179
180OptFuncAttrs ::= + _ | OptFuncAttrs FuncAttr ;
181
182OptGC ::= + _ | gc STRINGCONSTANT ;
183
184OptAlign ::= + _ | align EUINT64VAL ;
185OptCAlign ::= + _ | ^ "," align EUINT64VAL ;
186
187SectionString ::= section STRINGCONSTANT ;
188
189OptSection ::= + _ | SectionString ;
190
191GlobalVarAttributes ::= + _ | ^ "," GlobalVarAttribute GlobalVarAttributes ;
192GlobalVarAttribute ::= SectionString | align EUINT64VAL ;
193
194PrimType ::= INTTYPE | float | double | "ppc_fp128" | fp128 | "x86_fp80"
195 | - label ;
196
197Types
198 ::= opaque
199 | PrimType
200 | Types OptAddrSpace ^ "*"
201 | SymbolicValueRef
202 | "\\" ^ EUINT64VAL
203 | Types "(" ^ ArgTypeListI ^ ")" OptFuncAttrs
204 | void "(" ^ ArgTypeListI ^ ")" OptFuncAttrs
205 | "[" ^ EUINT64VAL "x" Types ^ "]"
206 | "<" ^ EUINT64VAL "x" Types ^ ">"
207 | "{" TypeListI "}"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000208 | "{" ^ "}"
Dan Gohman890c31c2008-05-22 22:45:03 +0000209 | "<" ^ "{" TypeListI "}" ^ ">"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000210 | "<" ^ "{" ^ "}" ^ ">"
Dan Gohman890c31c2008-05-22 22:45:03 +0000211 ;
212
213ArgType ::= Types OptParamAttrs ;
214
215ResultTypes ::= Types | void ;
216
217ArgTypeList ::= ArgType | ArgTypeList ^ "," ArgType ;
218
219ArgTypeListI ::= ArgTypeList | ArgTypeList ^ "," "..." | "..." | _ ;
220
221TypeListI ::= Types | TypeListI ^ "," Types ;
222
223ConstVal::= Types "[" ^ ConstVector ^ "]"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000224 | Types "[" ^ "]"
Dan Gohman890c31c2008-05-22 22:45:03 +0000225 | Types "c" ^ STRINGCONSTANT
226 | Types "<" ^ ConstVector ^ ">"
227 | Types "{" ConstVector "}"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000228 | Types "{" ^ "}"
Dan Gohman890c31c2008-05-22 22:45:03 +0000229 | Types "<" ^ "{" ConstVector "}" ^ ">"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000230 | Types "<" ^ "{" ^ "}" ^ ">"
Dan Gohman890c31c2008-05-22 22:45:03 +0000231 | Types null
232 | Types undef
233 | Types SymbolicValueRef
234 | Types ConstExpr
235 | Types zeroinitializer
Dan Gohman571238a2009-01-05 03:21:23 +0000236 | Types ESINT64VAL
237 | Types ESAPINTVAL
238 | Types EUINT64VAL
239 | Types EUAPINTVAL
240 | Types true
241 | Types false
242 | Types FPVAL ;
Dan Gohman890c31c2008-05-22 22:45:03 +0000243
244ConstExpr::= CastOps "(" ^ ConstVal to Types ^ ")"
Dan Gohman224251d2009-07-27 21:55:32 +0000245 | getelementptr OptInBounds "(" ^ ConstVal IndexList ^ ")"
Dan Gohman890c31c2008-05-22 22:45:03 +0000246 | select "(" ^ ConstVal ^ "," ConstVal ^ "," ConstVal ^ ")"
247 | ArithmeticOps "(" ^ ConstVal ^ "," ConstVal ^ ")"
248 | LogicalOps "(" ^ ConstVal ^ "," ConstVal ^ ")"
249 | icmp IPredicates "(" ^ ConstVal ^ "," ConstVal ^ ")"
250 | fcmp FPredicates "(" ^ ConstVal ^ "," ConstVal ^ ")"
Dan Gohman890c31c2008-05-22 22:45:03 +0000251 | extractelement "(" ^ ConstVal ^ "," ConstVal ^ ")"
252 | insertelement "(" ^ ConstVal ^ "," ConstVal ^ "," ConstVal ^ ")"
Dan Gohmane4977cf2008-05-23 01:55:30 +0000253 | shufflevector "(" ^ ConstVal ^ "," ConstVal ^ "," ConstVal ^ ")"
Dan Gohman34e71fe2008-06-02 19:47:09 +0000254 | extractvalue "(" ^ ConstVal ^ ConstantIndexList ^ ")"
255 | insertvalue "(" ^ ConstVal ^ "," ConstVal ^ ConstantIndexList ^ ")" ;
Dan Gohman890c31c2008-05-22 22:45:03 +0000256
257ConstVector ::= ConstVector ^ "," ConstVal | ConstVal ;
258
259GlobalType ::= global | constant ;
260
261ThreadLocal ::= - "thread_local" | _ ;
262
263AliaseeRef ::= ResultTypes SymbolicValueRef
264 | bitcast "(" ^ AliaseeRef to Types ^ ")" ;
265
266Module ::= +++ DefinitionList | --- _ ;
267
268DefinitionList ::= - Definition | + DefinitionList Definition ;
269
270Definition
271 ::= ^ ( +++++ define Function
272 | declare FunctionProto
273 | - module asm AsmBlock
274 | OptLocalAssign type Types
Dan Gohmande0e7f22009-01-05 23:03:03 +0000275 | OptGlobalAssign GVVisibilityStyle ThreadLocal OptAddrSpace GlobalType
Dan Gohman8f56eba2009-01-05 17:29:42 +0000276 ConstVal GlobalVarAttributes
277 | OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal OptAddrSpace
278 GlobalType ConstVal GlobalVarAttributes
279 | OptGlobalAssign GVExternalLinkage GVVisibilityStyle ThreadLocal OptAddrSpace
280 GlobalType Types GlobalVarAttributes
Dan Gohman890c31c2008-05-22 22:45:03 +0000281 | OptGlobalAssign GVVisibilityStyle alias AliasLinkage AliaseeRef
282 | target TargetDefinition
283 | deplibs "=" LibrariesDefinition
284 ) ^ "\n";
285
286AsmBlock ::= STRINGCONSTANT ;
287
288TargetDefinition ::= triple "=" STRINGCONSTANT
289 | datalayout "=" STRINGCONSTANT ;
290
Dan Gohman8f56eba2009-01-05 17:29:42 +0000291LibrariesDefinition ::= "[" ( LibList | _ ) "]";
Dan Gohman890c31c2008-05-22 22:45:03 +0000292
Dan Gohman8f56eba2009-01-05 17:29:42 +0000293LibList ::= LibList ^ "," STRINGCONSTANT | STRINGCONSTANT ;
Dan Gohman890c31c2008-05-22 22:45:03 +0000294
295ArgListH ::= ArgListH ^ "," Types OptParamAttrs OptLocalName
296 | Types OptParamAttrs OptLocalName ;
297
298ArgList ::= ArgListH | ArgListH ^ "," "..." | "..." | _ ;
299
Dan Gohman571238a2009-01-05 03:21:23 +0000300FunctionHeaderH ::= OptCallingConv OptRetAttrs ResultTypes
Dan Gohman8f56eba2009-01-05 17:29:42 +0000301 GlobalName ^ "(" ^ ArgList ^ ")"
Dan Gohman571238a2009-01-05 03:21:23 +0000302 OptFuncAttrs OptSection OptAlign OptGC ;
Dan Gohman890c31c2008-05-22 22:45:03 +0000303
304BEGIN ::= ( begin | "{" ) ^ "\n";
305
306FunctionHeader ::=
307 FunctionDefineLinkage GVVisibilityStyle FunctionHeaderH BEGIN ;
308
309END ::= ^ ( end | "}" ) ^ "\n";
310
311Function ::= BasicBlockList END ;
312
313FunctionProto ::= FunctionDeclareLinkage GVVisibilityStyle FunctionHeaderH ;
314
315OptSideEffect ::= _ | sideeffect ;
316
317ConstValueRef ::= ESINT64VAL
318 | EUINT64VAL
319 | FPVAL
320 | true
321 | false
322 | null
323 | undef
324 | zeroinitializer
325 | "<" ConstVector ">"
Dan Gohmanf910eaa2008-06-09 14:45:02 +0000326 | "[" ConstVector "]"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000327 | "[" ^ "]"
Dan Gohmanf910eaa2008-06-09 14:45:02 +0000328 | "c" ^ STRINGCONSTANT
329 | "{" ConstVector "}"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000330 | "{" ^ "}"
Dan Gohmanf910eaa2008-06-09 14:45:02 +0000331 | "<" ^ "{" ConstVector "}" ^ ">"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000332 | "<" ^ "{" ^ "}" ^ ">"
Dan Gohman890c31c2008-05-22 22:45:03 +0000333 | ConstExpr
334 | asm OptSideEffect STRINGCONSTANT ^ "," STRINGCONSTANT ;
335
336SymbolicValueRef ::= LOCALVALID
337 | GLOBALVALID
338 | LocalName
339 | GlobalName ;
340
341ValueRef ::= SymbolicValueRef | ConstValueRef;
342
343ResolvedVal ::= Types ValueRef ;
344
345ReturnedVal ::= ResolvedVal | ReturnedVal ^ "," ResolvedVal ;
346
347BasicBlockList ::= BasicBlockList BasicBlock | FunctionHeader BasicBlock ;
348
349BasicBlock ::= InstructionList OptLocalAssign BBTerminatorInst ;
350
351InstructionList ::= +++ InstructionList Inst
352 | - _
353 | ^ LABELSTR ^ ":\n" ;
354
355BBTerminatorInst ::= ^ " " ^
356 ( ret ReturnedVal
357 | ret void
358 | br label ValueRef
359 | br INTTYPE ValueRef ^ "," label ValueRef ^ "," label ValueRef
360 | switch IntType ValueRef ^ "," label ValueRef "[" JumpTable "]"
Dan Gohman0d58eb62008-09-15 16:10:51 +0000361 | switch IntType ValueRef ^ "," label ValueRef "[" ^ "]"
362 | invoke OptCallingConv ResultTypes ValueRef ^ "(" ^ ParamList ^ ")"
363 OptFuncAttrs
Dan Gohman890c31c2008-05-22 22:45:03 +0000364 to label ValueRef unwind label ValueRef
365 | unwind
366 | unreachable ) ^ "\n";
367
368JumpTable ::= JumpTable IntType ConstValueRef ^ "," label ValueRef
369 | IntType ConstValueRef ^ "," label ValueRef ;
370
371Inst ::= ^ " " ^ OptLocalAssign InstVal ^ "\n";
372
373PHIList ::= Types "[" ValueRef ^ "," ValueRef "]"
374 | PHIList ^ "," "[" ValueRef ^ "," ValueRef "]" ;
375
376ParamList ::= Types OptParamAttrs ValueRef OptParamAttrs
377 | label OptParamAttrs ValueRef OptParamAttrs
378 | ParamList ^ "," Types OptParamAttrs ValueRef OptParamAttrs
379 | ParamList ^ "," label OptParamAttrs ValueRef OptParamAttrs
380 | - _ ;
381
382IndexList ::= _ | IndexList ^ "," ResolvedVal ;
383
Dan Gohman34e71fe2008-06-02 19:47:09 +0000384ConstantIndexList ::= "," EUINT64VAL | ConstantIndexList ^ "," EUINT64VAL ;
385
Dan Gohman890c31c2008-05-22 22:45:03 +0000386OptTailCall ::= tail call | call ;
387
388InstVal ::=
389 ArithmeticOps Types ValueRef ^ "," ValueRef
390 | LogicalOps Types ValueRef ^ "," ValueRef
391 | icmp IPredicates Types ValueRef ^ "," ValueRef
392 | fcmp FPredicates Types ValueRef ^ "," ValueRef
Dan Gohman890c31c2008-05-22 22:45:03 +0000393 | CastOps ResolvedVal to Types
394 | select ResolvedVal ^ "," ResolvedVal ^ "," ResolvedVal
Dan Gohmanb737a642008-05-23 17:11:55 +0000395 | "va_arg" ResolvedVal ^ "," Types
Dan Gohman890c31c2008-05-22 22:45:03 +0000396 | extractelement ResolvedVal ^ "," ResolvedVal
397 | insertelement ResolvedVal ^ "," ResolvedVal ^ "," ResolvedVal
398 | shufflevector ResolvedVal ^ "," ResolvedVal ^ "," ResolvedVal
399 | phi PHIList
Dan Gohman0d58eb62008-09-15 16:10:51 +0000400 | OptTailCall OptCallingConv ResultTypes ValueRef ^ "(" ^ ParamList ^ ")"
Dan Gohman890c31c2008-05-22 22:45:03 +0000401 OptFuncAttrs
402 | MemoryInst ;
403
404OptVolatile ::= - volatile | _ ;
Dan Gohmanbfacb7e2009-07-22 22:45:30 +0000405OptExact ::= - exact | _ ;
406OptNSW ::= - nsw | _ ;
407OptNUW ::= - nuw | _ ;
Dan Gohmand622b0b2010-05-04 00:13:24 +0000408OptNW ::= OptNUW OptNSW | OptNSW OptNUW ;
Dan Gohman224251d2009-07-27 21:55:32 +0000409OptInBounds ::= - inbounds | _ ;
Dan Gohman890c31c2008-05-22 22:45:03 +0000410
411MemoryInst ::= malloc Types OptCAlign
412 | malloc Types ^ "," INTTYPE ValueRef OptCAlign
413 | alloca Types OptCAlign
414 | alloca Types ^ "," INTTYPE ValueRef OptCAlign
415 | free ResolvedVal
416 | OptVolatile load Types ValueRef OptCAlign
417 | OptVolatile store ResolvedVal ^ "," Types ValueRef OptCAlign
418 | getresult Types ValueRef ^ "," EUINT64VAL
Dan Gohman224251d2009-07-27 21:55:32 +0000419 | getelementptr OptInBounds Types ValueRef IndexList
Dan Gohman34e71fe2008-06-02 19:47:09 +0000420 | extractvalue Types ValueRef ^ ConstantIndexList
421 | insertvalue Types ValueRef ^ "," Types ValueRef ^ ConstantIndexList ;