]> git.eshelyaron.com Git - emacs.git/commitdiff
; * admin/notes/tree-sitter/performance (Experiments): Update.
authorYuan Fu <casouri@gmail.com>
Thu, 28 Sep 2023 06:42:32 +0000 (23:42 -0700)
committerYuan Fu <casouri@gmail.com>
Thu, 28 Sep 2023 06:42:32 +0000 (23:42 -0700)
admin/notes/tree-sitter/performance

index 315a550be34e6d99e3d12b8161551ff74a913ae2..23f84743cedd5404fb36b4a4f0cb89c837afec70 100644 (file)
@@ -13,3 +13,13 @@ range, so you have to update the ranges every time before
 parsing. Fortunately, changing ranges doesn’t invalidate incremental
 parsing, so there isn’t any performance lost in update ranges
 frequently.
+
+* Experiments
+
+Using regexp by default in treesit-simple-indent-rules seems wasteful,
+so I tried replacing all string-match-p to equal in
+treesit-simple-indent-presets, and indent xdisp.c for a comparison.
+Turns out using regexp by default is faster: regexp-based indent took
+45s and equal-based indent took 75s.
+
+I could be missing something, further experiments are welcome.