Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
1–10 of 11 posts
Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#2Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#3Weird, the print dialog opened directly when I clicked the above link. Is that a "normal" PDF feature, or was it triggered from someplace else?
Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#4Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#5I'm sorry, I won't read this until I can do so on a formally verified pdf renderer or an attacker might hack me further upstream. Oh no, I'm commenting using an unverified browser! runs screaming into the middle distance
Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#6The key to getting the problem down to a manageable size for verification seems to have been using a large number of passes, so that each pass performs a well-defined transformation on a sequential file.
Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#7Wow. That's an achievement. The key to getting the problem down to a manageable size for verification seems to have been using a large number of passes, so that each pass performs a well-defined transformation on a sequential file.
Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#8Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#9Weird, the print dialog opened directly when I clicked the above link. Is that a "normal" PDF feature, or was it triggered from someplace else?
Re: Closing the Gap – The Formally Verified Optimizing Compiler CompCert [pdf]
#101. Although the source is available free of charge, CompCert is not free software. I couldn't find pricing on the AbsInt site or the North American vendor's site ("Ask for a quote").
2. Currently targets IA32, 32-bit PowerPC, and ARMv6.
3. Covers most of C99, except VLAs and certain abuses of switch statements (e.g., Duff's device).
4. Faster and smaller code than GCC -O0, reasonably close to -O1 and -O2.
John Regehr points out: "If we want better code out of [GCC et al.] we can turn on their optimizers, but at that point they would fail to be capable of translating 1,000,000 random programs without miscompiling a few times."
http://blog.regehr.org/archives/1052
I'm less inclined to use C as time goes by, but for the embedded market that CompCert targets, it seems like a really useful tool.