1===================== 2LLVM Developer Policy 3===================== 4 5.. contents:: 6 :local: 7 8Introduction 9============ 10 11This document contains the LLVM Developer Policy which defines the project's 12policy towards developers and their contributions. The intent of this policy is 13to eliminate miscommunication, rework, and confusion that might arise from the 14distributed nature of LLVM's development. By stating the policy in clear terms, 15we hope each developer can know ahead of time what to expect when making LLVM 16contributions. This policy covers all llvm.org subprojects, including Clang, 17LLDB, libc++, etc. 18 19This policy is also designed to accomplish the following objectives: 20 21#. Attract both users and developers to the LLVM project. 22 23#. Make life as simple and easy for contributors as possible. 24 25#. Keep the top of Subversion trees as stable as possible. 26 27#. Establish awareness of the project's :ref:`copyright, license, and patent 28 policies <copyright-license-patents>` with contributors to the project. 29 30This policy is aimed at frequent contributors to LLVM. People interested in 31contributing one-off patches can do so in an informal way by sending them to the 32`llvm-commits mailing list 33<http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits>`_ and engaging another 34developer to see it through the process. 35 36Developer Policies 37================== 38 39This section contains policies that pertain to frequent LLVM developers. We 40always welcome `one-off patches`_ from people who do not routinely contribute to 41LLVM, but we expect more from frequent contributors to keep the system as 42efficient as possible for everyone. Frequent LLVM contributors are expected to 43meet the following requirements in order for LLVM to maintain a high standard of 44quality. 45 46Stay Informed 47------------- 48 49Developers should stay informed by reading at least the "dev" mailing list for 50the projects you are interested in, such as `llvmdev 51<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev>`_ for LLVM, `cfe-dev 52<http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev>`_ for Clang, or `lldb-dev 53<http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev>`_ for LLDB. If you are 54doing anything more than just casual work on LLVM, it is suggested that you also 55subscribe to the "commits" mailing list for the subproject you're interested in, 56such as `llvm-commits 57<http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits>`_, `cfe-commits 58<http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits>`_, or `lldb-commits 59<http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits>`_. Reading the 60"commits" list and paying attention to changes being made by others is a good 61way to see what other people are interested in and watching the flow of the 62project as a whole. 63 64We recommend that active developers register an email account with `LLVM 65Bugzilla <http://llvm.org/bugs/>`_ and preferably subscribe to the `llvm-bugs 66<http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs>`_ email list to keep track 67of bugs and enhancements occurring in LLVM. We really appreciate people who are 68proactive at catching incoming bugs in their components and dealing with them 69promptly. 70 71Please be aware that all public LLVM mailing lists are public and archived, and 72that notices of confidentiality or non-disclosure cannot be respected. 73 74.. _patch: 75.. _one-off patches: 76 77Making and Submitting a Patch 78----------------------------- 79 80When making a patch for review, the goal is to make it as easy for the reviewer 81to read it as possible. As such, we recommend that you: 82 83#. Make your patch against the Subversion trunk, not a branch, and not an old 84 version of LLVM. This makes it easy to apply the patch. For information on 85 how to check out SVN trunk, please see the `Getting Started 86 Guide <GettingStarted.html#checkout>`_. 87 88#. Similarly, patches should be submitted soon after they are generated. Old 89 patches may not apply correctly if the underlying code changes between the 90 time the patch was created and the time it is applied. 91 92#. Patches should be made with ``svn diff``, or similar. If you use a 93 different tool, make sure it uses the ``diff -u`` format and that it 94 doesn't contain clutter which makes it hard to read. 95 96#. If you are modifying generated files, such as the top-level ``configure`` 97 script, please separate out those changes into a separate patch from the rest 98 of your changes. 99 100Once your patch is ready, submit it by emailing it to the appropriate project's 101commit mailing list (or commit it directly if applicable). Alternatively, some 102patches get sent to the project's development list or component of the LLVM bug 103tracker, but the commit list is the primary place for reviews and should 104generally be preferred. 105 106When sending a patch to a mailing list, it is a good idea to send it as an 107*attachment* to the message, not embedded into the text of the message. This 108ensures that your mailer will not mangle the patch when it sends it (e.g. by 109making whitespace changes or by wrapping lines). 110 111*For Thunderbird users:* Before submitting a patch, please open *Preferences > 112Advanced > General > Config Editor*, find the key 113``mail.content_disposition_type``, and set its value to ``1``. Without this 114setting, Thunderbird sends your attachment using ``Content-Disposition: inline`` 115rather than ``Content-Disposition: attachment``. Apple Mail gamely displays such 116a file inline, making it difficult to work with for reviewers using that 117program. 118 119When submitting patches, please do not add confidentiality or non-disclosure 120notices to the patches themselves. These notices conflict with the `LLVM 121License`_ and may result in your contribution being excluded. 122 123.. _code review: 124 125Code Reviews 126------------ 127 128LLVM has a code review policy. Code review is one way to increase the quality of 129software. We generally follow these policies: 130 131#. All developers are required to have significant changes reviewed before they 132 are committed to the repository. 133 134#. Code reviews are conducted by email on the relevant project's commit mailing 135 list, or alternatively on the project's development list or bug tracker. 136 137#. Code can be reviewed either before it is committed or after. We expect major 138 changes to be reviewed before being committed, but smaller changes (or 139 changes where the developer owns the component) can be reviewed after commit. 140 141#. The developer responsible for a code change is also responsible for making 142 all necessary review-related changes. 143 144#. Code review can be an iterative process, which continues until the patch is 145 ready to be committed. Specifically, once a patch is sent out for review, it 146 needs an explicit "looks good" before it is submitted. Do not assume silent 147 approval, or request active objections to the patch with a deadline. 148 149Sometimes code reviews will take longer than you would hope for, especially for 150larger features. Accepted ways to speed up review times for your patches are: 151 152* Review other people's patches. If you help out, everybody will be more 153 willing to do the same for you; goodwill is our currency. 154* Ping the patch. If it is urgent, provide reasons why it is important to you to 155 get this patch landed and ping it every couple of days. If it is 156 not urgent, the common courtesy ping rate is one week. Remember that you're 157 asking for valuable time from other professional developers. 158* Ask for help on IRC. Developers on IRC will be able to either help you 159 directly, or tell you who might be a good reviewer. 160* Split your patch into multiple smaller patches that build on each other. The 161 smaller your patch, the higher the probability that somebody will take a quick 162 look at it. 163 164Developers should participate in code reviews as both reviewers and 165reviewees. If someone is kind enough to review your code, you should return the 166favor for someone else. Note that anyone is welcome to review and give feedback 167on a patch, but only people with Subversion write access can approve it. 168 169There is a web based code review tool that can optionally be used 170for code reviews. See :doc:`Phabricator`. 171 172Code Owners 173----------- 174 175The LLVM Project relies on two features of its process to maintain rapid 176development in addition to the high quality of its source base: the combination 177of code review plus post-commit review for trusted maintainers. Having both is 178a great way for the project to take advantage of the fact that most people do 179the right thing most of the time, and only commit patches without pre-commit 180review when they are confident they are right. 181 182The trick to this is that the project has to guarantee that all patches that are 183committed are reviewed after they go in: you don't want everyone to assume 184someone else will review it, allowing the patch to go unreviewed. To solve this 185problem, we have a notion of an 'owner' for a piece of the code. The sole 186responsibility of a code owner is to ensure that a commit to their area of the 187code is appropriately reviewed, either by themself or by someone else. The list 188of current code owners can be found in the file 189`CODE_OWNERS.TXT <http://llvm.org/viewvc/llvm-project/llvm/trunk/CODE_OWNERS.TXT?view=markup>`_ 190in the root of the LLVM source tree. 191 192Note that code ownership is completely different than reviewers: anyone can 193review a piece of code, and we welcome code review from anyone who is 194interested. Code owners are the "last line of defense" to guarantee that all 195patches that are committed are actually reviewed. 196 197Being a code owner is a somewhat unglamorous position, but it is incredibly 198important for the ongoing success of the project. Because people get busy, 199interests change, and unexpected things happen, code ownership is purely opt-in, 200and anyone can choose to resign their "title" at any time. For now, we do not 201have an official policy on how one gets elected to be a code owner. 202 203.. _include a testcase: 204 205Test Cases 206---------- 207 208Developers are required to create test cases for any bugs fixed and any new 209features added. Some tips for getting your testcase approved: 210 211* All feature and regression test cases are added to the ``llvm/test`` 212 directory. The appropriate sub-directory should be selected (see the 213 :doc:`Testing Guide <TestingGuide>` for details). 214 215* Test cases should be written in :doc:`LLVM assembly language <LangRef>`. 216 217* Test cases, especially for regressions, should be reduced as much as possible, 218 by :doc:`bugpoint <Bugpoint>` or manually. It is unacceptable to place an 219 entire failing program into ``llvm/test`` as this creates a *time-to-test* 220 burden on all developers. Please keep them short. 221 222Note that llvm/test and clang/test are designed for regression and small feature 223tests only. More extensive test cases (e.g., entire applications, benchmarks, 224etc) should be added to the ``llvm-test`` test suite. The llvm-test suite is 225for coverage (correctness, performance, etc) testing, not feature or regression 226testing. 227 228Quality 229------- 230 231The minimum quality standards that any change must satisfy before being 232committed to the main development branch are: 233 234#. Code must adhere to the `LLVM Coding Standards <CodingStandards.html>`_. 235 236#. Code must compile cleanly (no errors, no warnings) on at least one platform. 237 238#. Bug fixes and new features should `include a testcase`_ so we know if the 239 fix/feature ever regresses in the future. 240 241#. Code must pass the ``llvm/test`` test suite. 242 243#. The code must not cause regressions on a reasonable subset of llvm-test, 244 where "reasonable" depends on the contributor's judgement and the scope of 245 the change (more invasive changes require more testing). A reasonable subset 246 might be something like "``llvm-test/MultiSource/Benchmarks``". 247 248Additionally, the committer is responsible for addressing any problems found in 249the future that the change is responsible for. For example: 250 251* The code should compile cleanly on all supported platforms. 252 253* The changes should not cause any correctness regressions in the ``llvm-test`` 254 suite and must not cause any major performance regressions. 255 256* The change set should not cause performance or correctness regressions for the 257 LLVM tools. 258 259* The changes should not cause performance or correctness regressions in code 260 compiled by LLVM on all applicable targets. 261 262* You are expected to address any `Bugzilla bugs <http://llvm.org/bugs/>`_ that 263 result from your change. 264 265We prefer for this to be handled before submission but understand that it isn't 266possible to test all of this for every submission. Our build bots and nightly 267testing infrastructure normally finds these problems. A good rule of thumb is 268to check the nightly testers for regressions the day after your change. Build 269bots will directly email you if a group of commits that included yours caused a 270failure. You are expected to check the build bot messages to see if they are 271your fault and, if so, fix the breakage. 272 273Commits that violate these quality standards (e.g. are very broken) may be 274reverted. This is necessary when the change blocks other developers from making 275progress. The developer is welcome to re-commit the change after the problem has 276been fixed. 277 278Obtaining Commit Access 279----------------------- 280 281We grant commit access to contributors with a track record of submitting high 282quality patches. If you would like commit access, please send an email to 283`Chris <mailto:sabre@nondot.org>`_ with the following information: 284 285#. The user name you want to commit with, e.g. "hacker". 286 287#. The full name and email address you want message to llvm-commits to come 288 from, e.g. "J. Random Hacker <hacker@yoyodyne.com>". 289 290#. A "password hash" of the password you want to use, e.g. "``2ACR96qjUqsyM``". 291 Note that you don't ever tell us what your password is; you just give it to 292 us in an encrypted form. To get this, run "``htpasswd``" (a utility that 293 comes with apache) in crypt mode (often enabled with "``-d``"), or find a web 294 page that will do it for you. 295 296Once you've been granted commit access, you should be able to check out an LLVM 297tree with an SVN URL of "https://username@llvm.org/..." instead of the normal 298anonymous URL of "http://llvm.org/...". The first time you commit you'll have 299to type in your password. Note that you may get a warning from SVN about an 300untrusted key; you can ignore this. To verify that your commit access works, 301please do a test commit (e.g. change a comment or add a blank line). Your first 302commit to a repository may require the autogenerated email to be approved by a 303mailing list. This is normal and will be done when the mailing list owner has 304time. 305 306If you have recently been granted commit access, these policies apply: 307 308#. You are granted *commit-after-approval* to all parts of LLVM. To get 309 approval, submit a `patch`_ to `llvm-commits 310 <http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits>`_. When approved, 311 you may commit it yourself. 312 313#. You are allowed to commit patches without approval which you think are 314 obvious. This is clearly a subjective decision --- we simply expect you to 315 use good judgement. Examples include: fixing build breakage, reverting 316 obviously broken patches, documentation/comment changes, any other minor 317 changes. 318 319#. You are allowed to commit patches without approval to those portions of LLVM 320 that you have contributed or maintain (i.e., have been assigned 321 responsibility for), with the proviso that such commits must not break the 322 build. This is a "trust but verify" policy, and commits of this nature are 323 reviewed after they are committed. 324 325#. Multiple violations of these policies or a single egregious violation may 326 cause commit access to be revoked. 327 328In any case, your changes are still subject to `code review`_ (either before or 329after they are committed, depending on the nature of the change). You are 330encouraged to review other peoples' patches as well, but you aren't required 331to do so. 332 333.. _discuss the change/gather consensus: 334 335Making a Major Change 336--------------------- 337 338When a developer begins a major new project with the aim of contributing it back 339to LLVM, they should inform the community with an email to the `llvmdev 340<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev>`_ email list, to the extent 341possible. The reason for this is to: 342 343#. keep the community informed about future changes to LLVM, 344 345#. avoid duplication of effort by preventing multiple parties working on the 346 same thing and not knowing about it, and 347 348#. ensure that any technical issues around the proposed work are discussed and 349 resolved before any significant work is done. 350 351The design of LLVM is carefully controlled to ensure that all the pieces fit 352together well and are as consistent as possible. If you plan to make a major 353change to the way LLVM works or want to add a major new extension, it is a good 354idea to get consensus with the development community before you start working on 355it. 356 357Once the design of the new feature is finalized, the work itself should be done 358as a series of `incremental changes`_, not as a long-term development branch. 359 360.. _incremental changes: 361 362Incremental Development 363----------------------- 364 365In the LLVM project, we do all significant changes as a series of incremental 366patches. We have a strong dislike for huge changes or long-term development 367branches. Long-term development branches have a number of drawbacks: 368 369#. Branches must have mainline merged into them periodically. If the branch 370 development and mainline development occur in the same pieces of code, 371 resolving merge conflicts can take a lot of time. 372 373#. Other people in the community tend to ignore work on branches. 374 375#. Huge changes (produced when a branch is merged back onto mainline) are 376 extremely difficult to `code review`_. 377 378#. Branches are not routinely tested by our nightly tester infrastructure. 379 380#. Changes developed as monolithic large changes often don't work until the 381 entire set of changes is done. Breaking it down into a set of smaller 382 changes increases the odds that any of the work will be committed to the main 383 repository. 384 385To address these problems, LLVM uses an incremental development style and we 386require contributors to follow this practice when making a large/invasive 387change. Some tips: 388 389* Large/invasive changes usually have a number of secondary changes that are 390 required before the big change can be made (e.g. API cleanup, etc). These 391 sorts of changes can often be done before the major change is done, 392 independently of that work. 393 394* The remaining inter-related work should be decomposed into unrelated sets of 395 changes if possible. Once this is done, define the first increment and get 396 consensus on what the end goal of the change is. 397 398* Each change in the set can be stand alone (e.g. to fix a bug), or part of a 399 planned series of changes that works towards the development goal. 400 401* Each change should be kept as small as possible. This simplifies your work 402 (into a logical progression), simplifies code review and reduces the chance 403 that you will get negative feedback on the change. Small increments also 404 facilitate the maintenance of a high quality code base. 405 406* Often, an independent precursor to a big change is to add a new API and slowly 407 migrate clients to use the new API. Each change to use the new API is often 408 "obvious" and can be committed without review. Once the new API is in place 409 and used, it is much easier to replace the underlying implementation of the 410 API. This implementation change is logically separate from the API 411 change. 412 413If you are interested in making a large change, and this scares you, please make 414sure to first `discuss the change/gather consensus`_ then ask about the best way 415to go about making the change. 416 417Attribution of Changes 418---------------------- 419 420When contributors submit a patch to an LLVM project, other developers with 421commit access may commit it for the author once appropriate (based on the 422progression of code review, etc.). When doing so, it is important to retain 423correct attribution of contributions to their contributors. However, we do not 424want the source code to be littered with random attributions "this code written 425by J. Random Hacker" (this is noisy and distracting). In practice, the revision 426control system keeps a perfect history of who changed what, and the CREDITS.txt 427file describes higher-level contributions. If you commit a patch for someone 428else, please say "patch contributed by J. Random Hacker!" in the commit 429message. Overall, please do not add contributor names to the source code. 430 431Also, don't commit patches authored by others unless they have submitted the 432patch to the project or you have been authorized to submit them on their behalf 433(you work together and your company authorized you to contribute the patches, 434etc.). The author should first submit them to the relevant project's commit 435list, development list, or LLVM bug tracker component. If someone sends you 436a patch privately, encourage them to submit it to the appropriate list first. 437 438 439.. _copyright-license-patents: 440 441Copyright, License, and Patents 442=============================== 443 444.. note:: 445 446 This section deals with legal matters but does not provide legal advice. We 447 are not lawyers --- please seek legal counsel from an attorney. 448 449This section addresses the issues of copyright, license and patents for the LLVM 450project. The copyright for the code is held by the individual contributors of 451the code and the terms of its license to LLVM users and developers is the 452`University of Illinois/NCSA Open Source License 453<http://www.opensource.org/licenses/UoI-NCSA.php>`_ (with portions dual licensed 454under the `MIT License <http://www.opensource.org/licenses/mit-license.php>`_, 455see below). As contributor to the LLVM project, you agree to allow any 456contributions to the project to licensed under these terms. 457 458Copyright 459--------- 460 461The LLVM project does not require copyright assignments, which means that the 462copyright for the code in the project is held by its respective contributors who 463have each agreed to release their contributed code under the terms of the `LLVM 464License`_. 465 466An implication of this is that the LLVM license is unlikely to ever change: 467changing it would require tracking down all the contributors to LLVM and getting 468them to agree that a license change is acceptable for their contribution. Since 469there are no plans to change the license, this is not a cause for concern. 470 471As a contributor to the project, this means that you (or your company) retain 472ownership of the code you contribute, that it cannot be used in a way that 473contradicts the license (which is a liberal BSD-style license), and that the 474license for your contributions won't change without your approval in the 475future. 476 477.. _LLVM License: 478 479License 480------- 481 482We intend to keep LLVM perpetually open source and to use a liberal open source 483license. **As a contributor to the project, you agree that any contributions be 484licensed under the terms of the corresponding subproject.** All of the code in 485LLVM is available under the `University of Illinois/NCSA Open Source License 486<http://www.opensource.org/licenses/UoI-NCSA.php>`_, which boils down to 487this: 488 489* You can freely distribute LLVM. 490* You must retain the copyright notice if you redistribute LLVM. 491* Binaries derived from LLVM must reproduce the copyright notice (e.g. in an 492 included readme file). 493* You can't use our names to promote your LLVM derived products. 494* There's no warranty on LLVM at all. 495 496We believe this fosters the widest adoption of LLVM because it **allows 497commercial products to be derived from LLVM** with few restrictions and without 498a requirement for making any derived works also open source (i.e. LLVM's 499license is not a "copyleft" license like the GPL). We suggest that you read the 500`License <http://www.opensource.org/licenses/UoI-NCSA.php>`_ if further 501clarification is needed. 502 503In addition to the UIUC license, the runtime library components of LLVM 504(**compiler_rt, libc++, and libclc**) are also licensed under the `MIT License 505<http://www.opensource.org/licenses/mit-license.php>`_, which does not contain 506the binary redistribution clause. As a user of these runtime libraries, it 507means that you can choose to use the code under either license (and thus don't 508need the binary redistribution clause), and as a contributor to the code that 509you agree that any contributions to these libraries be licensed under both 510licenses. We feel that this is important for runtime libraries, because they 511are implicitly linked into applications and therefore should not subject those 512applications to the binary redistribution clause. This also means that it is ok 513to move code from (e.g.) libc++ to the LLVM core without concern, but that code 514cannot be moved from the LLVM core to libc++ without the copyright owner's 515permission. 516 517Note that the LLVM Project does distribute dragonegg, **which is 518GPL.** This means that anything "linked" into dragonegg must itself be compatible 519with the GPL, and must be releasable under the terms of the GPL. This implies 520that **any code linked into dragonegg and distributed to others may be subject to 521the viral aspects of the GPL** (for example, a proprietary code generator linked 522into dragonegg must be made available under the GPL). This is not a problem for 523code already distributed under a more liberal license (like the UIUC license), 524and GPL-containing subprojects are kept in separate SVN repositories whose 525LICENSE.txt files specifically indicate that they contain GPL code. 526 527We have no plans to change the license of LLVM. If you have questions or 528comments about the license, please contact the `LLVM Developer's Mailing 529List <mailto:llvmdev@cs.uiuc.edu>`_. 530 531Patents 532------- 533 534To the best of our knowledge, LLVM does not infringe on any patents (we have 535actually removed code from LLVM in the past that was found to infringe). Having 536code in LLVM that infringes on patents would violate an important goal of the 537project by making it hard or impossible to reuse the code for arbitrary purposes 538(including commercial use). 539 540When contributing code, we expect contributors to notify us of any potential for 541patent-related trouble with their changes (including from third parties). If 542you or your employer own the rights to a patent and would like to contribute 543code to LLVM that relies on it, we require that the copyright owner sign an 544agreement that allows any other user of LLVM to freely use your patent. Please 545contact the `oversight group <mailto:llvm-oversight@cs.uiuc.edu>`_ for more 546details. 547