Clang

From Seo Wiki - Search Engine Optimization and Programming Languages
Jump to navigationJump to search
Clang
Original author(s) Chris Lattner and others
Developer(s) Apple Inc.
Written in C++
Operating system Unix-like
Platform Cross-platform
Development status Active
Type Compiler
License University of Illinois/NCSA Open Source License[1]
Website clang.llvm.org

Clang (pronounced /ˈklæŋ/ like the English word clang[2]) is a compiler front end for the C, C++, and Objective-C programming languages. It uses the Low Level Virtual Machine (LLVM) as its back end. It is still under development. Its goal is to offer a replacement to the GNU Compiler Collection (GCC). Development is sponsored by Apple, and it is licensed using a BSD-like open source license.

The Clang project includes the Clang front end and the Clang Static Analyzer among others.[3]

Background

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

One of the most visible uses to date has been an OpenGL code compiler for Mac OS X that converts OpenGL calls into more fundamental calls for graphics processing units that do not support certain features. This allowed Apple to support the entire OpenGL API on computers using Intel Graphics Media Accelerator (GMA) chipsets, increasing performance on those machines.[5] 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. GCC is a large and somewhat cumbersome system to develop; as one long-time GCC developer put it, "Trying to make the hippo dance is not really a lot of fun".[6] Apple software makes heavy use of Objective-C (ObjC), but the ObjC front-end in GCC is a low priority for the current GCC developers. GCC does not fit smoothly into Apple's IDE.[7] GCC is GPL licensed, requiring developers who distribute extensions for (or modified versions of) GCC to make their source code available, whereas LLVM has a BSD-like license.[8]

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

Overview

Clang is a new C-targeted compiler intended specifically to work on top of LLVM.[8] The combination of clang and LLVM provides the majority of a toolchain, allowing the replacement of the whole GCC stack.

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 machine-readable, so IDEs can index the output of the compiler during compilation. Since the compiler is always running, it can offer source code indexing, syntax checking, and other features normally associated with rapid application development systems[vague]. 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 compiler can be checked by diffing the IF.

GCC systems don't support threading at the single compilation level and cannot take advantage of the multi-processor hardware for single compilation units. Clang was designed from the start to be threaded and aims for reduced memory footprint and increased speed. As of October 2007, clang compiled the Carbon libraries well over twice as fast as GCC, while using about five times less memory and disk space.[10]

Although development on GCC may be difficult, the reasons for this have been well explored by its developers. This allowed the clang team to avoid these problems and make a more flexible system. Clang is highly modularized, based almost entirely on replaceable link-time libraries as opposed to source code modules that are combined at compile time, and well documented. This makes it much easier for new developers to get up to speed in clang and add to the project. 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++ and Objective C. For other languages, including Java, FORTRAN and Ada, LLVM remains dependent on GCC. Clang can be used or swapped out for GCC as needed, with no other effects on the toolchain as a whole[citation needed].

Status

The project is under rapid development. As of December 2009, code generation for C and Objective-C is production-quality, but support for C++ and Objective-C++ is still incomplete. Clang C++ is able to parse GCC 4.2 libstdc++ and generate working code for non-trivial programs [8] and is able to compile itself [11]

On February 25, 2009, it was announced that clang/LLVM was able to compile a working FreeBSD kernel.[12][13] On March 16, 2009, it was announced that clang/LLVM was able to compile a working DragonFly BSD kernel.[14][15] However, work remains yet before the Linux kernel will compile.[16]

On May 9, 2009, FreeBSD Status Report included that FreeBSD was exploring the possibility of replacing gcc with clang as the default system compiler.[17] An experimental branch of FreeBSD which includes Clang and LLVM was announced on the freebsd-hackers mailing list.[18]

On October 23, 2009 Clang 1.0 was released along with LLVM 2.6 for the first time.

References

  1. http://llvm.org/releases/2.1/LICENSE.TXT
  2. Christopher, Eric (2008-07-03). "simply wonder pronunciation of Clang". LLVMdev mailing list. http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-July/015624.html. Retrieved 2008-07-09. 
  3. "Clang Static Analyzer". LLVM. http://clang-analyzer.llvm.org/. Retrieved 2009-09-03. 
  4. 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. 
  5. Lattner, Chris (May 25, 2007). "LLVM for OpenGL and other stuff" (Slides). LLVM Developers' Meeting. http://llvm.org/devmtg/2007-05/10-Lattner-OpenGL.pdf. 
  6. Zadeck, Kenneth (19 November 2005). "Re: LLVM/GCC Integration Proposal". GCC development mailing list. http://gcc.gnu.org/ml/gcc/2005-11/msg00918.html. 
  7. 7.0 7.1 Naroff, Steve (May 25, 2007). "New LLVM C Front-end" (Slides). LLVM Developers' Meeting. http://llvm.org/devmtg/2007-05/09-Naroff-CFE.pdf. 
  8. 8.0 8.1 8.2 Clang team, clang: a C language family frontend for LLVM
  9. 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. 
  10. "Clang - Features and Goals: Fast compiles and Low Memory Use". October 2007. http://clang.llvm.org/features.html. 
  11. LLVM Blog, Clang can compile LLVM and Clang
  12. Roman Divacky, [ANNOUNCE] clang/LLVM can compile booting FreeBSD kernel on i386/amd64
  13. http://wiki.freebsd.org/BuildingFreeBSDWithClang
  14. Alex Hornung, "llvm/clang once more
  15. http://leaf.dragonflybsd.org/~alexh/clang/clang.html
  16. Meta Tracker: Compiling the Linux kernel with clang
  17. Brad Davis, "FreeBSD Status Reports January - March, 2009"
  18. Ed Schouten, "Clang: now available from a SVN server near you!"

External links

ja:Clang pl:Clang

If you like SEOmastering Site, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...