how compiler frontend is different from what ide needs
play

How compiler frontend is different from what IDE needs? Ilya - PowerPoint PPT Presentation

How compiler frontend is different from what IDE needs? Ilya Biryukov JetBrains ReSharper C++ November 3, 2016 Compilers and IDEs Compilers and IDEs are similar, but have different design goals Compilers and IDEs Compilers and IDEs are


  1. How compiler frontend is different from what IDE needs? Ilya Biryukov JetBrains ReSharper C++ November 3, 2016

  2. Compilers and IDEs Compilers and IDEs are similar, but have different design goals

  3. Compilers and IDEs Compilers and IDEs are similar, but have different design goals Compilers mostly run on correct code, IDEs often run on broken code

  4. Compilers and IDEs Compilers and IDEs are similar, but have different design goals Compilers mostly run on correct code, IDEs often run on broken code Compilers need to store fewer source locations than IDEs

  5. Compilers and IDEs Compilers and IDEs are similar, but have different design goals Compilers mostly run on correct code, IDEs often run on broken code Compilers need to store fewer source locations than IDEs Compiler works on a single TU, IDE is aware of the whole project

  6. Deferred resolve Compilers resolve names as they are encountered

  7. Deferred resolve Compilers resolve names as they are encountered This work is often redundant for an IDE

  8. Deferred resolve Compilers resolve names as they are encountered This work is often redundant for an IDE E.g., do we really need to resolve everything inside <iostream> ? Example #include <iostream> int main() { std::cout << "Hello, world!\n"; }

  9. Global includes A typical C++ file //// 1. Global includes #include <vector> #include <boost/something.hpp> /* ... */ //// 2. Declarations struct my_struct { /* ... */ }; my_struct create_struct(); /* ... */

  10. Global includes Most includes are well-formed

  11. Global includes Most includes are well-formed Included in global scope

  12. Global includes Most includes are well-formed Included in global scope Parse into a list of well-formed declarations

  13. Global includes Most includes are well-formed Included in global scope Parse into a list of well-formed declarations Result of parsing the header may be reused between TUs Some trickery involved to ensure preprocessor context matches

  14. Reparse inside function body How to process a change inside a function body?

  15. Reparse inside function body How to process a change inside a function body? Parse only the function body Replace old function body with the new one

  16. Reparse inside function body How to process a change inside a function body? Parse only the function body Replace old function body with the new one Very fast

  17. Global reparse What if a change is global?

  18. Global reparse A typical C++ file //// 1. Global includes #include <vector> #include <boost/something.hpp> /* ... */ //// 2. Declarations struct my_struct { /* ... */ }; my_struct create_struct(); /* ... */

  19. Global reparse What if a change is global? Log all modifications after includes

  20. Global reparse What if a change is global? Log all modifications after includes When reparse is required Rollback logged modifications Parse only the rest of the file

  21. Global reparse What if a change is global? Log all modifications after includes When reparse is required Rollback logged modifications Parse only the rest of the file Much faster than processing the whole file

  22. Conclusion ReSharper C++ has its own C++ frontend

  23. Conclusion ReSharper C++ has its own C++ frontend With some optimizations on top of it Deferred resolve Optimized processing of global includes Incremental reparse inside function bodies Incremental reparse after global includes

  24. Conclusion ReSharper C++ has its own C++ frontend With some optimizations on top of it Deferred resolve Optimized processing of global includes Incremental reparse inside function bodies Incremental reparse after global includes Still not fast enough Running under managed runtime(.NET) Slow preprocessing

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend