Skip to content

Commit 5e9efad

Browse files
authored
i#7303: Run clang-format on drmf/ and drsyscall files. (#7393)
Run clang-format on drmf/ and drsyscall/ files. ext/drsyscall/table_linux.c and ext/drsyscall/table_linux_ioctl.c required manual editing after setting "ReflowComments: true" in .clang-format does not break the comments at 90 columns. Remove drmf/ and drsyscall/ files from vera++ test exclusion list. Issue: #7303
1 parent 770798b commit 5e9efad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+51035
-38309
lines changed

ext/drmf/common/sysnum_linux.h

+735-737
Large diffs are not rendered by default.

ext/drmf/common/utils.c

+178-193
Large diffs are not rendered by default.

ext/drmf/common/utils.h

+478-453
Large diffs are not rendered by default.

ext/drmf/common/utils_shared.c

100755100644
+10-11
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ char *
3333
strnchr(const char *str, int find, size_t max)
3434
{
3535
register const char *s = str;
36-
register char c = (char) find;
36+
register char c = (char)find;
3737
while (true) {
3838
if (s - str >= max)
3939
return NULL;
4040
if (*s == c)
41-
return (char *) s;
41+
return (char *)s;
4242
if (*s == '\0')
4343
return NULL;
4444
s++;
@@ -60,7 +60,7 @@ strcasestr(const char *text, const char *pattern)
6060
cur_pattern = pattern;
6161
while (true) {
6262
if (*cur_pattern == '\0')
63-
return (char *) root;
63+
return (char *)root;
6464
if (*cur_text == '\0')
6565
return NULL;
6666
/* XXX DRi#943: toupper is better, for int18n, and we need to call
@@ -86,8 +86,8 @@ drmem_strdup(const char *src, heapstat_t type)
8686
char *dup = NULL;
8787
if (src != NULL) {
8888
size_t len = strlen(src);
89-
dup = global_alloc(len+1, type);
90-
strncpy(dup, src, len+1);
89+
dup = global_alloc(len + 1, type);
90+
strncpy(dup, src, len + 1);
9191
}
9292
return dup;
9393
}
@@ -101,7 +101,7 @@ drmem_strndup(const char *src, size_t max, heapstat_t type)
101101
size_t sz;
102102
for (c = src; *c != '\0' && (c - src < max); c++)
103103
; /* nothing */
104-
sz = (c - src < max) ? c -src : max;
104+
sz = (c - src < max) ? c - src : max;
105105
if (src != NULL) {
106106
dup = global_alloc(sz + 1, type);
107107
strncpy(dup, src, sz);
@@ -123,13 +123,12 @@ find_next_line(const char *start, const char *eof, const char **sol,
123123
newline = eof; /* handle EOF w/o trailing \n */
124124
next_line = newline + 1;
125125
} else {
126-
for (next_line = newline; *next_line == '\r' || *next_line == '\n';
127-
next_line++)
128-
; /* nothing */
129-
if (*(newline-1) == '\r') /* always skip CR */
126+
for (next_line = newline; *next_line == '\r' || *next_line == '\n'; next_line++)
127+
; /* nothing */
128+
if (*(newline - 1) == '\r') /* always skip CR */
130129
newline--;
131130
if (skip_ws) {
132-
for (; newline > line && (*(newline-1) == ' ' || *(newline-1) == '\t');
131+
for (; newline > line && (*(newline - 1) == ' ' || *(newline - 1) == '\t');
133132
newline--)
134133
; /* nothing */
135134
}

ext/drmf/common/windefs.h

+349-367
Large diffs are not rendered by default.

ext/drmf/framework/public.h

+26-20
Original file line numberDiff line numberDiff line change
@@ -50,35 +50,41 @@ extern "C" {
5050
* current version, but we also increase the oldest-compatible
5151
* version to match the (just-incremented) current version.
5252
*/
53-
#define DRMF_VERSION_COMPAT ${DRMF_VERSION_COMPAT}
54-
#define DRMF_VERSION_CUR ${DRMF_VERSION_CUR}
55-
#define DRMF_VERSION_USED_VAR _DRMF_VERSION_USED_
56-
DR_EXPORT LINK_ONCE int DRMF_VERSION_USED_VAR = ${DRMF_VERSION_CUR};
57-
#define DRMF_VERSION_USED_NAME STRINGIFY(DRMF_VERSION_USED_VAR)
58-
53+
#define DRMF_VERSION_COMPAT \
54+
$ \
55+
{ \
56+
DRMF_VERSION_COMPAT \
57+
}
58+
#define DRMF_VERSION_CUR \
59+
$ \
60+
{ \
61+
DRMF_VERSION_CUR \
62+
}
63+
#define DRMF_VERSION_USED_VAR _DRMF_VERSION_USED_
64+
DR_EXPORT LINK_ONCE int DRMF_VERSION_USED_VAR = $ { DRMF_VERSION_CUR };
65+
#define DRMF_VERSION_USED_NAME STRINGIFY(DRMF_VERSION_USED_VAR)
5966

6067
/** Status codes for the Dr. Memory Framework */
6168
typedef enum {
62-
DRMF_SUCCESS, /**< Operation succeeded. */
63-
DRMF_ERROR, /**< Operation failed. */
69+
DRMF_SUCCESS, /**< Operation succeeded. */
70+
DRMF_ERROR, /**< Operation failed. */
6471
DRMF_ERROR_INCOMPATIBLE_VERSION, /**< Operation failed: incompatible version */
65-
DRMF_ERROR_INVALID_PARAMETER, /**< Operation failed: invalid parameter */
66-
DRMF_ERROR_INVALID_SIZE, /**< Operation failed: invalid size */
67-
DRMF_ERROR_NOT_IMPLEMENTED, /**< Operation failed: not yet implemented */
72+
DRMF_ERROR_INVALID_PARAMETER, /**< Operation failed: invalid parameter */
73+
DRMF_ERROR_INVALID_SIZE, /**< Operation failed: invalid size */
74+
DRMF_ERROR_NOT_IMPLEMENTED, /**< Operation failed: not yet implemented */
6875
DRMF_ERROR_FEATURE_NOT_AVAILABLE, /**< Operation failed: not available */
69-
DRMF_ERROR_NOMEM, /**< Operation failed: not enough memory */
70-
DRMF_ERROR_DETAILS_UNKNOWN, /**< Operation failed: answer not yet known */
71-
DRMF_ERROR_NOT_FOUND, /**< Operation failed: query not found */
72-
DRMF_ERROR_INVALID_CALL, /**< Operation failed: pre-req for call not met */
73-
DRMF_ERROR_NOT_ENOUGH_REGS, /**< Operation failed: not enough registers for use */
74-
DRMF_ERROR_ACCESS_DENIED, /**< Operation failed: access denied */
76+
DRMF_ERROR_NOMEM, /**< Operation failed: not enough memory */
77+
DRMF_ERROR_DETAILS_UNKNOWN, /**< Operation failed: answer not yet known */
78+
DRMF_ERROR_NOT_FOUND, /**< Operation failed: query not found */
79+
DRMF_ERROR_INVALID_CALL, /**< Operation failed: pre-req for call not met */
80+
DRMF_ERROR_NOT_ENOUGH_REGS, /**< Operation failed: not enough registers for use */
81+
DRMF_ERROR_ACCESS_DENIED, /**< Operation failed: access denied */
7582
DRMF_WARNING_ALREADY_INITIALIZED, /**< Operation aborted: already initialized */
76-
DRMF_ERROR_NOT_INITIALIZED, /**< Operation failed: not initialized */
77-
DRMF_ERROR_INVALID_ADDRESS, /**< Operation failed: invalid address */
83+
DRMF_ERROR_NOT_INITIALIZED, /**< Operation failed: not initialized */
84+
DRMF_ERROR_INVALID_ADDRESS, /**< Operation failed: invalid address */
7885
DRMF_WARNING_UNSUPPORTED_KERNEL, /**< Continuing not advised: unsupported kernel */
7986
} drmf_status_t;
8087

81-
8288
/*@}*/ /* end doxygen group */
8389

8490
#ifdef __cplusplus

ext/drmf/framework/version.c

+6-8
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,13 @@ drmf_check_version(client_id_t client_id)
3939
return res;
4040

4141
base = dr_get_client_base(client_id);
42-
drmf_ver_used = (int *)
43-
dr_get_proc_address((module_handle_t) base, DRMF_VERSION_USED_NAME);
44-
LOG(1, "%s: lib ver=%d-%d vs client version %d"NL, __FUNCTION__,
45-
DRMF_VERSION_COMPAT, DRMF_VERSION_CUR,
46-
(drmf_ver_used == NULL) ? -1 : *drmf_ver_used);
47-
if (drmf_ver_used == NULL ||
48-
*drmf_ver_used < DRMF_VERSION_COMPAT ||
42+
drmf_ver_used =
43+
(int *)dr_get_proc_address((module_handle_t)base, DRMF_VERSION_USED_NAME);
44+
LOG(1, "%s: lib ver=%d-%d vs client version %d" NL, __FUNCTION__, DRMF_VERSION_COMPAT,
45+
DRMF_VERSION_CUR, (drmf_ver_used == NULL) ? -1 : *drmf_ver_used);
46+
if (drmf_ver_used == NULL || *drmf_ver_used < DRMF_VERSION_COMPAT ||
4947
*drmf_ver_used > DRMF_VERSION_CUR) {
50-
NOTIFY_ERROR("Version %d-%d mismatch with client version %d-%d"NL,
48+
NOTIFY_ERROR("Version %d-%d mismatch with client version %d-%d" NL,
5149
DRMF_VERSION_COMPAT, DRMF_VERSION_CUR,
5250
(drmf_ver_used == NULL) ? -1 : *drmf_ver_used);
5351
res = DRMF_ERROR_INCOMPATIBLE_VERSION;

0 commit comments

Comments
 (0)