About 143,000 results
Open links in new tab
  1. c - How to write a very basic compiler - Software Engineering …

    Go with an existing educational language instead, and focus on learning about compilers. The following two are specifically designed for classroom use in compiler courses and by extension …

  2. programming languages - Why doesn't Python need a compiler?

    Feb 26, 2012 · The majority of modern high-performance language implementations combine both an interpreter and a compiler (or even several compilers) for maximum performance. Actually, …

  3. 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 …

  4. testing - How come compilers are so reliable? - Software …

    I've seen several compiler bugs, reported a few myself (specifically, in F#). That said, I think compiler bugs are rare because people who write compilers are generally very comfortable …

  5. compiler - Is it better to use the linker to compile multiple C

    That way, the compiler sees only your code, plus those definitions; it never gets a look at the code (implementation) for the other bits. Note: The Compiler doesn't care that it doesn't know about …

  6. Compiler Warnings - Software Engineering Stack Exchange

    Jul 1, 2014 · The compiler has been written by total experts in the language. If they are reporting that something is a bit wiffy (think code smell) then the code should be reviewed. It is entirely …

  7. compiler - Why do programs use call stacks, if nested function …

    Jun 12, 2015 · in the above, the compiler can choose to keep right on statically inlining, from InlineMe through whatever's inside act(), nor a need to touch any vtables at runtime. But any …

  8. compiler - How do binary numbers interact with the CPU and …

    Jan 25, 2021 · A compiler operates at a logical level, not concerning itself with physical storage, but rather with groupings of 1's and 0's — several different kinds of groupings. The first …

  9. compiler - Why might it be difficult to make a 64 bit version of a ...

    Jan 3, 2015 · The moral of the story is to write clean code and do not try to second-guess the compiler or add clever optimizations that are not needed, can break the software, and …

  10. compiler - What exactly is a compile target? - Software …

    Mar 21, 2017 · In programming languages, it is a compiler. Thus, the source for a compiler is the programming language (C), while the target is the bytecode (machine-level instructions). We …