Clang

From Wikipedia, the free encyclopedia
Clang
Original author(s) Chris Lattner and others
Developer(s) Apple Inc., Google Inc. and others
Stable release 3.4 / 2 January 2014 (2014-01-02)
Development status Active
Written in C++
Operating system Unix-like
Platform Cross-platform
Type Compiler
License University of Illinois/NCSA Open Source License[1]
Website clang.llvm.org

Clang /ˈklæŋ/[2] is a compiler front end for the C, C++, Objective-C and Objective-C++ programming languages. It uses LLVM as its back end and has been part of its releases since LLVM 2.6.

Its goal is to offer a replacement to the GNU Compiler Collection (GCC). Development is completely open-source,[3] with several major software development companies involved, including Google and Apple. Its source code is available under the University of Illinois/NCSA License.

The Clang project includes the Clang front end and the Clang static analyzer among others.[4]

Background

Starting in 2005, Apple has made extensive use of LLVM in a number of commercial systems,[5] including the iPhone development kit and Xcode 3.1.

One of the first uses of LLVM was an OpenGL code compiler for Mac OS X that converts OpenGL calls into more fundamental calls for graphics processing units (GPU) that do not support certain features. This allowed Apple to support the entire OpenGL application programming interface (API) on computers using Intel Graphics Media Accelerator (GMA) chipsets, increasing performance on those machines.[6] For sufficiently capable GPUs, the code is compiled to take full advantage of the underlying hardware, but on GMA machines, LLVM compiles the same OpenGL code into subroutines to ensure it continues to work properly.

LLVM was originally intended to use GCC's front end, but GCC turned out to cause some problems for both the LLVM developers and Apple. The GCC source code is a large and somewhat cumbersome system for developers to work with; as one long-time GCC developer put it, "Trying to make the hippo dance is not really a lot of fun"[7] and a Google Summer of Code intern commented, "Reading GCC codebase has been a hard exercise for me. In fact it's the only project I know of that becomes more and more difficult as time passes."[8]

Apple software makes heavy use of Objective-C, but the Objective-C front-end in GCC is a low priority for the current GCC developers. Also, GCC does not fit smoothly into Apple's IDE.[9] Finally, GCC is GPL version 3 licensed, which requires developers who distribute extensions for (or modified versions of) GCC to make their source code available, whereas LLVM has a BSD-like license[10] which permits including the source into proprietary software.

Apple chose to develop a new compiler front end from scratch, supporting C, Objective-C and C++.[9] This "clang" project was open-sourced in July 2007.[11]

Design

Clang is intended specifically to work on top of LLVM.[10] The combination of Clang and LLVM provides the majority of a toolchain, allowing the replacement of the whole GCC stack. Because it is built with a library-based design, like the rest of LLVM, Clang is easy to embed into other applications. This is one reason why a majority of the OpenCL implementations are built with Clang and LLVM.[citation needed]

One of Clang's primary goals is to better support incremental compilation to allow the compiler to be more tightly tied to the IDE GUI. GCC is designed to work in a "classic" compile-link-debug cycle, and although it provides useful ways to support incremental and interrupted compiling on-the-fly, integrating them with other tools is not always easy. For instance, GCC uses a step called "fold" that is key to the overall compile process, which has the side effect of translating the code tree into a form that does not look very much like the original source code. If an error is found during or after the fold step, it can be difficult to translate that back into a single location in the original source. Additionally, vendors using the GCC stack within IDEs used separate tools to index the code to provide features like syntax highlighting and autocomplete.

Clang is designed to retain more information during the compilation process than GCC, and preserve the overall form of the original code. The objective of this is to make it easier to map errors back into the original source. The error reports offered by Clang are also aimed to be more detailed and specific, as well as machine-readable, so IDEs can index the output of the compiler during compilation. Modular design of the compiler can offer source code indexing, syntax checking, and other features normally associated with rapid application development systems. The parse tree is also more suitable for supporting automated code refactoring, as it remains in a parsable text form at all times. Changes to the program can be checked by diffing the intermediate form (IF).

Clang is modularized, well documented, and based almost entirely on replaceable link-time libraries — as opposed to source-code modules that are combined at compile time. In some cases the libraries are provided in several versions that can be swapped out at runtime; for instance the parser comes with a version that offers performance measurement of the compile process.

