Re: [RESEND PATCH] flattree: Optimize stringtable_insert()
David Gibson <[email protected]>
| Newsgroups | org.kernel.vger.devicetree-compiler |
|---|---|
| Message-ID | <Z_24t5n2WnmsqXAg@zatzit> |
On Mon, Apr 14, 2025 at 12:10:09PM +0000, Yao Zi wrote: > On Mon, Apr 14, 2025 at 04:24:23PM +1000, David Gibson wrote: > > On Sat, Apr 12, 2025 at 10:03:52AM +0000, Yao Zi wrote: > > > According to perf result, stringtable_insert() is one of the five hotest > > > functions, which is obvious since it depends on a brute-force, > > > quadratic-complexity method to deduplicate the string block and is > > > called at creation of every property. > > > > Right. The optimization strategy of dtc and libfdt is pretty much "if > > it's slow enough that it bothers someone, then we'll think about it". > > Little effort has gone into optimization, in general, because device > > trees are generally so small that runtime hasn't really been a > > problem, even with very inefficient coding. > > > > > This patch optimizes the function in two ways, > > > > > > - Replace brute-force deduplication with libc-provided memmem(), which > > > is guaranteed to be in linear complexity on both glibc on musl libc. > > > This brings roughly 24.6% reduction in execution time. > > > > That said, this is a substantial improvement for a very simple change. > > I'd be happy to apply this change, separated into its own patch. > > > > > - An open-addressing hashtable is maintained to track strings already > > > inserted. As property names are likely to be duplicated, this could > > > filter out many existing strings, avoiding traversing the string > > > block. This reduces another 1.2% of execution time. > > > > Honestly the substantial complexity this adds doesn't seem worth it > > for a mere 1.2% improvement. > > Thanks for the feedback. At first I'm only interested in improving the > deduplication with a hashtable -- but later it's found that reusing > subsequences is also necessary and memmem() itself surprisingly brings a > huge improvement. > > I'm preparing for v2 where the hashtable is split out and also used for > optimizing get_node_by_label(). Although the changes are not ready for > reviewing now, the new optimization reduces executation by another > 6.4%. Do you think it's a reason strong enough to keep the the code? Probably not, unless you can convince me there's a use case where the performance is a pressing practical problem. > Here's a summary of the changes, > > Makefile.dtc | 1 + > checks.c | 4 -- > dtc-parser.y | 4 +- > dtc.c | 4 ++ > dtc.h | 19 +++++++ > flattree.c | 68 +++++++++++++++++++------ > hashtable.c | 141 +++++++++++++++++++++++++++++++++++++++++++++++++++ > livetree.c | 35 +++++++++++-- > 8 files changed, 251 insertions(+), 25 deletions(-) > > ... > > > Best regards, > Yao Zi > -- David Gibson (he or they) | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you, not the other way | around. http://www.ozlabs.org/~dgibson
signature.asc
(application/pgp-signature, 833 B)
-----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEO+dNsU4E3yXUXRK2zQJF27ox2GcFAmf9uKYACgkQzQJF27ox 2GdzZA//alvNlwQxAhpw8XQ5OOTNmQUMFsgoSc0GO40Tu2c3124CCO7FFVg6qs6G iAX1LEyYT81O2h8ENthk9tQrDq0lrNjIFBd/bCJxSZNyih6yEkNQ2Np6OXZ85mrs bp6fCnxp86bWrsk1y9CDopnt0bejybit+8mzmatX5zopmEyxxw5tkgVPeozEAFuB pZXEHS7k80LRkXGZ5iEVU73ncVmkDjry0obyYVE40hHvYnV+fF+Pc8OZ8qc0Fl5U y+1I4rbBLcJ0VLZ3A0v6fnkMkzg9Aac7snS8uSnGfAekZLh1E5TQVOCBOfu5broO BSh/W2XxoIUtm2mOGGGOBNy3rjnHvH0g3aArJLpwApoc3pINmqL9xEsMaqMxHfyQ TCk/qN4RDLOif685eSkQZKfpXs3ARtvBcJhDaPJBbcZMRXB1MB2VE4dDu9PG9LqQ tg6w+p8q7e12F+JfOPFCIfPmN0NEcOWWjtnxs/+uhDASHfX/vTOaxcbgDGm25XUM 3QHGvmQE8fXbM5yGsKDxCzrs94iL/8kC533OxHanA1nidADftArcTjchcEdEE0YD vN+cN/XrRgtUUjbEx9sehnyg0QIEbyV0iUTV5/BLwGMXB7+cOqKEpsyPI+3J/wTQ c0IcRaJSiXDr8JHLb5IOr5X8tk5C5aeyM1OyY38eJdYwha4+gnY= =V4Kv -----END PGP SIGNATURE-----