aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Add some testsnicolas.nardino2021-06-082-0/+130
|
* Merge remote-tracking branch 'origin/kvx-work' into merge_master_8.13.1Cyril SIX2021-06-0135-157/+89
|\
| * Compatibilité Coq 8.13David Monniaux2021-04-282-0/+0
| |
| * Merge branch 'kvx-work' of ↵Léo Gourdin2021-04-223-0/+15
| |\ | | | | | | | | | gricad-gitlab.univ-grenoble-alpes.fr:sixcy/CompCert into kvx-work
| | * rm spurious filesDavid Monniaux2021-04-1239-1705/+0
| | |
| | * test profilingDavid Monniaux2021-04-1242-0/+1720
| | |
| * | moving my testsLéo Gourdin2021-04-2226-157/+0
| |/
| * Merge branch 'riscv-work' into kvx-workLéo Gourdin2021-04-092-0/+13
| |\
| | * Removing expansions from AsmgenLéo Gourdin2021-04-091-0/+6
| | |
| | * fp testLéo Gourdin2021-03-101-0/+7
| | |
| * | adding test for load replacement on a64Léo Gourdin2021-03-294-0/+61
| |/
* | [BROKEN] Merge with v3.9 : something broken for __builtin_expect in ↵Cyril SIX2021-06-013-1/+24
| | | | | | | | cfrontend/C2C.ml
* | Updating varargs2 results for kvxCyril SIX2021-06-011-0/+1
| |
* | Merge branch 'master' into merge_master_8.13.1Sylvain Boulmé2021-03-2312-420/+604
|\ \ | |/ |/| | | | | | | | | | | | | PARTIAL MERGE (PARTLY BROKEN). See unsolved conflicts in: aarch64/TO_MERGE and riscV/TO_MERGE WARNING: interface of va_args and assembly sections have changed
| * "macosx" is now called "macos"Xavier Leroy2021-01-181-1/+1
| | | | | | | | | | The configure script still accepts "macosx" for backward compatibility, but every other part of CompCert now uses "macos".
| * Remove regression/interop1 testXavier Leroy2021-01-184-417/+1
| | | | | | | | Now subsumed by the tests in abi/
| * Testing calling conventions and interoperability with another C compilerXavier Leroy2021-01-185-1/+583
| | | | | | | | Using a combination of fixed and randomly-generated function signatures.
| * RISC-V: fix FP calling conventionsXavier Leroy2021-01-142-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a follow-up to e81d015e3. In the RISC-V ABI, FP arguments to functions are passed in integer registers (or pairs of integer registers) in two cases: 1- the FP argument is a variadic argument 2- the FP argument is a fixed argument but all 8 FP registers reserved for parameter passing have been used already. The previous implementation handled only case 1, with some problems. This commit implements both 1 and 2. To this end, 8 extra FP caller-save registers are used to hold the values of the FP arguments that must be passed in integer registers. Fixup code moves these FP registers to integer registers / register pairs. Symmetrically, at function entry, the integer registers / register pairs are moved back to the FP registers. 8 extra FP registers is enough because there are only 8 integer registers used for parameter passing, so at most 8 FP arguments may need to be moved to integer registers.
| * RISC-V: wrong fixup code generated for vararg calls with fixed FP argsXavier Leroy2021-01-102-0/+17
| | | | | | | | | | | | | | | | | | This is a follow-up to 2076a3bb3. Integer registers were wrongly reserved for fixed FP arguments, causing variadic FP arguments to end up in the wrong integer registers. Added regression test in test/regression/varargs2.c
* | example of cmovDavid Monniaux2021-02-021-0/+28
| |
* | cmov on integersDavid Monniaux2021-02-021-0/+22
| |
* | Conditions now propagated by CSE3David Monniaux2021-01-201-0/+11
|\ \ | | | | | | | | | Merge remote-tracking branch 'origin/kvx-better2-cse3' into kvx-work
| * | redundant testsDavid Monniaux2020-12-091-0/+11
| | |
* | | a slightly different matrix productDavid Monniaux2021-01-141-0/+24
| | |
* | | generate a matrix product with many temporariesDavid Monniaux2021-01-141-0/+20
| | |
* | | Merge branch 'kvx-work' into aarch64-peepholeSylvain Boulmé2021-01-071-0/+14
|\ \ \
| * | | Removing Yarpgen test 89Cyril SIX2021-01-071-0/+14
| |/ / | | | | | | | | | Issue #232
* | | Merge branch 'kvx-work' into aarch64-peepholeSylvain Boulmé2020-12-1716-115/+871
|\| |
| * | Fixing test/regression for KVXv3.8_kvxCyril SIX2020-12-072-0/+393
| | |
| * | Merge branch 'kvx-work' into kvx-work-merge3.8Cyril SIX2020-12-0411-13/+380
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile configure
| * \ \ Merge branch 'master' (Absint 3.8) into kvx-work-merge3.8David Monniaux2020-11-1815-115/+478
| |\ \ \ | | | |/ | | |/|
| | * | Better "make clean"Xavier Leroy2020-11-011-1/+1
| | | |
| | * | Test clightgen with -short-idents and -normalize optionsXavier Leroy2020-09-221-0/+6
| | | | | | | | | | | | | | | | Use different combination of options for different test files.
| | * | Support the use of already-installed MenhirLib and Flocq librariesXavier Leroy2020-09-211-2/+6
| | | | | | | | | | | | | | | | configure flags -use-external-Flocq and -use external-MenhirLib.
| | * | Add test for __builtin_sqrt and __builtin_fabsfXavier Leroy2020-07-272-0/+7
| | | |
| | * | Refactor regression testing of built-in functionsXavier Leroy2020-07-2713-110/+447
| | | | | | | | | | | | | | | | | | | | | | | | Share the testing code for built-in functions that are available on all target platforms. Improve testing of __builtin_clz* and __builtin_ctz*
| | * | Improve portability of the test for annotations inclightgenXavier Leroy2020-06-052-0/+4
| | | | | | | | | | | | | | | | __builtin_ais_annot is not supported for macOS nor for Cygwin.
| | * | clightgen: fix the printing of annotationsXavier Leroy2020-06-051-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The printing of EF_annot and EF_annot_val was missing the extra "kind" parameter introduced in commit 6a010b4. Also: the automatic translation of annotations into Coq assertions was confusing and prevented other uses of __builtin_annot statements in conjunction with clightgen. I believe it was never used. This commit removes this translation. Closes: #360
* | | | Merge branch 'kvx-test-prepass' of ↵David Monniaux2020-11-2711-13/+380
|\ \ \ \ | | |_|/ | |/| | | | | | gricad-gitlab.univ-grenoble-alpes.fr:sixcy/CompCert into aarch64-prepass+postpass
| * | | Merge remote-tracking branch 'origin/kvx-work' into kvx-test-prepassDavid Monniaux2020-10-272-0/+256
| |\| |
| * | | turn on cache emulationDavid Monniaux2020-10-191-9/+9
| | | |
| * | | Merge remote-tracking branch 'origin/kvx-work' into kvx-test-prepassDavid Monniaux2020-10-182-1/+29
| |\ \ \
| * \ \ \ Merge remote-tracking branch 'origin/kvx-work' into kvx-test-prepassDavid Monniaux2020-10-026-17/+29
| |\ \ \ \
| * | | | | rules.mk for zigzagDavid Monniaux2020-09-241-7/+7
| | | | | |
| * | | | | Merge remote-tracking branch 'origin/kvx-work' into ↵David Monniaux2020-09-054-9771/+45
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mppa-RTLpathSE-verif-hash-junk iMe
| * | | | | | -ftracelinearizeDavid Monniaux2020-07-301-12/+12
| | | | | | |
| * | | | | | Merge remote-tracking branch 'origin/kvx-work' into ↵David Monniaux2020-07-301-2/+3
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | mppa-RTLpathSE-verif-hash-junk
| * \ \ \ \ \ \ Merge branch 'mppa-RTLpathSE-verif-hash-junk' of ↵David Monniaux2020-07-274-0/+188
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | gricad-gitlab.univ-grenoble-alpes.fr:sixcy/CompCert into mppa-RTLpathSE-verif-hash-junk
| | * | | | | | | test for speculative loadDavid Monniaux2020-07-262-0/+19
| | | | | | | | |
| | * | | | | | | simplifiedDavid Monniaux2020-07-261-4/+2
| | | | | | | | |