GNU Compiler Collection

"Cc1" redirects here. For other uses, see CC1 (disambiguation).
GNU Compiler Collection
Developer(s) GNU Project
Initial release May 23, 1987 (1987-05-23)[1]
Stable release
6.2[2] / August 22, 2016 (2016-08-22)
Preview release
7.0 / May 22, 2016 (2016-05-22)
Repository gcc.gnu.org/viewcvs/gcc/
Written in C++;[3] originally C
Operating system Cross-platform
Platform GNU
Type Compiler
License GNU GPL 3+ with GCC Runtime Library Exception[4]
Website gcc.gnu.org

The GNU Compiler Collection (GCC) is a compiler system produced by the GNU Project supporting various programming languages. GCC is a key component of the GNU toolchain. The Free Software Foundation (FSF) distributes GCC under the GNU General Public License (GNU GPL). GCC has played an important role in the growth of free software, as both a tool and an example.

Originally named the GNU C Compiler, when it only handled the C programming language, GCC 1.0 was released in 1987.[1] It was extended to compile C++ in December of that year. Front ends were later developed for Objective-C, Objective-C++, Fortran, Java, Ada, and Go among others.[5]

Version 4.5 of the OpenMP specification is now supported in the C and C++ compilers[6] and a "much improved" implementation of the OpenACC 2.0a specification[7] is also supported. By default, the current version supports gnu++14, a superset of C++14 and gnu11, a superset of C11, with strict standard support also available. It also provides experimental support for C++17 and later.

GCC has been ported to a wide variety of processor architectures, and is widely deployed as a tool in the development of both free and proprietary software. GCC is also available for most embedded systems, including ARM-based; AMCC, and Freescale Power Architecture-based chips.[8] The compiler can target a wide variety of platforms.

As well as being the official compiler of the GNU operating system, GCC has been adopted as the standard compiler by many other modern Unix-like computer operating systems, including Linux and the BSD family, although FreeBSD and OS X have moved to the LLVM system.[9] Versions are also available for Microsoft Windows and other operating systems; GCC can compile code for Android and iOS.

History

In an effort to bootstrap the GNU operating system, Richard Stallman asked Andrew S. Tanenbaum, the author of the Amsterdam Compiler Kit (also known as the Free University Compiler Kit) if he could use that software for GNU. When Tanenbaum told him that while the Free University was free, the compiler was not, Stallman decided to write his own.[10] Stallman's initial plan[11] was to rewrite an existing compiler from Lawrence Livermore Laboratory from Pastel to C with some help from Len Tower and others.[12] Stallman wrote a new C front end for the Livermore compiler, but then realized that it required megabytes of stack space, an impossibility on a 68000 Unix system with only 64 KB, and concluded he would have to write a new compiler from scratch.[11] None of the Pastel compiler code ended up in GCC, though Stallman did use the C front end he had written.[11]

GCC was first released March 22, 1987, available by FTP from MIT.[13] Stallman was listed as the author but cited others for their contributions, including Jack Davidson and Christopher Fraser for the idea of using RTL as an intermediate language, Paul Rubin for writing most of the preprocessor and Leonard Tower for "parts of the parser, RTL generator, RTL definitions, and of the Vax machine description."[14] Described as the "first free software hit" by Salus, the GNU compiler arrived just at the time when Sun Microsystems was unbundling its development tools from its operating system, selling them separately at a higher combined price than the previous bundle, which led many of Sun's users to buy or download GCC instead of the vendor's tools.[15] By 1990, GCC supported thirteen computer architectures, was outperforming several vendor compilers, was shipped by Data General and NeXT with their workstations and was used by Lotus Development Corporation.[16]

As GCC was licensed under the GPL, programmers wanting to work in other directions—particularly those writing interfaces for languages other than C—were free to develop their own fork of the compiler, provided they meet the GPL's terms, including its requirements to distribute source code. Multiple forks proved inefficient and unwieldy, however, and the difficulty in getting work accepted by the official GCC project was greatly frustrating for many.[17] The FSF kept such close control on what was added to the official version of GCC 2.x that GCC was used as one example of the "cathedral" development model in Eric S. Raymond's essay The Cathedral and the Bazaar.

