aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Remove all overriding opens in Elab.ml. Bug 19872Bernhard Schommer2017-02-031-2/+2
| | |
* | | Removed Cabshelper open and avoided shadowing.Bernhard Schommer2017-02-032-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | The Cabshelper is only used in 4 places, so we don't need a global open. Furhtermore the String.t type is now inlined for Cabs to avoid shadowing problems in Elab.ml Bug 19872
* | | Remove unused opens.Bernhard Schommer2017-02-031-32/+28
| | | | | | | | | | | | | | | | | | Format was only used in one place without explicit module prefix. The same holds for Env. Bug 19872
* | | Removed no longer working check.Bernhard Schommer2017-02-031-14/+4
| | | | | | | | | | | | | | | | | | Since anonymous struct members are kept in the fieldlist, the fieldlist can never be empty in this case. Bug 19872
* | | Updated handcrafted.messages for __builtin_offsetofBernhard Schommer2017-02-011-753/+858
| | |
* | | Change the syntax to gcc/clangs syntax.Bernhard Schommer2017-02-013-4/+7
| | | | | | | | | | | | | | | | | | This only means that there must be one identifier at the begining and then a designator. Bug 20765
* | | Merge pull request #159 from AbsInt/builtin_offsetofXavier Leroy2017-02-018-3/+73
|\ \ \ | | | | | | | | Implement offsetof via builtin
| * | | Avoid overflows and report an error.Bernhard Schommer2017-01-312-7/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of multiplying the array constant directly with the size of the offset the cautious_mul function is used to detect potential overflows. Bug 20765
| * | | Normalize offset to size_t kind.Bernhard Schommer2017-01-311-2/+4
| | | |
| * | | Remove superfluous check.Bernhard Schommer2017-01-311-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | Gcc and clang do not raise an error for this, also it should work for the last array element which can be without size. Bug 20765
| * | | Improve indentation.Bernhard Schommer2017-01-311-1/+1
| | | |
| * | | Remove blank lines.Bernhard Schommer2017-01-311-2/+0
| | | |
| * | | New version to support designators.Bernhard Schommer2017-01-248-22/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The c standard allows member designators for offsetof. The current implementation works by recursively combining the offset of each of the member designators. For array access the size of the subtypes is multiplied by the index and for members the offset of the member is calculated. Bug 20765
| * | | Simplified version.Bernhard Schommer2017-01-202-43/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem was that sub structs are were not correctly aligned. The new version is much simpler and uses the sizeof_struct to calculate the individual offsets and add them up to get correct offest. Bug 20765
| * | | Also support union. Bug 20765Bernhard Schommer2017-01-201-3/+4
| | | |
| * | | Implement offsetof via builtin.Bernhard Schommer2017-01-208-3/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The implementation of offsetof as macro in the form ((size_t) &((ty*) NULL)->member) has the problem that it cannot be used everywhere were an integer constant expression is allowed, for example in initiliazers of global variables and there is also no check for the case that member is of bitifield type. The new implementation adds a builtin function for this which is replaced by an integer constant during elaboration. Bug 20765
* | | | Add LINK_OPT and document it.Bernhard Schommer2017-02-011-2/+15
| |/ / |/| | | | | | | | | | | | | | | | | The new Makefile variable LINK_OPT can be used to specify additional linker flags for different operating systems, like linking with setargv.obj under windows. Bug 20871
* | | Typo in type of elab_char_constantXavier Leroy2017-01-311-1/+1
| | | | | | | | | | | | Follow-up to commit 1df1830
* | | Update Changes for release 3.0Xavier Leroy2017-01-311-2/+39
| | |
* | | Export elab_{int,float,char}_constantXavier Leroy2017-01-311-0/+9
| | | | | | | | | | | | Those three functions can be useful to implement front-ends for languages other than C.
* | | Added support for different diagnostic formats.Bernhard Schommer2017-01-301-2/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | The new option -fdiagnostics-format allows it to switch between the three different format version: -ccomp (default) with file:line: -vi with file+line: -msvc with file(line): Bug 19872
* | | Switch case for error option. Bug 19872Bernhard Schommer2017-01-301-2/+2
| | |
* | | Fixed indention of help.Bernhard Schommer2017-01-271-3/+3
| | |
* | | Added -f(no-)diagnostics-show-option.Bernhard Schommer2017-01-271-6/+20
| | | | | | | | | | | | | | | | | | Controls whether the [-Woption] is printed in the diagnostic message for mappable warnings/errors. Bug 19872
* | | Added option -fmax-errors.Bernhard Schommer2017-01-263-3/+36
| | | | | | | | | | | | | | | | | | | | | The option -fmax-errors limits the number of errors that are reported before the compilation is aborted. The default 0 means no limit. Bug 19872
* | | mention share directory for -target optionMichael Schmidt2017-01-261-0/+1
| | |
* | | describe -conf and -targetMichael Schmidt2017-01-261-0/+11
| | |
* | | describe environment variable for configuration fileMichael Schmidt2017-01-261-2/+10
| | |
* | | Added -w to disable all options. Bug 19872Bernhard Schommer2017-01-261-1/+6
| | |
* | | Allow .sx files for preprocessed assembler files.Bernhard Schommer2017-01-251-0/+3
| | | | | | | | | | | | | | | GCC treats files with .sx extension in the same way as it treats files with .S suffix.
* | | Do not print anonymous member names in debug infoBernhard Schommer2017-01-245-4/+6
| | | | | | | | | | | | | | | Anonymous members no longer are printed in the debug information. Fix 20798
* | | Also remove coq aux files.Bernhard Schommer2017-01-241-0/+1
|/ /
* | Improve wording of normal backtrace case Bug 19872Bernhard Schommer2017-01-191-1/+3
| |
* | Simplified C2C.error.Bernhard Schommer2017-01-182-19/+16
| | | | | | | | | | | | | | Instead of just accepting a string the function is changed to accept a format string. This removes a lot of artificial sprintfs in calls to the functions. Bug 19872
* | Use quoted strings.Bernhard Schommer2017-01-186-143/+156
| | | | | | | | | | | | Instead of escaping all newlines etc for the help options use quoted strings. Bug 19872
* | More comments and improvements for unknown loc.Bernhard Schommer2017-01-182-1/+27
| | | | | | | | | | | | More functions are now documented. Furthermore compcert now prints "ccomp:" instead of nothing for unknown locations. Bug 19872
* | Remove duplaceted relese. Bug 20681Bernhard Schommer2017-01-171-1/+1
| |
* | Added missing whitespace. Bug 19872Bernhard Schommer2017-01-171-1/+1
| |
* | Safe the backtrace earlier. Bug 20681Bernhard Schommer2017-01-171-12/+13
| |
* | bug 20679, more precise description of -gMichael Schmidt2017-01-171-1/+1
| |
* | Added backtrace handler.Bernhard Schommer2017-01-173-0/+21
|/ | | | | | | | If CompCert crashes because of an uncaught exception the exception is caught toplevel and the backtrace is printed plus an additional message to include the backtrace in a support request, if buildnr and tag are available. Bug 20681.
* Fix typosMichael Schmidt2017-01-041-2/+2
|
* Allow multiple nameless bit field fields.Bernhard Schommer2016-12-291-2/+4
|
* Filter macOS metadata files in .gitignoreMichael Schmidt2016-12-281-0/+2
|
* Merge pull request #153 from AbsInt/anonymous_struct2Bernhard Schommer2016-12-277-39/+113
|\ | | | | Next try for support of anonymous structs.
| * Avoid exception catch-allXavier Leroy2016-12-261-1/+1
| | | | | | | | "try ...; true with _ -> false" is dangerous if "..." raises unexpected exceptions such as Out_of_memory or Stack_overflow.
| * Cosmetic indentation changeXavier Leroy2016-12-261-5/+4
| |
| * Added code for initializers. Bug 20003Bernhard Schommer2016-12-121-1/+19
| |
| * Moved naming and changed names of aux functionsBernhard Schommer2016-12-121-16/+20
| | | | | | | | | | | | | | | | The naming of anonymous structs is performed by an additional step in elab_struct_or_union_info instead of in elab_field_group. Also the aux functions are renamed to access. Bug 20003
| * Next try for support of anonymous structs.Bernhard Schommer2016-12-077-41/+94
| | | | | | | | | | | | Instead of using idents the anonymous fileds get names of the for <anon>_c where c is a counter of all anonymous members. Bug 20003