- Remove debugging code left in by mistake. 2014-12-26, by mjsousa
- Do constant propagation inside Configurations and Resources (required for support of extension: array [1..max] OF int); (Resources is still buggy) 2014-12-26, by mjsousa
- Do constant folding of default initial values of datatypes. 2014-12-25, by mjsousa
- Do constant propagation to symbolic_variables, and correctly handle constant folding and propagation of variable declarations. 2014-12-24, by mjsousa
- When generating C code, use the const_value of a symbolic_variable when it is used in a subrange. 2014-12-17, by mjsousa
- Small code re-organization of how const values are stored in symbol_c (can now be accessed through member functions, instead of macros) 2014-12-17, by mjsousa
- Fix bugs introduced in previous commit (once again do constant folding of all literals in type declarations) 2014-12-14, by mjsousa
- Do constant folding of variable's initial value (allows correct C code generation with variables in the subrange of an array declaration: ARRAY [1..max] of INT). 2014-12-14, by mjsousa
- Delete un-used declaration. 2014-12-10, by mjsousa
- merge 2014-12-10, by mjsousa
- Allow variables to be used when declaring the dimension of an array. 2014-11-22, by mjsousa
- Fix C code generation when forward references (-p command line option) is on. 2014-12-06, by mjsousa
- Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs. 2014-12-06, by mjsousa
- Delete unused file. 2014-11-30, by mjsousa
- Make use of pre-parser a command line option. 2014-11-30, by mjsousa
- Fix AST generated by parsing with preparsing switched OFF (typo in array datatypes, and fix parsing of POUs). 2014-11-30, by mjsousa
- Fix AST generated by parsing with preparsing switched on, and allow parsing to work with preparsing off. 2014-11-29, by mjsousa
- Fix bug introduced when adding support for relaxed datatype model: change derived_datatype_identifier_c to identifier_c when used as an identifier 2014-11-29, by mjsousa
- Add a pre-parsing phase to stage1_2 (allows source code that references POUs and datatypes before they are declared) 2014-11-29, by mjsousa
- Comment out unused and buggy code. 2014-11-29, by mjsousa
- Update the comments in source code. 2014-11-27, by mjsousa
- Fix bug introduced when adding support for relaxed datatype model. Code cleanup. 2014-11-26, by mjsousa
- Fix main state machine in flex (states were being pushed without being poped from the stack) 2014-11-23, by mjsousa
- merge 2014-11-16, by mjsousa
- Make the relaxed datatype model a runtime option (off by default) 2014-11-16, by mjsousa
- Add support for relaxed datatype model for array datatypes. 2014-11-16, by mjsousa
- fix bug introduced a few commits ago: do not print the first char ('%') of a direct_variable_c (e.g. skip % in %IW4.2) 2014-11-09, by mjsousa
- fix code generation when dereferencing pointers (ref_to) to arrays (ref_to_array^[5]) 2014-10-25, by mjsousa
- Fix bug: set the scope annotation in deref_operators used inside structs 2014-10-25, by mjsousa
- Editing of error message to make it more clear. 2014-10-25, by mjsousa
- Filling of symbol->scope annotation moved from narrow to fill_candidate_datatypes_c (became possible because narrowing of struct, array and symbolic variables is now done directly in fill_candidate_datatypes_c) 2014-10-25, by mjsousa
- fill_candidate_datatypes_c now uses search_varinstance_decl_c instead of search_varfb_instance_type_c (moving towards deprecation of search_varfb_instance_type_c) 2014-10-25, by mjsousa
- Do the full fill_candidate/narrow_datatype algorithm for all fields of a structured variable in the fill_candidate_datatypes_c 2014-10-19, by mjsousa
- Fix bug with multple dereferencing (bool_var := bool_ptr_ptr^^;) 2014-10-19, by mjsousa
- Fix bug: Add support for de-referencing pointers to struct (struct_ptr^.elem1) when used inside FB. 2014-10-19, by mjsousa
- Fix bug: add support for dereferencing of REF_TO to REF_TO xxx (e.g.: bool_var := ref_to_ref_to_bool^^;) 2014-09-28, by mjsousa
- Turn support of derefencing operator '^' an option (default is not supported). 2014-09-28, by mjsousa
- Add support for de-referencing of REF_TO datatypes (Note: dereferencing of arrays and structs not yet supported!) 2014-09-28, by mjsousa
- Add support for REF_TO inside arrays and structs (a non-standard feature!) 2014-09-27, by mjsousa
- Code cleanup: with the introduction of anotation_map[], generate_c_vardecl_c can now derive directly from generate_c_base_c 2014-08-11, by mjsousa
- Fix typos in comments 2014-08-11, by mjsousa
- Add comments, and make get_datatype_id_str_c equivalent to get_datatype_id_c 2014-08-11, by mjsousa
- Fix calling of functions whose parameters are of an implicitly declared datatype (currently only makes sense for REF_TO datatypes, but may make sense to other datatypes too if the datatype model is changed in the future). 2014-08-11, by mjsousa
- fix indentations. 2014-08-10, by mjsousa
- in lvalue, add check for REF() fucntion invocation, and the NULL literal 2014-08-10, by mjsousa
- Initialise REF_TO variables to NULL. 2014-08-09, by mjsousa
- Make support for REF_TO ANY a command line option. 2014-08-09, by mjsousa
- Add support for non standard REF_TO ANY (equivalent to void *) 2014-08-09, by mjsousa
- Update some comments. (No changes to code) 2014-08-08, by mjsousa
- Introduce absyntax class for keyword ANY, and use REF_TO(ANY) as datatype of NULL literal. 2014-08-08, by mjsousa
- Fix bug (introduced a few commits ago) when generating SFC actions that are mapped onto variables --> Make generate_sfcdecl_c stateless (i.e. does not depend on order by which it is called). 2014-08-06, by mjsousa
- Add support for the 'NULL' keyword, defined in version 3 of IEC 61131-3. 2014-07-31, by mjsousa
- for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file 2014-07-29, by mjsousa
- Ass include of iec_std_lib.h in POUS.h file. 2014-07-25, by mjsousa
- Add support for implicitly declared REF_TO datatypes. 2014-07-21, by mjsousa
- With -Op option --> Place implicitly defined datatypes in the .h file corresponding to the POU where they are used. 2014-07-20, by mjsousa
- Add name of POU as prefix to names of implicitly defined datatypes 2014-07-20, by mjsousa
- Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code). 2014-07-20, by mjsousa
- array_specification_c may be used as a datatype! Add it to spec_init_separator_c 2014-07-20, by mjsousa
- Change REF() operator to return the correct REF_TO datatype datatype. 2014-07-13, by mjsousa