Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
8 user(s) are online (8 user(s) are browsing encyclopedia)

Members: 0
Guests: 8

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

GNU Compiler Collection

The GNU Compiler Collection (usually shortened to GCC) is a set of programming language Compilers produced by the GNU Project. It is free software distributed by the Free Software Foundation (FSF) under the GNU General Public License and GNU Lesser General Public License, and is a key component of the GNU toolchain. It is the standard compiler for the open source Unix-like operating systems, and certain proprietary operating systems derived therefrom such as Mac OS X.

Originally named the GNU C Compiler, because it only handled the C programming language, GCC was later extended to compile C plus plus, Fortran, Ada programming language, and others.

=Overview=

GCC was originally written by Richard Stallman in 1987 as the compiler for the GNU Project, in order to have a compiler available that was free software. Its development was closely shepherded by the Free Software Foundation.

In 1997, a group of developers dissatisfied with the The Cathedral and the Bazaar of official GCC development formed a project called EGCS (Experimental/Enhanced GNU Compiler System) which merged several experimental fork (software) into a single project forked from GCC. EGCS development subsequently proved sufficiently more vital than GCC development and EGCS was eventually blessed as the official version of GCC in April 1999.

GCC is now maintained by a varied group of programmers from around the world. It has been ported to more kinds of processors and operating systems than any other compiler.

As well as being the official compiler of the GNU system, including Linux-based variants (GNU/Linux), GCC has been adopted as the main compiler used to build and develop other operating systems including the Berkeley Software Distributions, Mac OS X, NeXTSTEP, and BeOS.

GCC is often the compiler of choice for developing software that is required to execute on a plethora of hardware. Differences in native compilers lead to difficulties in developing code that will compile correctly on all the compilers and build scripts that will run for all the platforms. By using GCC, the same parser is used for all platforms, so if the code compiles on one, chances are high that it compiles on all. In some cases GCC produces slower executables than other compilers, but being free software, and/or the potential for reduced development costs often makes using it worthwhile.

=Languages=

