Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
I would make it 10/10 !! I have yet to meet a person who has clear understanding of program image that compiler produce, some of them don’t know that they are using a compiler
Like JavaScript uses JIT compiler -
Well that's easy. The compiler decodes some video- and audiostream into a framebuffer which gets written to the graphics card, and presto, you can see porn.
-
You should add interpreters, language virtual machines, and runtime systems to that too. They can be as complex as any compiler.
-
I do (or I did, I'm beyond rusty now) because I studied it extensively as part of my undergrad course.
But tbh, I suspect most don't, and I'm perfectly fine with that. You sure as hell don't need to be up there on compiler theory to be a great dev. -
sariel85344yI know the basic concepts of how a compiler works, but not specific ones.
Much like I know how engines work, but not how the engine on a rx8 works.
Most the devs I work with don't even know the 7 layers or how anything outside of their language works. -
I know, what a compiler is and how to build one on an abstract level. But i have some experience in building simple interpreters.
-
matt-jd10304yI have some understanding but not very detailed, also done a bit with interpreters and will study compilers and execution environments in the fall
-
Yes, and I'll do you one better: I've actually written one. For a dirt-simple custom language and just as an "I want the experience" sort of thing, and I wouldn't claim to be an absolute expert or anything, but I did it. But, having said that, I think your friend is 100% right. Most developers don't have a clue. They MIGHT know the basic components and flow at a high level, and even THAT is probably less than 50%. I'm not sure I'd say that's any kind of problem, but I do think it's accurate.
-
Bubbles68264yI haven’t made one but I’ve done a lot of research on the topic so I know a bit about them and how they work
-
Hazarth94864yWe had a whole class on languages and compilers. I'd say I have a decent understanding on how code gets parsed and translated into bytecode. The knowledge is pretty useful
Servey Question.
How many you programmers have a working knowledge of how compilers work? The philosophy and mathematics behind them. Different stages. The choices one might have to make at different stages. Reasoning about the said choices. Difference between different paradigms -- philosophically and implementation wise. The tools one might use.
Reason behind I'm asking this is that I got into a debate with a friend where he said 9/10 of people whom we call "developers" have little to no idea how compilers work.
question