1 # Script used in producing headers of assembly constants from C expressions.
2 # The input to this script looks like:
6 # The output of this script is C code to be run through gcc -S and then
7 # massaged to extract the integer constant values of the given C expressions.
8 # A line giving just a name implies an expression consisting of just that name.
12 # cpp directives go straight through.
17 print "\n#include <inttypes.h>";
18 print "\n#include <stdio.h>";
19 print "\n#define U(n) UINT64_C (n)";
20 print "\nstatic int do_test (void)\n{\n int bad = 0, good = 0;\n";
21 print "#define TEST(name, source, expr) \\\n" \
22 " if (U (asconst_##name) != (uint64_t) (expr)) { ++bad;" \
23 " fprintf (stderr, \"%s: %s is %\" PRId64
\" but %s is
%\"PRId64 \"\\n\"," \
24 " source, #name, U (asconst_##name), #expr, (uint64_t) (expr));" \
28 print "void dummy(void) {";
35 NF ==
1 { sub(/^.
*$
/, "& &"); }
39 sub(/^
[^
]+[ ]+/, "");
41 print " TEST (" name
", \"" FILENAME ":" FNR "\", " $
0 ")";
43 printf "asm (\"@@@name@@@%s@@@value@@@%%0@@@end@@@\" : : \"i\" ((long) %s));\n",
49 print " printf (\"%d errors in %d tests\\n\", bad, good + bad);"
50 print " return bad != 0 || good == 0;\n}\n";
51 print "#define TEST_FUNCTION do_test ()";
53 else if (started
) print "}";