About 50 results
Open links in new tab
  1. How Does A Compiler Work? - Software Engineering Stack Exchange

    A compiler is a program that translates the source code for another program from a programing language into executable code. The source code is typically in a high-level programming language …

  2. How to write a very basic compiler - Software Engineering Stack …

    How can I write a basic compiler to convert a static text into a machine readable file? The next step will be introducing variables into the compiler; imagine that we want to write a compiler which compile …

  3. How do I create my own programming language and a compiler for it

    Jun 16, 2011 · A "compiler" is any device that translates from one programming language to another. One of the nice things about having a C# compiler that turns C# into IL, and an IL compiler (the …

  4. compiler - Does an interpreter produce machine code? - Software ...

    Oct 23, 2015 · A Java compiler produces code for the JVM. So the target machine of a compiler can be a virtual machine that is not executed directly by the hardware. The main difference between …

  5. c - How does a compiler work when it's not directly compiling to ...

    My compiler will act just as a parser. Well, then it is not a compiler, nor is it an interpreter. It is a parser. Is this how other languages like Python and Javascript work? or do they create their own machine …

  6. How can an interpreter run code without translating into machine code?

    May 11, 2024 · A compiler is a pure function that takes code in one language and produces code in another. An interpreter is an impure function that takes code in one language, returns nothing, but …

  7. compiler - Is an OS compiled every time it boots? - Software ...

    Sep 27, 2020 · Is an OS compiled every time it boots, or is it compiled once and the result used every time the OS is (re)booted? When users change settings, is the compiled kernel modified at all? If I …

  8. Understanding the differences: traditional interpreter, JIT compiler ...

    I'm trying to understand the differences between a traditional interpreter, a JIT compiler, a JIT interpreter and an AOT compiler. An interpreter is just a machine (virtual or physical) that execu...

  9. C++ - Is it bad practice to use compiler specific functions?

    Dec 8, 2020 · Is it bad to use compiler-specific functions in your source? i.e Should I avoid using them? The answer is "it depends." A naive hand-rolled popcount function requires but a few lines of code …

  10. Why doesn't Python need a compiler? - Software Engineering Stack …

    Feb 26, 2012 · Just wondering (now that I've started with C++ which needs a compiler) why Python doesn't need a compiler? I just enter the code, save it as an exec, and run it. In C++ I have to make …