|
void | set_language_options (const optionst &options, message_handlert &) override |
| Set language-specific options. More...
|
|
bool | preprocess (std::istream &instream, const std::string &path, std::ostream &outstream, message_handlert &message_handler) override |
| ANSI-C preprocessing. More...
|
|
bool | parse (std::istream &instream, const std::string &path, message_handlert &message_handler) override |
|
bool | generate_support_functions (symbol_table_baset &symbol_table, message_handlert &message_handler) override |
| Create language-specific support functions, such as __CPROVER_start, __CPROVER_initialize and language-specific library functions. More...
|
|
bool | typecheck (symbol_table_baset &symbol_table, const std::string &module, message_handlert &message_handler) override |
|
bool | merge_symbol_table (symbol_table_baset &dest, symbol_table_baset &src, const std::string &module, class replace_symbolt &replace_symbol) const |
|
void | show_parse (std::ostream &out, message_handlert &) override |
|
| ~cpp_languaget () override |
|
| cpp_languaget () |
|
bool | from_expr (const exprt &expr, std::string &code, const namespacet &ns) override |
| Formats the given expression in a language-specific way. More...
|
|
bool | from_type (const typet &type, std::string &code, const namespacet &ns) override |
| Formats the given type in a language-specific way. More...
|
|
bool | type_to_name (const typet &type, std::string &name, const namespacet &ns) override |
| Encodes the given type in a language-specific way. More...
|
|
bool | to_expr (const std::string &code, const std::string &module, exprt &expr, const namespacet &ns, message_handlert &message_handler) override |
| Parses the given string into an expression. More...
|
|
std::unique_ptr< languaget > | new_language () override |
|
std::string | id () const override |
|
std::string | description () const override |
|
std::set< std::string > | extensions () const override |
|
void | modules_provided (std::set< std::string > &modules) override |
|
virtual void | dependencies (const std::string &module, std::set< std::string > &modules) |
|
virtual void | methods_provided (std::unordered_set< irep_idt > &methods) const |
| Should fill methods with the symbol identifiers of all methods this languaget can provide a body for, but doesn't populate that body in languaget::typecheck (i.e. More...
|
|
virtual void | convert_lazy_method (const irep_idt &function_id, symbol_table_baset &symbol_table, message_handlert &message_handler) |
| Requests this languaget should populate the body of method function_id in symbol_table . More...
|
|
virtual bool | final (symbol_table_baset &symbol_table) |
| Final adjustments, e.g. More...
|
|
virtual bool | interfaces (symbol_table_baset &symbol_table, message_handlert &message_handler) |
|
virtual bool | can_keep_file_local () |
| Is it possible to call three-argument typecheck() on this object? More...
|
|
virtual bool | typecheck (symbol_table_baset &symbol_table, const std::string &module, message_handlert &message_handler, const bool keep_file_local) |
| typecheck without removing specified entries from the symbol table More...
|
|
| languaget () |
|
virtual | ~languaget () |
|
Definition at line 23 of file cpp_language.h.
Create language-specific support functions, such as __CPROVER_start, __CPROVER_initialize and language-specific library functions.
This runs after the typecheck
phase but before lazy function loading. Anything that must wait until lazy function loading is done can be deferred until final
, which runs after lazy function loading is complete. Functions introduced here are visible to lazy loading and can influence its decisions (e.g. picking the types of input parameters and globals), whereas anything introduced during final
cannot.
Implements languaget.
Definition at line 136 of file cpp_language.cpp.