| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-11-13 | Remove floating-point comparison operators as they are no longer needed. | Guillaume Melquiond | |
| 2020-11-13 | Turn coq_float64.h into a .c file as it is no longer needed by coq_interp.c. | Guillaume Melquiond | |
| 2020-11-13 | Inline the functions from coq_float64.h. | Guillaume Melquiond | |
| Since the code is compiled in -fPIC mode, the compiler cannot inline the functions, due to the ABI mandating the ability to interpose visible symbols. Hiding the symbols of coq_float64.h would work, except that they float64.ml needs to reference them. (See #13124 for more details.) This commit improves performances by 7% on the following code. From Coq Require Import Int63 BinPos PrimFloat. Definition foo n := let two := of_int63 2 in Pos.iter (fun x => sub (mul x two) two) two n. Time Eval vm_compute in foo 100000000. If we consider only the floating-point operations (by ignoring the cost of the loop), the speedup is actually 30%. | |||
| 2020-11-13 | Make callback opcodes more generic. | Guillaume Melquiond | |
| This does not make the code any slower, since Is_coq_array(accu) && Is_uint63(sp[0]) and !Is_accu(accu) && !Is_accu(sp[0]) take the exact same number of tests to pass in the concrete case. In the accumulator case, it takes one more test to fail, but we do not care about the performances then. | |||
| 2020-11-13 | Optimize Is_accu a bit. | Guillaume Melquiond | |
| 2020-11-13 | Improve documentation of closure representations. | Guillaume Melquiond | |
| 2020-11-13 | Turn Ksequence into a unary opcode, as its binary structure was never used. | Guillaume Melquiond | |
| 2020-11-13 | Remove unused if-then-else construct from VM. | Guillaume Melquiond | |
| 2020-11-13 | Restore discard_dead_code and use it to simplify match-with constructs. | Guillaume Melquiond | |
| Otherwise, these constructs would be followed by a spurious Kreturn opcode, when in tail position. | |||
| 2020-11-13 | Remove some unused opcodes from VM. | Guillaume Melquiond | |
| 2020-11-13 | Remove unchecked arithmetic operations from VM, as they are not used. | Guillaume Melquiond | |
| 2020-11-13 | Optimize handling of the VM stack with respect to the GC. | Guillaume Melquiond | |
| 1. There is no point in marking plain integers as GC roots. 2. There is no need to restore the stack pointer, as the stack is not allocated on the OCaml heap (contrarily to coq_env). | |||
| 2020-11-13 | Merge PR #12420: [stdlib] Decidable instance for negation | coqbot-app[bot] | |
| Reviewed-by: Blaisorblade Ack-by: SkySkimmer | |||
| 2020-11-12 | Merge PR #13253: Change Dumpglob.pause and Dumpglob.continue into push and pop | coqbot-app[bot] | |
| Reviewed-by: gares Ack-by: SkySkimmer Ack-by: ejgallego | |||
| 2020-11-12 | Change Dumpglob.pause and Dumpglob.continue into push and pop | Lasse Blaauwbroek | |
| Co-authored-by: Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net> | |||
| 2020-11-12 | Merge PR #13318: Turn ssr proxy notation for supporting ↵ | coqbot-app[bot] | |
| second-order/contextual pattern abbreviations to only parsing Reviewed-by: gares | |||
| 2020-11-12 | Merge PR #13361: Move last changelog entry for 8.12.1. | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-11-12 | Move last changelog entry for 8.12.1. | Théo Zimmermann | |
| 2020-11-12 | Merge PR #13359: Print failed test suite logs in CI | coqbot-app[bot] | |
| Reviewed-by: ejgallego Reviewed-by: herbelin | |||
| 2020-11-12 | Merge PR #13351: Fixes #13349: accept Search on subparts of an identifier, ↵ | coqbot-app[bot] | |
| not only on subidentifiers of an identifier Reviewed-by: Zimmi48 | |||
| 2020-11-12 | Merge PR #13355: Fix Iris CI script | coqbot-app[bot] | |
| Reviewed-by: ejgallego Ack-by: RalfJung Ack-by: Zimmi48 | |||
| 2020-11-12 | Merge PR #13331: Fix #13330: Kernel messes with polymorphic side-effects. | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 Reviewed-by: SkySkimmer Ack-by: gares Ack-by: jfehrle Ack-by: jashug Ack-by: ejgallego | |||
| 2020-11-12 | Print failed test suite logs in CI | Gaëtan Gilbert | |
| in addition to having them as artefacts | |||
| 2020-11-12 | Merge PR #13289: Cosmetic cleaning of uState.ml: a bit of doc, more unity in ↵ | Pierre-Marie Pédrot | |
| naming Ack-by: gares Reviewed-by: ppedrot | |||
| 2020-11-12 | Merge PR #13345: Addressing #13344: clarifying the role of Add ML Path vs -I | coqbot-app[bot] | |
| Reviewed-by: ejgallego Reviewed-by: Zimmi48 Ack-by: ppedrot Ack-by: jfehrle | |||
| 2020-11-12 | Add the test as a misc script. | Pierre-Marie Pédrot | |
| I left the other test as a v file since it might become relevant when the corresponding Qed bug is fixed. | |||
| 2020-11-12 | Add documentation about the soundness bug. | Pierre-Marie Pédrot | |
| 2020-11-12 | Fix #13330: Kernel messes with polymorphic side-effects. | Pierre-Marie Pédrot | |
| Polymorphic side-effects generated in monomorphic mode would be counted towards trusted subcomponents. This would allow to make ill-typed terms pass as legitimate by mimicking the shape of the inlining of monomorphic side-effects in such a proof. | |||
| 2020-11-12 | Fix Iris CI script | Gaëtan Gilbert | |
| Also add nice error message when the grep produces an empty result | |||
| 2020-11-12 | Add changelog for #13345. | Hugo Herbelin | |
| Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> Co-authored-by: Théo Zimmermann <theo.zimmi@gmail.com> | |||
| 2020-11-12 | Clarifying the role of Add ML Path vs -I (see #13344). | Hugo Herbelin | |
| Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> | |||
| 2020-11-12 | Merge PR #13317: [ssr] intro pattern extensions for dup, swap and apply | coqbot-app[bot] | |
| Reviewed-by: gares Ack-by: Zimmi48 | |||
| 2020-11-11 | Add changelog for #13351. | Hugo Herbelin | |
| Co-authored-by: Théo Zimmermann <theo.zimmi@gmail.com> | |||
| 2020-11-11 | Addressing #13349: accept Search on subparts of ident, not only on subidents. | Hugo Herbelin | |
| 2020-11-10 | Merge PR #13335: Fix running unit tests with dune compiled coq | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-11-10 | Merge PR #13315: Convert logic chapter to prodn | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-11-10 | Convert logic.rst to prodn | Jim Fehrle | |
| 2020-11-10 | Fix running unit tests with dune compiled coq | Gaëtan Gilbert | |
| (for runs outside dune, ie "make -C test-suite unit-tests" rather than "dune build @runtest") Fix #13333 | |||
| 2020-11-10 | Merge PR #13325: [compat] remove 8.10 | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-11-10 | Merge PR #13322: [obligation] Properly handle no obligations on `Next ↵ | coqbot-app[bot] | |
| Obligation` Reviewed-by: SkySkimmer | |||
| 2020-11-10 | Merge PR #13297: Remove the native symbol registering from the safe environment. | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer | |||
| 2020-11-09 | Add additional escape sequences for notations | Jim Fehrle | |
| 2020-11-09 | Add global version of OPTINREF | Jim Fehrle | |
| 2020-11-09 | Merge PR #13329: [refman] Stop applying a special style to Coq, CoqIDE, ↵ | coqbot-app[bot] | |
| OCaml and Gallina. Reviewed-by: jfehrle Reviewed-by: cpitclaudel | |||
| 2020-11-09 | Merge PR #13327: Fix documentation of Ltac ::= | coqbot-app[bot] | |
| Reviewed-by: jfehrle | |||
| 2020-11-09 | [refman] Stop applying a special style to Coq, CoqIDE, OCaml and Gallina. | Théo Zimmermann | |
| The smallcaps rendering was inexistent in the PDF version and did not look good in the HTML version. | |||
| 2020-11-09 | [obligation] Proper handle no obligations on `Next Obligation` | Emilio Jesus Gallego Arias | |
| Fixes #13320 . Trivial programming error, actually this is handled better in a further refactoring branch not submitted due to the long time the whole rework took. | |||
| 2020-11-09 | Remove virtually unused replace rule. | Théo Zimmermann | |
| 2020-11-09 | Fix #5226: Add index entry for ::=. | Théo Zimmermann | |
| 2020-11-09 | Fix indentation of todo in Ltac chapter. | Théo Zimmermann | |
| Actual documentation was interpreted as a comment. | |||
