Skip to content
Snippets Groups Projects
Commit 336839dd authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[Analysis-scripts] add warning about assembly; fix bug related to ids in C11 but not POSIX

parent df7682b1
No related branches found
No related tags found
No related merge requests found
...@@ -150,8 +150,12 @@ for callee in sorted(callees): ...@@ -150,8 +150,12 @@ for callee in sorted(callees):
used_headers.add(posix_identifiers[callee]["header"]) used_headers.add(posix_identifiers[callee]["header"])
if callee in c11_functions: if callee in c11_functions:
# check that the callee is not a macro or type (e.g. va_arg) # check that the callee is not a macro or type (e.g. va_arg)
if posix_identifiers[callee]["id_type"] != "function": if callee not in posix_identifiers:
# a few functions, such as strcpy_s, are in C11 but not in POSIX
continue continue
else:
if posix_identifiers[callee]["id_type"] != "function":
continue
#print(f"C11 function: {callee}") #print(f"C11 function: {callee}")
if callee in libc_specified_functions: if callee in libc_specified_functions:
if verbose or debug: if verbose or debug:
...@@ -241,5 +245,10 @@ for keyword in c11_unsupported: ...@@ -241,5 +245,10 @@ for keyword in c11_unsupported:
n = len(lines) n = len(lines)
print(f"- warning: found {n} line{'s' if n > 1 else ''} with occurrences of unsupported C11 construct '{keyword}'") print(f"- warning: found {n} line{'s' if n > 1 else ''} with occurrences of unsupported C11 construct '{keyword}'")
# assembly code
if "asm" in callees or "__asm" in callees or "__asm__" in callees:
print(f"- warning: code seems to contain inline assembly ('asm(...)')")
# TODO: # TODO:
# - detect absence of 'main' function (library) # - detect absence of 'main' function (library)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment