| 1 | /**
|
|---|
| 2 | * This file defines the syntax of CIVL's command line specification.
|
|---|
| 3 | * There are totally 7 commands, namely, config, compare, help,
|
|---|
| 4 | * replay, run, show, and verify.
|
|---|
| 5 | * There are a number of options to be chosen as well.
|
|---|
| 6 | *
|
|---|
| 7 | * The usage of the commands are as follows:
|
|---|
| 8 | * civl config
|
|---|
| 9 | * civl compare [option]* -spec [option]* file+ -impl [option]* file+
|
|---|
| 10 | * civl help [command]
|
|---|
| 11 | * civl replay [option]* file+ (replay for one program)
|
|---|
| 12 | * civl replay [option]* -spec [option]* file+ -impl [option]* file+
|
|---|
| 13 | * (replay for the comparison of two programs.)
|
|---|
| 14 | * civl run [option]* file+
|
|---|
| 15 | * civl show [option]* file+
|
|---|
| 16 | * civl verify [option]* file+
|
|---|
| 17 | */
|
|---|
| 18 | grammar Command;
|
|---|
| 19 |
|
|---|
| 20 | /* The top-level rule */
|
|---|
| 21 | start
|
|---|
| 22 | :
|
|---|
| 23 | 'help' (REPLAY | COMMAND | 'help' | 'config' | 'compare')? NEWLINE # help
|
|---|
| 24 | | 'compare' commonOption? specAndImplCommand NEWLINE #compare
|
|---|
| 25 | | (REPLAY | COMMAND) commandBody NEWLINE #normal
|
|---|
| 26 | | 'config' NEWLINE #config
|
|---|
| 27 | | REPLAY commonOption? specAndImplCommand NEWLINE #replayCompare
|
|---|
| 28 | ;
|
|---|
| 29 |
|
|---|
| 30 | specAndImplCommand
|
|---|
| 31 | : specCommand implCommand
|
|---|
| 32 | | implCommand specCommand
|
|---|
| 33 | ;
|
|---|
| 34 |
|
|---|
| 35 | commonOption
|
|---|
| 36 | :
|
|---|
| 37 | option+
|
|---|
| 38 | ;
|
|---|
| 39 |
|
|---|
| 40 | specCommand
|
|---|
| 41 | :
|
|---|
| 42 | SPEC commandBody
|
|---|
| 43 | ;
|
|---|
| 44 |
|
|---|
| 45 | implCommand
|
|---|
| 46 | :
|
|---|
| 47 | IMPL commandBody
|
|---|
| 48 | ;
|
|---|
| 49 |
|
|---|
| 50 | commandBody
|
|---|
| 51 | :
|
|---|
| 52 | option* file+
|
|---|
| 53 | ;
|
|---|
| 54 |
|
|---|
| 55 | option
|
|---|
| 56 | :
|
|---|
| 57 | OPTION_NAME ('=' value )? # normalOption
|
|---|
| 58 | | INPUT VAR '=' value # inputOption
|
|---|
| 59 | | MACRO VAR ('=' value)? # macroOption
|
|---|
| 60 | ;
|
|---|
| 61 |
|
|---|
| 62 | file
|
|---|
| 63 | :
|
|---|
| 64 | PATH
|
|---|
| 65 | ;
|
|---|
| 66 |
|
|---|
| 67 | value
|
|---|
| 68 | : BOOLEAN
|
|---|
| 69 | | VAR
|
|---|
| 70 | | NUMBER
|
|---|
| 71 | | PATH
|
|---|
| 72 | | STRING
|
|---|
| 73 | ;
|
|---|
| 74 |
|
|---|
| 75 | BOOLEAN
|
|---|
| 76 | : 'true' | 'false'
|
|---|
| 77 | ;
|
|---|
| 78 |
|
|---|
| 79 | NUMBER
|
|---|
| 80 | :
|
|---|
| 81 | [\-\+]?[0-9]+
|
|---|
| 82 | ;
|
|---|
| 83 |
|
|---|
| 84 | SPEC
|
|---|
| 85 | :'-spec'
|
|---|
| 86 | ;
|
|---|
| 87 |
|
|---|
| 88 | IMPL
|
|---|
| 89 | :'-impl'
|
|---|
| 90 | ;
|
|---|
| 91 |
|
|---|
| 92 | INPUT
|
|---|
| 93 | : '-input'
|
|---|
| 94 | ;
|
|---|
| 95 |
|
|---|
| 96 | MACRO
|
|---|
| 97 | : '-D'
|
|---|
| 98 | ;
|
|---|
| 99 |
|
|---|
| 100 | COMMAND:
|
|---|
| 101 | 'verify' | 'run' | 'show'
|
|---|
| 102 | ;
|
|---|
| 103 |
|
|---|
| 104 | REPLAY
|
|---|
| 105 | :
|
|---|
| 106 | 'replay'
|
|---|
| 107 | ;
|
|---|
| 108 |
|
|---|
| 109 | OPTION_NAME
|
|---|
| 110 | :
|
|---|
| 111 | '-_CIVL'
|
|---|
| 112 | | '-analyze_abs'
|
|---|
| 113 | | '-ast'
|
|---|
| 114 | | '-checkAssertion'
|
|---|
| 115 | | '-checkDivisionByZero'
|
|---|
| 116 | | '-checkMemoryLeak'
|
|---|
| 117 | | '-checkDeadlock'
|
|---|
| 118 | | '-checkCommErr'
|
|---|
| 119 | | '-checkConstWrite'
|
|---|
| 120 | | '-checkInputWrite'
|
|---|
| 121 | | '-checkInvalidCast'
|
|---|
| 122 | | '-checkMallocErr'
|
|---|
| 123 | | '-checkMpiErr'
|
|---|
| 124 | | '-checkOutOfBounds'
|
|---|
| 125 | | '-checkOutputRead'
|
|---|
| 126 | | '-checkPointerErr'
|
|---|
| 127 | | '-checkUndefVal'
|
|---|
| 128 | | '-checkUnionErr'
|
|---|
| 129 | | '-checkProcLeak'
|
|---|
| 130 | | '-checkSeqErr'
|
|---|
| 131 | | '-checkMemManageErr'
|
|---|
| 132 | | '-checkTermination'
|
|---|
| 133 | | '-collectHeaps'
|
|---|
| 134 | | '-collectOutput'
|
|---|
| 135 | | '-collectProcesses'
|
|---|
| 136 | | '-collectScopes'
|
|---|
| 137 | | '-collectSymbolicConstants'
|
|---|
| 138 | | '-debug'
|
|---|
| 139 | | '-disableLocalBlock'
|
|---|
| 140 | | '-dpor'
|
|---|
| 141 | | '-enablePrintf'
|
|---|
| 142 | | '-errorBound'
|
|---|
| 143 | | '-errorStateEquiv'
|
|---|
| 144 | | '-fair'
|
|---|
| 145 | | '-guided'
|
|---|
| 146 | | '-id'
|
|---|
| 147 | | '-int_bit'
|
|---|
| 148 | | '-direct'
|
|---|
| 149 | | '-loop'
|
|---|
| 150 | | '-memeq'
|
|---|
| 151 | | '-maxdepth'
|
|---|
| 152 | | '-min'
|
|---|
| 153 | | '-mpiContract'
|
|---|
| 154 | | '-mpi'
|
|---|
| 155 | | '-ompNoSimplify'
|
|---|
| 156 | | '-ompOnlySimplifier'
|
|---|
| 157 | | '-ompLoopDecomp'
|
|---|
| 158 | | '-preemptionBound'
|
|---|
| 159 | | '-preproc'
|
|---|
| 160 | | '-procBound'
|
|---|
| 161 | | '-prob'
|
|---|
| 162 | | '-maxProcs'
|
|---|
| 163 | | '-quiet'
|
|---|
| 164 | | '-intOperationTransformer'
|
|---|
| 165 | | '-random'
|
|---|
| 166 | | '-runtimeUpdate'
|
|---|
| 167 | | '-saveStates'
|
|---|
| 168 | | '-seed'
|
|---|
| 169 | | '-showMemoryUnits'
|
|---|
| 170 | | '-showAmpleSet'
|
|---|
| 171 | | '-showAmpleSetWtStates'
|
|---|
| 172 | | '-showInputs'
|
|---|
| 173 | | '-showMemoryUnits'
|
|---|
| 174 | | '-showModel'
|
|---|
| 175 | | '-showPathCondition'
|
|---|
| 176 | | '-showProgram'
|
|---|
| 177 | | '-showProverQueries'
|
|---|
| 178 | | '-showQueries'
|
|---|
| 179 | | '-showSavedStates'
|
|---|
| 180 | | '-showStates'
|
|---|
| 181 | | '-showTime'
|
|---|
| 182 | | '-showTransitions'
|
|---|
| 183 | | '-showUnreached'
|
|---|
| 184 | | '-simplify'
|
|---|
| 185 | | '-sliceAnalysis'
|
|---|
| 186 | | '-solve'
|
|---|
| 187 | | '-statelessPrintf'
|
|---|
| 188 | | '-strict'
|
|---|
| 189 | | '-svcomp16'
|
|---|
| 190 | | '-svcomp17'
|
|---|
| 191 | | '-sysIncludePath'
|
|---|
| 192 | | '-timeout'
|
|---|
| 193 | | '-testGen'
|
|---|
| 194 | | '-trace'
|
|---|
| 195 | | '-unpreproc'
|
|---|
| 196 | | '-userIncludePath'
|
|---|
| 197 | | '-verbose'
|
|---|
| 198 | | '-web'
|
|---|
| 199 | | '-witness'
|
|---|
| 200 | ;
|
|---|
| 201 |
|
|---|
| 202 | VAR
|
|---|
| 203 | :
|
|---|
| 204 | [_a-zA-Z] [_a-zA-Z0-9]*
|
|---|
| 205 | ;
|
|---|
| 206 |
|
|---|
| 207 | PATH
|
|---|
| 208 | :
|
|---|
| 209 | ([_a-zA-Z0-9\.\/])([_:a-zA-Z0-9\-\.\/])*
|
|---|
| 210 | ;
|
|---|
| 211 |
|
|---|
| 212 | NEWLINE
|
|---|
| 213 | : '\r'? '\n'
|
|---|
| 214 | ;
|
|---|
| 215 |
|
|---|
| 216 | STRING
|
|---|
| 217 | : '"' ~[ =\-\r\n\t]+ '"';
|
|---|
| 218 |
|
|---|
| 219 | WS
|
|---|
| 220 | : [ \t]+ -> skip
|
|---|
| 221 | ;
|
|---|