Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
2e5f27c7
Unverified
Commit
2e5f27c7
authored
Oct 11, 2020
by
Edward Thomson
Committed by
GitHub
Oct 11, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5649 from libgit2/ethomson/pcre
Update PCRE to 8.44
parents
94e34582
722c01b6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
130 additions
and
26 deletions
+130
-26
deps/pcre/LICENCE
+93
-0
deps/pcre/pcre.h
+2
-2
deps/pcre/pcre_compile.c
+29
-17
deps/pcre/pcre_jit_compile.c
+4
-4
deps/pcre/pcreposix.c
+2
-3
No files found.
deps/pcre/LICENCE
0 → 100644
View file @
2e5f27c7
PCRE LICENCE
------------
PCRE is a library of functions to support regular expressions whose syntax
and semantics are as close as possible to those of the Perl 5 language.
Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
specified below. The documentation for PCRE, supplied in the "doc"
directory, is distributed under the same terms as the software itself. The data
in the testdata directory is not copyrighted and is in the public domain.
The basic library functions are written in C and are freestanding. Also
included in the distribution is a set of C++ wrapper functions, and a
just-in-time compiler that can be used to optimize pattern matching. These
are both optional features that can be omitted when the library is built.
THE BASIC LIBRARY FUNCTIONS
---------------------------
Written by: Philip Hazel
Email local part: ph10
Email domain: cam.ac.uk
University of Cambridge Computing Service,
Cambridge, England.
Copyright (c) 1997-2020 University of Cambridge
All rights reserved.
PCRE JUST-IN-TIME COMPILATION SUPPORT
-------------------------------------
Written by: Zoltan Herczeg
Email local part: hzmester
Email domain: freemail.hu
Copyright(c) 2010-2020 Zoltan Herczeg
All rights reserved.
STACK-LESS JUST-IN-TIME COMPILER
--------------------------------
Written by: Zoltan Herczeg
Email local part: hzmester
Email domain: freemail.hu
Copyright(c) 2009-2020 Zoltan Herczeg
All rights reserved.
THE C++ WRAPPER FUNCTIONS
-------------------------
Contributed by: Google Inc.
Copyright (c) 2007-2012, Google Inc.
All rights reserved.
THE "BSD" LICENCE
-----------------
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the University of Cambridge nor the name of Google
Inc. nor the names of their contributors may be used to endorse or
promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
End
deps/pcre/pcre.h
View file @
2e5f27c7
...
@@ -42,9 +42,9 @@ POSSIBILITY OF SUCH DAMAGE.
...
@@ -42,9 +42,9 @@ POSSIBILITY OF SUCH DAMAGE.
/* The current PCRE version information. */
/* The current PCRE version information. */
#define PCRE_MAJOR 8
#define PCRE_MAJOR 8
#define PCRE_MINOR 4
2
#define PCRE_MINOR 4
4
#define PCRE_PRERELEASE
#define PCRE_PRERELEASE
#define PCRE_DATE 20
18-03-20
#define PCRE_DATE 20
20-02-12
#define PCRE_EXP_DECL extern
#define PCRE_EXP_DECL extern
...
...
deps/pcre/pcre_compile.c
View file @
2e5f27c7
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
and semantics are as close as possible to those of the Perl 5 language.
and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
Written by Philip Hazel
Copyright (c) 1997-20
16
University of Cambridge
Copyright (c) 1997-20
20
University of Cambridge
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
Redistribution and use in source and binary forms, with or without
...
@@ -68,7 +68,7 @@ COMPILE_PCREx macro will already be appropriately set. */
...
@@ -68,7 +68,7 @@ COMPILE_PCREx macro will already be appropriately set. */
/* Macro for setting individual bits in class bitmaps. */
/* Macro for setting individual bits in class bitmaps. */
#define SETBIT(a,b) a[(b)/8] |= (1 << ((b)&7))
#define SETBIT(a,b) a[(b)/8] |= (1
U
<< ((b)&7))
/* Maximum length value to check against when making sure that the integer that
/* Maximum length value to check against when making sure that the integer that
holds the compiled pattern length does not overflow. We make it a bit less than
holds the compiled pattern length does not overflow. We make it a bit less than
...
@@ -129,8 +129,8 @@ overrun before it actually does run off the end of the data block. */
...
@@ -129,8 +129,8 @@ overrun before it actually does run off the end of the data block. */
/* Private flags added to firstchar and reqchar. */
/* Private flags added to firstchar and reqchar. */
#define REQ_CASELESS (1 << 0)
/* Indicates caselessness */
#define REQ_CASELESS (1
U
<< 0)
/* Indicates caselessness */
#define REQ_VARY (1 << 1)
/* Reqchar followed non-literal item */
#define REQ_VARY (1
U
<< 1)
/* Reqchar followed non-literal item */
/* Negative values for the firstchar and reqchar flags */
/* Negative values for the firstchar and reqchar flags */
#define REQ_UNSET (-2)
#define REQ_UNSET (-2)
#define REQ_NONE (-1)
#define REQ_NONE (-1)
...
@@ -3299,7 +3299,7 @@ for(;;)
...
@@ -3299,7 +3299,7 @@ for(;;)
if
((
*
xclass_flags
&
XCL_MAP
)
==
0
)
if
((
*
xclass_flags
&
XCL_MAP
)
==
0
)
{
{
/* No bits are set for characters < 256. */
/* No bits are set for characters < 256. */
if
(
list
[
1
]
==
0
)
return
TRUE
;
if
(
list
[
1
]
==
0
)
return
(
*
xclass_flags
&
XCL_NOT
)
==
0
;
/* Might be an empty repeat. */
/* Might be an empty repeat. */
continue
;
continue
;
}
}
...
@@ -3611,7 +3611,7 @@ for(;;)
...
@@ -3611,7 +3611,7 @@ for(;;)
if
(
chr
>
255
)
break
;
if
(
chr
>
255
)
break
;
class_bitset
=
(
pcre_uint8
*
)
class_bitset
=
(
pcre_uint8
*
)
((
list_ptr
==
list
?
code
:
base_end
)
-
list_ptr
[
2
]);
((
list_ptr
==
list
?
code
:
base_end
)
-
list_ptr
[
2
]);
if
((
class_bitset
[
chr
>>
3
]
&
(
1
<<
(
chr
&
7
)))
!=
0
)
return
FALSE
;
if
((
class_bitset
[
chr
>>
3
]
&
(
1
U
<<
(
chr
&
7
)))
!=
0
)
return
FALSE
;
break
;
break
;
#if defined SUPPORT_UTF || !defined COMPILE_PCRE8
#if defined SUPPORT_UTF || !defined COMPILE_PCRE8
...
@@ -7135,17 +7135,19 @@ for (;; ptr++)
...
@@ -7135,17 +7135,19 @@ for (;; ptr++)
int
n
=
0
;
int
n
=
0
;
ptr
++
;
ptr
++
;
while
(
IS_DIGIT
(
*
ptr
))
while
(
IS_DIGIT
(
*
ptr
))
{
n
=
n
*
10
+
*
ptr
++
-
CHAR_0
;
n
=
n
*
10
+
*
ptr
++
-
CHAR_0
;
if
(
n
>
255
)
{
*
errorcodeptr
=
ERR38
;
goto
FAILED
;
}
}
if
(
*
ptr
!=
CHAR_RIGHT_PARENTHESIS
)
if
(
*
ptr
!=
CHAR_RIGHT_PARENTHESIS
)
{
{
*
errorcodeptr
=
ERR39
;
*
errorcodeptr
=
ERR39
;
goto
FAILED
;
goto
FAILED
;
}
}
if
(
n
>
255
)
{
*
errorcodeptr
=
ERR38
;
goto
FAILED
;
}
*
code
++
=
n
;
*
code
++
=
n
;
PUT
(
code
,
0
,
(
int
)(
ptr
-
cd
->
start_pattern
+
1
));
/* Pattern offset */
PUT
(
code
,
0
,
(
int
)(
ptr
-
cd
->
start_pattern
+
1
));
/* Pattern offset */
PUT
(
code
,
LINK_SIZE
,
0
);
/* Default length */
PUT
(
code
,
LINK_SIZE
,
0
);
/* Default length */
...
@@ -7461,7 +7463,7 @@ for (;; ptr++)
...
@@ -7461,7 +7463,7 @@ for (;; ptr++)
{
{
open_capitem
*
oc
;
open_capitem
*
oc
;
recno
=
GET2
(
slot
,
0
);
recno
=
GET2
(
slot
,
0
);
cd
->
backref_map
|=
(
recno
<
32
)
?
(
1
<<
recno
)
:
1
;
cd
->
backref_map
|=
(
recno
<
32
)
?
(
1
U
<<
recno
)
:
1
;
if
(
recno
>
cd
->
top_backref
)
cd
->
top_backref
=
recno
;
if
(
recno
>
cd
->
top_backref
)
cd
->
top_backref
=
recno
;
/* Check to see if this back reference is recursive, that it, it
/* Check to see if this back reference is recursive, that it, it
...
@@ -7647,6 +7649,8 @@ for (;; ptr++)
...
@@ -7647,6 +7649,8 @@ for (;; ptr++)
/* Can't determine a first byte now */
/* Can't determine a first byte now */
if
(
firstcharflags
==
REQ_UNSET
)
firstcharflags
=
REQ_NONE
;
if
(
firstcharflags
==
REQ_UNSET
)
firstcharflags
=
REQ_NONE
;
zerofirstchar
=
firstchar
;
zerofirstcharflags
=
firstcharflags
;
continue
;
continue
;
...
@@ -8070,7 +8074,7 @@ for (;; ptr++)
...
@@ -8070,7 +8074,7 @@ for (;; ptr++)
item_hwm_offset
=
cd
->
hwm
-
cd
->
start_workspace
;
item_hwm_offset
=
cd
->
hwm
-
cd
->
start_workspace
;
*
code
++
=
((
options
&
PCRE_CASELESS
)
!=
0
)
?
OP_REFI
:
OP_REF
;
*
code
++
=
((
options
&
PCRE_CASELESS
)
!=
0
)
?
OP_REFI
:
OP_REF
;
PUT2INC
(
code
,
0
,
recno
);
PUT2INC
(
code
,
0
,
recno
);
cd
->
backref_map
|=
(
recno
<
32
)
?
(
1
<<
recno
)
:
1
;
cd
->
backref_map
|=
(
recno
<
32
)
?
(
1
U
<<
recno
)
:
1
;
if
(
recno
>
cd
->
top_backref
)
cd
->
top_backref
=
recno
;
if
(
recno
>
cd
->
top_backref
)
cd
->
top_backref
=
recno
;
/* Check to see if this back reference is recursive, that it, it
/* Check to see if this back reference is recursive, that it, it
...
@@ -8683,14 +8687,22 @@ do {
...
@@ -8683,14 +8687,22 @@ do {
op
==
OP_SCBRA
||
op
==
OP_SCBRAPOS
)
op
==
OP_SCBRA
||
op
==
OP_SCBRAPOS
)
{
{
int
n
=
GET2
(
scode
,
1
+
LINK_SIZE
);
int
n
=
GET2
(
scode
,
1
+
LINK_SIZE
);
int
new_map
=
bracket_map
|
((
n
<
32
)
?
(
1
<<
n
)
:
1
);
int
new_map
=
bracket_map
|
((
n
<
32
)
?
(
1
U
<<
n
)
:
1
);
if
(
!
is_anchored
(
scode
,
new_map
,
cd
,
atomcount
))
return
FALSE
;
if
(
!
is_anchored
(
scode
,
new_map
,
cd
,
atomcount
))
return
FALSE
;
}
}
/* Positive forward assertions and conditions */
/* Positive forward assertion */
else
if
(
op
==
OP_ASSERT
)
{
if
(
!
is_anchored
(
scode
,
bracket_map
,
cd
,
atomcount
))
return
FALSE
;
}
/* Condition; not anchored if no second branch */
else
if
(
op
==
OP_
ASSERT
||
op
==
OP_
COND
)
else
if
(
op
==
OP_COND
)
{
{
if
(
scode
[
GET
(
scode
,
1
)]
!=
OP_ALT
)
return
FALSE
;
if
(
!
is_anchored
(
scode
,
bracket_map
,
cd
,
atomcount
))
return
FALSE
;
if
(
!
is_anchored
(
scode
,
bracket_map
,
cd
,
atomcount
))
return
FALSE
;
}
}
...
@@ -8803,7 +8815,7 @@ do {
...
@@ -8803,7 +8815,7 @@ do {
op
==
OP_SCBRA
||
op
==
OP_SCBRAPOS
)
op
==
OP_SCBRA
||
op
==
OP_SCBRAPOS
)
{
{
int
n
=
GET2
(
scode
,
1
+
LINK_SIZE
);
int
n
=
GET2
(
scode
,
1
+
LINK_SIZE
);
int
new_map
=
bracket_map
|
((
n
<
32
)
?
(
1
<<
n
)
:
1
);
int
new_map
=
bracket_map
|
((
n
<
32
)
?
(
1
U
<<
n
)
:
1
);
if
(
!
is_startline
(
scode
,
new_map
,
cd
,
atomcount
,
inassert
))
return
FALSE
;
if
(
!
is_startline
(
scode
,
new_map
,
cd
,
atomcount
,
inassert
))
return
FALSE
;
}
}
...
...
deps/pcre/pcre_jit_compile.c
View file @
2e5f27c7
...
@@ -3938,10 +3938,10 @@ static sljit_s32 character_to_int32(pcre_uchar chr)
...
@@ -3938,10 +3938,10 @@ static sljit_s32 character_to_int32(pcre_uchar chr)
sljit_s32
value
=
(
sljit_s32
)
chr
;
sljit_s32
value
=
(
sljit_s32
)
chr
;
#if defined COMPILE_PCRE8
#if defined COMPILE_PCRE8
#define SSE2_COMPARE_TYPE_INDEX 0
#define SSE2_COMPARE_TYPE_INDEX 0
return
(
value
<<
24
)
|
(
value
<<
16
)
|
(
value
<<
8
)
|
value
;
return
(
(
unsigned
int
)
value
<<
24
)
|
((
unsigned
int
)
value
<<
16
)
|
((
unsigned
int
)
value
<<
8
)
|
(
unsigned
int
)
value
;
#elif defined COMPILE_PCRE16
#elif defined COMPILE_PCRE16
#define SSE2_COMPARE_TYPE_INDEX 1
#define SSE2_COMPARE_TYPE_INDEX 1
return
(
value
<<
16
)
|
value
;
return
(
(
unsigned
int
)
value
<<
16
)
|
value
;
#elif defined COMPILE_PCRE32
#elif defined COMPILE_PCRE32
#define SSE2_COMPARE_TYPE_INDEX 2
#define SSE2_COMPARE_TYPE_INDEX 2
return
value
;
return
value
;
...
@@ -8507,7 +8507,7 @@ if (opcode == OP_ONCE)
...
@@ -8507,7 +8507,7 @@ if (opcode == OP_ONCE)
/* We temporarily encode the needs_control_head in the lowest bit.
/* We temporarily encode the needs_control_head in the lowest bit.
Note: on the target architectures of SLJIT the ((x << 1) >> 1) returns
Note: on the target architectures of SLJIT the ((x << 1) >> 1) returns
the same value for small signed numbers (including negative numbers). */
the same value for small signed numbers (including negative numbers). */
BACKTRACK_AS
(
bracket_backtrack
)
->
u
.
framesize
=
(
BACKTRACK_AS
(
bracket_backtrack
)
->
u
.
framesize
<<
1
)
|
(
needs_control_head
?
1
:
0
);
BACKTRACK_AS
(
bracket_backtrack
)
->
u
.
framesize
=
(
(
unsigned
int
)
BACKTRACK_AS
(
bracket_backtrack
)
->
u
.
framesize
<<
1
)
|
(
needs_control_head
?
1
:
0
);
}
}
return
cc
+
repeat_length
;
return
cc
+
repeat_length
;
}
}
...
@@ -9002,7 +9002,7 @@ if (exact > 1)
...
@@ -9002,7 +9002,7 @@ if (exact > 1)
#ifdef SUPPORT_UTF
#ifdef SUPPORT_UTF
&&
!
common
->
utf
&&
!
common
->
utf
#endif
#endif
)
&&
type
!=
OP_ANYNL
&&
type
!=
OP_EXTUNI
)
{
{
OP2
(
SLJIT_ADD
,
TMP1
,
0
,
STR_PTR
,
0
,
SLJIT_IMM
,
IN_UCHARS
(
exact
));
OP2
(
SLJIT_ADD
,
TMP1
,
0
,
STR_PTR
,
0
,
SLJIT_IMM
,
IN_UCHARS
(
exact
));
add_jump
(
compiler
,
&
backtrack
->
topbacktracks
,
CMP
(
SLJIT_GREATER
,
TMP1
,
0
,
STR_END
,
0
));
add_jump
(
compiler
,
&
backtrack
->
topbacktracks
,
CMP
(
SLJIT_GREATER
,
TMP1
,
0
,
STR_END
,
0
));
...
...
deps/pcre/pcreposix.c
View file @
2e5f27c7
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
and semantics are as close as possible to those of the Perl 5 language.
and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
Written by Philip Hazel
Copyright (c) 1997-20
18
University of Cambridge
Copyright (c) 1997-20
20
University of Cambridge
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
Redistribution and use in source and binary forms, with or without
...
@@ -287,6 +287,7 @@ if (preg->re_pcre == NULL)
...
@@ -287,6 +287,7 @@ if (preg->re_pcre == NULL)
(
void
)
pcre_fullinfo
((
const
pcre
*
)
preg
->
re_pcre
,
NULL
,
PCRE_INFO_CAPTURECOUNT
,
(
void
)
pcre_fullinfo
((
const
pcre
*
)
preg
->
re_pcre
,
NULL
,
PCRE_INFO_CAPTURECOUNT
,
&
re_nsub
);
&
re_nsub
);
preg
->
re_nsub
=
(
size_t
)
re_nsub
;
preg
->
re_nsub
=
(
size_t
)
re_nsub
;
preg
->
re_erroffset
=
(
size_t
)(
-
1
);
/* No meaning after successful compile */
return
0
;
return
0
;
}
}
...
@@ -324,8 +325,6 @@ if ((eflags & PCRE_REG_NOTBOL) != 0) options |= PCRE_NOTBOL;
...
@@ -324,8 +325,6 @@ if ((eflags & PCRE_REG_NOTBOL) != 0) options |= PCRE_NOTBOL;
if
((
eflags
&
PCRE_REG_NOTEOL
)
!=
0
)
options
|=
PCRE_NOTEOL
;
if
((
eflags
&
PCRE_REG_NOTEOL
)
!=
0
)
options
|=
PCRE_NOTEOL
;
if
((
eflags
&
PCRE_REG_NOTEMPTY
)
!=
0
)
options
|=
PCRE_NOTEMPTY
;
if
((
eflags
&
PCRE_REG_NOTEMPTY
)
!=
0
)
options
|=
PCRE_NOTEMPTY
;
((
pcre_regex_t
*
)
preg
)
->
re_erroffset
=
(
size_t
)(
-
1
);
/* Only has meaning after compile */
/* When no string data is being returned, or no vector has been passed in which
/* When no string data is being returned, or no vector has been passed in which
to put it, ensure that nmatch is zero. Otherwise, ensure the vector for holding
to put it, ensure that nmatch is zero. Otherwise, ensure the vector for holding
the return data is large enough. */
the return data is large enough. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment