Home | History | Annotate | Download | only in dist

Lines Matching refs:jit

491 pcre_config(), and the JIT stack functions, when it doesn't matter which
1113 /* JIT study options for -s+n and /S+n where '1' <= n <= '7'. */
1160 "JIT stack limit reached",
1164 "bad JIT option",
1553 * JIT memory callback *
2936 printf(" jit Just-in-time compiler supported [0, 1]\n");
2955 " -s+ force each pattern to be studied, using JIT if available\n"
2956 " -s++ ditto, verifying when JIT was actually used\n"
2957 " -s+n force each pattern to be studied, using JIT if available,\n"
2958 " where 1 <= n <= 7 selects JIT options\n"
2959 " -s++n ditto, verifying when JIT was actually used\n"
3266 else if (strcmp(argv[op + 1], "jit") == 0)
4128 fprintf(outfile, "Memory allocation (JIT code): %d\n", (int)jitsize);
4381 /* Show this only if the JIT was set by /S, not by -s. */
4386 int jit;
4387 if (new_info(re, extra, PCRE_INFO_JIT, &jit) == 0)
4389 if (jit)
4390 fprintf(outfile, "JIT study was successful\n");
4393 fprintf(outfile, "JIT study was not successful\n");
4395 fprintf(outfile, "JIT support is not available in this version of PCRE\n");
5099 /* Ensure that there is a JIT callback if we want to verify that JIT was
5150 running of pcre_exec(), so disable the JIT optimization. This makes it
5151 possible to run the same set of tests with and without JIT externally
5289 if (verify_jit && jit_was_used) fprintf(outfile, " (JIT)");
5483 if (verify_jit && jit_was_used) fprintf(outfile, " (JIT)");
5571 if (verify_jit && jit_was_used) fprintf(outfile, " (JIT)");