Clang, as the name implies, is a compiler only for C and C-like languages. It does not offer compiler front-ends for languages other than C, C++, Objective-C, and Objective-C++. For other languages, including Java, Fortran, and Ada, LLVM remains dependent on GCC. In many cases, Clang can be used or swapped out for GCC as needed, with no other effects on the toolchain as a whole.[citation needed] It supports most of the commonly used GCC options.

Performance and GCC compatibility

Clang is designed to be highly compatible with GCC;[12] Clang's command line interface is similar to and shares many flags and options with GCC. Clang implements many GNU language extensions and enables them by default. Clang implements many GCC compiler intrinsics purely for compatibility. For example, even though Clang implements atomic intrinsics which correspond exactly with C11 atomics, it also implements GCC's __sync_* intrinsics for compatibility with GCC and libstdc++. Clang also maintains ABI compatibility with GCC generated object code. In practice Clang can often be used as a drop-in replacement for GCC.

Clang's developers claim that it provides reduced memory footprint and increased compilation speed compared to competing compilers, such as GCC. To support their claim, they present that, as of October 2007, Clang compiled the Carbon libraries well over twice as fast as GCC, while using about one-sixth GCC's memory and disk space.[13]

Clang's compilation speed is typically better than GCC's.[14] The runtime performance of Clang/LLVM output formerly was worse than GCC's sometimes,[14][15] but as of the middle of 2012, runtime performance has improved to the point where GCC wins some benchmarks and Clang others.[16]

Status history

This table presents only significant steps and releases in Clang history.

Date Highlights
11 July 2007Clang frontend released under an open-source license
25 February 2009Clang/LLVM able to compile a working FreeBSD kernel.[17][18]
16 March 2009Clang/LLVM able to compile a working DragonFly BSD kernel.[19][20]
23 October 2009Clang 1.0 released along with LLVM 2.6 for the first time.
December 2009Code generation for C and Objective-C reach production quality (support for C++ and Objective-C++ still incomplete). Clang C++ able to parse GCC 4.2 libstdc++ and generate working code for non-trivial programs[10] and was able to compile itself[21]
2 February 2010Clang self-hosting.[22]
20 February 2010The source code of HelenOS was modified to successfully compile with Clang, and passed all kernel and user space regression tests on IA-32.[23]
20 May 2010The latest version of Clang successfully built the Boost C++ libraries, and passed nearly all tests.[24]
10 June 2010Clang/LLVM became an integral part of FreeBSD (The default compiler is still GCC)[25]
25 October 2010Clang/LLVM able to compile a working modified Linux Kernel.[26]
January 2011Preliminary work completed to support the draft C++0x standard, with a few of the draft's new features supported in the development version of Clang.[27][28]
10 February 2011Clang able to compile a working HotSpot Java Virtual Machine[14]
28 February 2012Clang 3.0 able to rebuild more than 91% of the Debian archive [29]
29 February 2012Clang becomes the default compiler in MINIX 3[30]
12 May 2012Clang/LLVM is announced to replace GCC in FreeBSD [31]
5 November 2012Clang becomes the default compiler in FreeBSD 10.x[32]
18 February 2013Clang/LLVM able to compile a working modified Android Linux Kernel for Nexus 7.[33][34]
19 April 2013Clang is C++11 feature complete.[35]
6 November 2013Clang is C++14 feature complete.[36]

See also

