Some objects are created by using dynamic memory allocations. This approach has got consequences on the run time characteristics for the desired data processing. * The management of allocation requests needs additional computation resources. * These operations can eventually fail. Software development concerns can evolve around exception safety then. Thus omit them at selected source code places so that affected software components will become a bit safer and more efficient. Update candidates: * EditorPrivate https://github.com/KDE/ktexteditor/blob/14aa5fbf3722d1aad90a26952a87551c9daede0a/src/utils/kateglobal.cpp#L80 * GlobalState https://github.com/KDE/ktexteditor/blob/ac3c74dbc8a0b92f6e58993ce5744c5dec7912d6/src/vimode/globalstate.cpp#L34 * KateCompletionModel https://github.com/KDE/ktexteditor/blob/917e2109126daedf7f8b718ac4410d2f5bde37ac/src/completion/katecompletionmodel.cpp#L143 * PrintPainter https://github.com/KDE/ktexteditor/blob/917e2109126daedf7f8b718ac4410d2f5bde37ac/src/printing/printpainter.cpp#L72
Hi, thanks for the hints, if you have a patch to improve it, you can hand that in at http://phabricator.kde.org Then people can review that and apply/reject if necessary. As already told in bug 400632, bugzilla is no means to discuss about generic code improvements. I would appreciate it, if you consider what we told here. Patches for such things can be posted on http://phabricator.kde.org. Discussions about this here are not helping, look at our buglist, we already have enough "concrete" issues that are unsolved due to lack of time.
(In reply to Christoph Cullmann from comment #1) > Discussions about this here are not helping, … I would expect that this issue tracker is another helpful communication interface for the clarification of the software design. * How many dynamic memory allocations can be deleted here? * Can a corresponding agreement be achieved for such change possibilities before attempting a concrete patch?
As said, the issue tracker is for "issues". Not for the software design discussions. If you want to discuss stuff, join the mailing lists of the projects, perhaps people will chime in there, perhaps not. If you have improvements that you want to make, submit a patch. We are understaffed and creating issues for discussing is not they way to go, sorry.
(In reply to Christoph Cullmann from comment #3) Is the questionable usage of dynamic memory allocation another open issue (at specific places)?
> Is the questionable usage of dynamic memory allocation another open issue (at specific places)? If one can avoid it, without drawbacks, improvements in that area are welcome. But that are no "open issues", just generic code improvements.
(In reply to Christoph Cullmann from comment #5) I am curious then where such generic code improvements have got a higher probability for acceptance.
> I am curious then where such generic code improvements have got a higher probability for acceptance. If you want to know: provide a patch on http://phabricator.kde.org for something and look how it goes. There is no other way to know and all things are judged on case-by-case.
(In reply to Christoph Cullmann from comment #7) I guess that you can know better ways already to clarify the mentioned update candidates (for example).
> I guess that you can know better ways already to clarify the mentioned update candidates (for example). I will not start to classify potential code refactoring targets. If you want to know which memory allocations hurt us and might be most interesting to change, use heaptrack/perf/... to search for hotspots.
(In reply to Christoph Cullmann from comment #9) I propose to refactor them all. * Avoid more dynamic memory allocations. Or * Use smart pointers instead.
As said, show a patch, then we can talk about it, otherwise, this is mood. Perhaps its acceptable, perhaps not. I doubt a patch touching all allocations is reasonable nor is it wanted to transform all in the same way.
> I propose to refactor them all. There is a saying that "premature optimization is the root of all evil". Your proposal is premature optimization at its best (worst?). I am quite horrified by this. Any suggestions without a solid analysis are not acceptable, sorry... You can open as many issues like this as you wish. All of them will be rejected - and rightly so.
(In reply to Dominik Haumann from comment #12) * Do you care for run time consequences of dynamic memory allocations? * Are accesses faster for member variables when they were put on the stack?
* Do you care for working software? * Do you want real bugs fixed? If you answer any of these questions with yes, then your suggestions are at best irrelevant, or will even lead to more bugs.
If things not show up in some hotspots during profiling, we for the most case don't care. If you have no endless time at hands, you need to spend it on parts that have impact for your users. Given we have still XXX open bugs with concrete user visible issues, our time is better spend to care for them.
(In reply to Christoph Cullmann from comment #11) * Would you like to update each class individually? * Do you expect a corresponding patch series?
(In reply to Dominik Haumann from comment #14) Yes, of course. My development suggestions triggered some useful software improvements through the years, didn't they?
Actually, I would like to update nothing, as I don't really understand the gain if you can't backup such changes with e.g. profiling results ;=) And every change can introduce a fault. But if you really are intended to spend your time on it, smaller patches are easier to review. But I assume you are familiar with patch reviews.
(In reply to Christoph Cullmann from comment #18) Are variables put on the stack faster than calling the C++ new operator for object construction?
Markus, I suggest you have a look at: https://bugs.kde.org/buglist.cgi?bug_severity=critical&bug_severity=grave&bug_severity=major&bug_severity=crash&bug_severity=normal&bug_severity=minor&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=ASSIGNED&bug_status=REOPENED&list_id=1561705&product=frameworks-ktexteditor&product=kate Please pick a bug and fix it. This way, your contributions would be very valuable to our users. You can find more bug lists on https://kate-editor.org/featured-articles/ if you are interested :)
> Are variables put on the stack faster than calling the C++ new operator for object construction? :=) You can keep asking that, and for close to any case putting stuff on the stack will be faster than triggering a heap allocation, this still not justifies to start to change the complete code base, as each and every change needs to be reviewed and in most cases it just doesn't matter for the performance on the whole.