GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/parser/smt2/smt2.h Lines: 21 33 63.6 %
Date: 2021-11-07 Branches: 29 78 37.2 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds, Andres Noetzli, Morgan Deters
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8
 * in the top-level source directory and their institutional affiliations.
9
 * All rights reserved.  See the file COPYING in the top-level source
10
 * directory for licensing information.
11
 * ****************************************************************************
12
 *
13
 * Definitions of SMT2 constants.
14
 */
15
16
#include "cvc5parser_private.h"
17
18
#ifndef CVC5__PARSER__SMT2_H
19
#define CVC5__PARSER__SMT2_H
20
21
#include <sstream>
22
#include <stack>
23
#include <string>
24
#include <unordered_map>
25
#include <utility>
26
27
#include "api/cpp/cvc5.h"
28
#include "parser/parse_op.h"
29
#include "parser/parser.h"
30
#include "theory/logic_info.h"
31
32
namespace cvc5 {
33
34
class Command;
35
36
namespace api {
37
class Solver;
38
}
39
40
namespace parser {
41
42
class Smt2 : public Parser
43
{
44
  friend class ParserBuilder;
45
46
 private:
47
  /** Has the logic been set (either by forcing it or a set-logic command)? */
48
  bool d_logicSet;
49
  /** Have we seen a set-logic command yet? */
50
  bool d_seenSetLogic;
51
52
  LogicInfo d_logic;
53
  std::unordered_map<std::string, api::Kind> d_operatorKindMap;
54
  /**
55
   * Maps indexed symbols to the kind of the operator (e.g. "extract" to
56
   * BITVECTOR_EXTRACT).
57
   */
58
  std::unordered_map<std::string, api::Kind> d_indexedOpKindMap;
59
  std::pair<api::Term, std::string> d_lastNamedTerm;
60
  /**
61
   * A list of sygus grammar objects. We keep track of them here to ensure that
62
   * they don't get deleted before the commands using them get invoked.
63
   */
64
  std::vector<std::unique_ptr<api::Grammar>> d_allocGrammars;
65
66
 protected:
67
  Smt2(api::Solver* solver,
68
       SymbolManager* sm,
69
       bool strictMode = false,
70
       bool parseOnly = false);
71
72
 public:
73
  ~Smt2();
74
75
  /**
76
   * Add core theory symbols to the parser state.
77
   */
78
  void addCoreSymbols();
79
80
  void addOperator(api::Kind k, const std::string& name);
81
82
  /**
83
   * Registers an indexed function symbol.
84
   *
85
   * @param tKind The kind of the term that uses the operator kind (e.g.
86
   *              BITVECTOR_EXTRACT). NOTE: this is an internal kind for now
87
   *              because that is what we use to create expressions. Eventually
88
   *              it will be an api::Kind.
89
   * @param opKind The kind of the operator term (e.g. BITVECTOR_EXTRACT)
90
   * @param name The name of the symbol (e.g. "extract")
91
   */
92
  void addIndexedOperator(api::Kind tKind,
93
                          api::Kind opKind,
94
                          const std::string& name);
95
96
  api::Kind getOperatorKind(const std::string& name) const;
97
98
  bool isOperatorEnabled(const std::string& name) const;
99
100
  bool isTheoryEnabled(theory::TheoryId theory) const;
101
102
  /**
103
   * Checks if higher-order support is enabled.
104
   *
105
   * @return true if higher-order support is enabled, false otherwise
106
   */
107
  bool isHoEnabled() const;
108
  /**
109
   * @return true if cardinality constraints are enabled, false otherwise
110
   */
111
  bool hasCardinalityConstraints() const;
112
113
  bool logicIsSet() override;
114
115
  /**
116
   * Creates an indexed constant, e.g. (_ +oo 8 24) (positive infinity
117
   * as a 32-bit floating-point constant).
118
   *
119
   * @param name The name of the constant (e.g. "+oo")
120
   * @param numerals The parameters for the constant (e.g. [8, 24])
121
   * @return The term corresponding to the constant or a parse error if name is
122
   *         not valid.
123
   */
124
  api::Term mkIndexedConstant(const std::string& name,
125
                              const std::vector<uint64_t>& numerals);
126
127
  /**
128
   * Creates an indexed operator kind, e.g. BITVECTOR_EXTRACT for "extract".
129
   *
130
   * @param name The name of the operator (e.g. "extract")
131
   * @return The kind corresponding to the indexed operator or a parse
132
   *         error if the name is not valid.
133
   */
134
  api::Kind getIndexedOpKind(const std::string& name);
135
136
  /**
137
   * Returns the expression that name should be interpreted as.
138
   */
139
  api::Term getExpressionForNameAndType(const std::string& name,
140
                                        api::Sort t) override;
141
142
  /**
143
   * If we are in a version < 2.6, this updates name to the tester name of cons,
144
   * e.g. "is-cons".
145
   */
146
  bool getTesterName(api::Term cons, std::string& name) override;
147
148
  /** Make function defined by a define-fun(s)-rec command.
149
   *
150
   * fname : the name of the function.
151
   * sortedVarNames : the list of variable arguments for the function.
152
   * t : the range type of the function we are defining.
153
   *
154
   * This function will create a bind a new function term to name fname.
155
   * The type of this function is
156
   * Parser::mkFlatFunctionType(sorts,t,flattenVars),
157
   * where sorts are the types in the second components of sortedVarNames.
158
   * As descibed in Parser::mkFlatFunctionType, new bound variables may be
159
   * added to flattenVars in this function if the function is given a function
160
   * range type.
161
   */
162
  api::Term bindDefineFunRec(
163
      const std::string& fname,
164
      const std::vector<std::pair<std::string, api::Sort>>& sortedVarNames,
165
      api::Sort t,
166
      std::vector<api::Term>& flattenVars);
167
168
  /** Push scope for define-fun-rec
169
   *
170
   * This calls Parser::pushScope() and sets up
171
   * initial information for reading a body of a function definition
172
   * in the define-fun-rec and define-funs-rec command.
173
   * The input parameters func/flattenVars are the result
174
   * of a call to mkDefineRec above.
175
   *
176
   * func : the function whose body we are defining.
177
   * sortedVarNames : the list of variable arguments for the function.
178
   * flattenVars : the implicit variables introduced when defining func.
179
   *
180
   * This function:
181
   * (1) Calls Parser::pushScope().
182
   * (2) Computes the bound variable list for the quantified formula
183
   *     that defined this definition and stores it in bvs.
184
   */
185
  void pushDefineFunRecScope(
186
      const std::vector<std::pair<std::string, api::Sort>>& sortedVarNames,
187
      api::Term func,
188
      const std::vector<api::Term>& flattenVars,
189
      std::vector<api::Term>& bvs);
190
191
  void reset() override;
192
193
  /**
194
   * Creates a command that adds an invariant constraint.
195
   *
196
   * @param names Name of four symbols corresponding to the
197
   *              function-to-synthesize, precondition, postcondition,
198
   *              transition relation.
199
   * @return The command that adds an invariant constraint
200
   */
201
  std::unique_ptr<Command> invConstraint(const std::vector<std::string>& names);
202
203
  /**
204
   * Sets the logic for the current benchmark. Declares any logic and
205
   * theory symbols.
206
   *
207
   * @param name the name of the logic (e.g., QF_UF, AUFLIA)
208
   * @param fromCommand should be set to true if the request originates from a
209
   *                    set-logic command and false otherwise
210
   * @return the command corresponding to setting the logic (if fromCommand
211
   * is true), and nullptr otherwise.
212
   */
213
  Command* setLogic(std::string name, bool fromCommand = true);
214
215
  /**
216
   * Get the logic.
217
   */
218
  const LogicInfo& getLogic() const { return d_logic; }
219
220
  /**
221
   * Create a Sygus grammar.
222
   * @param boundVars the parameters to corresponding synth-fun/synth-inv
223
   * @param ntSymbols the pre-declaration of the non-terminal symbols
224
   * @return a pointer to the grammar
225
   */
226
  api::Grammar* mkGrammar(const std::vector<api::Term>& boundVars,
227
                          const std::vector<api::Term>& ntSymbols);
228
229
  /**
230
   * Are we using smtlib 2.6 or above? If exact=true, then this method returns
231
   * false if the input language is not exactly SMT-LIB 2.6.
232
   */
233
528578
  bool v2_6(bool exact = false) const
234
  {
235
528578
    return d_solver->getOption("input-language") == "LANG_SMTLIB_V2_6";
236
  }
237
  /** Are we using a sygus language? */
238
  bool sygus() const;
239
240
  /**
241
   * Returns true if the language that we are parsing (SMT-LIB version >=2.5
242
   * and SyGuS) treats duplicate double quotes ("") as an escape sequence
243
   * denoting a single double quote (").
244
   */
245
512926
  bool escapeDupDblQuote() const { return v2_6() || sygus(); }
246
247
  void checkThatLogicIsSet();
248
249
  /**
250
   * Checks whether the current logic allows free sorts. If the logic does not
251
   * support free sorts, the function triggers a parse error.
252
   */
253
  void checkLogicAllowsFreeSorts();
254
255
  /**
256
   * Checks whether the current logic allows functions of non-zero arity. If
257
   * the logic does not support such functions, the function triggers a parse
258
   * error.
259
   */
260
  void checkLogicAllowsFunctions();
261
262
117751
  void checkUserSymbol(const std::string& name)
263
  {
264
117751
    if (name.length() > 0 && (name[0] == '.' || name[0] == '@'))
265
    {
266
      std::stringstream ss;
267
      ss << "cannot declare or define symbol `" << name
268
         << "'; symbols starting with . and @ are reserved in SMT-LIB";
269
      parseError(ss.str());
270
    }
271
117751
    else if (isOperatorEnabled(name))
272
    {
273
4
      std::stringstream ss;
274
2
      ss << "Symbol `" << name << "' is shadowing a theory function symbol";
275
4
      parseError(ss.str());
276
    }
277
117749
  }
278
279
  void includeFile(const std::string& filename);
280
281
4921
  void setLastNamedTerm(api::Term e, std::string name)
282
  {
283
4921
    d_lastNamedTerm = std::make_pair(e, name);
284
4921
  }
285
286
79789
  void clearLastNamedTerm()
287
  {
288
79789
    d_lastNamedTerm = std::make_pair(api::Term(), "");
289
79789
  }
290
291
84673
  std::pair<api::Term, std::string> lastNamedTerm() { return d_lastNamedTerm; }
292
293
  /** Does name denote an abstract value? (of the form '@n' for numeral n). */
294
  bool isAbstractValue(const std::string& name);
295
296
  /** Make abstract value
297
   *
298
   * Abstract values are used for processing get-value calls. The argument
299
   * name should be such that isAbstractValue(name) is true.
300
   */
301
  api::Term mkAbstractValue(const std::string& name);
302
303
  /**
304
   * Smt2 parser provides its own checkDeclaration, which does the
305
   * same as the base, but with some more helpful errors.
306
   */
307
5726875
  void checkDeclaration(const std::string& name,
308
                        DeclarationCheck check,
309
                        SymbolType type = SYM_VARIABLE,
310
                        std::string notes = "")
311
  {
312
    // if the symbol is something like "-1", we'll give the user a helpful
313
    // syntax hint.  (-1 is a valid identifier in SMT-LIB, NOT unary minus.)
314
16469043
    if (name.length() > 1 && name[0] == '-'
315
5726876
        && name.find_first_not_of("0123456789", 1) == std::string::npos)
316
    {
317
      std::stringstream ss;
318
      ss << notes << "You may have intended to apply unary minus: `(- "
319
         << name.substr(1) << ")'\n";
320
      this->Parser::checkDeclaration(name, check, type, ss.str());
321
      return;
322
    }
323
5726900
    this->Parser::checkDeclaration(name, check, type, notes);
324
  }
325
  /**
326
   * Notify that expression expr was given name std::string via a :named
327
   * attribute.
328
   */
329
  void notifyNamedExpression(api::Term& expr, std::string name);
330
331
  // Throw a ParserException with msg appended with the current logic.
332
  inline void parseErrorLogic(const std::string& msg)
333
  {
334
    const std::string withLogic = msg + getLogic().getLogicString();
335
    parseError(withLogic);
336
  }
337
338
  //------------------------- processing parse operators
339
  /**
340
   * Given a parse operator p, apply a type ascription to it. This method is run
341
   * when we encounter "(as t type)" and information regarding t has been stored
342
   * in p.
343
   *
344
   * This updates p to take into account the ascription. This may include:
345
   * - Converting an (pre-ascribed) array constant specification "const" to
346
   * an ascribed array constant specification (as const type) where type is
347
   * (Array T1 T2) for some T1, T2.
348
   * - Converting a (nullary or non-nullary) parametric datatype constructor to
349
   * the specialized constructor for the given type.
350
   * - Converting an empty set, universe set, or separation nil reference to
351
   * the respective term of the given type.
352
   * - If p's expression field is set, then we leave p unchanged, check if
353
   * that expression has the given type and throw a parse error otherwise.
354
   */
355
  void parseOpApplyTypeAscription(ParseOp& p, api::Sort type);
356
  /**
357
   * This converts a ParseOp to expression, assuming it is a standalone term.
358
   *
359
   * In particular:
360
   * - If p's expression field is set, then that expression is returned.
361
   * - If p's name field is set, then we look up that name in the symbol table
362
   * of this class.
363
   * In other cases, a parse error is thrown.
364
   */
365
  api::Term parseOpToExpr(ParseOp& p);
366
  /**
367
   * Apply parse operator to list of arguments, and return the resulting
368
   * expression.
369
   *
370
   * This method involves two phases.
371
   * (1) Processing the operator represented by p,
372
   * (2) Applying that operator to the set of arguments.
373
   *
374
   * For (1), this involves determining the kind of the overall expression. We
375
   * may be in one the following cases:
376
   * - If p's expression field is set, we may choose to prepend it to args, or
377
   * otherwise determine the appropriate kind of the overall expression based on
378
   * this expression.
379
   * - If p's name field is set, then we get the appropriate symbol for that
380
   * name, which may involve disambiguating that name if it is overloaded based
381
   * on the types of args. We then determine the overall kind of the return
382
   * expression based on that symbol.
383
   * - p's kind field may be already set.
384
   *
385
   * For (2), we construct the overall expression, which may involve the
386
   * following:
387
   * - If p is an array constant specification (as const (Array T1 T2)), then
388
   * we return the appropriate array constant based on args[0].
389
   * - If p represents a tuple selector, then we infer the appropriate tuple
390
   * selector expression based on the type of args[0].
391
   * - If the overall kind of the expression is chainable, we may convert it
392
   * to a left- or right-associative chain.
393
   * - If the overall kind is MINUS and args has size 1, then we return an
394
   * application of UMINUS.
395
   * - If the overall expression is a partial application, then we process this
396
   * as a chain of HO_APPLY terms.
397
   */
398
  api::Term applyParseOp(ParseOp& p, std::vector<api::Term>& args);
399
  //------------------------- end processing parse operators
400
 private:
401
402
  void addArithmeticOperators();
403
404
  void addTranscendentalOperators();
405
406
  void addQuantifiersOperators();
407
408
  void addBitvectorOperators();
409
410
  void addDatatypesOperators();
411
412
  void addStringOperators();
413
414
  void addFloatingPointOperators();
415
416
  void addSepOperators();
417
418
  /**
419
   * Utility function to create a conjunction of expressions.
420
   *
421
   * @param es Expressions in the conjunction
422
   * @return True if `es` is empty, `e` if `es` consists of a single element
423
   *         `e`, the conjunction of expressions otherwise.
424
   */
425
  api::Term mkAnd(const std::vector<api::Term>& es);
426
}; /* class Smt2 */
427
428
}  // namespace parser
429
}  // namespace cvc5
430
431
#endif /* CVC5__PARSER__SMT2_H */