Tópicos sobre Construção de Compiladores: Difference between revisions

From Wiki**3

No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{NAVCompiladores}}
#REDIRECT [[ist:Tópicos sobre Construção de Compiladores]]
A compiler -- in general, a language processor -- is a program that takes as input a program written in the source language and translates it into another (the target language), typically (although not necessarily) one understandable by a machine.
 
There are various types of language processors: translatits (between two high-level languages), compilers (from a high-level language to a low-level language), decompilers (from low- to high-level languages), rewriters (within the same language).
 
Modern compilers usually take source code and produce object code, in a form usable by other programs, such as a linker or a virtual machine. Examples:
* C/C++ source code is typically compiled to object code for later linking (.o files);
* Java is typically compiled (Sun compiler) to binary class files (.class), used by the virtual machine. The GCC Java compiler can, besides the class files, also produce object files (like for C/C++).
 
Compiler or interpreter: although both types of language analysis tools share some properties, they differ in how they handle the analyzed code. Compilers produce an equivalent version of the original language in a target language; interpreters translate the input language, not into a target version, but rather directly into the execution of the actions described in the source language.
 
The following sections cover the overall development process and contain both theoretical and practical aspects.
 
* [[Introdução ao Desenvolvimento de Compiladores]]
* [[Theoretical Aspects of Lexical Analysis]]
* [[The Flex Lexical Analyzer]]
* [[Introduction to Syntax]]
* [[Top-Down Parsing]]
* [[Attribute Grammars]]
* [[The YACC Parser Generator]]
* [[Bottom-Up Parsing]]
* [[Semantic Analysis]]
* [[Code Generation]]
* [[Optimization Topics]]
 
[[category:Compiladores]]
[[category:Ensino]]
[[en:Topics in Compiler Construction]]

Latest revision as of 18:44, 6 December 2018