References

  1. LLVM License, retrieved 2012-09-18 
  2. Christopher, Eric (3 July 2008). "simply wonder pronunciation of Clang". LLVMdev mailing list. http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-July/015624.html. Retrieved 9 July 2008.
  3. Clang "Getting started" instructions, Clang.llvm.org, retrieved 2012-09-18 
  4. "Clang Static Analyzer". LLVM. Retrieved 3 September 2009. 
  5. Treat, Adam (19 February 2005). "mkspecs and patches for LLVM compile of Qt4". Qt4-preview-feedback mailing list. http://lists.trolltech.com/qt4-preview-feedback/2005-02/msg00691.html.
  6. Lattner, Chris (25 May 2007). "LLVM for OpenGL and other stuff" (Slides). LLVM Developers' Meeting. 
  7. Zadeck, Kenneth (19 November 2005). "Re: LLVM/GCC Integration Proposal". GCC development mailing list. http://gcc.gnu.org/ml/gcc/2005-11/msg00918.html.
  8. Apostolou, Dimitrios (5 July 2011). "GSOC - Student Roundup". GCC development mailing list. http://gcc.gnu.org/ml/gcc/2011-07/msg00041.html.
  9. 9.0 9.1 Naroff, Steve (25 May 2007). "New LLVM C Front-end" (Slides). LLVM Developers' Meeting. 
  10. 10.0 10.1 10.2 Clang team, clang: a C language family frontend for LLVM
  11. Lattner, Chris (11 July 2007). "New LLVM C front-end: "clang"". cfe-dev mailing list. http://lists.cs.uiuc.edu/pipermail/cfe-dev/2007-July/000000.html.
  12. Clang - Features and Goals: GCC Compatibility, 15 April 2013 
  13. Clang - Features and Goals: Fast compiles and Low Memory Use, October 2007 
  14. 14.0 14.1 14.2 Simonis, Volker (10 February 2011). "Compiling the HotSpot VM with Clang". Retrieved 13 February 2011. "While the overall GCC compatibility is excellent and the compile times are impressive, the performance of the generated code is still lacking behind a recent GCC version. " 
  15. "Benchmarking LLVM & Clang Against GCC 4.5". Phoronix. 21 April 2010. Retrieved 13 February 2011. "Binaries from LLVM-GCC and Clang both struggled to compete with GCC 4.5.0 in the timed HMMer benchmark of a Pfam database search. LLVM-GCC and Clang were about 23% slower(...)Though LLVM / Clang isn't the performance champion at this point, both components continue to be under very active development and there will hopefully be more news to report in the coming months" 
  16. "LLVM CLANG 3.1 GCC 4.7 INTEL CORE I7 BENCHMARKS". OpenBenchmarking.org. 2 July 2012. Retrieved 2 July 2012. 
  17. Divacky, Roman. "[ANNOUNCE] clang/llvm can compile booting FreeBSD kernel on i386/amd64". 
  18. Building FreeBSD with Clang, Wiki.freebsd.org, 2012-08-24, retrieved 2012-09-18 
  19. Hornung, Alex. "llvm/clang once more". 
  20. Clang, DragonFlyBSD, retrieved 2012-09-18 
  21. "Clang can compile LLVM and Clang". LLVM Project Blog. 
  22. "Clang Successfully Self-Hosts". LLVM Project Blog. 
  23. "HelenOS mainline changeset head,294". 
  24. Gregor, Doug. "Clang++ Builds Boost!". LLVM Project Blog. 
  25. Davis, Brad. "FreeBSD Status Reports April - June, 2010". 
  26. Clang builds a working Linux Kernel (Boots to RL5 with SMP, networking and X, self hosts), Lists.cs.uiuc.edu, retrieved 2012-09-18 
  27. Gregor, Douglas (26 January 2011). "New C++0x feature support in Clang". http://lists.cs.uiuc.edu/pipermail/cfe-dev/2011-January/013013.html. Retrieved 29 January 2011.
  28. "C++ and C++'0x Support in Clang". LLVM. 
  29. Ledru, Sylvestre. "Rebuild of the Debian archive with clang". 
  30. "Official Minix 3 website: News". 
  31. Gerzo, Daniel (12 May 2012). "FreeBSD Quarterly Status Report January-March, 2012". http://lists.freebsd.org/pipermail/freebsd-stable/2012-May/067486.html. Retrieved 14 May 2012.
  32. Davis, Brooks (5 November 2012). "HEADS UP: Clang now the default on x86". http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037610.html. Retrieved 7 November 2012.
  33. Webster, Behan (18 February 2013). "LLVMLinux: Compiling Android with LLVM". Retrieved 11 May 2013. 
  34. Tinti, Vinicius (17 March 2013). "LLVMLinux: Nexus 7". Retrieved 11 May 2013. 
  35. Du Toit, Stefanus. "Clang is C++11 feature complete as of *just now*!". 
  36. "[llvm-project] Revision 194194". 

External links

This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.