On Mon, Jul 29, 2019 at 10:47 AM Junio C Hamano <gitster@xxxxxxxxx> wrote: > René Scharfe <l.s.r@xxxxxx> writes: > >> +pcre.jit:: > >> + If set to false, disable JIT when using PCRE. Defaults to > >> + true. > >> + if set to -1 will try first to use JIT and fallback to the > >> + interpreter instead of returning an error. > > > > Why not implement only -1, without adding this config setting? > > ... nor command line option. If we have an auto-fallback, I would > think that makes the most sense. IIRC the first iteration with only > the configuration was really about working around the (non-working) > pcre-jit---if we can self-detect and skip a non-working case, that > would allow us to drop end-user facing knobs, which is ideal. because that was proposed earlier[1] and wasn't accepted ;) the main pushback though I got was that doing the fallback would degrade performance and so it was suggested[2] that keeping the error should be possible somehow (with the implication it will add yet another macro) since living without grep -P was a reasonable tradeoff at that time got punted, but the need to find a solution for this become more urgent once it was announced[3] PCRE2 would be used also used outside -P > Thanks for a doze of sanity. Obviously I am biased, but I kind of like the knob as it allows the user more flexibility to tweak the internals of grep and because we had made those internals already visible (ex: not handling any library errors ourselves and just aborting with a pcre error), but without any flexibility to fix those problems themselves (unless they open the code and rebuild, in most cases) the comment from the user that reported[4] a regression with GNU grep because of JIT stack size and that I quote below is representative of how that layering violation affect users, and while git users are more likely than grep users to do the code tweaking needed, they could use some help. "As using the JIT can not be turned off at runtime, nor can the stacksize be controlled without patching + recompiling, this breaks previously working expressions for me, so I consider this a new regression, introduced with b06f7a29a58bbdd5866afc1e92dba3fdc9e2ed59 . I tested that increasing the stack-size to 1 M fixes the problem for me. A better fix could maybe consist of a better error message, allowing stack-size control at runtime and / or making JIT optional at runtime." making JIT optional at runtime is therefore the title of this patch and as I mentioned in some other thread it might be even useful to us for our own tests. Carlo [1] https://public-inbox.org/git/20181209230024.43444-3-carenas@xxxxxxxxx/ [2] https://public-inbox.org/git/87zhtbn5xb.fsf@xxxxxxxxxxxxxxxxxxx/ [3] https://public-inbox.org/git/CAPUEspjKxQFiRgmfb2SuR_xpVu4=MN66kGEeBK1pHdBgXQbv7Q@xxxxxxxxxxxxxx/ [4] https://www.mail-archive.com/bug-grep@xxxxxxx/msg05762.html