Bug 400687 - Improve software components by reducing dynamic memory allocations
Summary: Improve software components by reducing dynamic memory allocations
Status: RESOLVED NOT A BUG
Alias: None
Product: frameworks-ktexteditor
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: 5.51.0
Platform: Other All
: NOR normal
Target Milestone: ---
Assignee: KWrite Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-11-05 08:19 UTC by Markus Elfring
Modified: 2018-11-05 10:05 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Markus Elfring 2018-11-05 08:19:28 UTC
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
Comment 1 Christoph Cullmann 2018-11-05 08:37:46 UTC
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.
Comment 2 Markus Elfring 2018-11-05 08:49:21 UTC
(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?
Comment 3 Christoph Cullmann 2018-11-05 08:53:44 UTC
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.
Comment 4 Markus Elfring 2018-11-05 09:05:21 UTC
(In reply to Christoph Cullmann from comment #3)

Is the questionable usage of dynamic memory allocation another open issue (at specific places)?
Comment 5 Christoph Cullmann 2018-11-05 09:09:34 UTC
> 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.
Comment 6 Markus Elfring 2018-11-05 09:15:10 UTC
(In reply to Christoph Cullmann from comment #5)

I am curious then where such generic code improvements have got a higher probability for acceptance.
Comment 7 Christoph Cullmann 2018-11-05 09:16:50 UTC
> 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.
Comment 8 Markus Elfring 2018-11-05 09:20:12 UTC
(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).
Comment 9 Christoph Cullmann 2018-11-05 09:22:52 UTC
> 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.
Comment 10 Markus Elfring 2018-11-05 09:26:41 UTC
(In reply to Christoph Cullmann from comment #9)

I propose to refactor them all.

* Avoid more dynamic memory allocations.

  Or

* Use smart pointers instead.
Comment 11 Christoph Cullmann 2018-11-05 09:28:09 UTC
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.
Comment 12 Dominik Haumann 2018-11-05 09:35:55 UTC
> 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.
Comment 13 Markus Elfring 2018-11-05 09:40:18 UTC
(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?
Comment 14 Dominik Haumann 2018-11-05 09:44:25 UTC
* 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.
Comment 15 Christoph Cullmann 2018-11-05 09:45:44 UTC
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.
Comment 16 Markus Elfring 2018-11-05 09:50:06 UTC
(In reply to Christoph Cullmann from comment #11)

* Would you like to update each class individually?

* Do you expect a corresponding patch series?
Comment 17 Markus Elfring 2018-11-05 09:53:14 UTC
(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?
Comment 18 Christoph Cullmann 2018-11-05 09:53:53 UTC
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.
Comment 19 Markus Elfring 2018-11-05 10:02:08 UTC
(In reply to Christoph Cullmann from comment #18)

Are variables put on the stack faster than calling the C++ new operator for object construction?
Comment 20 Dominik Haumann 2018-11-05 10:05:25 UTC
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 :)
Comment 21 Christoph Cullmann 2018-11-05 10:05:37 UTC
> 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.