| [ab6ed1e] | 1 | .\"                             -*- Mode: Nroff -*- | 
|---|
|  | 2 | .\" | 
|---|
|  | 3 | .\" Cforall Version 1.0.0 Copyright (C) 2017 University of Waterloo | 
|---|
|  | 4 | .\" | 
|---|
|  | 5 | .\" The contents of this file are covered under the licence agreement in the | 
|---|
|  | 6 | .\" file "LICENCE" distributed with Cforall. | 
|---|
|  | 7 | .\" | 
|---|
|  | 8 | .\" cfa.1 -- | 
|---|
|  | 9 | .\" | 
|---|
|  | 10 | .\" Author           : Peter A. Buhr | 
|---|
|  | 11 | .\" Created On       : Wed Jul 26 22:34:47 2017 | 
|---|
|  | 12 | .\" Last Modified By : Peter A. Buhr | 
|---|
| [41096dc] | 13 | .\" Last Modified On : Wed Sep  2 17:59:53 2020 | 
|---|
|  | 14 | .\" Update Count     : 78 | 
|---|
| [ab6ed1e] | 15 | .\" | 
|---|
|  | 16 | .\" nroff -man cfa.1 | 
|---|
|  | 17 | .\" | 
|---|
|  | 18 | .ds Ho "/usr/local | 
|---|
|  | 19 | .ds Mg "1 | 
|---|
|  | 20 | .ds Mn "0 | 
|---|
|  | 21 | .ds Pt "0 | 
|---|
|  | 22 | .ds Vr "cfa-\*(Mg.\*(Mn.\*(Pt | 
|---|
|  | 23 | .ds Cf "Cforall | 
|---|
|  | 24 | .\" | 
|---|
| [41096dc] | 25 | .TH CFA 1 "2020-09-2" cfa-\*(Mg "\*(Cf Project" | 
|---|
| [ab6ed1e] | 26 | .SH NAME | 
|---|
| [41096dc] | 27 | cfa \- \*(Cf project translator and runtime library to enhance C | 
|---|
| [ab6ed1e] | 28 | .SH SYNOPSIS | 
|---|
| [41096dc] | 29 | cfa [cfa/gcc-options] | 
|---|
|  | 30 | [cfa/c source-files] | 
|---|
|  | 31 | [assembler/loader files] | 
|---|
| [ab6ed1e] | 32 | .SH DESCRIPTION | 
|---|
| [41096dc] | 33 | \*(Cf (C-for-all) is an open-source project extending ISO C with modern safety and productivity features, while still ensuring backwards compatibility with C and its programmers. | 
|---|
|  | 34 |  | 
|---|
| [ab6ed1e] | 35 | The cfa command compiles C and \*(Cf source files and links C/\*(Cf object | 
|---|
|  | 36 | files named on the command line. | 
|---|
|  | 37 |  | 
|---|
|  | 38 | The cfa command introduces a translator pass over the specified source files | 
|---|
|  | 39 | after the C preprocessor but before the C compilation.  The translator converts | 
|---|
| [41096dc] | 40 | new \*(Cf constructs into C statements.  The cfa command also provides a fully | 
|---|
|  | 41 | concurrent (user-level threads) runtime library, which is linked with the | 
|---|
|  | 42 | \*(Cf application. | 
|---|
| [ab6ed1e] | 43 |  | 
|---|
|  | 44 | The command line options depend on the particular C compiler used (gcc/clang | 
|---|
|  | 45 | supported).  As with most C compilers, the output is sent to the file a.out(5) | 
|---|
|  | 46 | unless the -o option is present on the command line.  See the reference pages | 
|---|
| [41096dc] | 47 | for gcc(1) for more information on command line options. | 
|---|
| [ab6ed1e] | 48 | .SH OPTIONS | 
|---|
|  | 49 | When multiple conflicting options appear on the command line, e.g., | 
|---|
|  | 50 | .B -debug | 
|---|
|  | 51 | followed by | 
|---|
|  | 52 | .B -nodebug, | 
|---|
|  | 53 | the last option takes precedence. | 
|---|
|  | 54 | .LP | 
|---|
|  | 55 | All of the options available to the gcc compiler are available to the cfa | 
|---|
|  | 56 | translator.  The following gcc flags are implicitly turned on: | 
|---|
| [41096dc] | 57 | .IP "-std=gnu11" 3 | 
|---|
|  | 58 | The 2011 C standard plus GNU extensions. | 
|---|
|  | 59 | .IP "-fgnu89-inline" | 
|---|
|  | 60 | Use the traditional GNU semantics for inline routines in C11 mode, which allows inline routines in header files. | 
|---|
|  | 61 | .IP "-imacros stdbool.h" | 
|---|
|  | 62 | Include stdbool.h to get defines for bool/true/false. | 
|---|
|  | 63 | .IP "-latomic -lm" | 
|---|
|  | 64 | Provide access to double-wide CAS instruction and math library. | 
|---|
| [ab6ed1e] | 65 | .LP | 
|---|
|  | 66 | The following additional options are available: | 
|---|
| [41096dc] | 67 | .IP "-CFA" 3 | 
|---|
| [ab6ed1e] | 68 | Only the C preprocessor and the \*(Cf translator steps are performed and the transformed program is written to standard output, which makes it possible to examine the code generated by the \*(Cf translator. | 
|---|
|  | 69 | The generated code starts with the standard \*(Cf prelude. | 
|---|
| [41096dc] | 70 | .IP "-debug" | 
|---|
| [ab6ed1e] | 71 | The program is linked with the debugging version of the runtime system. | 
|---|
|  | 72 | The debug version performs runtime checks to help during the debugging phase of a \*(Cf program, but can substantially slow program execution. | 
|---|
|  | 73 | The runtime checks should only be removed after the program is completely debugged. | 
|---|
|  | 74 | .B This option is the default. | 
|---|
| [41096dc] | 75 | .IP "-nodebug" | 
|---|
| [ab6ed1e] | 76 | The program is linked with the non-debugging version of the runtime system, so the execution of the program is faster. | 
|---|
|  | 77 | .I However, no runtime checks or asserts are performed so errors usually result in abnormal program behaviour or termination. | 
|---|
| [41096dc] | 78 | .IP "-help" | 
|---|
| [ab6ed1e] | 79 | Information about the set of \*(Cf compilation flags is printed. | 
|---|
| [41096dc] | 80 | .IP "-nohelp" | 
|---|
| [ab6ed1e] | 81 | Information about the set of \*(Cf compilation flags is not printed. | 
|---|
|  | 82 | .B This option is the default. | 
|---|
| [41096dc] | 83 | .IP "-quiet" | 
|---|
| [ab6ed1e] | 84 | The \*(Cf compilation message is not printed at the beginning of a compilation. | 
|---|
| [41096dc] | 85 | .IP "-noquiet" | 
|---|
| [ab6ed1e] | 86 | The \*(Cf compilation message is printed at the beginning of a compilation. | 
|---|
|  | 87 | .B This option is the default. | 
|---|
|  | 88 | .SH PREPROCESSOR VARIABLES | 
|---|
|  | 89 | When programs are compiled using cfa, the following preprocessor variables are | 
|---|
|  | 90 | available.  These variables allow conditional compilation of programs that must | 
|---|
|  | 91 | work differently in these situations. | 
|---|
| [41096dc] | 92 | .IP "__CFA_MAJOR__" 3 | 
|---|
| [ab6ed1e] | 93 | is available during preprocessing and its value is the major version number of \*(Cf. | 
|---|
| [41096dc] | 94 | .IP "__CFA_MINOR__" | 
|---|
| [ab6ed1e] | 95 | is available during preprocessing and its value is the minor version number of \*(Cf. | 
|---|
| [41096dc] | 96 | .IP "__CFA_PATCH__" | 
|---|
| [ab6ed1e] | 97 | is available during preprocessing and its value is the patch level number of \*(Cf. | 
|---|
|  | 98 | .IP "__CFA__, __CFORALL__, and __cforall" | 
|---|
|  | 99 | are always available during preprocessing and have no value. | 
|---|
| [41096dc] | 100 | .IP "__CFA_DEBUG__" | 
|---|
| [ab6ed1e] | 101 | is available during preprocessing if the -debug compilation option is | 
|---|
|  | 102 | specified. | 
|---|
|  | 103 | .SH FILES | 
|---|
|  | 104 | .DS B | 
|---|
| [7bd1bb5] | 105 | file.{c,cfa} - \*(Cf source file | 
|---|
| [ab6ed1e] | 106 | .br | 
|---|
|  | 107 | file.s - assembly language file | 
|---|
|  | 108 | .br | 
|---|
|  | 109 | file.o - object file | 
|---|
|  | 110 | .br | 
|---|
|  | 111 | \*(Ho/\*(Vr/bin/cfa - translator | 
|---|
|  | 112 | .br | 
|---|
|  | 113 | \*(Ho/\*(Vr/doc - reference manuals and documents | 
|---|
|  | 114 | .br | 
|---|
|  | 115 | \*(Ho/\*(Vr/include - header files | 
|---|
|  | 116 | .br | 
|---|
|  | 117 | \*(Ho/\*(Vr/lib - run time libraries | 
|---|
|  | 118 | .br | 
|---|
|  | 119 | \*(Ho/\*(Vr/man - command documentation | 
|---|
|  | 120 | .br | 
|---|
|  | 121 | \*(Ho/\*(Vr/src - source code (optional) | 
|---|
|  | 122 | .DE | 
|---|
|  | 123 | .SH SEE ALSO | 
|---|
|  | 124 | cpp(1), gcc(1), gdb(1) | 
|---|
|  | 125 | .SH REFERENCES | 
|---|
|  | 126 | .HP 3 | 
|---|
| [41096dc] | 127 | .I \*(Cf Home Page | 
|---|
| [ab6ed1e] | 128 | .br | 
|---|
| [41096dc] | 129 | https://cforall.uwaterloo.ca | 
|---|
| [ab6ed1e] | 130 | .HP | 
|---|
|  | 131 | .I \*(Cf User Manual | 
|---|
|  | 132 | .br | 
|---|
| [41096dc] | 133 | https://cforall.uwaterloo.ca/doc/user.pdf | 
|---|
|  | 134 | .SH BUILDS | 
|---|
|  | 135 | Nightly builds are available here https://cforall.uwaterloo.ca/jenkins | 
|---|
| [ab6ed1e] | 136 | .SH BUGS | 
|---|
| [41096dc] | 137 | Bugs reportss are available here https://cforall.uwaterloo.ca/trac | 
|---|
| [ab6ed1e] | 138 | .SH COPYRIGHT | 
|---|
|  | 139 | \*(Cf is covered under the licence agreement in the distribution. | 
|---|
|  | 140 | .SH AUTHORS | 
|---|
|  | 141 | Andrew Beach, Richard Bilson, Peter A. Buhr, Thierry Delisle, Glen Ditchfield, | 
|---|
| [41096dc] | 142 | Rodolfo G. Esteves, Aaron Moss, Rob Schluntz, Mubeen Zulfiqar | 
|---|