Hacker News new | ask | show | jobs
by GFK_of_xmaspast 3417 days ago
Looking at those slides and watching the first part of the talk, it sounds as if he's re-invented LLVM IR, and poorly.
2 comments

If it's a lot smaller and serves their purpose, it's not implemented poorly. And if it compiles 10x as fast, which it probably does (I'm not a heavy Go user.)

Also I think this representation is different architecturally. Go now uses an SSA representation apparently, which would be the equivalent of LLVM IR AFAIK. This assembly language is more toward the backend where as the IR is more like the "middle end".

Why LLVM specifically?

there are many intermediate representations.

First one I thought of and also you can write it directly.