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 tree 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.llvm.org/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 the `LLVM Discourse forums`_. 50If you are doing anything more than just casual work on LLVM, it is suggested that you also 51subscribe to the "commits" mailing list for the subproject you're interested in, 52such as `llvm-commits 53<http://lists.llvm.org/mailman/listinfo/llvm-commits>`_, `cfe-commits 54<http://lists.llvm.org/mailman/listinfo/cfe-commits>`_, or `lldb-commits 55<http://lists.llvm.org/mailman/listinfo/lldb-commits>`_. Reading the 56"commits" list and paying attention to changes being made by others is a good 57way to see what other people are interested in and watching the flow of the 58project as a whole. 59 60We recommend that active developers monitor incoming issues to our `GitHub issue tracker <https://github.com/llvm/llvm-project/issues>`_ and preferably subscribe to the `llvm-bugs 61<http://lists.llvm.org/mailman/listinfo/llvm-bugs>`_ email list to keep track 62of bugs and enhancements occurring in LLVM. We really appreciate people who are 63proactive at catching incoming bugs in their components and dealing with them 64promptly. 65 66Please be aware that all public LLVM mailing lists and discourse forums are public and archived, and 67that notices of confidentiality or non-disclosure cannot be respected. 68 69.. _patch: 70.. _one-off patches: 71 72Making and Submitting a Patch 73----------------------------- 74 75When making a patch for review, the goal is to make it as easy for the reviewer 76to read it as possible. As such, we recommend that you: 77 78#. Make your patch against git main, not a branch, and not an old version 79 of LLVM. This makes it easy to apply the patch. For information on how to 80 clone from git, please see the :ref:`Getting Started Guide 81 <checkout>`. 82 83#. Similarly, patches should be submitted soon after they are generated. Old 84 patches may not apply correctly if the underlying code changes between the 85 time the patch was created and the time it is applied. 86 87#. Patches should be made with ``git format-patch``, or similar (see special 88 commands for `Requesting Phabricator review via the web interface 89 <Phabricator.html#phabricator-request-review-web>`_ ). If you use a 90 different tool, make sure it uses the ``diff -u`` format and that it 91 doesn't contain clutter which makes it hard to read. 92 93Once your patch is ready, submit it by emailing it to the appropriate project's 94commit mailing list (or commit it directly if applicable). Alternatively, some 95patches get sent to the project's development list or component of the LLVM bug 96tracker, but the commit list is the primary place for reviews and should 97generally be preferred. 98 99When sending a patch to a mailing list, it is a good idea to send it as an 100*attachment* to the message, not embedded into the text of the message. This 101ensures that your mailer will not mangle the patch when it sends it (e.g. by 102making whitespace changes or by wrapping lines). 103 104*For Thunderbird users:* Before submitting a patch, please open *Preferences > 105Advanced > General > Config Editor*, find the key 106``mail.content_disposition_type``, and set its value to ``1``. Without this 107setting, Thunderbird sends your attachment using ``Content-Disposition: inline`` 108rather than ``Content-Disposition: attachment``. Apple Mail gamely displays such 109a file inline, making it difficult to work with for reviewers using that 110program. 111 112When submitting patches, please do not add confidentiality or non-disclosure 113notices to the patches themselves. These notices conflict with the LLVM 114licensing terms and may result in your contribution being excluded. 115 116.. _code review: 117 118Code Reviews 119------------ 120 121LLVM has a code-review policy. Code review is one way to increase the quality of 122software. Please see :doc:`CodeReview` for more information on LLVM's code-review 123process. 124 125.. _code owners: 126 127Code Owners 128----------- 129 130The LLVM Project relies on two features of its process to maintain rapid 131development in addition to the high quality of its source base: the combination 132of code review plus post-commit review for trusted maintainers. Having both is 133a great way for the project to take advantage of the fact that most people do 134the right thing most of the time, and only commit patches without pre-commit 135review when they are confident they are right. 136 137The trick to this is that the project has to guarantee that all patches that are 138committed are reviewed after they go in: you don't want everyone to assume 139someone else will review it, allowing the patch to go unreviewed. To solve this 140problem, we have a notion of an 'owner' for a piece of the code. The sole 141responsibility of a code owner is to ensure that a commit to their area of the 142code is appropriately reviewed, either by themself or by someone else. The list 143of current code owners can be found in the file `CODE_OWNERS.TXT 144<https://github.com/llvm/llvm-project/blob/main/llvm/CODE_OWNERS.TXT>`_ in the 145root of the LLVM source tree. 146 147Note that code ownership is completely different than reviewers: anyone can 148review a piece of code, and we welcome code review from anyone who is 149interested. Code owners are the "last line of defense" to guarantee that all 150patches that are committed are actually reviewed. 151 152Being a code owner is a somewhat unglamorous position, but it is incredibly 153important for the ongoing success of the project. Because people get busy, 154interests change, and unexpected things happen, code ownership is purely opt-in, 155and anyone can choose to resign their "title" at any time. For now, we do not 156have an official policy on how one gets elected to be a code owner. 157 158.. _include a testcase: 159 160Test Cases 161---------- 162 163Developers are required to create test cases for any bugs fixed and any new 164features added. Some tips for getting your testcase approved: 165 166* All feature and regression test cases are added to the ``llvm/test`` 167 directory. The appropriate sub-directory should be selected (see the 168 :doc:`Testing Guide <TestingGuide>` for details). 169 170* Test cases should be written in :doc:`LLVM assembly language <LangRef>`. 171 172* Test cases, especially for regressions, should be reduced as much as possible, 173 by :doc:`bugpoint <Bugpoint>` or manually. It is unacceptable to place an 174 entire failing program into ``llvm/test`` as this creates a *time-to-test* 175 burden on all developers. Please keep them short. 176 177Note that llvm/test and clang/test are designed for regression and small feature 178tests only. More extensive test cases (e.g., entire applications, benchmarks, 179etc) should be added to the ``llvm-test`` test suite. The llvm-test suite is 180for coverage (correctness, performance, etc) testing, not feature or regression 181testing. 182 183Quality 184------- 185 186The minimum quality standards that any change must satisfy before being 187committed to the main development branch are: 188 189#. Code must adhere to the `LLVM Coding Standards <CodingStandards.html>`_. 190 191#. Code must compile cleanly (no errors, no warnings) on at least one platform. 192 193#. Bug fixes and new features should `include a testcase`_ so we know if the 194 fix/feature ever regresses in the future. 195 196#. Code must pass the ``llvm/test`` test suite. 197 198#. The code must not cause regressions on a reasonable subset of llvm-test, 199 where "reasonable" depends on the contributor's judgement and the scope of 200 the change (more invasive changes require more testing). A reasonable subset 201 might be something like "``llvm-test/MultiSource/Benchmarks``". 202 203Additionally, the committer is responsible for addressing any problems found in 204the future that the change is responsible for. For example: 205 206* The code should compile cleanly on all supported platforms. 207 208* The changes should not cause any correctness regressions in the ``llvm-test`` 209 suite and must not cause any major performance regressions. 210 211* The change set should not cause performance or correctness regressions for the 212 LLVM tools. 213 214* The changes should not cause performance or correctness regressions in code 215 compiled by LLVM on all applicable targets. 216 217* You are expected to address any `GitHub Issues <https://github.com/llvm/llvm-project/issues>`_ that 218 result from your change. 219 220We prefer for this to be handled before submission but understand that it isn't 221possible to test all of this for every submission. Our build bots and nightly 222testing infrastructure normally finds these problems. A good rule of thumb is 223to check the nightly testers for regressions the day after your change. Build 224bots will directly email you if a group of commits that included yours caused a 225failure. You are expected to check the build bot messages to see if they are 226your fault and, if so, fix the breakage. 227 228Commits that violate these quality standards (e.g. are very broken) may be 229reverted. This is necessary when the change blocks other developers from making 230progress. The developer is welcome to re-commit the change after the problem has 231been fixed. 232 233.. _commit messages: 234 235Commit messages 236--------------- 237 238Although we don't enforce the format of commit messages, we prefer that 239you follow these guidelines to help review, search in logs, email formatting 240and so on. These guidelines are very similar to rules used by other open source 241projects. 242 243Most importantly, the contents of the message should be carefully written to 244convey the rationale of the change (without delving too much in detail). It 245also should avoid being vague or overly specific. For example, "bits were not 246set right" will leave the reviewer wondering about which bits, and why they 247weren't right, while "Correctly set overflow bits in TargetInfo" conveys almost 248all there is to the change. 249 250Below are some guidelines about the format of the message itself: 251 252* Separate the commit message into title and body separated by a blank line. 253 254* If you're not the original author, ensure the 'Author' property of the commit is 255 set to the original author and the 'Committer' property is set to yourself. 256 You can use a command similar to 257 ``git commit --amend --author="John Doe <[email protected]>"`` to correct the 258 author property if it is incorrect. See `Attribution of Changes`_ for more 259 information including the method we used for attribution before the project 260 migrated to git. 261 262* The title should be concise. Because all commits are emailed to the list with 263 the first line as the subject, long titles are frowned upon. Short titles 264 also look better in `git log`. 265 266* When the changes are restricted to a specific part of the code (e.g. a 267 back-end or optimization pass), it is customary to add a tag to the 268 beginning of the line in square brackets. For example, "[SCEV] ..." 269 or "[OpenMP] ...". This helps email filters and searches for post-commit 270 reviews. 271 272* The body, if it exists, should be separated from the title by an empty line. 273 274* The body should be concise, but explanatory, including a complete 275 reasoning. Unless it is required to understand the change, examples, 276 code snippets and gory details should be left to bug comments, web 277 review or the mailing list. 278 279* If the patch fixes a bug in GitHub Issues, please include the PR# in the message. 280 281* Text formatting and spelling should follow the same rules as documentation 282 and in-code comments, ex. capitalization, full stop, etc. 283 284* If the commit is a bug fix on top of another recently committed patch, or a 285 revert or reapply of a patch, include the git commit hash of the prior 286 related commit. This could be as simple as "Revert commit NNNN because it 287 caused PR#". 288 289* If the patch has been reviewed, add a link to its review page, as shown 290 `here <https://www.llvm.org/docs/Phabricator.html#committing-a-change>`_. 291 292For minor violations of these recommendations, the community normally favors 293reminding the contributor of this policy over reverting. Minor corrections and 294omissions can be handled by sending a reply to the commits mailing list. 295 296.. _revert_policy: 297 298Patch reversion policy 299---------------------- 300 301As a community, we strongly value having the tip of tree in a good state while 302allowing rapid iterative development. As such, we tend to make much heavier 303use of reverts to keep the tree healthy than some other open source projects, 304and our norms are a bit different. 305 306How should you respond if someone reverted your change? 307 308* Remember, it is normal and healthy to have patches reverted. Having a patch 309 reverted does not necessarily mean you did anything wrong. 310* We encourage explicitly thanking the person who reverted the patch for doing 311 the task on your behalf. 312* If you need more information to address the problem, please follow up in the 313 original commit thread with the reverting patch author. 314 315When should you revert your own change? 316 317* Any time you learn of a serious problem with a change, you should revert it. 318 We strongly encourage "revert to green" as opposed to "fixing forward". We 319 encourage reverting first, investigating offline, and then reapplying the 320 fixed patch - possibly after another round of review if warranted. 321* If you break a buildbot in a way which can't be quickly fixed, please revert. 322* If a test case that demonstrates a problem is reported in the commit thread, 323 please revert and investigate offline. 324* If you receive substantial :ref:`post-commit review <post_commit_review>` 325 feedback, please revert and address said feedback before recommitting. 326 (Possibly after another round of review.) 327* If you are asked to revert by another contributor, please revert and discuss 328 the merits of the request offline (unless doing so would further destabilize 329 tip of tree). 330 331When should you revert someone else's change? 332 333* In general, if the author themselves would revert the change per these 334 guidelines, we encourage other contributors to do so as a courtesy to the 335 author. This is one of the major cases where our norms differ from others; 336 we generally consider reverting a normal part of development. We don't 337 expect contributors to be always available, and the assurance that a 338 problematic patch will be reverted and we can return to it at our next 339 opportunity enables this. 340 341What are the expectations around a revert? 342 343* Use your best judgment. If you're uncertain, please start an email on 344 the commit thread asking for assistance. We aren't trying to enumerate 345 every case, but rather give a set of guidelines. 346* You should be sure that reverting the change improves the stability of tip 347 of tree. Sometimes reverting one change in a series can worsen things 348 instead of improving them. We expect reasonable judgment to ensure that 349 the proper patch or set of patches is being reverted. 350* The commit message for the reverting commit should explain why patch 351 is being reverted. 352* It is customary to respond to the original commit email mentioning the 353 revert. This serves as both a notice to the original author that their 354 patch was reverted, and helps others following llvm-commits track context. 355* Ideally, you should have a publicly reproducible test case ready to share. 356 Where possible, we encourage sharing of test cases in commit threads, or 357 in PRs. We encourage the reverter to minimize the test case and to prune 358 dependencies where practical. This even applies when reverting your own 359 patch; documenting the reasons for others who might be following along 360 is critical. 361* It is not considered reasonable to revert without at least the promise to 362 provide a means for the patch author to debug the root issue. If a situation 363 arises where a public reproducer can not be shared for some reason (e.g. 364 requires hardware patch author doesn't have access to, sharp regression in 365 compile time of internal workload, etc.), the reverter is expected to be 366 proactive about working with the patch author to debug and test candidate 367 patches. 368* Reverts should be reasonably timely. A change submitted two hours ago 369 can be reverted without prior discussion. A change submitted two years ago 370 should not be. Where exactly the transition point is is hard to say, but 371 it's probably in the handful of days in tree territory. If you are unsure, 372 we encourage you to reply to the commit thread, give the author a bit to 373 respond, and then proceed with the revert if the author doesn't seem to be 374 actively responding. 375* When re-applying a reverted patch, the commit message should be updated to 376 indicate the problem that was addressed and how it was addressed. 377 378Obtaining Commit Access 379----------------------- 380 381We grant commit access to contributors with a track record of submitting high 382quality patches. If you would like commit access, please send an email to 383`Chris <mailto:[email protected]>`_ with your GitHub username. This is true 384for former contributors with SVN access as well as new contributors. 385 386Prior to obtaining commit access, it is common practice to request that 387someone with commit access commits on your behalf. When doing so, please 388provide the name and email address you would like to use in the Author 389property of the commit. 390 391Your first commit to a repository may require the autogenerated email to be 392approved by a moderator of the mailing list. 393This is normal and will be done when the mailing list owner has time. 394 395If you have recently been granted commit access, these policies apply: 396 397#. You are granted *commit-after-approval* to all parts of LLVM. For 398 information on how to get approval for a patch, please see :doc:`CodeReview`. 399 When approved, you may commit it yourself. 400 401#. You are allowed to commit patches without approval which you think are 402 obvious. This is clearly a subjective decision --- we simply expect you to 403 use good judgement. Examples include: fixing build breakage, reverting 404 obviously broken patches, documentation/comment changes, any other minor 405 changes. Avoid committing formatting- or whitespace-only changes outside of 406 code you plan to make subsequent changes to. Also, try to separate 407 formatting or whitespace changes from functional changes, either by 408 correcting the format first (ideally) or afterward. Such changes should be 409 highly localized and the commit message should clearly state that the commit 410 is not intended to change functionality, usually by stating it is 411 :ref:`NFC <nfc>`. 412 413#. You are allowed to commit patches without approval to those portions of LLVM 414 that you have contributed or maintain (i.e., have been assigned 415 responsibility for), with the proviso that such commits must not break the 416 build. This is a "trust but verify" policy, and commits of this nature are 417 reviewed after they are committed. 418 419#. Multiple violations of these policies or a single egregious violation may 420 cause commit access to be revoked. 421 422In any case, your changes are still subject to `code review`_ (either before or 423after they are committed, depending on the nature of the change). You are 424encouraged to review other peoples' patches as well, but you aren't required 425to do so. 426 427.. _discuss the change/gather consensus: 428 429Making a Major Change 430--------------------- 431 432When a developer begins a major new project with the aim of contributing it back 433to LLVM, they should inform the community with a post to the `LLVM Discourse forums`_, to the extent 434possible. The reason for this is to: 435 436#. keep the community informed about future changes to LLVM, 437 438#. avoid duplication of effort by preventing multiple parties working on the 439 same thing and not knowing about it, and 440 441#. ensure that any technical issues around the proposed work are discussed and 442 resolved before any significant work is done. 443 444The design of LLVM is carefully controlled to ensure that all the pieces fit 445together well and are as consistent as possible. If you plan to make a major 446change to the way LLVM works or want to add a major new extension, it is a good 447idea to get consensus with the development community before you start working on 448it. 449 450Once the design of the new feature is finalized, the work itself should be done 451as a series of `incremental changes`_, not as a long-term development branch. 452 453.. _incremental changes: 454 455Incremental Development 456----------------------- 457 458In the LLVM project, we do all significant changes as a series of incremental 459patches. We have a strong dislike for huge changes or long-term development 460branches. Long-term development branches have a number of drawbacks: 461 462#. Branches must have mainline merged into them periodically. If the branch 463 development and mainline development occur in the same pieces of code, 464 resolving merge conflicts can take a lot of time. 465 466#. Other people in the community tend to ignore work on branches. 467 468#. Huge changes (produced when a branch is merged back onto mainline) are 469 extremely difficult to `code review`_. 470 471#. Branches are not routinely tested by our nightly tester infrastructure. 472 473#. Changes developed as monolithic large changes often don't work until the 474 entire set of changes is done. Breaking it down into a set of smaller 475 changes increases the odds that any of the work will be committed to the main 476 repository. 477 478To address these problems, LLVM uses an incremental development style and we 479require contributors to follow this practice when making a large/invasive 480change. Some tips: 481 482* Large/invasive changes usually have a number of secondary changes that are 483 required before the big change can be made (e.g. API cleanup, etc). These 484 sorts of changes can often be done before the major change is done, 485 independently of that work. 486 487* The remaining inter-related work should be decomposed into unrelated sets of 488 changes if possible. Once this is done, define the first increment and get 489 consensus on what the end goal of the change is. 490 491* Each change in the set can be stand alone (e.g. to fix a bug), or part of a 492 planned series of changes that works towards the development goal. 493 494* Each change should be kept as small as possible. This simplifies your work 495 (into a logical progression), simplifies code review and reduces the chance 496 that you will get negative feedback on the change. Small increments also 497 facilitate the maintenance of a high quality code base. 498 499* Often, an independent precursor to a big change is to add a new API and slowly 500 migrate clients to use the new API. Each change to use the new API is often 501 "obvious" and can be committed without review. Once the new API is in place 502 and used, it is much easier to replace the underlying implementation of the 503 API. This implementation change is logically separate from the API 504 change. 505 506If you are interested in making a large change, and this scares you, please make 507sure to first `discuss the change/gather consensus`_ then ask about the best way 508to go about making the change. 509 510Attribution of Changes 511---------------------- 512 513When contributors submit a patch to an LLVM project, other developers with 514commit access may commit it for the author once appropriate (based on the 515progression of code review, etc.). When doing so, it is important to retain 516correct attribution of contributions to their contributors. However, we do not 517want the source code to be littered with random attributions "this code written 518by J. Random Hacker" (this is noisy and distracting). In practice, the revision 519control system keeps a perfect history of who changed what, and the CREDITS.txt 520file describes higher-level contributions. If you commit a patch for someone 521else, please follow the attribution of changes in the simple manner as outlined 522by the `commit messages`_ section. Overall, please do not add contributor names 523to the source code. 524 525Also, don't commit patches authored by others unless they have submitted the 526patch to the project or you have been authorized to submit them on their behalf 527(you work together and your company authorized you to contribute the patches, 528etc.). The author should first submit them to the relevant project's commit 529list, development list, or LLVM bug tracker component. If someone sends you 530a patch privately, encourage them to submit it to the appropriate list first. 531 532Our previous version control system (subversion) did not distinguish between the 533author and the committer like git does. As such, older commits used a different 534attribution mechanism. The previous method was to include "Patch by John Doe." 535in a separate line of the commit message and there are automated processes that 536rely on this format. 537 538.. _IR backwards compatibility: 539 540IR Backwards Compatibility 541-------------------------- 542 543When the IR format has to be changed, keep in mind that we try to maintain some 544backwards compatibility. The rules are intended as a balance between convenience 545for llvm users and not imposing a big burden on llvm developers: 546 547* The textual format is not backwards compatible. We don't change it too often, 548 but there are no specific promises. 549 550* Additions and changes to the IR should be reflected in 551 ``test/Bitcode/compatibility.ll``. 552 553* The current LLVM version supports loading any bitcode since version 3.0. 554 555* After each X.Y release, ``compatibility.ll`` must be copied to 556 ``compatibility-X.Y.ll``. The corresponding bitcode file should be assembled 557 using the X.Y build and committed as ``compatibility-X.Y.ll.bc``. 558 559* Newer releases can ignore features from older releases, but they cannot 560 miscompile them. For example, if nsw is ever replaced with something else, 561 dropping it would be a valid way to upgrade the IR. 562 563* Debug metadata is special in that it is currently dropped during upgrades. 564 565* Non-debug metadata is defined to be safe to drop, so a valid way to upgrade 566 it is to drop it. That is not very user friendly and a bit more effort is 567 expected, but no promises are made. 568 569C API Changes 570---------------- 571 572* Stability Guarantees: The C API is, in general, a "best effort" for stability. 573 This means that we make every attempt to keep the C API stable, but that 574 stability will be limited by the abstractness of the interface and the 575 stability of the C++ API that it wraps. In practice, this means that things 576 like "create debug info" or "create this type of instruction" are likely to be 577 less stable than "take this IR file and JIT it for my current machine". 578 579* Release stability: We won't break the C API on the release branch with patches 580 that go on that branch, with the exception that we will fix an unintentional 581 C API break that will keep the release consistent with both the previous and 582 next release. 583 584* Testing: Patches to the C API are expected to come with tests just like any 585 other patch. 586 587* Including new things into the API: If an LLVM subcomponent has a C API already 588 included, then expanding that C API is acceptable. Adding C API for 589 subcomponents that don't currently have one needs to be discussed on the 590 `LLVM Discourse forums`_ for design and maintainability feedback prior to implementation. 591 592* Documentation: Any changes to the C API are required to be documented in the 593 release notes so that it's clear to external users who do not follow the 594 project how the C API is changing and evolving. 595 596.. _toolchain: 597 598Updating Toolchain Requirements 599------------------------------- 600 601We intend to require newer toolchains as time goes by. This means LLVM's 602codebase can use newer versions of C++ as they get standardized. Requiring newer 603toolchains to build LLVM can be painful for those building LLVM; therefore, it 604will only be done through the following process: 605 606 * It is a general goal to support LLVM and GCC versions from the last 3 years 607 at a minimum. This time-based guideline is not strict: we may support much 608 older compilers, or decide to support fewer versions. 609 610 * An RFC is sent to the `LLVM Discourse forums`_ 611 612 - Detail upsides of the version increase (e.g. which newer C++ language or 613 library features LLVM should use; avoid miscompiles in particular compiler 614 versions, etc). 615 - Detail downsides on important platforms (e.g. Ubuntu LTS status). 616 617 * Once the RFC reaches consensus, update the CMake toolchain version checks as 618 well as the :doc:`getting started<GettingStarted>` guide. This provides a 619 softer transition path for developers compiling LLVM, because the 620 error can be turned into a warning using a CMake flag. This is an important 621 step: LLVM still doesn't have code which requires the new toolchains, but it 622 soon will. If you compile LLVM but don't read the forums, we should 623 tell you! 624 625 * Ensure that at least one LLVM release has had this soft-error. Not all 626 developers compile LLVM top-of-tree. These release-bound developers should 627 also be told about upcoming changes. 628 629 * Turn the soft-error into a hard-error after said LLVM release has branched. 630 631 * Update the :doc:`coding standards<CodingStandards>` to allow the new 632 features we've explicitly approved in the RFC. 633 634 * Start using the new features in LLVM's codebase. 635 636Here's a `sample RFC 637<https://discourse.llvm.org/t/rfc-migrating-past-c-11/50943>`_ and the 638`corresponding change <https://reviews.llvm.org/D57264>`_. 639 640.. _ci-usage: 641 642Working with the CI system 643-------------------------- 644 645The main continuous integration (CI) tool for the LLVM project is the 646`LLVM Buildbot <https://lab.llvm.org/buildbot/>`_. It uses different *builders* 647to cover a wide variety of sub-projects and configurations. The builds are 648executed on different *workers*. Builders and workers are configured and 649provided by community members. 650 651The Buildbot tracks the commits on the main branch and the release branches. 652This means that patches are built and tested after they are merged to the these 653branches (aka post-merge testing). This also means it's okay to break the build 654occasionally, as it's unreasonable to expect contributors to build and test 655their patch with every possible configuration. 656 657*If your commit broke the build:* 658 659* Fix the build as soon as possible as this might block other contributors or 660 downstream users. 661* If you need more time to analyze and fix the bug, please revert your change to 662 unblock others. 663 664*If someone else broke the build and this blocks your work* 665 666* Comment on the code review in `Phabricator <https://reviews.llvm.org/>`_ 667 (if available) or email the author, explain the problem and how this impacts 668 you. Add a link to the broken build and the error message so folks can 669 understand the problem. 670* Revert the commit if this blocks your work, see revert_policy_ . 671 672*If a build/worker is permanently broken* 673 674* 1st step: contact the owner of the worker. You can find the name and contact 675 information for the *Admin* of worker on the page of the build in the 676 *Worker* tab: 677 678 .. image:: buildbot_worker_contact.png 679 680* 2nd step: If the owner does not respond or fix the worker, please escalate 681 to Galina Kostanova, the maintainer of the BuildBot master. 682* 3rd step: If Galina could not help you, please escalate to the 683 `Infrastructure Working Group <mailto:[email protected]>`_. 684 685.. _new-llvm-components: 686 687Introducing New Components into LLVM 688==================================== 689 690The LLVM community is a vibrant and exciting place to be, and we look to be 691inclusive of new projects and foster new communities, and increase 692collaboration across industry and academia. 693 694That said, we need to strike a balance between being inclusive of new ideas and 695people and the cost of ongoing maintenance that new code requires. As such, we 696have a general :doc:`support policy<SupportPolicy>` for introducing major new 697components into the LLVM world, depending on the degree of detail and 698responsibility required. *Core* projects need a higher degree of scrutiny 699than *peripheral* projects, and the latter may have additional differences. 700 701However, this is really only intended to cover common cases 702that we have seen arise: different situations are different, and we are open 703to discussing unusual cases as well - just start an RFC thread on the 704`LLVM Discourse forums`_. 705 706Adding a New Target 707------------------- 708 709LLVM is very receptive to new targets, even experimental ones, but a number of 710problems can appear when adding new large portions of code, and back-ends are 711normally added in bulk. New targets need the same level of support as other 712*core* parts of the compiler, so they are covered in the *core tier* of our 713:doc:`support policy<SupportPolicy>`. 714 715We have found that landing large pieces of new code and then trying to fix 716emergent problems in-tree is problematic for a variety of reasons. For these 717reasons, new targets are *always* added as *experimental* until they can be 718proven stable, and later moved to non-experimental. 719 720The differences between both classes are: 721 722* Experimental targets are not built by default (they need to be explicitly 723 enabled at CMake time). 724 725* Test failures, bugs, and build breakages that only appear when the 726 experimental target is enabled, caused by changes unrelated to the target, are 727 the responsibility of the community behind the target to fix. 728 729The basic rules for a back-end to be upstreamed in **experimental** mode are: 730 731* Every target must have a :ref:`code owner<code owners>`. The `CODE_OWNERS.TXT` 732 file has to be updated as part of the first merge. The code owner makes sure 733 that changes to the target get reviewed and steers the overall effort. 734 735* There must be an active community behind the target. This community 736 will help maintain the target by providing buildbots, fixing 737 bugs, answering the LLVM community's questions and making sure the new 738 target doesn't break any of the other targets, or generic code. This 739 behavior is expected to continue throughout the lifetime of the 740 target's code. 741 742* The code must be free of contentious issues, for example, large 743 changes in how the IR behaves or should be formed by the front-ends, 744 unless agreed by the majority of the community via refactoring of the 745 (:doc:`IR standard<LangRef>`) **before** the merge of the new target changes, 746 following the :ref:`IR backwards compatibility`. 747 748* The code conforms to all of the policies laid out in this developer policy 749 document, including license, patent, and coding standards. 750 751* The target should have either reasonable documentation on how it 752 works (ISA, ABI, etc.) or a publicly available simulator/hardware 753 (either free or cheap enough) - preferably both. This allows 754 developers to validate assumptions, understand constraints and review code 755 that can affect the target. 756 757In addition, the rules for a back-end to be promoted to **official** are: 758 759* The target must have addressed every other minimum requirement and 760 have been stable in tree for at least 3 months. This cool down 761 period is to make sure that the back-end and the target community can 762 endure continuous upstream development for the foreseeable future. 763 764* The target's code must have been completely adapted to this policy 765 as well as the :doc:`coding standards<CodingStandards>`. Any exceptions that 766 were made to move into experimental mode must have been fixed **before** 767 becoming official. 768 769* The test coverage needs to be broad and well written (small tests, 770 well documented). The build target ``check-all`` must pass with the 771 new target built, and where applicable, the ``test-suite`` must also 772 pass without errors, in at least one configuration (publicly 773 demonstrated, for example, via buildbots). 774 775* Public buildbots need to be created and actively maintained, unless 776 the target requires no additional buildbots (ex. ``check-all`` covers 777 all tests). The more relevant and public the new target's CI infrastructure 778 is, the more the LLVM community will embrace it. 779 780To **continue** as a supported and official target: 781 782* The maintainer(s) must continue following these rules throughout the lifetime 783 of the target. Continuous violations of aforementioned rules and policies 784 could lead to complete removal of the target from the code base. 785 786* Degradation in support, documentation or test coverage will make the target as 787 nuisance to other targets and be considered a candidate for deprecation and 788 ultimately removed. 789 790In essence, these rules are necessary for targets to gain and retain their 791status, but also markers to define bit-rot, and will be used to clean up the 792tree from unmaintained targets. 793 794Those wishing to add a new target to LLVM must follow the procedure below: 795 7961. Read this section and make sure your target follows all requirements. For 797 minor issues, your community will be responsible for making all necessary 798 adjustments soon after the initial merge. 7992. Send a request for comment (RFC) to the `LLVM Discourse forums`_ describing 800 your target and how it follows all the requirements and what work has been 801 done and will need to be done to accommodate the official target requirements. 802 Make sure to expose any and all controversial issues, changes needed in the 803 base code, table gen, etc. 8043. Once the response is positive, the LLVM community can start reviewing the 805 actual patches (but they can be prepared before, to support the RFC). Create 806 a sequence of N patches, numbered '1/N' to 'N/N' (make sure N is an actual 807 number, not the letter 'N'), that completes the basic structure of the target. 8084. The initial patch should add documentation, code owners and triple support in 809 clang and LLVM. The following patches add TableGen infrastructure to describe 810 the target and lower instructions to assembly. The final patch must show that 811 the target can lower correctly with extensive LIT tests (IR to MIR, MIR to 812 ASM, etc). 8135. Some patches may be approved before others, but only after *all* patches are 814 approved that the whole set can be merged in one go. This is to guarantee 815 that all changes are good as a single block. 8166. After the initial merge, the target community can stop numbering patches and 817 start working asynchronously on the target to complete support. They should 818 still seek review from those who helped them in the initial phase, to make 819 sure the progress is still consistent. 8207. Once all official requirements have been fulfilled (as above), the code owner 821 should request the target to be enabled by default by sending another RFC to 822 the `LLVM Discourse forums`_. 823 824Adding an Established Project To the LLVM Monorepo 825-------------------------------------------------- 826 827The `LLVM monorepo <https://github.com/llvm/llvm-project>`_ is the centerpoint 828of development in the LLVM world, and has all of the primary LLVM components, 829including the LLVM optimizer and code generators, Clang, LLDB, etc. `Monorepos 830in general <https://en.wikipedia.org/wiki/Monorepo>`_ are great because they 831allow atomic commits to the project, simplify CI, and make it easier for 832subcommunities to collaborate. 833 834Like new targets, most projects already in the monorepo are considered to be in 835the *core tier* of our :doc:`support policy<SupportPolicy>`. The burden to add 836things to the LLVM monorepo needs to be very high - code that is added to this 837repository is checked out by everyone in the community. As such, we hold 838components to a high bar similar to "official targets", they: 839 840 * Must be generally aligned with the mission of the LLVM project to advance 841 compilers, languages, tools, runtimes, etc. 842 * Must conform to all of the policies laid out in this developer policy 843 document, including license, patent, coding standards, and code of conduct. 844 * Must have an active community that maintains the code, including established 845 code owners. 846 * Should have reasonable documentation about how it works, including a high 847 quality README file. 848 * Should have CI to catch breakage within the project itself or due to 849 underlying LLVM dependencies. 850 * Should have code free of issues the community finds contentious, or be on a 851 clear path to resolving them. 852 * Must be proposed through the LLVM RFC process, and have its addition approved 853 by the LLVM community - this ultimately mediates the resolution of the 854 "should" concerns above. 855 856If you have a project that you think would make sense to add to the LLVM 857monorepo, please start an RFC topic on the `LLVM Discourse forums`_ to kick off 858the discussion. This process can take some time and iteration - please don’t 859be discouraged or intimidated by that! 860 861If you have an earlier stage project that you think is aligned with LLVM, please 862see the "Incubating New Projects" section. 863 864Incubating New Projects 865----------------------- 866 867The burden to add a new project to the LLVM monorepo is intentionally very high, 868but that can have a chilling effect on new and innovative projects. To help 869foster these sorts of projects, LLVM supports an "incubator" process that is 870much easier to get started with. It provides space for potentially valuable, 871new top-level and sub-projects to reach a critical mass before they have enough 872code to prove their utility and grow a community. This also allows 873collaboration between teams that already have permissions to make contributions 874to projects under the LLVM umbrella. 875 876Projects which can be considered for the LLVM incubator meet the following 877criteria: 878 879 * Must be generally aligned with the mission of the LLVM project to advance 880 compilers, languages, tools, runtimes, etc. 881 * Must conform to the license, patent, and code of conduct policies laid out 882 in this developer policy document. 883 * Must have a documented charter and development plan, e.g. in the form of a 884 README file, mission statement, and/or manifesto. 885 * Should conform to coding standards, incremental development process, and 886 other expectations. 887 * Should have a sense of the community that it hopes to eventually foster, and 888 there should be interest from members with different affiliations / 889 organizations. 890 * Should have a feasible path to eventually graduate as a dedicated top-level 891 or sub-project within the `LLVM monorepo 892 <https://github.com/llvm/llvm-project>`_. 893 * Should include a notice (e.g. in the project README or web page) that the 894 project is in ‘incubation status’ and is not included in LLVM releases (see 895 suggested wording below). 896 * Must be proposed through the LLVM RFC process, and have its addition 897 approved by the LLVM community - this ultimately mediates the resolution of 898 the "should" concerns above. 899 900That said, the project need not have any code to get started, and need not have 901an established community at all! Furthermore, incubating projects may pass 902through transient states that violate the "Should" guidelines above, or would 903otherwise make them unsuitable for direct inclusion in the monorepo (e.g. 904dependencies that have not yet been factored appropriately, leveraging 905experimental components or APIs that are not yet upstream, etc). 906 907When approved, the llvm-admin group can grant the new project: 908 * A new repository in the LLVM Github Organization - but not the LLVM monorepo. 909 * New mailing list, discourse forum, and/or discord chat hosted with other LLVM 910 forums. 911 * Other infrastructure integration can be discussed on a case-by-case basis. 912 913Graduation to the mono-repo would follow existing processes and standards for 914becoming a first-class part of the monorepo. Similarly, an incubating project 915may be eventually retired, but no process has been established for that yet. If 916and when this comes up, please start an RFC discussion on the `LLVM Discourse forums`_. 917 918This process is very new - please expect the details to change, it is always 919safe to ask on the `LLVM Discourse forums`_ about this. 920 921Suggested disclaimer for the project README and the main project web page: 922 923:: 924 925 This project is participating in the LLVM Incubator process: as such, it is 926 not part of any official LLVM release. While incubation status is not 927 necessarily a reflection of the completeness or stability of the code, it 928 does indicate that the project is not yet endorsed as a component of LLVM. 929 930.. _copyright-license-patents: 931 932Copyright, License, and Patents 933=============================== 934 935.. note:: 936 937 This section deals with legal matters but does not provide legal advice. We 938 are not lawyers --- please seek legal counsel from a licensed attorney. 939 940This section addresses the issues of copyright, license and patents for the LLVM 941project. The copyright for the code is held by the contributors of 942the code. The code is licensed under permissive `open source licensing terms`_, 943namely the Apache-2.0 with LLVM-exception license, which includes a copyright 944and `patent license`_. When you contribute code to the LLVM project, you 945license it under these terms. 946 947In certain circumstances, code licensed under other licenses can be added 948to the codebase. However, this may only be done with approval of the LLVM 949Foundation Board of Directors, and contributors should plan for the approval 950process to take at least 4-6 weeks. If you would like to contribute code 951under a different license, please create a Phabricator review with the code 952you want to contribute and email [email protected] requesting a review. 953 954If you have questions or comments about these topics, please ask on the 955`LLVM Discourse forums`_. However, 956please realize that most compiler developers are not lawyers, and therefore you 957will not be getting official legal advice. 958 959Copyright 960--------- 961 962The LLVM project does not collect copyright assignments, which means that the 963copyright for the code in the project is held by the respective contributors. 964Because you (or your company) 965retain ownership of the code you contribute, you know it may only be used under 966the terms of the open source license you contributed it under: the license for 967your contributions cannot be changed in the future without your approval. 968 969Because the LLVM project does not require copyright assignments, changing the 970LLVM license requires tracking down the 971contributors to LLVM and getting them to agree that a license change is 972acceptable for their contributions. We feel that a high burden for relicensing 973is good for the project, because contributors do not have to fear that their 974code will be used in a way with which they disagree. 975 976Relicensing 977----------- 978 979The last paragraph notwithstanding, the LLVM Project is in the middle of a large 980effort to change licenses, which aims to solve several problems: 981 982* The old licenses made it difficult to move code from (e.g.) the compiler to 983 runtime libraries, because runtime libraries used a different license from the 984 rest of the compiler. 985* Some contributions were not submitted to LLVM due to concerns that 986 the patent grant required by the project was overly broad. 987* The patent grant was unique to the LLVM Project, not written by a lawyer, and 988 was difficult to determine what protection was provided (if any). 989 990The scope of relicensing is all code that is considered part of the LLVM 991project, including the main LLVM repository, runtime libraries (compiler_rt, 992OpenMP, etc), Polly, and all other subprojects. There are a few exceptions: 993 994* Code imported from other projects (e.g. Google Test, Autoconf, etc) will 995 remain as it is. This code isn't developed as part of the LLVM project, it 996 is used by LLVM. 997* Some subprojects are impractical or uninteresting to relicense (e.g. llvm-gcc 998 and dragonegg). These will be split off from the LLVM project (e.g. to 999 separate GitHub projects), allowing interested people to continue their 1000 development elsewhere. 1001 1002To relicense LLVM, we will be seeking approval from all of the copyright holders 1003of code in the repository, or potentially remove/rewrite code if we cannot. 1004This is a large 1005and challenging project which will take a significant amount of time to 1006complete. In the interim, **all contributions to the project will be made under 1007the terms of both the new license and the legacy license scheme** (each of which 1008is described below). The exception to this is the legacy patent grant, which 1009will not be required for new contributions. 1010 1011When all of the code in the project has been converted to the new license or 1012removed, we will drop the requirement to contribute under the legacy license. 1013This will achieve the goal of having 1014a single standardized license for the entire codebase. 1015 1016If you are a prior contributor to LLVM and have not done so already, please do 1017*TODO* to allow us to use your code. *Add a link to a separate page here, which 1018is probably a click through web form or something like that. Details to be 1019determined later*. 1020 1021 1022.. _open source licensing terms: 1023 1024New LLVM Project License Framework 1025---------------------------------- 1026 1027Contributions to LLVM are licensed under the `Apache License, Version 2.0 1028<https://www.apache.org/licenses/LICENSE-2.0>`_, with two limited 1029exceptions intended to ensure that LLVM is very permissively licensed. 1030Collectively, the name of this license is "Apache 2.0 License with LLVM 1031exceptions". The exceptions read: 1032 1033:: 1034 1035 ---- LLVM Exceptions to the Apache 2.0 License ---- 1036 1037 As an exception, if, as a result of your compiling your source code, portions 1038 of this Software are embedded into an Object form of such source code, you 1039 may redistribute such embedded portions in such Object form without complying 1040 with the conditions of Sections 4(a), 4(b) and 4(d) of the License. 1041 1042 In addition, if you combine or link compiled forms of this Software with 1043 software that is licensed under the GPLv2 ("Combined Software") and if a 1044 court of competent jurisdiction determines that the patent provision (Section 1045 3), the indemnity provision (Section 9) or other Section of the License 1046 conflicts with the conditions of the GPLv2, you may retroactively and 1047 prospectively choose to deem waived or otherwise exclude such Section(s) of 1048 the License, but only in their entirety and only with respect to the Combined 1049 Software. 1050 1051 1052We intend to keep LLVM perpetually open source and available under a permissive 1053license - this fosters the widest adoption of LLVM by 1054**allowing commercial products to be derived from LLVM** with few restrictions 1055and without a requirement for making any derived works also open source. In 1056particular, LLVM's license is not a "copyleft" license like the GPL. 1057 1058The "Apache 2.0 License with LLVM exceptions" allows you to: 1059 1060* freely download and use LLVM (in whole or in part) for personal, internal, or 1061 commercial purposes. 1062* include LLVM in packages or distributions you create. 1063* combine LLVM with code licensed under every other major open source 1064 license (including BSD, MIT, GPLv2, GPLv3...). 1065* make changes to LLVM code without being required to contribute it back 1066 to the project - contributions are appreciated though! 1067 1068However, it imposes these limitations on you: 1069 1070* You must retain the copyright notice if you redistribute LLVM: You cannot 1071 strip the copyright headers off or replace them with your own. 1072* Binaries that include LLVM must reproduce the copyright notice (e.g. in an 1073 included README file or in an "About" box), unless the LLVM code was added as 1074 a by-product of compilation. For example, if an LLVM runtime library like 1075 compiler_rt or libc++ was automatically included into your application by the 1076 compiler, you do not need to attribute it. 1077* You can't use our names to promote your products (LLVM derived or not) - 1078 though you can make truthful statements about your use of the LLVM code, 1079 without implying our sponsorship. 1080* There's no warranty on LLVM at all. 1081 1082We want LLVM code to be widely used, and believe that this provides a model that 1083is great for contributors and users of the project. For more information about 1084the Apache 2.0 License, please see the `Apache License FAQ 1085<http://www.apache.org/foundation/license-faq.html>`_, maintained by the 1086Apache Project. 1087 1088 1089.. note:: 1090 1091 The LLVM Project includes some really old subprojects (dragonegg, 1092 llvm-gcc-4.0, and llvm-gcc-4.2), which are licensed under **GPL 1093 licenses**. This code is not actively maintained - it does not even 1094 build successfully. This code is cleanly separated into distinct SVN 1095 repositories from the rest of LLVM, and the LICENSE.txt files specifically 1096 indicate that they contain GPL code. When LLVM transitions from SVN to Git, 1097 we plan to drop these code bases from the new repository structure. 1098 1099 1100.. _patent license: 1101 1102Patents 1103------- 1104 1105Section 3 of the Apache 2.0 license is a patent grant under which 1106contributors of code to the project contribute the rights to use any of 1107their patents that would otherwise be infringed by that code contribution 1108(protecting uses of that code). Further, the patent grant is revoked 1109from anyone who files a patent lawsuit about code in LLVM - this protects the 1110community by providing a "patent commons" for the code base and reducing the 1111odds of patent lawsuits in general. 1112 1113The license specifically scopes which patents are included with code 1114contributions. To help explain this, the `Apache License FAQ 1115<http://www.apache.org/foundation/license-faq.html>`_ explains this scope using 1116some questions and answers, which we reproduce here for your convenience (for 1117reference, the "ASF" is the Apache Software Foundation, the guidance still 1118holds though):: 1119 1120 Q1: If I own a patent and contribute to a Work, and, at the time my 1121 contribution is included in that Work, none of my patent's claims are subject 1122 to Apache's Grant of Patent License, is there a way any of those claims would 1123 later become subject to the Grant of Patent License solely due to subsequent 1124 contributions by other parties who are not licensees of that patent. 1125 1126 A1: No. 1127 1128 Q2: If at any time after my contribution, I am able to license other patent 1129 claims that would have been subject to Apache's Grant of Patent License if 1130 they were licensable by me at the time of my contribution, do those other 1131 claims become subject to the Grant of Patent License? 1132 1133 A2: Yes. 1134 1135 Q3: If I own or control a licensable patent and contribute code to a specific 1136 Apache product, which of my patent claims are subject to Apache's Grant of 1137 Patent License? 1138 1139 A3: The only patent claims that are licensed to the ASF are those you own or 1140 have the right to license that read on your contribution or on the 1141 combination of your contribution with the specific Apache product to which 1142 you contributed as it existed at the time of your contribution. No additional 1143 patent claims become licensed as a result of subsequent combinations of your 1144 contribution with any other software. Note, however, that licensable patent 1145 claims include those that you acquire in the future, as long as they read on 1146 your original contribution as made at the original time. Once a patent claim 1147 is subject to Apache's Grant of Patent License, it is licensed under the 1148 terms of that Grant to the ASF and to recipients of any software distributed 1149 by the ASF for any Apache software product whatsoever. 1150 1151.. _legacy: 1152 1153Legacy License Structure 1154------------------------ 1155 1156.. note:: 1157 The code base was previously licensed under the Terms described here. 1158 We are in the middle of relicensing to a new approach (described above), but 1159 until this effort is complete, the code is also still available under these 1160 terms. Once we finish the relicensing project, new versions of the code will 1161 not be available under these terms. However, nothing takes away your right 1162 to use old versions under the licensing terms under which they were 1163 originally released. 1164 1165We intend to keep LLVM perpetually open source and to use a permissive open 1166source license. The code in 1167LLVM is available under the `University of Illinois/NCSA Open Source License 1168<http://www.opensource.org/licenses/UoI-NCSA.php>`_, which boils down to 1169this: 1170 1171* You can freely distribute LLVM. 1172* You must retain the copyright notice if you redistribute LLVM. 1173* Binaries derived from LLVM must reproduce the copyright notice (e.g. in an 1174 included README file). 1175* You can't use our names to promote your LLVM derived products. 1176* There's no warranty on LLVM at all. 1177 1178We believe this fosters the widest adoption of LLVM because it **allows 1179commercial products to be derived from LLVM** with few restrictions and without 1180a requirement for making any derived works also open source (i.e. LLVM's 1181license is not a "copyleft" license like the GPL). We suggest that you read the 1182`License <http://www.opensource.org/licenses/UoI-NCSA.php>`_ if further 1183clarification is needed. 1184 1185In addition to the UIUC license, the runtime library components of LLVM 1186(**compiler_rt, libc++, and libclc**) are also licensed under the `MIT License 1187<http://www.opensource.org/licenses/mit-license.php>`_, which does not contain 1188the binary redistribution clause. As a user of these runtime libraries, it 1189means that you can choose to use the code under either license (and thus don't 1190need the binary redistribution clause), and as a contributor to the code that 1191you agree that any contributions to these libraries be licensed under both 1192licenses. We feel that this is important for runtime libraries, because they 1193are implicitly linked into applications and therefore should not subject those 1194applications to the binary redistribution clause. This also means that it is ok 1195to move code from (e.g.) libc++ to the LLVM core without concern, but that code 1196cannot be moved from the LLVM core to libc++ without the copyright owner's 1197permission. 1198 1199.. _LLVM Discourse forums: https://discourse.llvm.org 1200