3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
12 /* see bug 10798: there is a bug in the compiler the buildbots use for Mac OSX
13 and SSE4.2, so we're not going to use SSE4.2 with Mac OSX right now, for
14 older Mac OSX compilers.
17 #if defined(__clang__) && (__clang_major__ >= 6)
18 /* allow HAVE_SSE4_2 to be used for clang 6.0+ case because we know it works */
20 /* don't allow it otherwise, for Mac OSX */
25 #include "ws_mempbrk.h"
26 #include "ws_mempbrk_int.h"
31 ws_mempbrk_compile(ws_mempbrk_pattern
* pattern
, const char *needles
)
33 const char *n
= needles
;
34 memset(pattern
->patt
, 0, 256);
36 pattern
->patt
[(int)*n
] = 1;
41 ws_mempbrk_sse42_compile(pattern
, needles
);
47 ws_mempbrk_portable_exec(const uint8_t* haystack
, size_t haystacklen
, const ws_mempbrk_pattern
* pattern
, unsigned char *found_needle
)
49 const uint8_t *haystack_end
= haystack
+ haystacklen
;
51 while (haystack
< haystack_end
) {
52 if (pattern
->patt
[*haystack
]) {
54 *found_needle
= *haystack
;
64 WS_DLL_PUBLIC
const uint8_t *
65 ws_mempbrk_exec(const uint8_t* haystack
, size_t haystacklen
, const ws_mempbrk_pattern
* pattern
, unsigned char *found_needle
)
68 if (haystacklen
>= 16 && pattern
->use_sse42
)
69 return ws_mempbrk_sse42_exec(haystack
, haystacklen
, pattern
, found_needle
);
72 return ws_mempbrk_portable_exec(haystack
, haystacklen
, pattern
, found_needle
);
75 WS_DLL_PUBLIC
const uint8_t *
76 ws_memrpbrk_exec(const uint8_t* haystack
, size_t haystacklen
, const ws_mempbrk_pattern
* pattern
, unsigned char *found_needle
)
78 const uint8_t *haystack_end
= haystack
+ haystacklen
;
80 while (haystack_end
> haystack
) {
81 if (pattern
->patt
[*(--haystack_end
)]) {
83 *found_needle
= *haystack_end
;
92 * Editor modelines - https://www.wireshark.org/tools/modelines.html
100 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
101 * :indentSize=8:tabSize=8:noTabs=false: