TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

LLVM-based JIT compiler for C++

15 pointsby adgasfabout 9 years ago

2 comments

BenoitPabout 9 years ago
In the divide between AOT and JIT, and not being able to have them both, is the deoptimize question. You come back from JITted code to a specific call site; which is easily available to you if you&#x27;re in an interpreter, but might have been compiled away if you&#x27;re in an AOT. Plus all tricky aspects of safety, synchronization, performance associated with this.<p>From their front page, the following makes me think that they don&#x27;t do AOT at all:<p>&gt; Explore<p>&gt; Jyt enables explorative C++ programming using a REPL.<p>&gt; Patch<p>&gt; Hot-swap functionality at run-time. Deploy fixes with zero down-time.
评论 #11706089 未加载
brudgersabout 9 years ago
Related: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=11702322" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=11702322</a>