A compiler is a program which translates one language into another.
The tag compiler should be applied to questions concerning the programming of compilers or for questions about the detailed inner workings of compilers. Don't use compiler for questions about options and settings for a particular compiler, use the name of the compiler you are interested in instead.
One language to another? I thought they made executables!
The notional, garden variety compiler does exactly that: it translates a human readable computer programming language (like fortran or c++ or java) into a machine executable format. Or not.
In fact many real world compilers translate a high level language into assembly code which is subsequently assembled by a separate program. The standard java compiler translate java code into JVM bytecode, which must be run by a dedicated program (the Java execution environment) which may include a Just In Time (JIT) compiler that translates the bytecode into chip native machine instructions on the fly. The earliest versions of the language that became c++ were called cfront and were compiled to c. And so on.
Big List of Resources:
- A Nanopass Framework for Compiler Education PDF
- Advanced Compiler Design and Implementation Book
- An Incremental Approach to Compiler Construction PDF
- ANTLR 3.x Video Tutorial
- Building a Parrot Compiler
- Compiler Basics
- Compiler Construction Book
- Compiler Design and Construction
- Modern Compiler Consturction
- Crafting a Compiler with C Book
- Dragon Book Book - Widely considered "the book" for compiler writing.
- Essentials of Programming Languages
- Flipcode Article Archive
- Game Scripting Mastery Book
- How to build a virtual machine from scratch in C# PDF
- Implementing Functional Languages
- Implementing Programming Languages using C# 4.0
- Interpreter pattern - specifies a way to evaluate sentences in a language
- Described in Design Patterns Book
- Language Implementation Patterns: Create Your Own Domain-Specific and General Programming Languages
- Lets Build a Compiler
- The PDF version PDF
- Linkers and Loaders Google Books
- Lisp in Small Pieces (LiSP) Book
- LLVM Tutorial
- Modern Compiler Implementation in ML Book - widly considered a very good book
- Object-Oriented Compiler Construction
- Parrot Tutorial
- Parsing Techniques - A Practical Guide
- Project Oberon PDF - Look at chapter 13
- Programming a Personal Computer Book
- Programing Languages: Application and Interpretation
- Rabbit: A Compiler for Scheme PDF
- Reflections on Trusting Trust - a quick guide
- Roll Your Own Compiler for the .NET framework a quick toturial form MSDN
- Structure and Interpretation of Computer Programs
- Types and Programming Languages
- Want to Write a Compiler? - a quick guide
- Writing a Compiler in Ruby Bottom Up