Niko Matsakis
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # 2019.12.13 -- IDE / library-ification design meeting ## See also * the compiler-team meeting request [rust-lang/compiler-team#222](https://github.com/rust-lang/compiler-team/issues/222) * [Master hackmd](https://hackmd.io/9qrJYdSLTK2MWG4-pbmpWw?edit) that contains links to prior discussions ## Proposal ### Goal that we would be working towards * Adopt rust-analyzer as the "official" IDE * this would occur once certain milestones are met, likely early next year * we freeze RLS afterwards * Gradually address code duplication by extracting shared libraries used by both rustc and rust-analyzer * initial candidates are described below * it is not clear how merged rustc + rust-analyzer will eventually become, but certainly all "language logic" should be shared ### Steps towards adopting rust-analyzer as official LSP server * Feature parity with RLS * currently lacking errors, precise find-all-usages, and rename * shortest route to achieve this is to integrate save-analysis * longer term, we would be working on rust-analyzer having its own implementations, which would be available behind some kind of preference * distribution via rustup (@matklad: not convinced it *must* be rustup. Distributing via VS Code marketplace might be better) (so that users don't have to build from source) ### Library-ification priorities #### Near term * Parser * XXX matklad, how many details do we have worked out here? relatively few I think * a possible appraoch is to make parser independent of the syntax tree, such that it produces events, and not a datastructure * a known problem is that `rustc` token trees embed ast fragments (`TokenKind::Interpolated`) * Chalk and core type inference logic (type equating, subtyping, etc) * this will become a primary goal of #wg-traits * plan is to be generic over precise representation of types via a trait called `TypeFamily` * experimenting now to gain feedback, perhaps make this the topic of a dedicated future design meeting? * one unknown: how will this interact with const generics and const evaluation? #### Longer term These are "upcoming candidates" for library-ification. It makes sense to wait on these until we have more progress on the ones above, as they are often building on those results. At present, rust-analyzer has "stubs" for them in any case. * Macro expansion and name resolution * Type checker * MIR construction and optimization * rust-analyzer (maybe?) doesn't need all of these * though at least MIR construction may be important for later analyses; e.g., unsafety checks and borrow check are currently done on MIR * Polonius * exists, progressing slowly * currently the set of "facts" are derived from MIR * possible to derive them from HIR perhaps but ### Unknowns * What should remain separate between rustc and rust-analyzer? * It seems plausible that we will want to have the majority of language logic be shared, but offer different "shells" that are optimized for batch compilation vs IDE * Example: rustc uses interned types, but that is not necessarily a good choice in an IDE * Example: we are moving to a "streaming dep-graph model" in rustc, where the new dep-graph under construction never lives in memory and is streamed to disk; this is definitely not good for an IDE * Library-ification will have to start here anyway, since we wish to extract libraries that are usable from both rustc + rust-analyzer as they exist. * e.g. chalk is generic over how types are represented * The only question then is how far we go ## Alternatives considered * Start moving rustc as a whole to rust-analyzer architecture (persistent process, end-to-end fine-grained queries, multi-crate world) * Upside: One source from the start * Downside: It will be some time before users can derive value, whereas rust-analyzer is usable today * Downside: rust-analyzer can move faster and be more experimental than current rustc, which makes it easier to figure out questions like "What should HIR look like in a highly incremental world" * Downside: rust-analyzer currently contains "mock ups" of most parts of the compilation pipeline (e.g., name resolution, type checker, etc). This allows us to "library-ify" in any order and derive benefit (e.g., we can work on chalk without having done the type checker). If we tried to do everything in rustc, IDEs would only be able to benefit once we had a full incremental pipeline from the start * Upside: due to "mock ups", rust-analyzer can't show errors even from reliable components. For example, if chalk says "trait is not implmented", this might be due to a bug in macro exapnsion in rust-analyzer. rustc naturally has "compiler-grade" correctnesss from the start. * However, we plan to report errors (initially) from rustc, and to be moving "towards" parity, with user opt-in, right (matklad: right!)? So it's not like the IDE won't show errors, is all I'm saying, but you won't get them as responsively as you might. --Niko * Within current RLS architecture, replace `racer` with `rust-analyzer` as source of completions * Upside: guarantee that we won't regress user experience * Downside: a lot of engineering complexity * Downside: large memory usage ## Discussion agenda * Overview of the plan (15 minutes) * Possible discussion topics (feel free to add ideas here, we'll review them before the meeting and try to choose the best ones) * How much will making rust-analyzer "official IDE" interfere with its ability to move fast? * Hope is to use "gates" to moderate this * Who wants to co-lead the effort? * Can/should we establish "quality criteria" for various milestones? * e.g. to judge when we are ready to fully recommend rust-analyzer and remove RLS? * or when to remove various "gates"? * Naming and branding: * Should we talk about RLS 2.0? * At what point do we "advertise" this plan and how broadly? * How much do we need to loop in core team, dev-tools team, etc? * RLS maintenance: * Should we keep RLS in a minimal working state in parallel? For how long? ## Follow-up items * What is the best architecture to use to have rust-analyzer leverage rustc for precise queries, notably "find all usages"? * Folks: eddyb, matklad, xanewok, maybe flodiebold etc * This was a topic we spent a lot of the meeting on * Library-ification specifics * Parsers * Chalk / type extraction

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully