-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathstd-C-lib-funcs.awk
executable file
·51 lines (41 loc) · 1.2 KB
/
std-C-lib-funcs.awk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/awk -f
# Copyright (c) 2020 International Business Machines Corporation
# Prepared by: Geert Janssen <[email protected]>
# Expects a C tokenizer generated csv file as input.
# Recognizes identifiers and checks them against a list of all standard
# C library functions (from /usr/include header files).
# If the identifier matches, then its token class is modified:
# from "identifier" to "std_func"
# All other tokens are untouched.
function dirname(pathname) {
if (!sub(/\/[^\/]*\/?$/, "", pathname))
return "."
return pathname
}
BEGIN {
# Read the file of all C standard function names, one per line
# Get directory where this script resides (ugly hack):
getline cmdline <("/proc/"PROCINFO["pid"]"/cmdline")
split(cmdline, fields, "\0")
path = dirname(fields[3])
input = path "/std-C-lib-funcs.txt"
while ((rc = (getline line < input)) > 0) {
std_funcs[line]=1
}
close(input)
if (rc < 0)
print "(W) cannot open " input
FS=","
}
{
# read csv
# check for identifier in column 3 (class)
if ($3 == "identifier" && $4 in std_funcs) {
# separate out certain identifiers:
print $1","$2",std_func,"$4
}
else {
print $0
}
}
END {}