In 1997, a group of developers formed Experimental/Enhanced GNU Compiler System (EGCS) to merge several experimental forks into a single project.[17][18] The basis of the merger was a GCC development snapshot taken between the 2.7 and 2.81 releases. Projects merged included g77 (Fortran), PGCC (P5 Pentium-optimized GCC), many C++ improvements, and many new architectures and operating system variants.[19] EGCS development proved considerably more vigorous than GCC development, so much so that the FSF officially halted development on their GCC 2.x compiler, blessed EGCS as the official version of GCC and appointed the EGCS project as the GCC maintainers in April 1999. With the release of GCC 2.95 in July 1999 the two projects were once again united.

GCC has since been maintained by a varied group of programmers from around the world under the direction of a steering committee.[20] It has been ported to more kinds of processors and operating systems than any other compiler.[21]

GCC has been ported to a wide variety of processor architectures, and is widely deployed as a tool in the development of both free and proprietary software. GCC is also available for most embedded systems, including Symbian (called gcce),[22] ARM-based; AMCC, and Freescale Power Architecture-based chips.[8] The compiler can target a wide variety of platforms, including video game consoles such as the PlayStation 2,[23] Cell SPE of PlayStation 3[24] and Dreamcast.[25]

Design

To obtain a stable ABI, like e.g. the Linux Standard Base aims to procure, the Compiler version is important.

GCC's external interface follows Unix conventions. Users invoke a language-specific driver program (gcc for C, g++ for C++, etc.), which interprets command arguments, calls the actual compiler, runs the assembler on the output, and then optionally runs the linker to produce a complete executable binary.

Each of the language compilers is a separate program that reads source code and outputs machine code. All have a common internal structure. A per-language front end parses the source code in that language and produces an abstract syntax tree ("tree" for short).

These are, if necessary, converted to the middle end's input representation, called GENERIC form; the middle end then gradually transforms the program towards its final form. Compiler optimizations and static code analysis techniques (such as FORTIFY_SOURCE,[26] a compiler directive that attempts to discover some buffer overflows) are applied to the code. These work on multiple representations, mostly the architecture-independent GIMPLE representation and the architecture-dependent RTL representation. Finally, machine code is produced using architecture-specific pattern matching originally based on an algorithm of Jack Davidson and Chris Fraser.

GCC was written primarily in C except for parts of the Ada front end. The distribution includes the standard libraries for Ada, C++, and Java whose code is mostly written in those languages.[27] On some platforms, the distribution also includes a low-level runtime library, libgcc, written in a combination of machine-independent C and processor-specific machine code, designed primarily to handle arithmetic operations that the target processor cannot perform directly.[28]

In May 2010, the GCC steering committee decided to allow use of a C++ compiler to compile GCC.[3] The compiler was intended to be written in C plus a subset of features from C++. In particular, this was decided so that GCC's developers could use the destructors and generics features of C++.[29]

In August 2012, the GCC steering committee announced that GCC now uses C++ as its implementation language.[30] This means that to build GCC from sources, a C++ compiler is required that understands ISO/IEC C++03 standard.

Front ends

Each front end uses a parser to produce the abstract syntax tree of a given source file. Due to the syntax tree abstraction, source files of any of the different supported languages can be processed by the same back end. GCC started out using LALR parsers generated with Bison, but gradually switched to hand-written recursive-descent parsers; for C++ in 2004,[31] and for C and Objective-C in 2006.[32] Currently all front ends use hand-written recursive-descent parsers.

Until recently, the tree representation of the program was not fully independent of the processor being targeted.

The meaning of a tree was somewhat different for different language front ends, and front ends could provide their own tree codes. This was simplified with the introduction of GENERIC and GIMPLE, two new forms of language-independent trees that were introduced with the advent of GCC 4.0. GENERIC is more complex, based on the GCC 3.x Java front end's intermediate representation. GIMPLE is a simplified GENERIC, in which various constructs are lowered to multiple GIMPLE instructions. The C, C++ and Java front ends produce GENERIC directly in the front end. Other front ends instead have different intermediate representations after parsing and convert these to GENERIC.

In either case, the so-called "gimplifier" then converts this more complex form into the simpler SSA-based GIMPLE form that is the common language for a large number of powerful language- and architecture-independent global (function scope) optimizations.

GENERIC and GIMPLE

GENERIC is an intermediate representation language used as a "middle end" while compiling source code into executable binaries. A subset, called GIMPLE, is targeted by all the front ends of GCC.

The middle stage of GCC does all of the code analysis and optimization, working independently of both the compiled language and the target architecture, starting from the GENERIC[33] representation and expanding it to register transfer language (RTL). The GENERIC representation contains only the subset of the imperative programming constructs optimized by the middle end.

In transforming the source code to GIMPLE,[34] complex expressions are split into a three-address code using temporary variables. This representation was inspired by the SIMPLE representation proposed in the McCAT compiler[35] by Laurie J. Hendren[36] for simplifying the analysis and optimization of imperative programs.

Optimization

Optimization can occur during any phase of compilation; however, the bulk of optimizations are performed after the syntax and semantic analysis of the front end and before the code generation of the back end; thus a common, even though somewhat contradictory, name for this part of the compiler is the "middle end."

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

Some of these optimizations performed at this level 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 and automatic parallelization are also performed. Profile-guided optimization is also possible.[38]

Back end

The behavior of GCC's back end is partly specified by preprocessor macros and functions specific to a target architecture, for instance to define its 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. At any moment, the actual RTL instructions forming the program representation have to comply with the machine description of the target architecture.

The machine description file contains RTL patterns, along with operand constraints, and code snippets to output the final assembly. The constraints indicate that a particular RTL pattern might only apply (for example) to certain hardware registers, or (for example) allow immediate operand offsets of only a limited size (e.g. 12, 16, 24, … bit offsets, etc.). During RTL generation, the constraints for the given target architecture are checked. In order to issue a given snippet of RTL, it must match one (or more) of the RTL patterns in the machine description file, and satisfy the constraints for that pattern; otherwise, it would be impossible to convert the final RTL into machine code.

Towards the end of compilation, valid RTL is reduced to a strict form in which each instruction refers to real machine registers and a pattern from the target's machine description file. Forming strict RTL is a complicated task; an important step is register allocation, where real hardware registers are chosen to replace the initially assigned pseudo-registers. This is followed by a "reloading" phase; any pseudo-registers that were not assigned a real hardware register are 'spilled' to the stack, and RTL to perform this spilling is generated. Likewise, offsets that are too large to fit into an actual instruction must be broken up and replaced by RTL sequences that will obey the offset constraints.

In the final phase, the machine code is built by calling a small snippet of code, associated with each pattern, to generate the real instructions from the target's instruction set, using the final registers, offsets, and addresses chosen during the reload phase. The assembly-generation snippet may be just a string, in which case a simple string substitution of the registers, offsets, and/or addresses into the string is performed. The assembly-generation snippet may also be a short block of C code, performing some additional work, but ultimately returning a string containing the valid assembly code.

Features

Some features of GCC include:

Languages

The standard compiler releases since 4.6 include front ends for C (gcc), C++ (g++), Objective-C, Objective-C++, Fortran (gfortran), Java (gcj), Ada (GNAT), and Go (gccgo).[43] A popular parallel language extension, OpenMP, is also supported. Version 5.0 added support for Cilk Plus, and since version 5.1, there is preliminary support for OpenACC.[44]

