summaryrefslogtreecommitdiffstats
path: root/doxygen/siphon-generate
blob: bdfd58d8bbbc6bd74e3fe7806826e224867d9362 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
# Copyright (c) 2016 Comcast Cable Communications Management, LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Looks for preprocessor macros with struct initializers and siphons them
# off into another file for later parsing; ostensibly to generate
# documentation from struct initializer data.

import os, sys, argparse, logging
import siphon

DEFAULT_LOGFILE = None
DEFAULT_LOGLEVEL = "info"
DEFAULT_OUTPUT = "build-root/docs/siphons"
DEFAULT_PREFIX = os.getcwd()

ap = argparse.ArgumentParser()
ap.add_argument("--log-file", default=DEFAULT_LOGFILE,
        help="Log file [%s]" % DEFAULT_LOGFILE)
ap.add_argument("--log-level", default=DEFAULT_LOGLEVEL,
        choices=["debug", "info", "warning", "error", "critical"],
        help="Logging level [%s]" % DEFAULT_LOGLEVEL)

ap.add_argument("--output", '-o', metavar="directory", default=DEFAULT_OUTPUT,
        help="Output directory for .siphon files [%s]" % DEFAULT_OUTPUT)
ap.add_argument("--input-prefix", metavar="path", default=DEFAULT_PREFIX,
        help="Prefix to strip from input pathnames [%s]" % DEFAULT_PREFIX)
ap.add_argument("input", nargs='+', metavar="input_file",
        help="Input C source files")
args = ap.parse_args()

logging.basicConfig(filename=args.log_file,
        level=getattr(logging, args.log_level.upper(), None))
log = logging.getLogger("siphon_generate")


generate = siphon.generate.Generate(output_directory=args.output,
    input_prefix=args.input_prefix)

# Pre-process file names in case they indicate a file with
# a list of files
files = []
for filename in args.input:
    if filename.startswith('@'):
        with open(filename[1:], 'r') as fp:
            lines = fp.readlines()
            for line in lines:
                file = line.strip()
                if file not in files:
                    files.append(file)
            lines = None
    else:
        if filename not in files:
            files.append(filename)

# Iterate all the input files we've been given
for filename in files:
    generate.parse(filename)

# Write the extracted data
generate.deliver()

# All done
s="p">, 0, *eax, *ebx, *ecx, *edx); else __cpuid (lev, *eax, *ebx, *ecx, *edx); return 1; } #define _(flag, func, reg, bit) \ static inline int \ clib_cpu_supports_ ## flag() \ { \ u32 __attribute__((unused)) eax, ebx = 0, ecx = 0, edx = 0; \ clib_get_cpuid (func, &eax, &ebx, &ecx, &edx); \ \ return ((reg & (1 << bit)) != 0); \ } foreach_x86_64_flags #undef _ #else /* __x86_64__ */ #define _(flag, func, reg, bit) \ static inline int clib_cpu_supports_ ## flag() { return 0; } foreach_x86_64_flags #undef _ #endif /* __x86_64__ */ #if defined(__aarch64__) #include <sys/auxv.h> #define _(flag, bit) \ static inline int \ clib_cpu_supports_ ## flag() \ { \ unsigned long hwcap = getauxval(AT_HWCAP); \ return (hwcap & (1 << bit)); \ } foreach_aarch64_flags #undef _ #else /* ! __x86_64__ && !__aarch64__ */ #define _(flag, bit) \ static inline int clib_cpu_supports_ ## flag() { return 0; } foreach_aarch64_flags #undef _ #endif /* __x86_64__, __aarch64__ */ /* * aes is the only feature with the same name in both flag lists * handle this by prefixing it with the arch name, and handling it * with the custom function below */ static inline int clib_cpu_supports_aes () { #if defined (__aarch64__) return clib_cpu_supports_x86_aes (); #elif defined (__aarch64__) return clib_cpu_supports_aarch64_aes (); #else return 0; #endif } static inline int clib_cpu_march_priority_avx512 () { if (clib_cpu_supports_avx512f ()) return 20; return -1; } static inline int clib_cpu_march_priority_avx2 () { if (clib_cpu_supports_avx2 ()) return 10; return -1; } #ifdef CLIB_MARCH_VARIANT #define CLIB_MARCH_FN_PRIORITY() CLIB_MARCH_SFX(clib_cpu_march_priority)() #else #define CLIB_MARCH_FN_PRIORITY() 0 #endif #endif /* included_clib_cpu_h */ format_function_t format_cpu_uarch; format_function_t format_cpu_model_name; format_function_t format_cpu_flags; /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */