Skip to content

Commit fa5ec50

Browse files
committed
Correct list of JIT-supported architectures
1 parent 303e3bc commit fa5ec50

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

doc/html/pcre2jit.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h1>pcre2jit man page</h1>
5858
Intel x86 32-bit and 64-bit
5959
MIPS 32-bit and 64-bit
6060
Power PC 32-bit and 64-bit
61-
SPARC 32-bit
61+
RISC-V 32-bit and 64-bit
6262
</pre>
6363
If --enable-jit is set on an unsupported platform, compilation fails.
6464
</P>
@@ -486,7 +486,7 @@ <h1>pcre2jit man page</h1>
486486
</P>
487487
<br><a name="SEC14" href="#TOC1">REVISION</a><br>
488488
<P>
489-
Last updated: 21 January 2023
489+
Last updated: 23 January 2023
490490
<br>
491491
Copyright &copy; 1997-2023 University of Cambridge.
492492
<br>

doc/pcre2.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,8 @@ PCRE2 NATIVE API JIT FUNCTIONS
377377

378378
void pcre2_jit_free_unused_memory(pcre2_general_context *gcontext);
379379

380-
pcre2_jit_stack *pcre2_jit_stack_create(PCRE2_SIZE startsize,
381-
PCRE2_SIZE maxsize, pcre2_general_context *gcontext);
380+
pcre2_jit_stack *pcre2_jit_stack_create(size_t startsize,
381+
size_t maxsize, pcre2_general_context *gcontext);
382382

383383
void pcre2_jit_stack_assign(pcre2_match_context *mcontext,
384384
pcre2_jit_callback callback_function, void *callback_data);
@@ -432,7 +432,7 @@ PCRE2 NATIVE API OBSOLETE FUNCTIONS
432432

433433
int pcre2_set_recursion_memory_management(
434434
pcre2_match_context *mcontext,
435-
void *(*private_malloc)(PCRE2_SIZE, void *),
435+
void *(*private_malloc)(size_t, void *),
436436
void (*private_free)(void *, void *), void *memory_data);
437437

438438
These functions became obsolete at release 10.30 and are retained only
@@ -1991,8 +1991,8 @@ JUST-IN-TIME (JIT) COMPILATION
19911991

19921992
void pcre2_jit_free_unused_memory(pcre2_general_context *gcontext);
19931993

1994-
pcre2_jit_stack *pcre2_jit_stack_create(PCRE2_SIZE startsize,
1995-
PCRE2_SIZE maxsize, pcre2_general_context *gcontext);
1994+
pcre2_jit_stack *pcre2_jit_stack_create(size_t startsize,
1995+
size_t maxsize, pcre2_general_context *gcontext);
19961996

19971997
void pcre2_jit_stack_assign(pcre2_match_context *mcontext,
19981998
pcre2_jit_callback callback_function, void *callback_data);
@@ -5197,7 +5197,7 @@ AVAILABILITY OF JIT SUPPORT
51975197
Intel x86 32-bit and 64-bit
51985198
MIPS 32-bit and 64-bit
51995199
Power PC 32-bit and 64-bit
5200-
SPARC 32-bit
5200+
RISC-V 32-bit and 64-bit
52015201

52025202
If --enable-jit is set on an unsupported platform, compilation fails.
52035203

@@ -5596,7 +5596,7 @@ AUTHOR
55965596

55975597
REVISION
55985598

5599-
Last updated: 21 January 2023
5599+
Last updated: 23 January 2023
56005600
Copyright (c) 1997-2023 University of Cambridge.
56015601
------------------------------------------------------------------------------
56025602

doc/pcre2jit.3

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH PCRE2JIT 3 "21 January 2023" "PCRE2 10.43"
1+
.TH PCRE2JIT 3 "23 January 2023" "PCRE2 10.43"
22
.SH NAME
33
PCRE2 - Perl-compatible regular expressions (revised API)
44
.SH "PCRE2 JUST-IN-TIME COMPILER SUPPORT"
@@ -33,7 +33,7 @@ platforms:
3333
Intel x86 32-bit and 64-bit
3434
MIPS 32-bit and 64-bit
3535
Power PC 32-bit and 64-bit
36-
SPARC 32-bit
36+
RISC-V 32-bit and 64-bit
3737
.sp
3838
If --enable-jit is set on an unsupported platform, compilation fails.
3939
.P
@@ -475,6 +475,6 @@ Cambridge, England.
475475
.rs
476476
.sp
477477
.nf
478-
Last updated: 21 January 2023
478+
Last updated: 23 January 2023
479479
Copyright (c) 1997-2023 University of Cambridge.
480480
.fi

0 commit comments

Comments
 (0)