The Fortran front end was g77 before version 4.0, which only supports FORTRAN 77. In newer versions, g77 is dropped in favor of the new GNU Fortran front end (retaining most of g77's language extensions) that supports Fortran 95 and large parts of Fortran 2003 and Fortran 2008 as well. A front-end for CHILL was dropped due to a lack of maintenance.[45]

Third-party front ends exist for Pascal (gpc), Modula-2, Modula-3, PL/I, D (gdc),[46] and VHDL (ghdl).

A few experimental branches exist to support additional languages, such as the GCC UPC compiler[47] for Unified Parallel C.

Architectures

GCC target processor families as of version 4.3 include:

Lesser-known target processors supported in the standard release have included:

Additional processors have been supported by GCC versions maintained separately from the FSF version:

The gcj Java compiler can target either a native machine language architecture or the Java Virtual Machine's Java bytecode.[50] When retargeting GCC to a new platform, bootstrapping is often used.

Development

The current stable version of GCC is 6.2, which was released on August 22, 2016.[51]

As of version 4.8, GCC is implemented in C++.[52]

GCC 4.6 supports many new Objective-C features, such as declared and synthesized properties, dot syntax, fast enumeration, optional protocol methods, method/protocol/class attributes, class extensions and a new GNU Objective-C runtime API. It also supports the Go programming language and includes the libquadmath library, which provides quadruple-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide the REAL(16) type in GNU Fortran on such targets.

GCC uses many standard tools in its build, including Perl, Flex, Bison, and other common tools. In addition it currently requires three additional libraries to be present in order to build: GMP, MPC, and MPFR.

The trunk concentrates the major part of the development efforts, where new features are implemented and tested.

C library

By default GCC uses the GNU C library (glibc),[53] while musl, an alternative (for Linux and Android with Bionic[54]) C library, is also officially supported "for the AArch64, ARM, MicroBlaze, MIPS, MIPS64, PowerPC, PowerPC64, SH, i386, x32 and x86_64 targets. [..] GCC defaults to musl libc if it is built with a target triplet matching the *-linux-musl* pattern."[6][55][56]

License

The GCC runtime exception permits compilation of proprietary and free software programs with GCC and usage of free software plugins.[57] The availability of this exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC.

Uses

Several companies make a business out of supplying and supporting GCC ports to various platforms.[58]

See also

References

  1. 1 2 "GCC Releases". GNU Project. Retrieved 2006-12-27.
  2. "GCC Releases – GNU Project – Free Software Foundation (FSF)".
  3. 1 2 "GCC allows C++ – to some degree". The H. June 1, 2010.
  4. "GCC Runtime Library Exception". Retrieved 2013-02-28.
  5. "Programming Languages Supported by GCC". GNU Project. Retrieved 2014-06-23.
  6. 1 2 3 "GCC 6 Release Series".
  7. "OpenACC".
  8. 1 2 "Linux Board Support Packages". Retrieved 2008-08-07.
  9. http://llvm.org/Users.html
  10. von Hagen, William (2006). The Definitive Guide to GCC. Definitive Guides (2nd ed.). Apress. p. XXVII. ISBN 978-1-4302-0219-6. So he wrote to VUCK's author asking if GNU could use it. Evidently, VUCK's developer was uncooperative, responding that the university was free but that the compiler was not.
  11. 1 2 3 Stallman, Richard (September 20, 2011). "About the GNU Project". The GNU Project. Retrieved October 9, 2011.
  12. Puzo, Jerome E., ed. (February 1986). "Gnu's Zoo". GNU'S Bulletin. Free Software Foundation. 1 (1). Retrieved 2007-08-11.
  13. Richard M. Stallman (forwarded by Leonard H. Tower, Jr.) (March 22, 1987). "GNU C compiler beta test release". Newsgroup: comp.lang.c. Retrieved October 9, 2011.
  14. Stallman, Richard M. (June 22, 2001) [First published 1988], "Contributors to GNU CC", Using and Porting the GNU Compiler Collection (GCC), Free Software Foundation, Inc., p. 7, retrieved June 18, 2015.
  15. Salus, Peter H. (2005). "Chapter 10. SUN and gcc". The Daemon, the Gnu and the Penguin. Groklaw.
  16. Garfinkel, Simson L. (6 August 1990). "Get ready for GNU software". Computerworld.
  17. 1 2 Henkel-Wallace, David (August 15, 1997), A new compiler project to merge the existing GCC forks, retrieved May 25, 2012.
  18. "Pentium Compiler FAQ".
  19. "The Short History of GCC development".
  20. "GCC Steering Committee".
  21. "Linux Information Project". LINFO. Retrieved 2010-04-27. The GCC has been ported to (i.e., modified to run on) more than 60 platforms, which is more than for any other compiler.
  22. "Symbian GCC Improvement Project". Retrieved 2007-11-08.
  23. "setting up gcc as a cross-compiler". ps2stuff. 2002-06-08. Archived from the original on December 11, 2008. Retrieved 2008-12-12.
  24. https://gcc.gnu.org/wiki/CompileFarm
  25. "sh4 g++ guide". Archived from the original on 2002-12-20. Retrieved 2008-12-12.
  26. "Security Features: Compile Time Buffer Checks (FORTIFY_SOURCE)". fedoraproject.org. Retrieved 2009-03-11.
  27. "languages used to make GCC".
  28. "GCC Internals". GCC.org. Retrieved March 1, 2010.
  29. "An email by Richard Stallman on emacs-devel".
  30. "GCC 4.8 Release Series: Changes, New Features, and Fixes". Retrieved October 4, 2013.
  31. "GCC 3.4 Release Series Changes, New Features, and Fixes".
  32. "GCC 4.1 Release Series Changes, New Features, and Fixes".
  33. "GENERIC in GNU Compiler Collection Internals".
  34. "GIMPLE in GNU Compiler Collection Internals".
  35. McCAT at the Wayback Machine (archived August 12, 2004)
  36. "Laurie J. Hendren".
  37. Novillo, Diego (December 2004). "From Source to Binary: The Inner Workings of GCC". Red Hat Magazine.
  38. "Profile-guided optimization is demonstrated here".
  39. "Plugins". GCC online documentation. Retrieved July 8, 2013.
  40. Starynkevitch, Basile. "GCC plugins thru the MELT example" (PDF). Retrieved 2014-04-10.
  41. "About GCC MELT". Retrieved July 8, 2013.
  42. "Transactional Memory in GCC".
  43. "GCC Front Ends". gnu.org. Retrieved November 25, 2011.
  44. "GCC 5 Release Series".
  45. "PATCH] Remove chill". gcc.gnu.org. Retrieved July 29, 2010.
  46. "gdc project on bitbucket". Retrieved July 3, 2010.
  47. "GCC UPC (GCC Unified Parallel C)". www.gccupc.org. 2006-02-20. Retrieved 2009-03-11. External link in |publisher= (help)
  48. "Hexagon Project Wiki".
  49. "sx-gcc: port gcc to nec sx vector cpu".
  50. "The GNU Compiler for the Java Programming Language". Retrieved 2010-04-22.
  51. "GCC 6 Release Series".
  52. "GCC 4.8 Release Series: Changes, New Features, and Fixes".
  53. "The GNU C Library (glibc)". The GNU C Library is used as the C library in the GNU system and in GNU/Linux systems
  54. "Bionic and musl - room for cooperation?" (PDF). but there is no need to throw away existing Bionic, and ABI compatibility is important
  55. "Musl Libc 1.0 Is Going To Be Released Real Soon". Used alongside an existing Android userspace, musl bridges the gap between full-fledged Linux systems and Android, providing the necessary library foundation to run standard C and C++ software while retaining the license freedom developers have come to expect.
  56. "Taking Rust everywhere with rustup". Today’s Rust depends on libc, and on most Linuxes that means glibc. It’s technically challenging to fully statically link glibc, which presents difficulties when using it to produce a truly standalone binary. Fortunately, an alternative exists: musl
  57. "GCC Runtime Exception". FSF. Retrieved 2014-04-10.
  58. "FSF Service Directory".

Further reading

External links

Wikimedia Commons has media related to GCC.
Wikibooks has a book on the topic of: GNU C Compiler Internals

Official

Other

This article is issued from Wikipedia - version of the 11/18/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.