Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
QtCS2017 Before Runtime discussion: Difference between revisions
Jump to navigation
Jump to search
Tim.Jenssen (talk | contribs) (Created page with "== Make the API easy? == * Copy on Write to avoid copies at runtime * Can we do it at compile time? * Let tools get const and references right * Warn about unnecessary copies...") |
Tim.Jenssen (talk | contribs) No edit summary |
||
Line 5: | Line 5: | ||
* Warn about unnecessary copies | * Warn about unnecessary copies | ||
* Clang can help here | * Clang can help here | ||
=== Notes === | |||
* need real examples | |||
* QtCreator supports only very basic refactoring tools | |||
** having tools outside of QtCreator and use these tools maybe inside | |||
== Make changes easy == | == Make changes easy == |
Revision as of 11:29, 9 October 2017
Make the API easy?
- Copy on Write to avoid copies at runtime
- Can we do it at compile time?
- Let tools get const and references right
- Warn about unnecessary copies
- Clang can help here
Notes
- need real examples
- QtCreator supports only very basic refactoring tools
- having tools outside of QtCreator and use these tools maybe inside
Make changes easy
- API changes are expensive
- API looks outdated if not adapted to current paradigms (legacy code)
- How can we make them easy
- How can Clang help here
Clang Query
- Think about it as SQL for the AST
- Makes big changes much cheaper and secure
Immediate feedback vs overnight refactoring
- Both are important
- Immediate feedback reduces refactorings and reviews
- Run refactorings overnight for expansive refactorings
- Integration with the CI