aboutsummaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAge
* Don't include extraction .vo files in the all targetGravatar Jason Gross2019-04-11
| | | | | We run coqc on these files via the c-files target, which is also included in the all target
* sed s'/RewriterProofs/RewriterAll/g'Gravatar Jason Gross2019-04-11
|
* fix Makefile (old Arithmetic.v was hardcoded as a target)Gravatar jadep2019-04-03
|
* Only write to .c files on successGravatar Jason Gross2019-03-07
| | | | Otherwise write to .c.tmp file
* Rename p484_64.c to p434_64.c (fix typo)Gravatar Daniel Hirche2019-02-11
| | | | | | | | Renamed the generated file and function names / comments within, update Makefile. This fixes a typo in the name of the curve, the prime remains the same, see https://github.com/mit-plv/fiat-crypto/issues/486#issuecomment-460801840
* Add better computation of carry chainGravatar Jason Gross2019-01-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We port the computation of the carry chain from generate_parameters.py to Coq, for unsaturated solinas. Note that while we now bounds-check p448, we do not yet support goldilocks nor karatsuba. However, there is still an issue with the synthesized p448 code, which is that on 64-bit, it tries to use 256-bit and 512-bit integers. I'm not sure what's up with that. Partial progress towards #507 After | File Name | Before || Change | % Change ------------------------------------------------------------------------------------------ 8m51.64s | Total | 8m34.60s || +0m17.04s | +3.31% ------------------------------------------------------------------------------------------ 0m15.16s | p448_solinas_64.c | N/A || +0m15.16s | ∞ 3m09.12s | p384_32.c | 3m09.36s || -0m00.24s | -0.12% 0m44.99s | ExtractionHaskell/word_by_word_montgomery | 0m44.91s || +0m00.08s | +0.17% 0m39.58s | p521_32.c | 0m39.22s || +0m00.35s | +0.91% 0m32.54s | p521_64.c | 0m32.49s || +0m00.04s | +0.15% 0m30.87s | ExtractionHaskell/unsaturated_solinas | 0m31.04s || -0m00.16s | -0.54% 0m24.31s | ExtractionHaskell/saturated_solinas | 0m24.32s || -0m00.01s | -0.04% 0m18.62s | PushButtonSynthesis/UnsaturatedSolinas.vo | 0m17.90s || +0m00.72s | +4.02% 0m17.53s | ExtractionOCaml/word_by_word_montgomery | 0m17.44s || +0m00.08s | +0.51% 0m13.36s | secp256k1_32.c | 0m13.58s || -0m00.22s | -1.62% 0m13.21s | p256_32.c | 0m13.15s || +0m00.06s | +0.45% 0m11.47s | p484_64.c | 0m11.39s || +0m00.08s | +0.70% 0m11.27s | ExtractionOCaml/unsaturated_solinas | 0m10.71s || +0m00.55s | +5.22% 0m10.48s | ExtractionOCaml/word_by_word_montgomery.ml | 0m10.34s || +0m00.14s | +1.35% 0m07.97s | ExtractionOCaml/saturated_solinas | 0m07.98s || -0m00.01s | -0.12% 0m07.05s | ExtractionOCaml/unsaturated_solinas.ml | 0m06.98s || +0m00.06s | +1.00% 0m06.58s | ExtractionHaskell/word_by_word_montgomery.hs | 0m06.48s || +0m00.09s | +1.54% 0m06.09s | p224_32.c | 0m06.04s || +0m00.04s | +0.82% 0m05.24s | p384_64.c | 0m05.34s || -0m00.09s | -1.87% 0m05.13s | ExtractionOCaml/saturated_solinas.ml | 0m05.19s || -0m00.06s | -1.15% 0m05.00s | ExtractionHaskell/unsaturated_solinas.hs | 0m04.98s || +0m00.01s | +0.40% 0m04.14s | ExtractionHaskell/saturated_solinas.hs | 0m04.04s || +0m00.09s | +2.47% 0m02.22s | curve25519_32.c | 0m02.22s || +0m00.00s | +0.00% 0m01.49s | curve25519_64.c | 0m01.53s || -0m00.04s | -2.61% 0m01.46s | CLI.vo | 0m01.44s || +0m00.02s | +1.38% 0m01.29s | SlowPrimeSynthesisExamples.vo | 0m01.24s || +0m00.05s | +4.03% 0m01.08s | p256_64.c | 0m01.00s || +0m00.08s | +8.00% 0m01.06s | StandaloneOCamlMain.vo | 0m00.96s || +0m00.10s | +10.41% 0m01.06s | secp256k1_64.c | 0m01.17s || -0m00.10s | -9.40% 0m01.02s | p224_64.c | 0m01.08s || -0m00.06s | -5.55% 0m00.99s | StandaloneHaskellMain.vo | 0m01.08s || -0m00.09s | -8.33% 0m00.27s | TAPSort.vo | N/A || +0m00.27s | ∞
* remove reference to Toplevel2 in MakefileGravatar jadep2019-01-17
|
* Comment out a slow .c fileGravatar Jason Gross2019-01-14
|
* Autocompute s and c in WBW MontgomeryGravatar Jason Gross2019-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows us to support primes which are not a power of 2. We also add p484 as an example. To support this, I added a small parser combinator library which can parse arithmetic expressions involving `()^*/+-` and decimal digits. Closes #486 Closes #342 After | File Name | Before || Change | % Change -------------------------------------------------------------------------------------------- 22m14.42s | Total | 12m14.76s || +9m59.65s | +81.61% -------------------------------------------------------------------------------------------- 9m41.91s | p484_32.c | N/A || +9m41.90s | ∞ 0m11.51s | p484_64.c | N/A || +0m11.50s | ∞ 3m16.22s | p384_32.c | 3m12.02s || +0m04.19s | +2.18% 4m12.18s | PushButtonSynthesis.vo | 4m10.16s || +0m02.02s | +0.80% 0m45.08s | ExtractionHaskell/word_by_word_montgomery | 0m45.24s || -0m00.16s | -0.35% 0m38.14s | p521_32.c | 0m38.12s || +0m00.02s | +0.05% 0m31.80s | p521_64.c | 0m31.78s || +0m00.01s | +0.06% 0m31.09s | ExtractionHaskell/unsaturated_solinas | 0m30.77s || +0m00.32s | +1.03% 0m24.18s | ExtractionHaskell/saturated_solinas | 0m24.21s || -0m00.03s | -0.12% 0m17.38s | ExtractionOCaml/word_by_word_montgomery | 0m17.35s || +0m00.02s | +0.17% 0m13.39s | secp256k1_32.c | 0m13.59s || -0m00.19s | -1.47% 0m13.14s | p256_32.c | 0m13.04s || +0m00.10s | +0.76% 0m10.58s | ExtractionOCaml/unsaturated_solinas | 0m10.73s || -0m00.15s | -1.39% 0m10.23s | ExtractionOCaml/word_by_word_montgomery.ml | 0m10.34s || -0m00.10s | -1.06% 0m07.88s | ExtractionOCaml/saturated_solinas | 0m07.94s || -0m00.06s | -0.75% 0m06.78s | ExtractionOCaml/unsaturated_solinas.ml | 0m06.86s || -0m00.08s | -1.16% 0m06.28s | ExtractionHaskell/word_by_word_montgomery.hs | 0m06.42s || -0m00.13s | -2.18% 0m06.00s | p224_32.c | 0m05.97s || +0m00.03s | +0.50% 0m05.50s | p384_64.c | 0m05.35s || +0m00.15s | +2.80% 0m05.28s | ExtractionOCaml/saturated_solinas.ml | 0m05.08s || +0m00.20s | +3.93% 0m05.10s | ExtractionHaskell/unsaturated_solinas.hs | 0m04.98s || +0m00.11s | +2.40% 0m04.12s | ExtractionHaskell/saturated_solinas.hs | 0m04.15s || -0m00.03s | -0.72% 0m02.14s | curve25519_32.c | 0m02.28s || -0m00.13s | -6.14% 0m01.44s | CLI.vo | 0m01.42s || +0m00.02s | +1.40% 0m01.44s | curve25519_64.c | 0m01.57s || -0m00.13s | -8.28% 0m01.14s | StandaloneOCamlMain.vo | 0m01.11s || +0m00.02s | +2.70% 0m01.12s | p256_64.c | 0m00.98s || +0m00.14s | +14.28% 0m01.11s | StandaloneHaskellMain.vo | 0m01.17s || -0m00.05s | -5.12% 0m01.03s | secp256k1_64.c | 0m01.15s || -0m00.11s | -10.43% 0m01.02s | p224_64.c | 0m00.99s || +0m00.03s | +3.03% 0m00.21s | Util/Strings/ParseArithmetic.vo | N/A || +0m00.21s | ∞
* Move ALL_C_FILES above c-filesGravatar Jason Gross2019-01-13
| | | | Or else it doesn't build anything at all
* Makefile: remove *CURVES_PROOFS*Gravatar Andres Erbsen2019-01-11
|
* remove redundant travis CI stagesGravatar Andres Erbsen2019-01-10
|
* remove old pipelineGravatar Andres Erbsen2019-01-09
|
* move src/Experiments/NewPipeline/ to src/Gravatar Andres Erbsen2019-01-09
|
* Add another early travis stageGravatar Jason Gross2018-11-02
| | | | | This will hopefully take some burden off later travis stages and make PR #437 easier to merge.
* Add coq-without-new-pipelineGravatar Jason Gross2018-10-02
| | | | It doesn't go through vo_reverse_closure, and doesn't include the new pipeline
* Improve documentation of binariesGravatar Jason Gross2018-09-11
|
* Display output extensions with TIMED=1Gravatar Jason Gross2018-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows for a more uniform timing table Time | File Name -------------------------------------------------------------------------------------- 94m47.83s | Total -------------------------------------------------------------------------------------- 9m20.41s | Curves/Weierstrass/AffineProofs.vo 8m52.53s | Experiments/SimplyTypedArithmetic.vo 6m07.70s | Experiments/NewPipeline/SlowPrimeSynthesisExamples.vo 5m12.65s | Experiments/NewPipeline/Toplevel1.vo 4m11.99s | Experiments/NewPipeline/RewriterRulesGood.vo 3m40.28s | Curves/Weierstrass/Projective.vo 3m39.26s | Curves/Montgomery/XZProofs.vo 3m03.80s | Curves/Montgomery/AffineProofs.vo 2m11.84s | Specific/X25519/C64/ladderstep.vo 1m51.40s | Specific/NISTP256/AMD64/femul.vo 1m46.13s | Experiments/NewPipeline/Toplevel2.vo 1m33.36s | Experiments/NewPipeline/Arithmetic.vo 1m28.78s | Spec/Test/X25519.vo 1m25.00s | Experiments/NewPipeline/RewriterWf2.vo 1m21.97s | Compilers/Named/MapCastInterp.vo 1m18.54s | Specific/X2448/Karatsuba/C64/femul.vo 1m16.54s | Experiments/NewPipeline/Rewriter.vo 1m14.42s | Curves/Weierstrass/Jacobian.vo 0m59.52s | Specific/X25519/C32/femul.vo 0m53.06s | Demo.vo 0m50.85s | Compilers/Z/ArithmeticSimplifierInterp.vo 0m49.59s | Compilers/Z/Named/RewriteAddToAdcInterp.vo 0m43.60s | Specific/X25519/C32/fesquare.vo 0m42.83s | Experiments/NewPipeline/AbstractInterpretationWf.vo 0m42.08s | Arithmetic/Karatsuba.vo 0m38.16s | p521_32.c 0m37.14s | Experiments/NewPipeline/ExtractionOCaml/word_by_word_montgomery 0m36.28s | Spec/Ed25519.vo 0m36.15s | Experiments/NewPipeline/ExtractionHaskell/word_by_word_montgomery 0m35.90s | Experiments/NewPipeline/LanguageInversion.vo 0m33.96s | Specific/X25519/C32/freeze.vo 0m32.47s | Compilers/Z/ArithmeticSimplifierWf.vo 0m31.78s | p521_64.c 0m29.59s | Compilers/CommonSubexpressionEliminationWf.vo 0m27.86s | Specific/NISTP256/AMD128/femul.vo 0m27.32s | Primitives/EdDSARepChange.vo 0m26.13s | Experiments/NewPipeline/UnderLetsProofs.vo 0m25.50s | Specific/X25519/C32/fecarry.vo 0m23.64s | p384_32.c 0m23.42s | Experiments/NewPipeline/AbstractInterpretationZRangeProofs.vo 0m22.06s | Experiments/NewPipeline/LanguageWf.vo 0m21.77s | Arithmetic/Core.vo 0m21.74s | Experiments/NewPipeline/ExtractionHaskell/unsaturated_solinas 0m21.29s | Specific/X25519/C32/fesub.vo 0m20.92s | Specific/NISTP256/AMD64/fesub.vo 0m20.92s | bbv/theories/Word.vo 0m20.54s | Specific/NISTP256/AMD64/feadd.vo 0m20.46s | Specific/X25519/C64/femul.vo 0m19.82s | Specific/X25519/C32/Synthesis.vo 0m19.60s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Dependent/Proofs.vo 0m19.36s | Curves/Edwards/XYZT/Basic.vo 0m19.23s | Experiments/NewPipeline/ExtractionOCaml/unsaturated_solinas 0m19.13s | Specific/X25519/C32/feadd.vo 0m18.04s | Compilers/Named/MapCastWf.vo 0m17.88s | Compilers/Z/CNotations.vo 0m17.63s | Specific/X25519/C64/freeze.vo 0m17.00s | Specific/X25519/C64/fesquare.vo 0m16.38s | Curves/Edwards/AffineProofs.vo 0m15.85s | Specific/NISTP256/AMD64/feopp.vo 0m15.75s | Compilers/Named/ContextProperties/SmartMap.vo 0m15.51s | Compilers/Named/ContextProperties/NameUtil.vo 0m14.98s | Specific/NISTP256/AMD128/fesub.vo 0m14.90s | Specific/NISTP256/AMD128/feadd.vo 0m14.87s | Algebra/Field.vo 0m14.61s | Experiments/NewPipeline/ExtractionHaskell/saturated_solinas 0m14.35s | Specific/NISTP256/AMD64/fenz.vo 0m14.24s | Specific/X25519/C64/fecarry.vo 0m13.84s | Arithmetic/Saturated/AddSub.vo 0m13.76s | Specific/NISTP256/AMD128/fenz.vo 0m12.94s | Specific/X25519/C64/fesub.vo 0m12.92s | Experiments/NewPipeline/CStringification.vo 0m12.54s | Experiments/NewPipeline/AbstractInterpretationProofs.vo 0m12.32s | Specific/NISTP256/AMD128/feopp.vo 0m12.25s | Compilers/Z/Syntax/Equality.vo 0m12.20s | Util/ZRange/LandLorBounds.vo 0m11.88s | Specific/X25519/C64/feadd.vo 0m11.86s | Experiments/NewPipeline/GENERATEDIdentifiersWithoutTypesProofs.vo 0m11.83s | Primitives/MxDHRepChange.vo 0m11.54s | Arithmetic/Saturated/MontgomeryAPI.vo 0m10.75s | Experiments/NewPipeline/ExtractionOCaml/saturated_solinas 0m10.68s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Proofs.vo 0m10.48s | Arithmetic/Saturated/Core.vo 0m10.16s | Algebra/Ring.vo 0m09.88s | Specific/X2448/Karatsuba/C64/Synthesis.vo 0m09.41s | LegacyArithmetic/Double/Proofs/Multiply.vo 0m09.34s | Util/ZRange/CornersMonotoneBounds.vo 0m08.85s | LegacyArithmetic/ArchitectureToZLikeProofs.vo 0m08.77s | Experiments/NewPipeline/ExtractionOCaml/word_by_word_montgomery.ml 0m08.66s | LegacyArithmetic/Double/Proofs/ShiftRightDoubleWordImmediate.vo 0m08.56s | p384_64.c 0m08.26s | Compilers/Named/RegisterAssignInterp.vo 0m08.06s | Compilers/Named/CompileInterpSideConditions.vo 0m08.03s | Experiments/NewPipeline/GENERATEDIdentifiersWithoutTypes.vo 0m07.92s | Arithmetic/BarrettReduction/RidiculousFish.vo 0m07.84s | Arithmetic/MontgomeryReduction/Proofs.vo 0m07.82s | Util/ZUtil/ZSimplify/Autogenerated.vo 0m07.27s | Compilers/InlineConstAndOpWf.vo 0m07.14s | Specific/NISTP256/AMD64/Synthesis.vo 0m06.65s | Arithmetic/BarrettReduction/Generalized.vo 0m06.57s | Arithmetic/Saturated/MulSplit.vo 0m06.40s | Util/FixedWordSizesEquality.vo 0m06.38s | Compilers/Named/CompileWf.vo 0m06.37s | Compilers/Z/Bounds/InterpretationLemmas/PullCast.vo 0m06.32s | Util/ListUtil.vo 0m06.30s | Util/ZUtil/Modulo.vo 0m06.23s | Util/ZUtil/LandLorBounds.vo 0m06.17s | Specific/X25519/C64/Synthesis.vo 0m06.04s | Util/ZUtil/Morphisms.vo 0m06.03s | Compilers/InlineWf.vo 0m05.80s | LegacyArithmetic/Double/Proofs/RippleCarryAddSub.vo 0m05.73s | LegacyArithmetic/Pow2BaseProofs.vo 0m05.68s | Compilers/LinearizeWf.vo 0m05.50s | Experiments/NewPipeline/ExtractionHaskell/word_by_word_montgomery.hs 0m05.48s | LegacyArithmetic/Double/Proofs/SpreadLeftImmediate.vo 0m05.45s | Curves/Edwards/Pre.vo 0m05.44s | Util/FsatzAutoLemmas.vo 0m05.42s | Experiments/NewPipeline/ExtractionOCaml/unsaturated_solinas.ml 0m05.40s | Compilers/Z/HexNotationConstants.vo 0m05.08s | Compilers/WfProofs.vo 0m04.92s | Algebra/Field_test.vo 0m04.78s | Experiments/NewPipeline/RewriterWf1.vo 0m04.76s | Specific/Framework/ArithmeticSynthesis/Montgomery.vo 0m04.66s | Arithmetic/BarrettReduction/HAC.vo 0m04.53s | Compilers/Z/Bounds/Pipeline/Definition.vo 0m04.50s | Compilers/Z/BinaryNotationConstants.vo 0m04.30s | Curves/Montgomery/Affine.vo 0m04.28s | Specific/NISTP256/AMD128/Synthesis.vo 0m04.04s | Experiments/NewPipeline/MiscCompilerPassesProofs.vo 0m04.03s | Experiments/NewPipeline/ExtractionHaskell/unsaturated_solinas.hs 0m03.93s | Experiments/NewPipeline/ExtractionOCaml/saturated_solinas.ml 0m03.86s | p256_32.c 0m03.85s | Arithmetic/MontgomeryReduction/WordByWord/Proofs.vo 0m03.83s | LegacyArithmetic/Double/Proofs/ShiftRight.vo 0m03.74s | secp256k1_32.c 0m03.66s | Compilers/EtaWf.vo 0m03.63s | Util/ZUtil/LandLorShiftBounds.vo 0m03.58s | Util/ZUtil/Shift.vo 0m03.50s | Compilers/Z/ArithmeticSimplifier.vo 0m03.40s | Compilers/Z/Bounds/InterpretationLemmas/IsBoundedBy.vo 0m03.36s | LegacyArithmetic/Double/Proofs/ShiftLeft.vo 0m03.34s | LegacyArithmetic/InterfaceProofs.vo 0m03.32s | Algebra/Group.vo 0m03.30s | Experiments/NewPipeline/ExtractionHaskell/saturated_solinas.hs 0m03.30s | Util/ZUtil/Div.vo 0m03.02s | LegacyArithmetic/Double/Proofs/Decode.vo 0m03.01s | Compilers/Named/ContextProperties.vo 0m02.96s | Util/WordUtil.vo 0m02.94s | Compilers/TestCase.vo 0m02.89s | Compilers/InlineInterp.vo 0m02.89s | Compilers/Named/CompileInterp.vo 0m02.83s | LegacyArithmetic/ZBoundedZ.vo 0m02.70s | Spec/MontgomeryCurve.vo 0m02.61s | Compilers/Named/ContextProperties/Proper.vo 0m02.57s | LegacyArithmetic/BarretReduction.vo 0m02.53s | Arithmetic/Saturated/Freeze.vo 0m02.46s | Arithmetic/ModularArithmeticTheorems.vo 0m02.40s | Specific/NISTP256/FancyMachine256/Montgomery.vo 0m02.34s | Specific/NISTP256/FancyMachine256/Core.vo 0m02.28s | Specific/NISTP256/FancyMachine256/Barrett.vo 0m02.26s | Compilers/CommonSubexpressionEliminationProperties.vo 0m02.18s | Compilers/Z/RewriteAddToAdcInterp.vo 0m02.18s | Util/ZRange/SplitBounds.vo 0m02.16s | Compilers/Z/Bounds/Relax.vo 0m02.16s | p224_32.c 0m02.15s | curve25519_32.c 0m02.10s | Util/ZUtil/Quot.vo 0m02.05s | Compilers/Named/NameUtilProperties.vo 0m02.03s | Specific/Framework/ArithmeticSynthesis/Defaults.vo 0m02.00s | Arithmetic/PrimeFieldTheorems.vo 0m01.90s | Util/ZUtil/AddGetCarry.vo 0m01.87s | LegacyArithmetic/MontgomeryReduction.vo 0m01.86s | Compilers/Z/JavaNotations.vo 0m01.81s | Compilers/WfReflective.vo 0m01.75s | Specific/Framework/ReificationTypes.vo 0m01.74s | Spec/WeierstrassCurve.vo 0m01.69s | Util/NatUtil.vo 0m01.68s | Arithmetic/CoreUnfolder.vo 0m01.66s | Util/Tuple.vo 0m01.66s | p224_64.c 0m01.62s | Util/ZUtil/Pow2Mod.vo 0m01.61s | Compilers/Named/WfFromUnit.vo 0m01.61s | Specific/Framework/ArithmeticSynthesis/Base.vo 0m01.59s | Util/ZUtil/Rshi.vo 0m01.56s | Experiments/NewPipeline/CLI.vo 0m01.56s | Specific/Framework/OutputType.vo 0m01.54s | Compilers/Named/InterpretToPHOASWf.vo 0m01.54s | Util/ZUtil/Ones.vo 0m01.50s | p256_64.c 0m01.50s | secp256k1_64.c 0m01.48s | Algebra/ScalarMult.vo 0m01.47s | Compilers/Relations.vo 0m01.45s | Arithmetic/BarrettReduction/Wikipedia.vo 0m01.39s | LegacyArithmetic/Double/Proofs/BitwiseOr.vo 0m01.39s | curve25519_64.c 0m01.38s | Util/QUtil.vo 0m01.36s | Curves/Edwards/XYZT/Precomputed.vo 0m01.36s | Util/ZRange/BasicLemmas.vo 0m01.35s | Util/ZUtil/CC.vo 0m01.32s | bbv/theories/NatLib.vo 0m01.30s | Specific/Framework/ArithmeticSynthesis/Karatsuba.vo 0m01.29s | Experiments/NewPipeline/StandaloneHaskellMain.vo 0m01.28s | bbv/theories/ZLib.vo 0m01.26s | Experiments/NewPipeline/StandaloneOCamlMain.vo 0m01.23s | Util/ZUtil/Stabilization.vo 0m01.22s | Util/ZUtil/Testbit.vo 0m01.21s | Coqprime/PrimalityTest/EGroup 0m01.20s | Compilers/LinearizeInterp.vo 0m01.20s | LegacyArithmetic/BaseSystemProofs.vo 0m01.16s | Compilers/Z/Syntax/Util.vo 0m01.16s | Experiments/NewPipeline/Language.vo 0m01.16s | LegacyArithmetic/Double/Proofs/LoadImmediate.vo 0m01.14s | Compilers/Z/RewriteAddToAdcWf.vo 0m01.13s | Arithmetic/Saturated/CoreUnfolder.vo 0m01.13s | Compilers/MultiSizeTest.vo 0m01.13s | Experiments/NewPipeline/AbstractInterpretation.vo 0m01.13s | Experiments/NewPipeline/CompilersTestCases.vo 0m01.08s | Curves/Montgomery/AffineInstances.vo 0m01.03s | Specific/Framework/ArithmeticSynthesis/KaratsubaPackage.vo 0m01.03s | Specific/Framework/SynthesisFramework.vo 0m01.01s | Compilers/Named/InterpretToPHOASInterp.vo 0m00.99s | Coqprime/Z/ZCAux 0m00.97s | Util/ZUtil/Modulo/PullPush.vo 0m00.96s | Specific/X25519/C32/CurveParameters.vo 0m00.95s | Arithmetic/Saturated/WrappersUnfolder.vo 0m00.94s | Algebra/IntegralDomain.vo 0m00.94s | LegacyArithmetic/Double/Proofs/SelectConditional.vo 0m00.94s | Specific/Framework/IntegrationTestDisplayCommon.vo 0m00.92s | Compilers/Named/FMapContext.vo 0m00.92s | Compilers/Z/CommonSubexpressionElimination.vo 0m00.91s | Experiments/NewPipeline/RewriterProofs.vo 0m00.89s | Compilers/Z/Bounds/Pipeline/ReflectiveTactics.vo 0m00.88s | Compilers/WfInversion.vo 0m00.87s | Util/PartiallyReifiedProp.vo 0m00.85s | Util/NumTheoryUtil.vo 0m00.84s | Specific/Framework/IntegrationTestTemporaryMiscCommon.vo 0m00.83s | Arithmetic/Saturated/MulSplitUnfolder.vo 0m00.83s | Specific/Framework/ArithmeticSynthesis/Freeze.vo 0m00.83s | Util/ZUtil/Log2.vo 0m00.82s | Arithmetic/Saturated/UniformWeight.vo 0m00.82s | Compilers/Named/CompileProperties.vo 0m00.82s | Coqprime/PrimalityTest/Root 0m00.82s | Coqprime/Z/ZSum 0m00.82s | Specific/Framework/ReificationTypesPackage.vo 0m00.80s | Compilers/InterpByIsoProofs.vo 0m00.80s | Compilers/Named/InterpSideConditionsInterp.vo 0m00.78s | Specific/Framework/ArithmeticSynthesis/SquareFromMul.vo 0m00.77s | Specific/Framework/MontgomeryReificationTypesPackage.vo 0m00.77s | Util/ZUtil/Divide.vo 0m00.77s | Util/ZUtil/EquivModulo.vo 0m00.77s | Util/ZUtil/Tactics/RewriteModSmall.vo 0m00.77s | Util/ZUtil/ZSimplify/Simple.vo 0m00.76s | Coqprime/PrimalityTest/Cyclic 0m00.76s | Specific/Framework/ArithmeticSynthesis/HelperTactics.vo 0m00.76s | Specific/Framework/ArithmeticSynthesis/Ladderstep.vo 0m00.76s | Specific/Framework/ArithmeticSynthesis/MontgomeryPackage.vo 0m00.74s | Compilers/InlineConstAndOpInterp.vo 0m00.74s | Compilers/MapCastByDeBruijnInterp.vo 0m00.74s | Compilers/Named/AListContext.vo 0m00.74s | Specific/Framework/ArithmeticSynthesis/LadderstepPackage.vo 0m00.73s | Algebra/SubsetoidRing.vo 0m00.73s | Arithmetic/Saturated/FreezeUnfolder.vo 0m00.73s | Util/CPSUtil.vo 0m00.72s | Arithmetic/MontgomeryReduction/WordByWord/Definition.vo 0m00.72s | Arithmetic/Saturated/Wrappers.vo 0m00.72s | Compilers/CommonSubexpressionEliminationInterp.vo 0m00.72s | Util/ZUtil/Peano.vo 0m00.72s | Util/ZUtil/Z2Nat.vo 0m00.71s | Util/ZUtil/Le.vo 0m00.70s | Specific/Framework/MontgomeryReificationTypes.vo 0m00.69s | Compilers/Z/Bounds/Pipeline.vo 0m00.69s | Specific/Framework/ArithmeticSynthesis/BasePackage.vo 0m00.69s | Specific/Framework/ArithmeticSynthesis/DefaultsPackage.vo 0m00.67s | Arithmetic/Saturated/UniformWeightInstances.vo 0m00.67s | Specific/Framework/ArithmeticSynthesis/FreezePackage.vo 0m00.66s | Compilers/CommonSubexpressionElimination.vo 0m00.66s | Compilers/SmartMap.vo 0m00.66s | Compilers/Z/Reify.vo 0m00.66s | Util/Factorize.vo 0m00.65s | Curves/Montgomery/XZ.vo 0m00.65s | bbv/theories/Nomega.vo 0m00.64s | Coqprime/PrimalityTest/Zp 0m00.62s | Experiments/NewPipeline/MiscCompilerPasses.vo 0m00.61s | Util/Decidable.vo 0m00.61s | Util/ZUtil/Mul.vo 0m00.60s | Compilers/MapBaseTypeWf.vo 0m00.60s | Compilers/MapCastByDeBruijnWf.vo 0m00.60s | Compilers/Z/InlineConstAndOpInterp.vo 0m00.60s | Curves/Weierstrass/Affine.vo 0m00.60s | LegacyArithmetic/Interface.vo 0m00.59s | Compilers/Z/InlineConstAndOpWf.vo 0m00.59s | Util/Loops.vo 0m00.58s | Compilers/Z/Bounds/Pipeline/Glue.vo 0m00.58s | Compilers/Z/Bounds/RoundUpLemmas.vo 0m00.58s | Util/ZUtil/Lnot.vo 0m00.57s | Spec/CompleteEdwardsCurve.vo 0m00.56s | Compilers/Z/Bounds/MapCastByDeBruijnInterp.vo 0m00.56s | Util/NUtil.vo 0m00.55s | Compilers/Named/WfInterp.vo 0m00.55s | Compilers/Z/MapCastByDeBruijn.vo 0m00.55s | Compilers/Z/MapCastByDeBruijnInterp.vo 0m00.55s | Compilers/Z/Named/RewriteAddToAdc.vo 0m00.55s | Compilers/Z/RewriteAddToAdc.vo 0m00.55s | Util/Decidable/Decidable2Bool.vo 0m00.54s | Compilers/Z/Bounds/InterpretationLemmas/Tactics.vo 0m00.54s | Compilers/Z/Bounds/MapCastByDeBruijn.vo 0m00.54s | Compilers/Z/Bounds/MapCastByDeBruijnWf.vo 0m00.54s | LegacyArithmetic/Double/Proofs/ShiftLeftRightTactic.vo 0m00.53s | Compilers/WfReflectiveGen.vo 0m00.52s | Arithmetic/ModularArithmeticPre.vo 0m00.52s | Compilers/InlineConstAndOpByRewriteWf.vo 0m00.52s | Compilers/Named/DeadCodeEliminationInterp.vo 0m00.52s | Compilers/Z/GeneralizeVarWf.vo 0m00.52s | Specific/Framework/CurveParameters.vo 0m00.51s | Compilers/Named/PositiveContext/DefaultsProperties.vo 0m00.51s | Compilers/Z/Bounds/Interpretation.vo 0m00.51s | Compilers/Z/CommonSubexpressionEliminationInterp.vo 0m00.51s | Coqprime/List/Permutation 0m00.50s | Compilers/InputSyntax.vo 0m00.50s | Compilers/InterpWfRel.vo 0m00.50s | Compilers/Z/ArithmeticSimplifierUtil.vo 0m00.50s | Compilers/Z/CommonSubexpressionEliminationWf.vo 0m00.50s | Coqprime/PrimalityTest/Lagrange 0m00.50s | LegacyArithmetic/Double/Core.vo 0m00.50s | Util/HList.vo 0m00.49s | Compilers/GeneralizeVarInterp.vo 0m00.49s | Compilers/Z/Syntax.vo 0m00.49s | LegacyArithmetic/ArchitectureToZLike.vo 0m00.49s | Util/NUtil/WithoutReferenceToZ.vo 0m00.49s | Util/ZBounded.vo 0m00.47s | Compilers/InterpProofs.vo 0m00.47s | Compilers/Z/InlineConstAndOpByRewriteInterp.vo 0m00.47s | Spec/EdDSA.vo 0m00.47s | Util/ZRange.vo 0m00.46s | Algebra/Nsatz.vo 0m00.46s | Compilers/InterpRewriting.vo 0m00.46s | Compilers/InterpWf.vo 0m00.46s | Compilers/Z/GeneralizeVarInterp.vo 0m00.46s | Compilers/Z/InlineWf.vo 0m00.46s | Compilers/Z/Named/DeadCodeEliminationInterp.vo 0m00.46s | Compilers/ZExtended/MapBaseType.vo 0m00.46s | Coqprime/List/UList 0m00.45s | Compilers/GeneralizeVarWf.vo 0m00.45s | Compilers/InlineConstAndOpByRewriteInterp.vo 0m00.45s | Compilers/Reify.vo 0m00.45s | Compilers/Z/InlineConstAndOpByRewriteWf.vo 0m00.45s | Specific/Framework/RawCurveParameters.vo 0m00.45s | Util/AdditionChainExponentiation.vo 0m00.44s | Compilers/InlineConstAndOp.vo 0m00.44s | Compilers/Z/Inline.vo 0m00.44s | Coqprime/PrimalityTest/Euler 0m00.44s | LegacyArithmetic/BaseSystem.vo 0m00.44s | Specific/Framework/IntegrationTestDisplayCommonTactics.vo 0m00.44s | Specific/X25519/C64/CurveParameters.vo 0m00.44s | Util/Arg.vo 0m00.44s | Util/ZUtil/CPS.vo 0m00.43s | Compilers/Z/InlineInterp.vo 0m00.43s | Compilers/Z/MapCastByDeBruijnWf.vo 0m00.43s | Experiments/NewPipeline/UnderLets.vo 0m00.43s | Util/ZUtil.vo 0m00.42s | Compilers/Named/WeakListContext.vo 0m00.42s | Compilers/Z/FoldTypes.vo 0m00.42s | Compilers/Z/GeneralizeVar.vo 0m00.42s | Compilers/Z/InlineConstAndOp.vo 0m00.42s | Compilers/Z/InlineConstAndOpByRewrite.vo 0m00.42s | Compilers/Z/InterpSideConditions.vo 0m00.42s | Compilers/Z/OpInversion.vo 0m00.42s | Experiments/PartialEvaluationWithLetIn.vo 0m00.42s | Util/ZRange/Operations.vo 0m00.41s | Compilers/ZExtended/InlineConstAndOpWf.vo 0m00.41s | Compilers/ZExtended/Syntax.vo 0m00.40s | Algebra/Monoid.vo 0m00.40s | Compilers/Named/IdContext.vo 0m00.40s | Coqprime/PrimalityTest/IGroup 0m00.40s | Util/ZRange/Show.vo 0m00.40s | Util/ZUtil/Tactics/SimplifyFractionsLe.vo 0m00.39s | Compilers/Named/RegisterAssign.vo 0m00.39s | Compilers/Z/Bounds/Pipeline/OutputType.vo 0m00.39s | Coqprime/List/ListAux 0m00.39s | Specific/NISTP256/AMD128/CurveParameters.vo 0m00.39s | Util/Strings/String.vo 0m00.38s | Arithmetic/MontgomeryReduction/Definition.vo 0m00.38s | Compilers/ZExtended/InlineConstAndOp.vo 0m00.38s | LegacyArithmetic/ZBounded.vo 0m00.37s | Compilers/ExprInversion.vo 0m00.37s | Compilers/MapBaseType.vo 0m00.37s | Compilers/MapCastByDeBruijn.vo 0m00.37s | Compilers/Named/DeadCodeElimination.vo 0m00.37s | Compilers/Named/Syntax.vo 0m00.37s | Compilers/ZExtended/InlineConstAndOpInterp.vo 0m00.37s | Compilers/ZExtended/Syntax/Util.vo 0m00.37s | Coqprime/List/ZProgression 0m00.37s | Util/BoundedWord.vo 0m00.36s | Compilers/CountLets.vo 0m00.36s | Compilers/GeneralizeVar.vo 0m00.36s | Compilers/Linearize.vo 0m00.36s | Compilers/Named/ContextDefinitions.vo 0m00.36s | Compilers/Named/InterpSideConditions.vo 0m00.36s | Compilers/Tuple.vo 0m00.36s | Compilers/Z/TypeInversion.vo 0m00.36s | Compilers/ZExtended/InlineConstAndOpByRewriteWf.vo 0m00.36s | Spec/ModularArithmetic.vo 0m00.36s | Specific/X2448/Karatsuba/C64/CurveParameters.vo 0m00.36s | Util/FixedWordSizes.vo 0m00.36s | Util/ZUtil/MulSplit.vo 0m00.35s | Compilers/CommonSubexpressionEliminationDenote.vo 0m00.35s | Compilers/Named/EstablishLiveness.vo 0m00.35s | Compilers/Named/ExprInversion.vo 0m00.35s | LegacyArithmetic/Pow2Base.vo 0m00.35s | Specific/Framework/CurveParametersPackage.vo 0m00.35s | Specific/NISTP256/AMD64/CurveParameters.vo 0m00.35s | Util/IdfunWithAlt.vo 0m00.35s | Util/ZUtil/Tactics/ZeroBounds.vo 0m00.34s | Compilers/Inline.vo 0m00.34s | Compilers/InlineConstAndOpByRewrite.vo 0m00.34s | Compilers/Named/Compile.vo 0m00.34s | Compilers/Named/Context.vo 0m00.34s | Compilers/Named/ContextOn.vo 0m00.34s | Compilers/Named/MapCast.vo 0m00.34s | Compilers/Named/PositiveContext.vo 0m00.34s | Compilers/Named/PositiveContext/Defaults.vo 0m00.34s | Compilers/Named/Wf.vo 0m00.34s | Util/ZUtil/Hints/ZArith.vo 0m00.34s | Util/ZUtil/Land.vo 0m00.34s | Util/ZUtil/Tactics/Ztestbit.vo 0m00.33s | Algebra/Hierarchy.vo 0m00.33s | Compilers/FilterLive.vo 0m00.33s | Compilers/FoldTypes.vo 0m00.33s | Compilers/InterpByIso.vo 0m00.33s | Compilers/Named/GetNames.vo 0m00.33s | Compilers/Z/Named/DeadCodeElimination.vo 0m00.33s | Compilers/ZExtended/InlineConstAndOpByRewrite.vo 0m00.33s | Coqprime/PrimalityTest/FGroup 0m00.33s | Util/ZUtil/Definitions.vo 0m00.33s | Util/ZUtil/Tactics/DivModToQuotRem.vo 0m00.33s | Util/ZUtil/Tactics/LtbToLt.vo 0m00.33s | bbv/theories/ZHints.vo 0m00.32s | Compilers/Named/MapType.vo 0m00.32s | Coqprime/List/Iterator 0m00.32s | Util/Strings/HexString.vo 0m00.32s | Util/ZUtil/Div/Bootstrap.vo 0m00.32s | Util/ZUtil/Hints/Core.vo 0m00.32s | Util/ZUtil/Hints/Ztestbit.vo 0m00.32s | Util/ZUtil/Pow.vo 0m00.31s | Compilers/StripExpr.vo 0m00.31s | Util/ZUtil/DistrIf.vo 0m00.31s | Util/ZUtil/Hints.vo 0m00.31s | Util/ZUtil/Hints/PullPush.vo 0m00.31s | Util/ZUtil/N2Z.vo 0m00.31s | Util/ZUtil/Odd.vo 0m00.31s | Util/ZUtil/Opp.vo 0m00.31s | Util/ZUtil/Tactics/PullPush/Modulo.vo 0m00.30s | Compilers/Named/ContextProperties/Tactics.vo 0m00.30s | Compilers/Named/CountLets.vo 0m00.30s | Compilers/Named/InterpretToPHOAS.vo 0m00.30s | Compilers/Named/SmartMap.vo 0m00.30s | Compilers/ZExtended/InlineConstAndOpByRewriteInterp.vo 0m00.30s | Util/Strings/Show.vo 0m00.30s | Util/ZUtil/Modulo/Bootstrap.vo 0m00.30s | Util/ZUtil/Pow2.vo 0m00.30s | Util/ZUtil/Sgn.vo 0m00.30s | Util/ZUtil/Sorting.vo 0m00.30s | Util/ZUtil/Tactics/PeelLe.vo 0m00.30s | Util/ZUtil/Tactics/ReplaceNegWithPos.vo 0m00.30s | Util/ZUtil/ZSimplify/Core.vo 0m00.29s | Util/Strings/OctalString.vo 0m00.29s | Util/Sum.vo 0m00.29s | Util/ZUtil/Tactics/PullPush.vo 0m00.29s | bbv/theories/HexNotationWord.vo 0m00.29s | bbv/theories/N_Z_nat_conversions.vo 0m00.29s | bbv/theories/WordScope.vo 0m00.28s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Definition.vo 0m00.28s | Util/SideConditions/ModInvPackage.vo 0m00.28s | Util/SideConditions/RingPackage.vo 0m00.28s | Util/ZUtil/Tactics.vo 0m00.28s | Util/ZUtil/ZSimplify.vo 0m00.28s | bbv/theories/HexNotation.vo 0m00.27s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Dependent/Definition.vo 0m00.27s | Util/PointedProp.vo 0m00.27s | Util/ZUtil/AddModulo.vo 0m00.27s | Util/ZUtil/Tactics/LinearSubstitute.vo 0m00.26s | bbv/theories/BinNotation.vo 0m00.26s | bbv/theories/BinNotationZ.vo 0m00.25s | Util/Strings/BinaryString.vo 0m00.25s | Util/ZUtil/Tactics/SplitMinMax.vo 0m00.24s | Compilers/Equality.vo 0m00.24s | Spec/MxDH.vo 0m00.24s | Util/OptionList.vo 0m00.24s | Util/ZUtil/Ge.vo 0m00.23s | Compilers/EtaInterp.vo 0m00.23s | Util/SideConditions/Autosolve.vo 0m00.23s | Util/Strings/Equality.vo 0m00.23s | Util/ZUtil/ModInv.vo 0m00.23s | Util/ZUtil/Tactics/PrimeBound.vo 0m00.22s | Util/Strings/Decimal.vo 0m00.22s | Util/ZUtil/Tactics/CompareToSgn.vo 0m00.22s | Util/ZUtil/Tactics/DivideExistsMul.vo 0m00.22s | Util/ZUtil/Zselect.vo 0m00.22s | bbv/theories/NLib.vo 0m00.21s | Coqprime/N/NatAux 0m00.20s | Compilers/InSet/TypeifyInterp.vo 0m00.20s | Compilers/Wf.vo 0m00.20s | Util/Decidable/Bool2Prop.vo 0m00.20s | Util/LetInMonad.vo 0m00.20s | Util/Option.vo 0m00.20s | Util/Strings/Ascii.vo 0m00.20s | Util/ZUtil/Notations.vo 0m00.19s | Util/ParseTaps.vo 0m00.19s | bbv/theories/HexNotationZ.vo 0m00.18s | Util/ListUtil/FoldBool.vo 0m00.16s | Util/SideConditions/ReductionPackages.vo 0m00.16s | bbv/theories/DepEq.vo 0m00.14s | Compilers/RewriterWf.vo 0m00.14s | Compilers/TypeInversion.vo 0m00.14s | Util/TagList.vo 0m00.12s | Compilers/Named/NameUtil.vo 0m00.12s | Util/ListUtil/Forall.vo 0m00.12s | Util/PrimitiveProd.vo 0m00.12s | Util/Sigma.vo 0m00.12s | bbv/theories/DepEqNat.vo 0m00.11s | Compilers/Conversion.vo 0m00.10s | Util/PrimitiveHList.vo 0m00.10s | Util/Prod.vo 0m00.10s | Util/Relations.vo 0m00.09s | Compilers/RenameBinders.vo 0m00.09s | Compilers/Rewriter.vo 0m00.09s | Specific/Framework/Packages.vo 0m00.09s | Util/Equality.vo 0m00.08s | Compilers/Eta.vo 0m00.08s | Compilers/InterpSideConditions.vo 0m00.08s | Compilers/RewriterInterp.vo 0m00.08s | Compilers/Syntax.vo 0m00.08s | Util/AutoRewrite.vo 0m00.08s | Util/Bool.vo 0m00.07s | Compilers/InSet/Syntax.vo 0m00.07s | Compilers/TypeUtil.vo 0m00.07s | Util/CPSNotations.vo 0m00.07s | Util/IffT.vo 0m00.06s | Compilers/Intros.vo 0m00.06s | Compilers/Map.vo 0m00.06s | LegacyArithmetic/VerdiTactics.vo 0m00.06s | Util/Bool/Equality.vo 0m00.06s | Util/HProp.vo 0m00.06s | Util/Isomorphism.vo 0m00.06s | Util/LetIn.vo 0m00.06s | Util/Logic.vo 0m00.06s | Util/PER.vo 0m00.06s | Util/Pointed.vo 0m00.06s | Util/SideConditions/CorePackages.vo 0m00.06s | Util/Tactics/BreakMatch.vo 0m00.06s | Util/Tactics/ClearbodyAll.vo 0m00.06s | Util/Tactics/DoWithHyp.vo 0m00.06s | Util/Tactics/Head.vo 0m00.06s | Util/Tactics/MoveLetIn.vo 0m00.06s | Util/Tactics/Not.vo 0m00.06s | Util/Tactics/VM.vo 0m00.06s | bbv/theories/ReservedNotations.vo 0m00.05s | Compilers/InSet/Typeify.vo 0m00.05s | Util/Bool/IsTrue.vo 0m00.05s | Util/ChangeInAll.vo 0m00.05s | Util/Curry.vo 0m00.05s | Util/ErrorT.vo 0m00.05s | Util/Logic/ImplAnd.vo 0m00.05s | Util/Logic/ProdForall.vo 0m00.05s | Util/Notations.vo 0m00.05s | Util/Pos.vo 0m00.05s | Util/Sigma/Associativity.vo 0m00.05s | Util/Sigma/Lift.vo 0m00.05s | Util/Sigma/MapProjections.vo 0m00.05s | Util/Sumbool.vo 0m00.05s | Util/Tactics/CacheTerm.vo 0m00.05s | Util/Tactics/ClearDuplicates.vo 0m00.05s | Util/Tactics/Contains.vo 0m00.05s | Util/Tactics/DestructHead.vo 0m00.05s | Util/Tactics/DestructHyps.vo 0m00.05s | Util/Tactics/ESpecialize.vo 0m00.05s | Util/Tactics/EvarExists.vo 0m00.05s | Util/Tactics/GetGoal.vo 0m00.05s | Util/Tactics/HeadUnderBinders.vo 0m00.05s | Util/Tactics/OnSubterms.vo 0m00.05s | Util/Tactics/RewriteHyp.vo 0m00.05s | Util/Tactics/SetoidSubst.vo 0m00.05s | Util/Tactics/SimplifyProjections.vo 0m00.05s | Util/Tactics/SpecializeAllWays.vo 0m00.05s | Util/Tactics/SpecializeBy.vo 0m00.05s | Util/Tactics/SplitInContext.vo 0m00.05s | Util/Tactics/TransparentAssert.vo 0m00.05s | Util/Tactics/UnfoldArg.vo 0m00.04s | Util/DefaultedTypes.vo 0m00.04s | Util/FixCoqMistakes.vo 0m00.04s | Util/Tactics.vo 0m00.04s | Util/Tactics/ChangeInAll.vo 0m00.04s | Util/Tactics/ClearAll.vo 0m00.04s | Util/Tactics/ConvoyDestruct.vo 0m00.04s | Util/Tactics/DebugPrint.vo 0m00.04s | Util/Tactics/DestructTrivial.vo 0m00.04s | Util/Tactics/ETransitivity.vo 0m00.04s | Util/Tactics/Forward.vo 0m00.04s | Util/Tactics/PoseTermWithName.vo 0m00.04s | Util/Tactics/PrintContext.vo 0m00.04s | Util/Tactics/Revert.vo 0m00.04s | Util/Tactics/RunTacticAsConstr.vo 0m00.04s | Util/Tactics/SideConditionsBeforeToAfter.vo 0m00.04s | Util/Tactics/SimplifyRepeatedIfs.vo 0m00.04s | Util/Tactics/SubstEvars.vo 0m00.04s | Util/Tactics/Test.vo 0m00.04s | Util/Tactics/UniquePose.vo 0m00.04s | Util/Tower.vo 0m00.04s | Util/Unit.vo 0m00.03s | Coqprime/Tactic/Tactic 0m00.03s | Util/GlobalSettings.vo 0m00.03s | Util/SideConditions/AdmitPackage.vo 0m00.03s | Util/Tactics/SetEvars.vo 0m00.03s | Util/Tactics/SubstLet.vo 0m00.03s | Util/Tactics/UnifyAbstractReflexivity.vo
* Fix a typo in the previous commitGravatar Jason Gross2018-08-24
|
* Add util target as a sort of common targetGravatar Jason Gross2018-08-24
|
* Bump bbvGravatar Jason Gross2018-08-24
|
* Add some makefile targets for Coq's CIGravatar Jason Gross2018-08-23
| | | | This should allow faster, more parallel runs of Coq's CI
* Split up new-pipeline moreGravatar Jason Gross2018-08-13
| | | | | Also change the travis config so that it's easier to insert new stages without globally renaming everything
* Split up rewrite rules proofs into multiple filesGravatar Jason Gross2018-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This may help with travis timing, and should help with local build-times too, a bit. After | File Name | Before || Change | % Change --------------------------------------------------------------------------------------------------------------------- 27m47.33s | Total | 27m47.30s || +0m00.02s | +0.00% --------------------------------------------------------------------------------------------------------------------- 0m00.96s | Experiments/NewPipeline/RewriterProofs | 10m55.28s || -10m54.31s | -99.85% 9m36.19s | Experiments/NewPipeline/RewriterRulesGood | N/A || +9m36.19s | ∞ 1m12.65s | Experiments/NewPipeline/RewriterWf2 | N/A || +1m12.65s | ∞ 0m04.35s | Experiments/NewPipeline/RewriterWf1 | N/A || +0m04.34s | ∞ 5m55.46s | Experiments/NewPipeline/SlowPrimeSynthesisExamples | 5m55.87s || -0m00.41s | -0.11% 4m32.42s | Experiments/NewPipeline/Toplevel1 | 4m31.54s || +0m00.87s | +0.32% 1m38.81s | Experiments/NewPipeline/Toplevel2 | 1m39.00s || -0m00.18s | -0.19% 0m38.16s | p521_32.c | 0m38.11s || +0m00.04s | +0.13% 0m37.22s | Experiments/NewPipeline/ExtractionOCaml/word_by_word_montgomery | 0m37.41s || -0m00.18s | -0.50% 0m34.44s | Experiments/NewPipeline/ExtractionHaskell/word_by_word_montgomery | 0m34.37s || +0m00.07s | +0.20% 0m31.84s | p521_64.c | 0m31.70s || +0m00.14s | +0.44% 0m21.46s | p384_32.c | 0m21.46s || +0m00.00s | +0.00% 0m21.02s | Experiments/NewPipeline/ExtractionHaskell/unsaturated_solinas | 0m20.67s || +0m00.34s | +1.69% 0m18.81s | Experiments/NewPipeline/ExtractionOCaml/unsaturated_solinas | 0m18.92s || -0m00.11s | -0.58% 0m13.83s | Experiments/NewPipeline/ExtractionHaskell/saturated_solinas | 0m13.95s || -0m00.11s | -0.86% 0m10.56s | Experiments/NewPipeline/ExtractionOCaml/saturated_solinas | 0m10.55s || +0m00.00s | +0.09% 0m08.57s | Experiments/NewPipeline/ExtractionOCaml/word_by_word_montgomery.ml | 0m08.51s || +0m00.06s | +0.70% 0m08.14s | p384_64.c | 0m08.14s || +0m00.00s | +0.00% 0m05.53s | Experiments/NewPipeline/ExtractionHaskell/word_by_word_montgomery.hs | 0m05.49s || +0m00.04s | +0.72% 0m05.46s | Experiments/NewPipeline/ExtractionOCaml/unsaturated_solinas.ml | 0m05.34s || +0m00.12s | +2.24% 0m04.05s | Experiments/NewPipeline/ExtractionHaskell/unsaturated_solinas.hs | 0m04.06s || -0m00.00s | -0.24% 0m03.88s | Experiments/NewPipeline/ExtractionOCaml/saturated_solinas.ml | 0m03.84s || +0m00.04s | +1.04% 0m03.40s | secp256k1_32.c | 0m03.22s || +0m00.17s | +5.59% 0m03.31s | Experiments/NewPipeline/ExtractionHaskell/saturated_solinas.hs | 0m03.34s || -0m00.02s | -0.89% 0m03.24s | p256_32.c | 0m03.20s || +0m00.04s | +1.25% 0m02.09s | curve25519_32.c | 0m01.95s || +0m00.13s | +7.17% 0m01.91s | p224_32.c | 0m01.92s || -0m00.01s | -0.52% 0m01.57s | p224_64.c | 0m01.42s || +0m00.15s | +10.56% 0m01.44s | p256_64.c | 0m01.41s || +0m00.03s | +2.12% 0m01.39s | Experiments/NewPipeline/CLI | 0m01.42s || -0m00.03s | -2.11% 0m01.38s | secp256k1_64.c | 0m01.38s || +0m00.00s | +0.00% 0m01.33s | curve25519_64.c | 0m01.34s || -0m00.01s | -0.74% 0m01.26s | Experiments/NewPipeline/StandaloneOCamlMain | 0m01.26s || +0m00.00s | +0.00% 0m01.20s | Experiments/NewPipeline/StandaloneHaskellMain | 0m01.24s || -0m00.04s | -3.22%
* Move new-pipeline to its own stageGravatar Jason Gross2018-08-04
| | | | It's starting to get pretty slow.
* User TIMER_FULL for .ml, .hs, compiled filesGravatar Jason Gross2018-07-24
| | | | This gives them different entries in the timing diff
* Add some primes to be synthesizedGravatar Jason Gross2018-07-21
|
* Montgomery reduction in new pipelineGravatar Jason Gross2018-07-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After | File Name | Before || Change | % Change -------------------------------------------------------------------------------------------------------- 18m19.81s | Total | 14m31.66s || +3m48.14s | +26.17% -------------------------------------------------------------------------------------------------------- 4m04.77s | Experiments/NewPipeline/Toplevel1 | 1m38.04s || +2m26.73s | +149.66% 5m12.44s | Experiments/NewPipeline/Rewriter | 4m20.00s || +0m52.43s | +20.16% 1m26.58s | Experiments/NewPipeline/Arithmetic | 0m55.51s || +0m31.07s | +55.97% 5m44.19s | Experiments/NewPipeline/SlowPrimeSynthesisExamples | 5m45.62s || -0m01.43s | -0.41% 1m29.48s | Experiments/NewPipeline/Toplevel2 | 1m29.73s || -0m00.25s | -0.27% 0m12.75s | Experiments/NewPipeline/CStringification | 0m12.71s || +0m00.03s | +0.31% 0m01.32s | Experiments/NewPipeline/GENERATEDIdentifiersWithoutTypes | 0m01.20s || +0m00.12s | +10.00% 0m01.31s | Experiments/NewPipeline/CLI | 0m01.33s || -0m00.02s | -1.50% 0m01.18s | Experiments/NewPipeline/StandaloneHaskellMain | 0m01.22s || -0m00.04s | -3.27% 0m01.12s | Experiments/NewPipeline/StandaloneOCamlMain | 0m01.21s || -0m00.08s | -7.43% 0m01.11s | Experiments/NewPipeline/Language | 0m01.14s || -0m00.02s | -2.63% 0m01.08s | Experiments/NewPipeline/AbstractInterpretation | 0m01.16s || -0m00.07s | -6.89% 0m00.90s | Experiments/NewPipeline/MiscCompilerPasses | 0m00.87s || +0m00.03s | +3.44% 0m00.74s | Experiments/NewPipeline/CompilersTestCases | 0m01.03s || -0m00.29s | -28.15% 0m00.44s | Experiments/NewPipeline/AbstractInterpretationProofs | 0m00.40s || +0m00.03s | +9.99% 0m00.41s | Experiments/NewPipeline/UnderLets | 0m00.50s || -0m00.09s | -18.00% After | File Name | Before || Change | % Change ------------------------------------------------------------------------------------------------------------------------- 107m58.13s | Total | 102m35.85s || +5m22.27s | +5.23% ------------------------------------------------------------------------------------------------------------------------- 4m32.58s | Experiments/NewPipeline/Toplevel1 | 1m50.07s || +2m42.50s | +147.64% N/A | ─abstract | 1m54.94s || -1m54.93s | -100.00% 1m54.19s | Specific/X2448/Karatsuba/C64/femul | N/A || +1m54.18s | ∞ 7m58.19s | Experiments/NewPipeline/Rewriter | 6m45.32s || +1m12.87s | +17.97% 2m13.30s | Experiments/NewPipeline/Arithmetic | 1m34.69s || +0m38.61s | +40.77% 5m30.50s | Curves/Weierstrass/Projective | 5m09.44s || +0m21.06s | +6.80% 12m00.73s | Curves/Weierstrass/AffineProofs | 11m43.07s || +0m17.65s | +2.51% 0m54.76s | Compilers/Z/ArithmeticSimplifierWf | 0m43.68s || +0m11.07s | +25.36% 10m06.67s | Experiments/SimplyTypedArithmetic | 9m58.44s || +0m08.22s | +1.37% 1m05.15s | Arithmetic/Karatsuba | 0m58.76s || +0m06.39s | +10.87% 0m41.15s | Specific/NISTP256/AMD128/femul | 0m47.16s || -0m06.00s | -12.74% 5m46.39s | Experiments/NewPipeline/SlowPrimeSynthesisExamples | 5m52.03s || -0m05.63s | -1.60% 2m14.99s | Specific/X25519/C64/ladderstep | 2m20.69s || -0m05.69s | -4.05% 0m48.64s | Specific/X25519/C32/freeze | 0m43.24s || +0m05.39s | +12.48% 0m26.80s | Specific/X25519/C64/fesquare | 0m20.83s || +0m05.97s | +28.66% 0m27.22s | Specific/X25519/C32/feadd | 0m31.34s || -0m04.12s | -13.14% 0m23.26s | Specific/NISTP256/AMD64/fenz | 0m19.10s || +0m04.16s | +21.78% 0m21.24s | Specific/NISTP256/AMD128/fesub | 0m25.24s || -0m04.00s | -15.84% 3m38.32s | Curves/Montgomery/XZProofs | 3m34.65s || +0m03.66s | +1.70% 1m14.93s | Compilers/Z/ArithmeticSimplifierInterp | 1m11.88s || +0m03.05s | +4.24% 0m16.16s | Arithmetic/Saturated/MontgomeryAPI | 0m12.26s || +0m03.90s | +31.81% 0m07.54s | Compilers/Z/Bounds/InterpretationLemmas/PullCast | 0m10.65s || -0m03.11s | -29.20% 2m29.22s | Specific/NISTP256/AMD64/femul | 2m31.90s || -0m02.68s | -1.76% 2m02.88s | Compilers/Named/MapCastInterp | 2m00.84s || +0m02.03s | +1.68% 1m54.19s | Curves/Weierstrass/Jacobian | 1m52.12s || +0m02.06s | +1.84% 1m30.98s | Specific/X25519/C32/femul | 1m28.28s || +0m02.70s | +3.05% 1m30.59s | Experiments/NewPipeline/Toplevel2 | 1m32.97s || -0m02.37s | -2.55% 1m20.73s | Demo | 1m18.51s || +0m02.21s | +2.82% 1m07.85s | Specific/X25519/C32/fesquare | 1m09.85s || -0m02.00s | -2.86% 0m31.78s | Specific/X25519/C32/fesub | 0m34.25s || -0m02.46s | -7.21% 0m31.18s | Arithmetic/Core | 0m33.92s || -0m02.74s | -8.07% 0m26.24s | Compilers/Z/CNotations | 0m28.35s || -0m02.11s | -7.44% 0m22.15s | Specific/X25519/C64/fecarry | 0m19.73s || +0m02.41s | +12.26% 0m21.61s | Arithmetic/Saturated/AddSub | 0m18.87s || +0m02.73s | +14.52% 0m21.58s | Specific/X25519/C64/fesub | 0m19.14s || +0m02.43s | +12.74% 0m14.37s | Arithmetic/Saturated/Core | 0m16.57s || -0m02.20s | -13.27% 2m57.98s | Curves/Montgomery/AffineProofs | 2m59.71s || -0m01.73s | -0.96% 1m46.10s | Spec/Test/X25519 | 1m47.38s || -0m01.28s | -1.19% 0m40.69s | Primitives/EdDSARepChange | 0m42.34s || -0m01.65s | -3.89% 0m40.29s | Specific/X25519/C32/fecarry | 0m42.21s || -0m01.92s | -4.54% 0m33.64s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Dependent/Proofs | 0m31.88s || +0m01.76s | +5.52% 0m31.96s | Specific/NISTP256/AMD64/feadd | 0m30.27s || +0m01.69s | +5.58% 0m23.14s | Specific/NISTP256/AMD128/feadd | 0m24.34s || -0m01.19s | -4.93% 0m18.76s | Specific/NISTP256/AMD128/feopp | 0m20.20s || -0m01.43s | -7.12% 0m18.62s | Compilers/Z/Syntax/Equality | 0m17.08s || +0m01.54s | +9.01% 0m15.06s | Util/ZUtil | 0m13.95s || +0m01.11s | +7.95% 0m14.13s | LegacyArithmetic/ArchitectureToZLikeProofs | 0m12.75s || +0m01.38s | +10.82% 0m12.43s | Compilers/Named/CompileInterpSideConditions | 0m10.85s || +0m01.58s | +14.56% 0m10.06s | Specific/NISTP256/AMD64/Synthesis | 0m11.31s || -0m01.25s | -11.05% 0m08.04s | Arithmetic/BarrettReduction/Generalized | 0m09.68s || -0m01.64s | -16.94% 0m06.25s | Specific/Framework/ArithmeticSynthesis/Montgomery | 0m05.18s || +0m01.07s | +20.65% 0m05.70s | LegacyArithmetic/InterfaceProofs | 0m07.21s || -0m01.50s | -20.94% 0m05.50s | Compilers/Z/Bounds/Pipeline/Definition | 0m06.57s || -0m01.07s | -16.28% 0m04.54s | LegacyArithmetic/Double/Proofs/Decode | 0m05.59s || -0m01.04s | -18.78% 0m04.32s | Compilers/Z/ArithmeticSimplifier | 0m05.36s || -0m01.04s | -19.40% 0m02.15s | Specific/Framework/ArithmeticSynthesis/Defaults | 0m03.49s || -0m01.34s | -38.39% N/A | Coqprime/PrimalityTest/EGroup | 0m01.32s || -0m01.32s | -100.00% N/A | Coqprime/Z/ZCAux | 0m01.08s || -0m01.08s | -100.00% 1m21.20s | Compilers/Z/Named/RewriteAddToAdcInterp | 1m21.80s || -0m00.59s | -0.73% 0m43.90s | Spec/Ed25519 | 0m43.40s || +0m00.50s | +1.15% 0m40.68s | Compilers/CommonSubexpressionEliminationWf | 0m40.81s || -0m00.13s | -0.31% 0m34.84s | Specific/NISTP256/AMD64/fesub | 0m33.87s || +0m00.97s | +2.86% 0m32.80s | Specific/X25519/C64/femul | 0m31.99s || +0m00.80s | +2.53% 0m30.69s | Curves/Edwards/XYZT/Basic | 0m30.20s || +0m00.49s | +1.62% 0m27.90s | Compilers/Named/MapCastWf | 0m27.10s || +0m00.79s | +2.95% 0m27.80s | Specific/X25519/C32/Synthesis | 0m28.14s || -0m00.33s | -1.20% 0m27.70s | bbv/Word | 0m27.58s || +0m00.12s | +0.43% 0m26.05s | Specific/NISTP256/AMD64/feopp | 0m26.52s || -0m00.46s | -1.77% 0m25.59s | Specific/X25519/C64/freeze | 0m25.20s || +0m00.39s | +1.54% 0m25.40s | Curves/Edwards/AffineProofs | 0m24.70s || +0m00.69s | +2.83% 0m22.94s | Compilers/Named/ContextProperties/NameUtil | 0m23.02s || -0m00.07s | -0.34% 0m22.14s | Algebra/Field | 0m21.80s || +0m00.33s | +1.55% 0m21.99s | Specific/NISTP256/AMD128/fenz | 0m21.30s || +0m00.68s | +3.23% 0m21.68s | Compilers/Named/ContextProperties/SmartMap | 0m22.15s || -0m00.46s | -2.12% 0m20.08s | Experiments/NewPipeline/CStringification | 0m19.13s || +0m00.94s | +4.96% 0m19.91s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Proofs | 0m19.60s || +0m00.30s | +1.58% 0m19.57s | Specific/X25519/C64/feadd | 0m19.12s || +0m00.44s | +2.35% 0m17.58s | Primitives/MxDHRepChange | 0m17.59s || -0m00.01s | -0.05% 0m17.56s | LegacyArithmetic/Double/Proofs/Multiply | 0m18.42s || -0m00.86s | -4.66% 0m15.44s | Arithmetic/MontgomeryReduction/Proofs | 0m14.96s || +0m00.47s | +3.20% 0m14.54s | Specific/X2448/Karatsuba/C64/Synthesis | 0m14.15s || +0m00.38s | +2.75% 0m14.18s | LegacyArithmetic/Double/Proofs/ShiftRightDoubleWordImmediate | 0m13.57s || +0m00.60s | +4.49% 0m13.88s | Algebra/Ring | 0m13.58s || +0m00.30s | +2.20% 0m13.44s | LegacyArithmetic/Double/Proofs/SpreadLeftImmediate | 0m13.40s || +0m00.03s | +0.29% 0m11.85s | LegacyArithmetic/Double/Proofs/RippleCarryAddSub | 0m11.82s || +0m00.02s | +0.25% 0m11.46s | Compilers/InlineConstAndOpWf | 0m11.58s || -0m00.11s | -1.03% 0m11.43s | Compilers/Named/RegisterAssignInterp | 0m11.26s || +0m00.16s | +1.50% 0m11.29s | Arithmetic/BarrettReduction/RidiculousFish | 0m10.73s || +0m00.55s | +5.21% 0m10.27s | Arithmetic/Saturated/MulSplit | 0m10.24s || +0m00.02s | +0.29% 0m10.07s | Util/ZUtil/ZSimplify/Autogenerated | 0m09.74s || +0m00.33s | +3.38% 0m09.72s | Util/FixedWordSizesEquality | 0m10.08s || -0m00.35s | -3.57% 0m09.25s | LegacyArithmetic/Pow2BaseProofs | 0m09.10s || +0m00.15s | +1.64% 0m08.74s | Compilers/InlineWf | 0m08.45s || +0m00.29s | +3.43% 0m08.65s | Util/FsatzAutoLemmas | 0m08.94s || -0m00.28s | -3.24% 0m08.30s | Util/ListUtil | 0m08.37s || -0m00.06s | -0.83% 0m08.12s | Compilers/LinearizeWf | 0m08.43s || -0m00.31s | -3.67% 0m07.92s | Specific/X25519/C64/Synthesis | 0m07.90s || +0m00.01s | +0.25% 0m07.72s | Arithmetic/BarrettReduction/HAC | 0m07.57s || +0m00.14s | +1.98% 0m07.64s | Compilers/Z/HexNotationConstants | 0m08.06s || -0m00.42s | -5.21% 0m07.62s | Util/ZUtil/Modulo | 0m07.58s || +0m00.04s | +0.52% 0m07.54s | Curves/Edwards/Pre | 0m07.92s || -0m00.37s | -4.79% 0m07.34s | Compilers/WfProofs | 0m06.72s || +0m00.62s | +9.22% 0m06.86s | Algebra/Field_test | 0m07.34s || -0m00.47s | -6.53% 0m06.80s | Compilers/Z/BinaryNotationConstants | 0m06.76s || +0m00.04s | +0.59% 0m06.00s | LegacyArithmetic/Double/Proofs/ShiftRight | 0m06.00s || +0m00.00s | +0.00% 0m05.58s | Compilers/Named/CompileWf | 0m05.85s || -0m00.26s | -4.61% 0m05.58s | Curves/Montgomery/Affine | 0m06.52s || -0m00.93s | -14.41% 0m05.31s | Specific/NISTP256/AMD128/Synthesis | 0m04.90s || +0m00.40s | +8.36% 0m05.17s | LegacyArithmetic/Double/Proofs/ShiftLeft | 0m05.14s || +0m00.03s | +0.58% 0m05.14s | Arithmetic/ModularArithmeticTheorems | 0m05.32s || -0m00.18s | -3.38% 0m04.93s | LegacyArithmetic/ZBoundedZ | 0m05.51s || -0m00.58s | -10.52% 0m04.90s | Compilers/Z/Bounds/InterpretationLemmas/IsBoundedBy | 0m05.62s || -0m00.71s | -12.81% 0m04.76s | Compilers/TestCase | 0m04.72s || +0m00.04s | +0.84% 0m04.74s | Arithmetic/MontgomeryReduction/WordByWord/Proofs | 0m05.51s || -0m00.76s | -13.97% 0m04.48s | Util/WordUtil | 0m04.51s || -0m00.02s | -0.66% 0m04.32s | Spec/MontgomeryCurve | 0m03.77s || +0m00.55s | +14.58% 0m04.13s | Compilers/InlineInterp | 0m04.29s || -0m00.16s | -3.72% 0m04.09s | Util/ZUtil/Div | 0m03.82s || +0m00.27s | +7.06% 0m03.96s | LegacyArithmetic/BarretReduction | 0m04.49s || -0m00.53s | -11.80% 0m03.93s | Compilers/EtaWf | 0m03.94s || -0m00.00s | -0.25% 0m03.81s | Compilers/Named/ContextProperties | 0m04.33s || -0m00.52s | -12.00% 0m03.69s | Specific/NISTP256/FancyMachine256/Montgomery | 0m03.77s || -0m00.08s | -2.12% 0m03.65s | Algebra/Group | 0m03.95s || -0m00.30s | -7.59% 0m03.63s | Arithmetic/Saturated/Freeze | 0m03.63s || +0m00.00s | +0.00% 0m03.54s | Compilers/Z/RewriteAddToAdcInterp | 0m03.26s || +0m00.28s | +8.58% 0m03.49s | Compilers/Named/CompileInterp | 0m03.55s || -0m00.05s | -1.69% 0m03.47s | Compilers/Z/Bounds/Relax | 0m03.12s || +0m00.35s | +11.21% 0m03.31s | Specific/NISTP256/FancyMachine256/Barrett | 0m03.70s || -0m00.39s | -10.54% 0m03.21s | Compilers/Named/NameUtilProperties | 0m03.16s || +0m00.04s | +1.58% 0m03.15s | Specific/NISTP256/FancyMachine256/Core | 0m02.96s || +0m00.18s | +6.41% 0m03.14s | Compilers/Named/ContextProperties/Proper | 0m03.67s || -0m00.52s | -14.44% 0m03.06s | Compilers/Z/JavaNotations | 0m03.18s || -0m00.12s | -3.77% 0m03.00s | Compilers/CommonSubexpressionEliminationProperties | 0m02.91s || +0m00.08s | +3.09% 0m02.94s | Compilers/WfReflective | 0m02.18s || +0m00.75s | +34.86% 0m02.91s | Util/ZUtil/Quot | 0m02.24s || +0m00.67s | +29.91% 0m02.80s | Arithmetic/CoreUnfolder | 0m02.53s || +0m00.27s | +10.67% 0m02.78s | Util/ZUtil/AddGetCarry | 0m02.78s || +0m00.00s | +0.00% 0m02.67s | Spec/WeierstrassCurve | 0m02.45s || +0m00.21s | +8.97% 0m02.54s | Compilers/Named/WfFromUnit | 0m02.61s || -0m00.06s | -2.68% 0m02.51s | Specific/Framework/ReificationTypes | 0m02.57s || -0m00.06s | -2.33% 0m02.45s | Arithmetic/BarrettReduction/Wikipedia | 0m02.72s || -0m00.27s | -9.92% 0m02.41s | Specific/Framework/OutputType | 0m02.49s || -0m00.08s | -3.21% 0m02.35s | Compilers/Named/InterpretToPHOASWf | 0m02.44s || -0m00.08s | -3.68% 0m02.31s | Util/NatUtil | 0m02.31s || +0m00.00s | +0.00% 0m02.26s | LegacyArithmetic/MontgomeryReduction | 0m02.40s || -0m00.14s | -5.83% 0m02.25s | Util/ZUtil/Pow2Mod | 0m02.19s || +0m00.06s | +2.73% 0m02.21s | Specific/Framework/ArithmeticSynthesis/Base | 0m02.23s || -0m00.02s | -0.89% 0m02.20s | Curves/Edwards/XYZT/Precomputed | 0m02.07s || +0m00.13s | +6.28% 0m02.16s | Arithmetic/PrimeFieldTheorems | 0m01.58s || +0m00.58s | +36.70% 0m02.16s | LegacyArithmetic/Double/Proofs/BitwiseOr | 0m02.20s || -0m00.04s | -1.81% 0m02.12s | LegacyArithmetic/Double/Proofs/LoadImmediate | 0m02.20s || -0m00.08s | -3.63% 0m02.06s | Util/QUtil | 0m02.08s || -0m00.02s | -0.96% 0m02.03s | Compilers/Relations | 0m02.31s || -0m00.28s | -12.12% 0m02.02s | Experiments/NewPipeline/GENERATEDIdentifiersWithoutTypes | 0m01.99s || +0m00.03s | +1.50% 0m02.00s | Util/Tuple | 0m01.75s || +0m00.25s | +14.28% 0m01.87s | Algebra/ScalarMult | 0m01.76s || +0m00.11s | +6.25% 0m01.82s | Arithmetic/Saturated/CoreUnfolder | 0m01.76s || +0m00.06s | +3.40% 0m01.82s | Experiments/NewPipeline/StandaloneOCamlMain | 0m01.43s || +0m00.39s | +27.27% 0m01.82s | LegacyArithmetic/BaseSystemProofs | 0m01.98s || -0m00.15s | -8.08% 0m01.80s | Compilers/LinearizeInterp | 0m01.76s || +0m00.04s | +2.27% 0m01.80s | Experiments/NewPipeline/StandaloneHaskellMain | 0m01.47s || +0m00.33s | +22.44% 0m01.76s | Compilers/MultiSizeTest | 0m01.78s || -0m00.02s | -1.12% 0m01.76s | Compilers/Z/RewriteAddToAdcWf | 0m01.70s || +0m00.06s | +3.52% 0m01.76s | Experiments/NewPipeline/Language | 0m01.67s || +0m00.09s | +5.38% 0m01.72s | Experiments/NewPipeline/AbstractInterpretation | 0m01.72s || +0m00.00s | +0.00% 0m01.66s | Util/ZUtil/Stabilization | 0m01.55s || +0m00.10s | +7.09% 0m01.64s | Specific/Framework/IntegrationTestDisplayCommon | 0m01.75s || -0m00.11s | -6.28% 0m01.58s | Compilers/Named/InterpretToPHOASInterp | 0m01.59s || -0m00.01s | -0.62% 0m01.54s | Util/ZUtil/Modulo/PullPush | 0m01.26s || +0m00.28s | +22.22% 0m01.51s | Util/NumTheoryUtil | 0m01.33s || +0m00.17s | +13.53% 0m01.51s | Util/ZRange/CornersMonotoneBounds | 0m01.88s || -0m00.36s | -19.68% 0m01.45s | Arithmetic/Saturated/UniformWeight | 0m01.30s || +0m00.14s | +11.53% 0m01.42s | Specific/Framework/ArithmeticSynthesis/Karatsuba | 0m01.49s || -0m00.07s | -4.69% 0m01.37s | Compilers/Z/CommonSubexpressionElimination | 0m01.45s || -0m00.07s | -5.51% 0m01.36s | Compilers/MapCastByDeBruijnInterp | 0m01.32s || +0m00.04s | +3.03% 0m01.34s | Specific/X25519/C32/CurveParameters | 0m01.25s || +0m00.09s | +7.20% 0m01.32s | Compilers/Z/Syntax/Util | 0m01.12s || +0m00.19s | +17.85% 0m01.32s | Specific/Framework/ArithmeticSynthesis/Freeze | 0m00.90s || +0m00.42s | +46.66% 0m01.31s | Algebra/IntegralDomain | 0m01.31s || +0m00.00s | +0.00% 0m01.31s | Arithmetic/Saturated/MulSplitUnfolder | 0m01.32s || -0m00.01s | -0.75% 0m01.31s | Compilers/Named/CompileProperties | 0m01.30s || +0m00.01s | +0.76% 0m01.31s | Util/ZUtil/Testbit | 0m01.66s || -0m00.34s | -21.08% 0m01.30s | Compilers/Z/Bounds/Pipeline/ReflectiveTactics | 0m01.29s || +0m00.01s | +0.77% 0m01.30s | Experiments/NewPipeline/CLI | 0m01.28s || +0m00.02s | +1.56% 0m01.27s | bbv/NatLib | 0m01.06s || +0m00.20s | +19.81% 0m01.26s | Arithmetic/Saturated/FreezeUnfolder | 0m00.84s || +0m00.42s | +50.00% 0m01.24s | Specific/Framework/IntegrationTestTemporaryMiscCommon | 0m01.31s || -0m00.07s | -5.34% 0m01.22s | Util/ZUtil/EquivModulo | 0m01.16s || +0m00.06s | +5.17% 0m01.21s | Specific/Framework/MontgomeryReificationTypes | 0m01.19s || +0m00.02s | +1.68% 0m01.19s | Specific/Framework/ReificationTypesPackage | 0m00.85s || +0m00.34s | +40.00% 0m01.19s | Specific/Framework/SynthesisFramework | 0m01.04s || +0m00.14s | +14.42% 0m01.17s | Experiments/NewPipeline/MiscCompilerPasses | 0m01.25s || -0m00.08s | -6.40% 0m01.15s | Compilers/Named/AListContext | 0m01.08s || +0m00.06s | +6.48% 0m01.14s | Arithmetic/MontgomeryReduction/WordByWord/Definition | 0m01.18s || -0m00.04s | -3.38% 0m01.14s | Arithmetic/Saturated/Wrappers | 0m00.85s || +0m00.28s | +34.11% 0m01.14s | Specific/Framework/ArithmeticSynthesis/HelperTactics | 0m01.12s || +0m00.01s | +1.78% 0m01.14s | Util/PartiallyReifiedProp | 0m01.12s || +0m00.01s | +1.78% 0m01.14s | Util/ZRange/BasicLemmas | 0m01.26s || -0m00.12s | -9.52% 0m01.13s | Specific/Framework/ArithmeticSynthesis/DefaultsPackage | 0m00.86s || +0m00.26s | +31.39% 0m01.12s | Compilers/InlineConstAndOpInterp | 0m00.90s || +0m00.22s | +24.44% 0m01.12s | Compilers/WfInversion | 0m01.18s || -0m00.05s | -5.08% 0m01.12s | Specific/Framework/ArithmeticSynthesis/FreezePackage | 0m00.77s || +0m00.35s | +45.45% 0m01.11s | Specific/Framework/ArithmeticSynthesis/SquareFromMul | 0m01.13s || -0m00.01s | -1.76% 0m01.08s | Compilers/Named/FMapContext | 0m01.27s || -0m00.18s | -14.96% 0m01.08s | Curves/Montgomery/AffineInstances | 0m01.16s || -0m00.07s | -6.89% 0m01.08s | Util/ZUtil/Peano | 0m01.10s || -0m00.02s | -1.81% 0m01.08s | Util/ZUtil/ZSimplify/Simple | 0m00.88s || +0m00.20s | +22.72% 0m01.07s | Specific/Framework/ArithmeticSynthesis/BasePackage | 0m01.14s || -0m00.06s | -6.14% 0m01.06s | LegacyArithmetic/Double/Proofs/SelectConditional | 0m01.09s || -0m00.03s | -2.75% 0m01.04s | Compilers/InterpByIsoProofs | 0m01.16s || -0m00.11s | -10.34% 0m01.03s | Compilers/SmartMap | 0m01.04s || -0m00.01s | -0.96% 0m01.03s | Compilers/Z/Bounds/Pipeline | 0m00.85s || +0m00.18s | +21.17% 0m01.03s | Util/ZUtil/Morphisms | 0m01.23s || -0m00.19s | -16.26% 0m01.02s | Curves/Montgomery/XZ | 0m00.96s || +0m00.06s | +6.25% 0m01.01s | Arithmetic/Saturated/WrappersUnfolder | 0m01.59s || -0m00.58s | -36.47% 0m01.01s | Compilers/Named/InterpSideConditionsInterp | 0m01.12s || -0m00.11s | -9.82% 0m01.00s | Util/CPSUtil | 0m01.09s || -0m00.09s | -8.25% 0m00.99s | Compilers/CommonSubexpressionElimination | 0m00.78s || +0m00.20s | +26.92% 0m00.96s | Util/ZUtil/CC | 0m00.89s || +0m00.06s | +7.86% 0m00.95s | Compilers/MapBaseTypeWf | 0m00.78s || +0m00.16s | +21.79% 0m00.95s | Specific/Framework/ArithmeticSynthesis/LadderstepPackage | 0m01.10s || -0m00.15s | -13.63% 0m00.94s | Compilers/Z/Reify | 0m00.96s || -0m00.02s | -2.08% 0m00.93s | Compilers/Z/Bounds/Pipeline/Glue | 0m00.88s || +0m00.05s | +5.68% 0m00.92s | Arithmetic/Saturated/UniformWeightInstances | 0m01.10s || -0m00.18s | -16.36% 0m00.92s | Compilers/Z/Bounds/MapCastByDeBruijnInterp | 0m00.90s || +0m00.02s | +2.22% 0m00.89s | Compilers/Z/MapCastByDeBruijnInterp | 0m00.87s || +0m00.02s | +2.29% 0m00.89s | Curves/Weierstrass/Affine | 0m00.79s || +0m00.09s | +12.65% 0m00.89s | Specific/Framework/ArithmeticSynthesis/KaratsubaPackage | 0m00.76s || +0m00.13s | +17.10% 0m00.89s | Util/ZUtil/Tactics/RewriteModSmall | 0m01.13s || -0m00.23s | -21.23% 0m00.88s | Compilers/Named/WfInterp | 0m00.76s || +0m00.12s | +15.78% 0m00.88s | Compilers/Z/ArithmeticSimplifierUtil | 0m00.80s || +0m00.07s | +9.99% 0m00.88s | Util/Decidable | 0m00.81s || +0m00.06s | +8.64% 0m00.88s | Util/Factorize | 0m00.92s || -0m00.04s | -4.34% 0m00.88s | Util/ZUtil/Rshi | 0m01.11s || -0m00.23s | -20.72% 0m00.86s | Compilers/Z/Bounds/RoundUpLemmas | 0m00.90s || -0m00.04s | -4.44% 0m00.86s | LegacyArithmetic/Double/Core | 0m00.90s || -0m00.04s | -4.44% 0m00.85s | Arithmetic/ModularArithmeticPre | 0m00.82s || +0m00.03s | +3.65% N/A | Coqprime/Z/ZSum | 0m00.85s || -0m00.85s | -100.00% 0m00.85s | Specific/Framework/ArithmeticSynthesis/Ladderstep | 0m01.10s || -0m00.25s | -22.72% 0m00.84s | Compilers/Z/Bounds/InterpretationLemmas/Tactics | 0m00.88s || -0m00.04s | -4.54% 0m00.84s | Compilers/Z/Bounds/MapCastByDeBruijnWf | 0m00.85s || -0m00.01s | -1.17% 0m00.84s | LegacyArithmetic/ZBounded | 0m00.80s || +0m00.03s | +4.99% 0m00.84s | Spec/EdDSA | 0m00.55s || +0m00.28s | +52.72% 0m00.83s | Compilers/Z/Bounds/MapCastByDeBruijn | 0m00.87s || -0m00.04s | -4.59% 0m00.83s | LegacyArithmetic/BaseSystem | 0m00.78s || +0m00.04s | +6.41% 0m00.82s | Compilers/Z/MapCastByDeBruijnWf | 0m00.89s || -0m00.07s | -7.86% 0m00.82s | LegacyArithmetic/Double/Proofs/ShiftLeftRightTactic | 0m00.82s || +0m00.00s | +0.00% 0m00.82s | Specific/Framework/MontgomeryReificationTypesPackage | 0m00.92s || -0m00.10s | -10.86% 0m00.81s | Compilers/Z/CommonSubexpressionEliminationInterp | 0m00.80s || +0m00.01s | +1.25% 0m00.80s | Compilers/Z/FoldTypes | 0m00.76s || +0m00.04s | +5.26% 0m00.80s | Compilers/Z/MapCastByDeBruijn | 0m00.77s || +0m00.03s | +3.89% N/A | Coqprime/PrimalityTest/Root | 0m00.80s || -0m00.80s | -100.00% 0m00.79s | Arithmetic/MontgomeryReduction/Definition | 0m00.71s || +0m00.08s | +11.26% 0m00.79s | Compilers/GeneralizeVarInterp | 0m00.75s || +0m00.04s | +5.33% 0m00.79s | Compilers/MapCastByDeBruijnWf | 0m01.12s || -0m00.33s | -29.46% 0m00.79s | Compilers/Z/CommonSubexpressionEliminationWf | 0m00.79s || +0m00.00s | +0.00% 0m00.79s | Experiments/NewPipeline/CompilersTestCases | 0m01.62s || -0m00.83s | -51.23% 0m00.79s | Specific/Framework/ArithmeticSynthesis/MontgomeryPackage | 0m00.78s || +0m00.01s | +1.28% 0m00.78s | Compilers/Z/InlineConstAndOpInterp | 0m00.72s || +0m00.06s | +8.33% 0m00.78s | Compilers/Z/InlineConstAndOpWf | 0m00.80s || -0m00.02s | -2.50% 0m00.78s | Util/ZBounded | 0m00.81s || -0m00.03s | -3.70% 0m00.77s | Compilers/GeneralizeVarWf | 0m00.76s || +0m00.01s | +1.31% 0m00.77s | Compilers/Z/RewriteAddToAdc | 0m00.78s || -0m00.01s | -1.28% 0m00.77s | Util/NUtil | 0m00.84s || -0m00.06s | -8.33% 0m00.76s | Algebra/SubsetoidRing | 0m00.94s || -0m00.17s | -19.14% 0m00.76s | Compilers/Z/InlineConstAndOpByRewriteInterp | 0m00.75s || +0m00.01s | +1.33% N/A | Coqprime/PrimalityTest/Cyclic | 0m00.76s || -0m00.76s | -100.00% 0m00.76s | Util/HList | 0m00.80s || -0m00.04s | -5.00% 0m00.75s | Compilers/Z/Bounds/Interpretation | 0m00.70s || +0m00.05s | +7.14% 0m00.75s | Compilers/Z/InlineConstAndOpByRewriteWf | 0m00.73s || +0m00.02s | +2.73% 0m00.75s | Compilers/Z/InlineWf | 0m00.82s || -0m00.06s | -8.53% 0m00.75s | Compilers/Z/InterpSideConditions | 0m00.55s || +0m00.19s | +36.36% 0m00.75s | Compilers/ZExtended/MapBaseType | 0m00.68s || +0m00.06s | +10.29% 0m00.75s | Util/Loops | 0m00.90s || -0m00.15s | -16.66% 0m00.74s | Compilers/Named/DeadCodeEliminationInterp | 0m00.70s || +0m00.04s | +5.71% 0m00.74s | Compilers/Named/PositiveContext/DefaultsProperties | 0m00.74s || +0m00.00s | +0.00% 0m00.74s | LegacyArithmetic/Interface | 0m01.04s || -0m00.30s | -28.84% 0m00.73s | Compilers/Z/GeneralizeVarInterp | 0m00.70s || +0m00.03s | +4.28% 0m00.73s | Spec/CompleteEdwardsCurve | 0m00.90s || -0m00.17s | -18.88% 0m00.72s | Algebra/Nsatz | 0m00.75s || -0m00.03s | -4.00% 0m00.72s | Compilers/InterpRewriting | 0m00.66s || +0m00.05s | +9.09% 0m00.72s | Specific/Framework/IntegrationTestDisplayCommonTactics | 0m00.70s || +0m00.02s | +2.85% 0m00.71s | Compilers/InterpProofs | 0m00.71s || +0m00.00s | +0.00% 0m00.71s | Compilers/Z/InlineConstAndOp | 0m00.51s || +0m00.19s | +39.21% 0m00.71s | Compilers/Z/Named/RewriteAddToAdc | 0m00.98s || -0m00.27s | -27.55% 0m00.71s | Compilers/ZExtended/Syntax | 0m00.54s || +0m00.16s | +31.48% 0m00.71s | Specific/X25519/C64/CurveParameters | 0m00.50s || +0m00.20s | +41.99% 0m00.70s | Compilers/InterpWf | 0m00.72s || -0m00.02s | -2.77% 0m00.70s | LegacyArithmetic/ArchitectureToZLike | 0m00.84s || -0m00.14s | -16.66% 0m00.70s | Util/ZRange | 0m00.70s || +0m00.00s | +0.00% 0m00.69s | Compilers/InputSyntax | 0m00.74s || -0m00.05s | -6.75% 0m00.69s | Compilers/Z/InlineConstAndOpByRewrite | 0m00.86s || -0m00.17s | -19.76% 0m00.69s | Spec/ModularArithmetic | 0m00.66s || +0m00.02s | +4.54% 0m00.68s | Compilers/CommonSubexpressionEliminationInterp | 0m00.98s || -0m00.29s | -30.61% 0m00.68s | Compilers/InterpWfRel | 0m00.78s || -0m00.09s | -12.82% 0m00.68s | Util/ZUtil/CPS | 0m00.61s || +0m00.07s | +11.47% 0m00.67s | Compilers/Z/Syntax | 0m00.66s || +0m00.01s | +1.51% 0m00.67s | Experiments/NewPipeline/AbstractInterpretationProofs | 0m00.60s || +0m00.07s | +11.66% 0m00.66s | Compilers/Reify | 0m00.60s || +0m00.06s | +10.00% 0m00.66s | Specific/Framework/CurveParameters | 0m00.64s || +0m00.02s | +3.12% 0m00.66s | Util/ZRange/Operations | 0m00.64s || +0m00.02s | +3.12% 0m00.64s | Experiments/PartialEvaluationWithLetIn | 0m00.61s || +0m00.03s | +4.91% 0m00.62s | Algebra/Monoid | 0m00.57s || +0m00.05s | +8.77% 0m00.62s | Compilers/InlineConstAndOp | 0m00.61s || +0m00.01s | +1.63% 0m00.62s | Compilers/InlineConstAndOpByRewriteWf | 0m00.78s || -0m00.16s | -20.51% 0m00.62s | Compilers/Named/WeakListContext | 0m00.62s || +0m00.00s | +0.00% 0m00.62s | Compilers/WfReflectiveGen | 0m00.60s || +0m00.02s | +3.33% 0m00.62s | Compilers/Z/GeneralizeVarWf | 0m00.75s || -0m00.13s | -17.33% 0m00.62s | Specific/Framework/RawCurveParameters | 0m00.58s || +0m00.04s | +6.89% 0m00.61s | Compilers/CommonSubexpressionEliminationDenote | 0m00.41s || +0m00.20s | +48.78% 0m00.61s | Compilers/Named/RegisterAssign | 0m00.60s || +0m00.01s | +1.66% 0m00.61s | Compilers/Z/Inline | 0m00.56s || +0m00.04s | +8.92% 0m00.61s | Util/BoundedWord | 0m00.57s || +0m00.04s | +7.01% 0m00.60s | Compilers/InlineConstAndOpByRewriteInterp | 0m00.68s || -0m00.08s | -11.76% 0m00.60s | Compilers/MapCastByDeBruijn | 0m00.61s || -0m00.01s | -1.63% 0m00.60s | LegacyArithmetic/Pow2Base | 0m00.73s || -0m00.13s | -17.80% 0m00.59s | Compilers/Z/Named/DeadCodeElimination | 0m00.51s || +0m00.07s | +15.68% 0m00.58s | Compilers/Linearize | 0m00.56s || +0m00.01s | +3.57% 0m00.58s | Compilers/Named/MapCast | 0m00.56s || +0m00.01s | +3.57% 0m00.58s | Compilers/Z/Bounds/Pipeline/OutputType | 0m00.61s || -0m00.03s | -4.91% 0m00.58s | Compilers/ZExtended/InlineConstAndOpWf | 0m00.53s || +0m00.04s | +9.43% 0m00.58s | Util/FixedWordSizes | 0m00.53s || +0m00.04s | +9.43% 0m00.58s | Util/ZUtil/Tactics/SimplifyFractionsLe | 0m00.43s || +0m00.14s | +34.88% 0m00.57s | Compilers/GeneralizeVar | 0m00.56s || +0m00.00s | +1.78% 0m00.57s | Compilers/Z/Named/DeadCodeEliminationInterp | 0m00.69s || -0m00.12s | -17.39% N/A | Coqprime/PrimalityTest/Zp | 0m00.57s || -0m00.56s | -100.00% 0m00.57s | Util/ZUtil/MulSplit | 0m00.48s || +0m00.08s | +18.74% 0m00.56s | Compilers/Z/OpInversion | 0m00.56s || +0m00.00s | +0.00% 0m00.56s | Compilers/Z/TypeInversion | 0m00.39s || +0m00.17s | +43.58% 0m00.56s | Specific/NISTP256/AMD64/CurveParameters | 0m00.61s || -0m00.04s | -8.19% 0m00.56s | Util/Decidable/Decidable2Bool | 0m00.81s || -0m00.25s | -30.86% 0m00.55s | Compilers/FilterLive | 0m00.47s || +0m00.08s | +17.02% 0m00.55s | Compilers/Named/IdContext | 0m00.50s || +0m00.05s | +10.00% 0m00.55s | Compilers/ZExtended/InlineConstAndOpByRewrite | 0m00.50s || +0m00.05s | +10.00% 0m00.55s | Compilers/ZExtended/InlineConstAndOpByRewriteWf | 0m00.45s || +0m00.10s | +22.22% 0m00.55s | Compilers/ZExtended/Syntax/Util | 0m00.58s || -0m00.02s | -5.17% 0m00.55s | Specific/X2448/Karatsuba/C64/CurveParameters | 0m00.38s || +0m00.17s | +44.73% 0m00.54s | Compilers/Inline | 0m00.54s || +0m00.00s | +0.00% 0m00.54s | Compilers/Named/InterpSideConditions | 0m00.40s || +0m00.14s | +35.00% 0m00.54s | Compilers/Named/Wf | 0m00.49s || +0m00.05s | +10.20% 0m00.53s | Compilers/Named/ContextDefinitions | 0m00.55s || -0m00.02s | -3.63% 0m00.53s | Compilers/ZExtended/InlineConstAndOpByRewriteInterp | 0m00.51s || +0m00.02s | +3.92% 0m00.53s | Compilers/ZExtended/InlineConstAndOpInterp | 0m00.58s || -0m00.04s | -8.62% 0m00.53s | Specific/Framework/CurveParametersPackage | 0m00.44s || +0m00.09s | +20.45% 0m00.53s | Util/ZRange/Show | 0m00.56s || -0m00.03s | -5.35% 0m00.53s | Util/ZUtil/Tactics/ZeroBounds | 0m00.40s || +0m00.13s | +32.50% 0m00.52s | Compilers/Named/Context | 0m00.47s || +0m00.05s | +10.63% 0m00.52s | Compilers/Named/CountLets | 0m00.44s || +0m00.08s | +18.18% 0m00.52s | Compilers/Named/GetNames | 0m00.50s || +0m00.02s | +4.00% 0m00.52s | Compilers/Named/InterpretToPHOAS | 0m00.55s || -0m00.03s | -5.45% 0m00.52s | Compilers/Tuple | 0m00.53s || -0m00.01s | -1.88% 0m00.52s | Util/ZUtil/Sgn | 0m00.51s || +0m00.01s | +1.96% 0m00.52s | Util/ZUtil/Tactics/PullPush/Modulo | 0m00.48s || +0m00.04s | +8.33% 0m00.51s | Compilers/CountLets | 0m00.42s || +0m00.09s | +21.42% 0m00.51s | Compilers/Named/ContextOn | 0m00.49s || +0m00.02s | +4.08% 0m00.51s | Util/AdditionChainExponentiation | 0m00.62s || -0m00.10s | -17.74% 0m00.51s | Util/Strings/String | 0m00.58s || -0m00.06s | -12.06% 0m00.51s | Util/ZUtil/Tactics/Ztestbit | 0m00.43s || +0m00.08s | +18.60% 0m00.50s | Compilers/ExprInversion | 0m00.46s || +0m00.03s | +8.69% 0m00.50s | Compilers/FoldTypes | 0m00.51s || -0m00.01s | -1.96% 0m00.50s | Compilers/InlineConstAndOpByRewrite | 0m00.50s || +0m00.00s | +0.00% 0m00.50s | Compilers/Z/InlineInterp | 0m00.59s || -0m00.08s | -15.25% N/A | Coqprime/List/UList | 0m00.50s || -0m00.50s | -100.00% 0m00.49s | Util/ZUtil/Hints/PullPush | 0m00.41s || +0m00.08s | +19.51% 0m00.48s | Compilers/Named/ContextProperties/Tactics | 0m00.53s || -0m00.05s | -9.43% 0m00.48s | Compilers/Z/GeneralizeVar | 0m00.49s || -0m00.01s | -2.04% 0m00.48s | Compilers/ZExtended/InlineConstAndOp | 0m00.52s || -0m00.04s | -7.69% 0m00.48s | Util/ZUtil/Hints/Ztestbit | 0m00.50s || -0m00.02s | -4.00% 0m00.48s | Util/ZUtil/ZSimplify/Core | 0m00.44s || +0m00.03s | +9.09% 0m00.48s | Util/ZUtil/Zselect | 0m00.44s || +0m00.03s | +9.09% 0m00.47s | Compilers/InterpByIso | 0m00.47s || +0m00.00s | +0.00% 0m00.47s | Util/IdfunWithAlt | 0m00.59s || -0m00.12s | -20.33% 0m00.47s | Util/ZUtil/Hints/ZArith | 0m00.49s || -0m00.02s | -4.08% 0m00.46s | Compilers/Named/DeadCodeElimination | 0m00.58s || -0m00.11s | -20.68% N/A | Coqprime/List/Permutation | 0m00.46s || -0m00.46s | -100.00% 0m00.46s | Experiments/NewPipeline/UnderLets | 0m00.72s || -0m00.25s | -36.11% 0m00.46s | Util/Sum | 0m00.44s || +0m00.02s | +4.54% 0m00.45s | Compilers/Named/SmartMap | 0m00.54s || -0m00.09s | -16.66% 0m00.45s | Util/ZUtil/Z2Nat | 0m00.41s || +0m00.04s | +9.75% 0m00.44s | Compilers/MapBaseType | 0m00.46s || -0m00.02s | -4.34% 0m00.44s | Util/Strings/HexString | 0m00.44s || +0m00.00s | +0.00% 0m00.44s | Util/ZUtil/Div/Bootstrap | 0m00.50s || -0m00.06s | -12.00% 0m00.44s | Util/ZUtil/Hints/Core | 0m00.52s || -0m00.08s | -15.38% 0m00.43s | Compilers/Named/EstablishLiveness | 0m00.38s || +0m00.04s | +13.15% 0m00.43s | Compilers/Named/ExprInversion | 0m00.56s || -0m00.13s | -23.21% 0m00.43s | Compilers/StripExpr | 0m00.50s || -0m00.07s | -14.00% 0m00.43s | Util/ZUtil/Tactics/LtbToLt | 0m00.54s || -0m00.11s | -20.37% 0m00.42s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Dependent/Definition | 0m00.43s || -0m00.01s | -2.32% 0m00.42s | Util/ZUtil/Hints | 0m00.40s || +0m00.01s | +4.99% 0m00.42s | Util/ZUtil/Le | 0m00.43s || -0m00.01s | -2.32% 0m00.42s | Util/ZUtil/ZSimplify | 0m00.28s || +0m00.13s | +49.99% 0m00.42s | bbv/Nomega | 0m00.45s || -0m00.03s | -6.66% 0m00.41s | Util/ZUtil/Sorting | 0m00.47s || -0m00.06s | -12.76% 0m00.41s | Util/ZUtil/Tactics/PrimeBound | 0m00.36s || +0m00.04s | +13.88% 0m00.41s | bbv/HexNotationWord | 0m00.45s || -0m00.04s | -8.88% 0m00.40s | Compilers/Named/PositiveContext | 0m00.59s || -0m00.18s | -32.20% 0m00.40s | Compilers/Named/Syntax | 0m00.50s || -0m00.09s | -19.99% N/A | Coqprime/List/ListAux | 0m00.40s || -0m00.40s | -100.00% 0m00.40s | Util/SideConditions/RingPackage | 0m00.37s || +0m00.03s | +8.10% 0m00.40s | Util/ZUtil/Tactics/DivModToQuotRem | 0m00.38s || +0m00.02s | +5.26% 0m00.40s | Util/ZUtil/Tactics/LinearSubstitute | 0m00.42s || -0m00.01s | -4.76% 0m00.39s | Compilers/Equality | 0m00.38s || +0m00.01s | +2.63% 0m00.39s | Util/SideConditions/Autosolve | 0m00.28s || +0m00.10s | +39.28% 0m00.39s | Util/SideConditions/ModInvPackage | 0m00.41s || -0m00.01s | -4.87% 0m00.39s | bbv/HexNotation | 0m00.38s || +0m00.01s | +2.63% N/A | Coqprime/PrimalityTest/Lagrange | 0m00.38s || -0m00.38s | -100.00% 0m00.38s | Specific/NISTP256/AMD128/CurveParameters | 0m00.58s || -0m00.19s | -34.48% 0m00.38s | Util/ZUtil/AddModulo | 0m00.28s || +0m00.09s | +35.71% 0m00.38s | Util/ZUtil/Modulo/Bootstrap | 0m00.40s || -0m00.02s | -5.00% 0m00.38s | Util/ZUtil/Tactics/CompareToSgn | 0m00.43s || -0m00.04s | -11.62% 0m00.38s | Util/ZUtil/Tactics/DivideExistsMul | 0m00.38s || +0m00.00s | +0.00% 0m00.38s | bbv/WordScope | 0m00.40s || -0m00.02s | -5.00% 0m00.37s | Algebra/Hierarchy | 0m00.40s || -0m00.03s | -7.50% 0m00.37s | Compilers/Named/Compile | 0m00.50s || -0m00.13s | -26.00% N/A | Coqprime/List/ZProgression | 0m00.37s || -0m00.37s | -100.00% N/A | Coqprime/PrimalityTest/IGroup | 0m00.37s || -0m00.37s | -100.00% 0m00.37s | Util/ZUtil/Ge | 0m00.33s || +0m00.03s | +12.12% 0m00.37s | Util/ZUtil/Land | 0m00.43s || -0m00.06s | -13.95% 0m00.36s | Arithmetic/MontgomeryReduction/WordByWord/Abstract/Definition | 0m00.42s || -0m00.06s | -14.28% 0m00.36s | Compilers/Named/MapType | 0m00.33s || +0m00.02s | +9.09% 0m00.36s | Compilers/Named/PositiveContext/Defaults | 0m00.57s || -0m00.20s | -36.84% 0m00.36s | Util/Strings/OctalString | 0m00.33s || +0m00.02s | +9.09% 0m00.36s | Util/ZUtil/Definitions | 0m00.40s || -0m00.04s | -10.00% 0m00.36s | Util/ZUtil/Tactics/PullPush | 0m00.39s || -0m00.03s | -7.69% 0m00.36s | Util/ZUtil/Tactics/ReplaceNegWithPos | 0m00.33s || +0m00.02s | +9.09% 0m00.36s | bbv/BinNotation | 0m00.37s || -0m00.01s | -2.70% N/A | Coqprime/PrimalityTest/Euler | 0m00.35s || -0m00.35s | -100.00% 0m00.35s | Spec/MxDH | 0m00.39s || -0m00.04s | -10.25% 0m00.35s | Util/Decidable/Bool2Prop | 0m00.22s || +0m00.12s | +59.09% 0m00.35s | Util/ZUtil/Tactics | 0m00.48s || -0m00.13s | -27.08% 0m00.35s | Util/ZUtil/Tactics/PeelLe | 0m00.44s || -0m00.09s | -20.45% 0m00.35s | Util/ZUtil/Tactics/SplitMinMax | 0m00.35s || +0m00.00s | +0.00% 0m00.34s | Util/Option | 0m00.31s || +0m00.03s | +9.67% 0m00.34s | Util/ZUtil/ModInv | 0m00.38s || -0m00.03s | -10.52% 0m00.34s | bbv/BinNotationZ | 0m00.34s || +0m00.00s | +0.00% 0m00.34s | bbv/HexNotationZ | 0m00.37s || -0m00.02s | -8.10% 0m00.34s | bbv/NLib | 0m00.42s || -0m00.07s | -19.04% 0m00.33s | Util/Strings/Show | 0m00.45s || -0m00.12s | -26.66% N/A | Coqprime/List/Iterator | 0m00.31s || -0m00.31s | -100.00% 0m00.31s | Util/PointedProp | 0m00.30s || +0m00.01s | +3.33% 0m00.29s | Util/LetInMonad | 0m00.29s || +0m00.00s | +0.00% 0m00.28s | Compilers/EtaInterp | 0m00.34s || -0m00.06s | -17.64% 0m00.28s | Compilers/InSet/TypeifyInterp | 0m00.18s || +0m00.10s | +55.55% 0m00.28s | Util/Strings/BinaryString | 0m00.32s || -0m00.03s | -12.49% 0m00.28s | Util/Strings/Equality | 0m00.29s || -0m00.00s | -3.44% N/A | Coqprime/PrimalityTest/FGroup | 0m00.27s || -0m00.27s | -100.00% 0m00.27s | Util/Strings/Ascii | 0m00.33s || -0m00.06s | -18.18% 0m00.27s | Util/Strings/Decimal | 0m00.26s || +0m00.01s | +3.84% N/A | Coqprime/N/NatAux | 0m00.26s || -0m00.26s | -100.00% 0m00.26s | Util/ParseTaps | 0m00.29s || -0m00.02s | -10.34% 0m00.25s | Util/SideConditions/ReductionPackages | 0m00.24s || +0m00.01s | +4.16% 0m00.24s | Util/ZUtil/Notations | 0m00.29s || -0m00.04s | -17.24% 0m00.20s | Compilers/Conversion | 0m00.12s || +0m00.08s | +66.66% 0m00.20s | Util/ListUtil/FoldBool | 0m00.20s || +0m00.00s | +0.00% 0m00.19s | Compilers/Named/NameUtil | 0m00.18s || +0m00.01s | +5.55% 0m00.19s | Compilers/Wf | 0m00.20s || -0m00.01s | -5.00% 0m00.18s | Specific/Framework/Packages | 0m00.17s || +0m00.00s | +5.88% 0m00.18s | Util/PrimitiveProd | 0m00.19s || -0m00.01s | -5.26% 0m00.18s | Util/Relations | 0m00.14s || +0m00.03s | +28.57% 0m00.18s | bbv/DepEq | 0m00.22s || -0m00.04s | -18.18% 0m00.17s | Util/ListUtil/Forall | 0m00.18s || -0m00.00s | -5.55% 0m00.17s | Util/Sigma | 0m00.14s || +0m00.03s | +21.42% 0m00.16s | Compilers/RewriterWf | 0m00.16s || +0m00.00s | +0.00% 0m00.16s | Util/TagList | 0m00.20s || -0m00.04s | -20.00% 0m00.14s | Compilers/RewriterInterp | 0m00.12s || +0m00.02s | +16.66% 0m00.14s | Compilers/TypeInversion | 0m00.14s || +0m00.00s | +0.00% 0m00.12s | Compilers/InSet/Syntax | 0m00.09s || +0m00.03s | +33.33% 0m00.12s | Compilers/InterpSideConditions | 0m00.07s || +0m00.04s | +71.42% 0m00.12s | Util/AutoRewrite | 0m00.09s || +0m00.03s | +33.33% 0m00.12s | Util/Equality | 0m00.13s || -0m00.01s | -7.69% 0m00.12s | Util/PrimitiveHList | 0m00.14s || -0m00.02s | -14.28% 0m00.12s | Util/Prod | 0m00.18s || -0m00.06s | -33.33% 0m00.11s | Compilers/RenameBinders | 0m00.10s || +0m00.00s | +9.99% 0m00.11s | Compilers/Rewriter | 0m00.10s || +0m00.00s | +9.99% 0m00.11s | Compilers/TypeUtil | 0m00.08s || +0m00.03s | +37.50% 0m00.11s | Util/HProp | 0m00.10s || +0m00.00s | +9.99% 0m00.11s | Util/IffT | 0m00.05s || +0m00.06s | +120.00% 0m00.11s | Util/Tactics | 0m00.08s || +0m00.03s | +37.50% 0m00.10s | Compilers/Eta | 0m00.11s || -0m00.00s | -9.09% 0m00.10s | Compilers/Syntax | 0m00.13s || -0m00.03s | -23.07% 0m00.10s | Util/Bool | 0m00.08s || +0m00.02s | +25.00% 0m00.10s | Util/Isomorphism | 0m00.12s || -0m00.01s | -16.66% 0m00.10s | Util/LetIn | 0m00.09s || +0m00.01s | +11.11% 0m00.10s | Util/Sumbool | 0m00.09s || +0m00.01s | +11.11% 0m00.10s | Util/Tactics/MoveLetIn | 0m00.09s || +0m00.01s | +11.11% 0m00.10s | Util/Tactics/Revert | 0m00.07s || +0m00.03s | +42.85% 0m00.10s | Util/Tower | 0m00.10s || +0m00.00s | +0.00% 0m00.10s | bbv/DepEqNat | 0m00.06s || +0m00.04s | +66.66% 0m00.09s | Compilers/InSet/Typeify | 0m00.12s || -0m00.03s | -25.00% 0m00.09s | Util/Tactics/Contains | 0m00.04s || +0m00.05s | +124.99% 0m00.09s | Util/Tactics/ConvoyDestruct | 0m00.05s || +0m00.03s | +79.99% 0m00.09s | Util/Tactics/DestructHead | 0m00.10s || -0m00.01s | -10.00% 0m00.09s | Util/Tactics/ETransitivity | 0m00.08s || +0m00.00s | +12.49% 0m00.09s | Util/Tactics/SpecializeBy | 0m00.06s || +0m00.03s | +50.00% 0m00.08s | Compilers/Intros | 0m00.08s || +0m00.00s | +0.00% 0m00.08s | Compilers/Map | 0m00.10s || -0m00.02s | -20.00% 0m00.08s | Util/Bool/IsTrue | 0m00.06s || +0m00.02s | +33.33% 0m00.08s | Util/ErrorT | 0m00.07s || +0m00.00s | +14.28% 0m00.08s | Util/Logic | 0m00.08s || +0m00.00s | +0.00% 0m00.08s | Util/Pointed | 0m00.08s || +0m00.00s | +0.00% 0m00.08s | Util/Pos | 0m00.04s || +0m00.04s | +100.00% 0m00.08s | Util/SideConditions/AdmitPackage | 0m00.08s || +0m00.00s | +0.00% 0m00.08s | Util/Sigma/Lift | 0m00.06s || +0m00.02s | +33.33% 0m00.08s | Util/Tactics/CacheTerm | 0m00.08s || +0m00.00s | +0.00% 0m00.08s | Util/Tactics/DebugPrint | 0m00.10s || -0m00.02s | -20.00% 0m00.08s | Util/Tactics/DestructTrivial | 0m00.05s || +0m00.03s | +60.00% 0m00.08s | Util/Tactics/GetGoal | 0m00.06s || +0m00.02s | +33.33% 0m00.08s | Util/Tactics/Head | 0m00.07s || +0m00.00s | +14.28% 0m00.08s | Util/Tactics/RewriteHyp | 0m00.06s || +0m00.02s | +33.33% 0m00.08s | Util/Tactics/SubstEvars | 0m00.07s || +0m00.00s | +14.28% 0m00.08s | Util/Tactics/UnifyAbstractReflexivity | 0m00.06s || +0m00.02s | +33.33% 0m00.08s | Util/Tactics/VM | 0m00.08s || +0m00.00s | +0.00% 0m00.07s | LegacyArithmetic/VerdiTactics | 0m00.10s || -0m00.03s | -30.00% 0m00.07s | Util/Bool/Equality | 0m00.07s || +0m00.00s | +0.00% 0m00.07s | Util/CPSNotations | 0m00.09s || -0m00.01s | -22.22% 0m00.07s | Util/Logic/ImplAnd | 0m00.07s || +0m00.00s | +0.00% 0m00.07s | Util/Tactics/BreakMatch | 0m00.06s || +0m00.01s | +16.66% 0m00.07s | Util/Tactics/DestructHyps | 0m00.07s || +0m00.00s | +0.00% 0m00.07s | Util/Tactics/DoWithHyp | 0m00.09s || -0m00.01s | -22.22% 0m00.07s | Util/Tactics/ESpecialize | 0m00.08s || -0m00.00s | -12.49% 0m00.07s | Util/Tactics/HeadUnderBinders | 0m00.06s || +0m00.01s | +16.66% 0m00.07s | Util/Tactics/Not | 0m00.07s || +0m00.00s | +0.00% 0m00.07s | Util/Tactics/PoseTermWithName | 0m00.06s || +0m00.01s | +16.66% 0m00.07s | Util/Tactics/PrintContext | 0m00.06s || +0m00.01s | +16.66% 0m00.07s | Util/Tactics/SetEvars | 0m00.05s || +0m00.02s | +40.00% 0m00.07s | Util/Tactics/SpecializeAllWays | 0m00.08s || -0m00.00s | -12.49% 0m00.07s | Util/Tactics/SplitInContext | 0m00.07s || +0m00.00s | +0.00% 0m00.07s | Util/Tactics/TransparentAssert | 0m00.06s || +0m00.01s | +16.66% 0m00.07s | Util/Unit | 0m00.06s || +0m00.01s | +16.66% 0m00.06s | Util/Curry | 0m00.08s || -0m00.02s | -25.00% 0m00.06s | Util/DefaultedTypes | 0m00.07s || -0m00.01s | -14.28% 0m00.06s | Util/FixCoqMistakes | 0m00.09s || -0m00.03s | -33.33% 0m00.06s | Util/GlobalSettings | 0m00.12s || -0m00.06s | -50.00% 0m00.06s | Util/SideConditions/CorePackages | 0m00.07s || -0m00.01s | -14.28% 0m00.06s | Util/Sigma/Associativity | 0m00.08s || -0m00.02s | -25.00% 0m00.06s | Util/Sigma/MapProjections | 0m00.05s || +0m00.00s | +19.99% 0m00.06s | Util/Tactics/ClearDuplicates | 0m00.07s || -0m00.01s | -14.28% 0m00.06s | Util/Tactics/ClearbodyAll | 0m00.07s || -0m00.01s | -14.28% 0m00.06s | Util/Tactics/EvarExists | 0m00.06s || +0m00.00s | +0.00% 0m00.06s | Util/Tactics/Forward | 0m00.04s || +0m00.01s | +49.99% 0m00.06s | Util/Tactics/OnSubterms | 0m00.04s || +0m00.01s | +49.99% 0m00.06s | Util/Tactics/RunTacticAsConstr | 0m00.06s || +0m00.00s | +0.00% 0m00.06s | Util/Tactics/SideConditionsBeforeToAfter | 0m00.06s || +0m00.00s | +0.00% 0m00.06s | Util/Tactics/SimplifyProjections | 0m00.08s || -0m00.02s | -25.00% 0m00.06s | Util/Tactics/SubstLet | 0m00.06s || +0m00.00s | +0.00% 0m00.06s | Util/Tactics/Test | 0m00.07s || -0m00.01s | -14.28% 0m00.05s | Util/ChangeInAll | 0m00.06s || -0m00.00s | -16.66% 0m00.05s | Util/Notations | 0m00.08s || -0m00.03s | -37.50% 0m00.05s | Util/Tactics/SimplifyRepeatedIfs | 0m00.06s || -0m00.00s | -16.66% 0m00.05s | Util/Tactics/UnfoldArg | 0m00.08s || -0m00.03s | -37.50% 0m00.05s | Util/Tactics/UniquePose | 0m00.06s || -0m00.00s | -16.66% 0m00.04s | Util/OptionList | 0m00.09s || -0m00.05s | -55.55% 0m00.04s | Util/Tactics/ChangeInAll | 0m00.08s || -0m00.04s | -50.00% 0m00.04s | Util/Tactics/SetoidSubst | 0m00.05s || -0m00.01s | -20.00% 0m00.03s | Util/Tactics/ClearAll | 0m00.06s || -0m00.03s | -50.00% N/A | Coqprime/Tactic/Tactic | 0m00.02s || -0m00.02s | -100.00%
* Allow building with an external coqprimeGravatar Jason Gross2018-07-21
| | | | Closes #363
* Work around coqprime issuesGravatar Jason Gross2018-07-21
| | | | | | | This closes #398 Since coqprime's makefile is incompatible with Coq 8.7, we blow it away and regenerate it ourselves.
* Remove another thing from the lite targetGravatar Jason Gross2018-07-03
|
* Synthesize selectznzGravatar Jason Gross2018-07-03
|
* Synthesize moreGravatar Jason Gross2018-07-03
|
* WIPGravatar Jason Gross2018-07-03
|
* Fix sed scripts in MakefileGravatar Jason Gross2018-06-28
|
* Be more aggressive about removing \rGravatar Jason Gross2018-06-19
|
* Make COQPATH in Makefile work on Windows / cygwinGravatar Jason Gross2018-06-19
|
* New pipeline, split among filesGravatar Jason Gross2018-06-17
|
* Add more files to nobigmemGravatar Jason Gross2018-05-15
|
* Fix a bug in previous commitGravatar Jason Gross2018-05-15
|
* Add nobigmem target for Coq's ciGravatar Jason Gross2018-05-15
|
* Don't allow coqprime and coqprime-all to run in parallelGravatar Jason Gross2018-04-30
| | | | We only want one invocation of submake at a time.
* Only install files built by the coq targetGravatar Jason Gross2018-04-30
|
* Add a coqprime-all target to build all of coqprimeGravatar Jason Gross2018-04-30
|
* Fix the lite-display targetGravatar Jason Gross2018-04-20
|
* Add COQLIBS to display targetsGravatar Jason Gross2018-04-18
| | | | | As per https://github.com/mit-plv/fiat-crypto/issues/344#issuecomment-381424442
* Error if a display target failsGravatar Jason Gross2018-04-18
| | | | | | | Because pipes eat error codes, we were previously succeeding when display targets fail. This meant that we didn't catch https://github.com/mit-plv/fiat-crypto/issues/344#issuecomment-381422896 on Travis. Now we will.
* Add a lite-display targetGravatar Jason Gross2018-04-15
|
* coqprime in COQPATH (closes #269)Gravatar Andres Erbsen2018-02-24
|
* Fix no-curves-proofs-non-specific targetGravatar Jason Gross2018-02-11
| | | | Previously the vo_reverse_closure logic was not working correctly