blob: e873f73b61fdca6811f27faa7486034fd4d152d0 [file] [log] [blame]
Chris Lattner83109672007-12-10 01:44:24 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
Kevina6751332007-12-14 05:47:49 +00003<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->
Chris Lattner83109672007-12-10 01:44:24 +00004<html>
5<head>
6 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
Chris Lattner0fcc09e2007-12-11 22:26:03 +00007 <title>Comparing clang to other open source compilers</title>
Chris Lattner83109672007-12-10 01:44:24 +00008 <link type="text/css" rel="stylesheet" href="menu.css" />
9 <link type="text/css" rel="stylesheet" href="content.css" />
10</head>
11<body>
12 <!--#include virtual="menu.html.incl"-->
13 <div id="content">
Chris Lattner0fcc09e2007-12-11 22:26:03 +000014 <h1>Clang vs Other Open Source Compilers</h1>
Chris Lattner83109672007-12-10 01:44:24 +000015
16 <p>Building an entirely new compiler front-end is a big task, and it isn't
17 always clear to people why we decided to do this. Here we compare clang
18 and its goals to other open source compiler front-ends that are
Chris Lattner74a165b2007-12-10 17:38:50 +000019 available. We restrict the discussion to very specific objective points
20 to avoid controversy where possible. Also, software is infinitely
21 mutable, so we don't talk about little details that can be fixed with
22 a reasonable amount of effort: we'll talk about issues that are
23 difficult to fix for architectural or political reasons.</p>
Chris Lattner83109672007-12-10 01:44:24 +000024
25 <p>The goal of this list is to describe how differences in goals lead to
26 different strengths and weaknesses, not to make some compiler look bad.
27 This will hopefully help you to evaluate whether using clang is a good
Chris Lattnerc222f932007-12-10 06:01:32 +000028 idea for your personal goals. Because we don't know specifically what
29 <em>you</em> want to do, we describe the features of these compilers in
30 terms of <em>our</em> goals: if you are only interested in static
31 analysis, you may not care that something lacks codegen support, for
32 example.</p>
Chris Lattner83109672007-12-10 01:44:24 +000033
34 <p>Please email cfe-dev if you think we should add another compiler to this
35 list or if you think some characterization is unfair here.</p>
36
Chris Lattnerac7e0902007-12-10 05:23:01 +000037 <ul>
38 <li><a href="#gcc">Clang vs GCC</a> (GNU Compiler Collection)</li>
39 <li><a href="#elsa">Clang vs Elsa</a> (Elkhound-based C++ Parser)</li>
40 <li><a href="#pcc">Clang vs PCC</a> (Portable C Compiler)</li>
41 </ul>
42
43
Chris Lattner83109672007-12-10 01:44:24 +000044 <!--=====================================================================-->
45 <h2><a name="gcc">Clang vs GCC (GNU Compiler Collection)</a></h2>
46 <!--=====================================================================-->
47
Chris Lattner40ae32f2007-12-10 05:06:15 +000048 <p>Pro's of GCC vs clang:</p>
Chris Lattner83109672007-12-10 01:44:24 +000049
50 <ul>
51 <li>GCC supports languages that clang does not aim to, such as Java, Ada,
52 FORTRAN, etc.</li>
53 <li>GCC front-ends are very mature and already support C/C++/ObjC and all
Chris Lattner3b88ce82008-08-24 05:44:37 +000054 the variants we are interested in. <a href="cxx_status.html">clang's
55 support for C++</a> in particular is nowhere near what GCC supports.</li>
Chris Lattner37629a42009-02-03 21:54:08 +000056 <li>GCC supports more targets than LLVM.</li>
Chris Lattner83109672007-12-10 01:44:24 +000057 <li>GCC is popular and widely adopted.</li>
Chris Lattner6c9a70d2007-12-10 02:18:15 +000058 <li>GCC does not require a C++ compiler to build it.</li>
Chris Lattner83109672007-12-10 01:44:24 +000059 </ul>
60
Chris Lattner40ae32f2007-12-10 05:06:15 +000061 <p>Pro's of clang vs GCC:</p>
Chris Lattner83109672007-12-10 01:44:24 +000062
63 <ul>
Chris Lattnerb5604af2007-12-10 07:23:52 +000064 <li>The Clang ASTs and design are intended to be <a
65 href="features.html#simplecode">easily understandable</a> by
Chris Lattner0d1638e2007-12-10 08:21:12 +000066 anyone who is familiar with the languages involved and who has a basic
Chris Lattner6c9a70d2007-12-10 02:18:15 +000067 understanding of how a compiler works. GCC has a very old codebase
68 which presents a steep learning curve to new developers.</li>
69 <li>Clang is designed as an API from its inception, allowing it to be reused
70 by source analysis tools, refactoring, IDEs (etc) as well as for code
71 generation. GCC is built as a monolithic static compiler, which makes
72 it extremely difficult to use as an API and integrate into other tools.
73 Further, its historic design and <a
Chris Lattner83109672007-12-10 01:44:24 +000074 href="http://gcc.gnu.org/ml/gcc/2007-11/msg00460.html">current</a>
Chris Lattnerff11fa32007-12-10 02:05:32 +000075 <a href="http://gcc.gnu.org/ml/gcc/2004-12/msg00888.html">policy</a>
Chris Lattner6c9a70d2007-12-10 02:18:15 +000076 makes it difficult to decouple the front-end from the rest of the
77 compiler. </li>
Chris Lattner83109672007-12-10 01:44:24 +000078 <li>Various GCC design decisions make it very difficult to reuse: its build
79 system is difficult to modify, you can't link multiple targets into one
80 binary, you can't link multiple front-ends into one binary, it uses a
81 custom garbage collector, uses global variables extensively, is not
82 reentrant or multi-threadable, etc. Clang has none of these problems.
83 </li>
Chris Lattner42f956b2007-12-10 02:24:44 +000084 <li>For every token, clang tracks information about where it was written and
Chris Lattner40ae32f2007-12-10 05:06:15 +000085 where it was ultimately expanded into if it was involved in a macro.
Chris Lattner42f956b2007-12-10 02:24:44 +000086 GCC does not track information about macro instantiations when parsing
Chris Lattner40ae32f2007-12-10 05:06:15 +000087 source code. This makes it very difficult for source rewriting tools
88 (e.g. for refactoring) to work in the presence of (even simple)
89 macros.</li>
Chris Lattner42f956b2007-12-10 02:24:44 +000090 <li>Clang does not implicitly simplify code as it parses it like GCC does.
Chris Lattner40ae32f2007-12-10 05:06:15 +000091 Doing so causes many problems for source analysis tools: as one simple
Chris Lattner42f956b2007-12-10 02:24:44 +000092 example, if you write "x-x" in your source code, the GCC AST will
93 contain "0", with no mention of 'x'. This is extremely bad for a
94 refactoring tool that wants to rename 'x'.</li>
Chris Lattner45918f32007-12-12 03:33:41 +000095 <li>Clang can serialize its AST out to disk and read it back into another
Chris Lattner0b11baa2007-12-11 22:29:38 +000096 program, which is useful for whole program analysis. GCC does not have
Chris Lattner64374062008-08-24 05:56:54 +000097 this. GCC's PCH mechanism (which is just a dump of the compiler
98 memory image) is related, but is architecturally only
99 able to read the dump back into the exact same executable as the one
100 that produced it (it is not a structured format).</li>
Chris Lattner6c9a70d2007-12-10 02:18:15 +0000101 <li>Clang is <a href="features.html#performance">much faster and uses far
102 less memory</a> than GCC.</li>
103 <li>Clang aims to provide extremely clear and concise diagnostics (error and
104 warning messages), and includes support for <a
105 href="features.html#expressivediags">expressive diagnostics</a>. GCC's
106 warnings are acceptable, but are often confusing and it does not support
107 expressive diagnostics. Clang also preserves typedefs in diagnostics
108 consistently.</li>
Chris Lattnerff11fa32007-12-10 02:05:32 +0000109 <li>GCC is licensed under the GPL license. clang uses a BSD license, which
110 allows it to be used by projects that do not themselves want to be
111 GPL.</li>
Chris Lattner6c9a70d2007-12-10 02:18:15 +0000112 <li>Clang inherits a number of features from its use of LLVM as a backend,
113 including support for a bytecode representation for intermediate code,
114 pluggable optimizers, link-time optimization support, Just-In-Time
Chris Lattner64374062008-08-24 05:56:54 +0000115 compilation, ability to link in multiple code generators, etc.</li>
Chris Lattner83109672007-12-10 01:44:24 +0000116 </ul>
117
118 <!--=====================================================================-->
119 <h2><a name="elsa">Clang vs Elsa (Elkhound-based C++ Parser)</a></h2>
120 <!--=====================================================================-->
121
Chris Lattner40ae32f2007-12-10 05:06:15 +0000122 <p>Pro's of Elsa vs clang:</p>
Chris Lattner83109672007-12-10 01:44:24 +0000123
124 <ul>
125 <li>Elsa's support for C++ is far beyond what clang provides. If you need
126 C++ support in the next year, Elsa is a great way to get it. That said,
127 Elsa is missing important support for templates and other pieces: for
128 example, it is not capable of compiling the GCC STL headers from any
129 version newer than GCC 3.4.</li>
Chris Lattner40ae32f2007-12-10 05:06:15 +0000130 <li>Elsa's parser and AST is designed to be easily extensible by adding
131 grammar rules. Clang has a very simple and easily hackable parser,
132 but requires you to write C++ code to do it.</li>
Chris Lattner83109672007-12-10 01:44:24 +0000133 </ul>
134
Chris Lattner40ae32f2007-12-10 05:06:15 +0000135 <p>Pro's of clang vs Elsa:</p>
Chris Lattner83109672007-12-10 01:44:24 +0000136
137 <ul>
138 <li>The Elsa community is extremely small and major development work seems
Chris Lattner64374062008-08-24 05:56:54 +0000139 to have ceased in 2005, though it continues to be used by other small
140 projects
Chris Lattner83109672007-12-10 01:44:24 +0000141 (e.g. Oink). Clang has a vibrant community including developers that
Chris Lattnerc222f932007-12-10 06:01:32 +0000142 are paid to work on it full time. In practice this means that you can
143 file bugs against Clang and they will often be fixed for you. If you
144 use Elsa, you are (mostly) on your own for bug fixes and feature
145 enhancements.</li>
Chris Lattner83109672007-12-10 01:44:24 +0000146 <li>Elsa is not built as a stack of reusable libraries like clang is. It is
Chris Lattner64374062008-08-24 05:56:54 +0000147 very difficult to use part of Elsa without the whole front-end. For
Chris Lattner83109672007-12-10 01:44:24 +0000148 example, you cannot use Elsa to parse C/ObjC code without building an
149 AST. You can do this in Clang and it is much faster than building an
150 AST.</li>
151 <li>Elsa does not have an integrated preprocessor, which makes it extremely
152 difficult to accurately map from a source location in the AST back to
Chris Lattner40ae32f2007-12-10 05:06:15 +0000153 its original position before preprocessing. Like GCC, it does not keep
Chris Lattner83109672007-12-10 01:44:24 +0000154 track of macro expansions.</li>
Chris Lattner64374062008-08-24 05:56:54 +0000155 <li>Elsa is even slower and uses more memory than GCC, which itself requires
156 far more space and time than clang.</li>
Chris Lattner83109672007-12-10 01:44:24 +0000157 <li>Elsa only does partial semantic analysis. It is intended to work on
158 code that is already validated by GCC, so it does not do many semantic
159 checks required by the languages it implements.</li>
160 <li>Elsa does not support Objective-C.</li>
161 <li>Elsa does not support native code generation.</li>
162 </ul>
163
Chris Lattnerc030f002007-12-11 07:59:50 +0000164 <p>Note that there is a fork of Elsa known as "Pork". It addresses some of
Chris Lattneraeae19c2007-12-12 04:22:37 +0000165 these shortcomings by loosely integrating a preprocessor. This allows it
Chris Lattnerc030f002007-12-11 07:59:50 +0000166 to map from a source location in the AST to the original position before
167 preprocessing, providing it better support for static analysis and
Chris Lattner64374062008-08-24 05:56:54 +0000168 refactoring. Note that Pork is in stasis now too.</p>
Chris Lattnerc030f002007-12-11 07:59:50 +0000169
Chris Lattner83109672007-12-10 01:44:24 +0000170
171 <!--=====================================================================-->
172 <h2><a name="pcc">Clang vs PCC (Portable C Compiler)</a></h2>
173 <!--=====================================================================-->
174
Chris Lattner40ae32f2007-12-10 05:06:15 +0000175 <p>Pro's of PCC vs clang:</p>
Chris Lattner83109672007-12-10 01:44:24 +0000176
177 <ul>
178 <li>The PCC source base is very small and builds quickly with just a C
179 compiler.</li>
180 </ul>
181
Chris Lattner40ae32f2007-12-10 05:06:15 +0000182 <p>Pro's of clang vs PCC:</p>
Chris Lattner83109672007-12-10 01:44:24 +0000183
184 <ul>
185 <li>PCC dates from the 1970's and has been dormant for most of that time.
Chris Lattner0d1638e2007-12-10 08:21:12 +0000186 The clang + llvm communities are very active.</li>
Chris Lattner6c9a70d2007-12-10 02:18:15 +0000187 <li>PCC doesn't support C99, Objective-C, and doesn't aim to support
188 C++.</li>
Chris Lattner0d1638e2007-12-10 08:21:12 +0000189 <li>PCC's code generation is very limited compared to LLVM. It produces very
Chris Lattner83109672007-12-10 01:44:24 +0000190 inefficient code and does not support many important targets.</li>
Chris Lattner40ae32f2007-12-10 05:06:15 +0000191 <li>Like Elsa, PCC's does not have an integrated preprocessor, making it
192 extremely difficult to use it for source analysis tools.</li>
Chris Lattner83109672007-12-10 01:44:24 +0000193 </div>
194</body>
195</html>