As of version 4.0.0 (released on April 20 2005), the standard compiler release includes front ends for:

  • Ada programming language (GCC for Ada aka GNAT)
  • C programming language
  • C plus plus (GCC for C++ aka G++)
  • Fortran programming language (GCC for Fortran aka GFortran)
  • Java programming language (GCC for Java aka GCJ)
  • Objective C
  • A front end for CHILL programming language was previously included, but has been dropped owing to a lack of maintenance. The G77 front end was dropped in favour of the new GFortran frontend that supports Fortran 95. Pascal programming language, Modula-2 programming language, Modula-3 programming language, Mercury programming language, VHDL, PL/I and Objective-C#Objective-C%2B%2B frontends also exist.

    =Architectures=

    GCC target processors (as of version 4.1) include:

  • DEC Alpha
  • ARM architecture
  • Blackfin
  • Hitachi H8
  • System/370, System 390
  • x86 and AMD64
  • Itanium Itanium
  • Motorola 68000
  • Motorola 88000
  • MIPS architecture
  • PA-RISC
  • PDP-11
  • PowerPC
  • SuperH
  • SPARC
  • VAX
  • Renesas R8C/M16C/M32C families
  • MorphoSys family
  • Lesser-known target processors supported in the standard release have included A29K, Advanced Risc Computing, Atmel AVR, C4x, CRIS, D30V, DSP16xx, FR-30, FR-V, Intel i960, IP2000, M32R, Freescale 68HC11, MCORE, MMIX, MN10200, MN10300, 320xx microprocessor, ROMP, Stormy16, V850, and Xtensa. Additional processors, such as the D10V, PDP-10, and Z8000, have been supported by GCC versions maintained separately from the FSF version.

    =Structure=

    GCC s external interface is generally standard for a Unix compiler. Users invoke a driver program named gcc, which interprets command arguments, decides which language compilers to use for each input file, runs the Assembler on their output, and then possibly runs the Linker to produce a complete program.

    Each of the language compilers is a separate program that takes in source code and produces assembly language. All have a common internal structure; a per-language front end that parsing the languages and produces an abstract syntax tree ( tree for short), and a back end that converts the trees to GCC s Register Transfer Language (RTL), runs various compiler optimizations, then produces assembly language using architecture-specific pattern matching originally based on an algorithm of Jack Davidson and Chris Fraser s.

    Nearly all of GCC is written in C, although much of the Ada frontend is written in Ada.

    ==Front ends==

    Frontends vary internally, having to produce trees that can be handled by the backend. Some parsers use a Yacc-type grammar specification, and the others are hand-coded recursive descent parsers.

    Until recently, the tree representation of the program was not fully independent of the processor being targeted. Confusingly, the meaning of a tree was somewhat different for different language front-ends, and front-ends could provide their own tree codes.

    Recently, two new forms of language-independent trees have been introduced. These new tree formats are called GENERIC and GIMPLE. Parsing is now done by creating temporary language-dependent trees, and converting them to GENERIC. The so-called gimplifier then lowers this more complex form into the simpler Static_single_assignment_form-based GIMPLE form which is the common language for a large number of new powerful language- and architecture-independent global (function scope) optimizations.

    Optimization on trees does not generally fit into what most compiler developers would consider a front end task, as it is not language dependent and does not involve parsing. GCC developers have given this part of the compiler the somewhat contradictory name the middle end. These optimizations include dead code elimination, partial redundancy elimination, global value numbering, sparse conditional constant propagation, and scalar replacement of aggregates. Array dependence based optimizations such as automatic vectorization are currently being developed.

    ==Back end==

    The behavior of the GCC back end is partly specified by preprocessor macros and functions specific to a target architecture, for instance to define the Endianness, word size, and calling conventions. The front part of the back end uses these to help decide RTL generation, so although GCC s RTL is nominally processor-independent, the initial sequence of abstract instructions is already adapted to the target.

    The exact set of GCC optimizations varies from release to release as it develops, but includes the standard algorithms, such as jump optimization, jump threading, common subexpression elimination, instruction scheduling, and so forth. The RTL optimizations are of less importance with the recent addition of global SSA-based optimizations on GIMPLE trees, as RTL optimizations have a much more limited scope, and have less high-level information.

    A reloading phase changes abstract (pseudo-) processor registers into real machine registers, using data collected from the patterns describing the target s instruction set. This is a somewhat complicated phase, because it must account for the vagaries of all of GCC s targets.

    The final phase is somewhat anticlimactic, since the patterns to match were generally chosen during reloading, and so the assembly code is simply built by running substitutions of registers and addresses into the strings specifying the instructions.

    =Debugging GCC programs=

    The primary tool for debugging GCC code the GNU Debugger (gdb). Among more specialized tools are Valgrind for finding memory leaks.

    =References=

  • , ISBN 059510035X
  • *Richard M. Stallman: [http://gcc.gnu.org/onlinedocs/gcc-3.3.1/gcc/ Using Gcc: The Gnu Compiler Collection Reference] , Free Software Foundation, ISBN 1882114396 *Brian J. Gough: [http://www.network-theory.co.uk/gcc/intro/ An Introduction to GCC] , Network Theory Ltd., ISBN 0-9541617-9-3

    =See also=

    GCC now includes Boehm GC, a conservative garbage collector for C/C++.

    *ConceptGCC *GCC-XML *introspector (program) *LLVM *MinGW

    =External links=

  • [http://gcc.gnu.org/ GCC homepage]
  • [http://gcc.gnu.org/onlinedocs/gcc-4.0.0/gcc/ v4.0 Manual]
  • [http://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/ v3.4.3 Manual]
  • [http://gccnews.chatta.us/ GCC periodic news summary]
  • [http://www.kegel.com/crosstool/ Building and Testing gcc/glibc cross toolchains]
  • [http://gcc.gnu.org/wiki GCC Wiki]
  • [http://www.nabble.com/gcc-f1154.html GCC Forum] - hosted by [http://www.nabble.com Nabble] archiving all gcc mailing lists into a searchable forum.
  • =Further reading=

  • Arthur Griffith, GCC: The Complete Reference . McGrawHill/Osborne. ISBN 0-07-222405-3.