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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
; Copyright (c) 1993-2008 by Richard Kelsey. See file COPYING.
; C variable declarations.
;
; (write-function-prototypes forms port)
;
; (write-variable-declarations vars port indent)
; Writing declarations.
(define (write-function-prototypes forms port)
(for-each (lambda (f)
(if (eq? (form-type f) 'lambda)
(if (form-tail-called? f)
(write-function-tail-prototype (form-c-name f)
(form-exported? f)
port)
(write-function-prototype (form-var f)
(form-c-name f)
(form-exported? f)
port))))
forms))
(define (write-function-tail-prototype name exported? port)
(if (not exported?)
(display "static " port))
(display "long T" port)
(display name port)
(display "(void);" port)
(newline port))
(define (write-function-prototype var name exported? port)
(if (not exported?)
(display "static " port))
(receive (result args)
(parse-arrow-type (final-variable-type var))
(display-c-type result
(lambda (port)
(display name port))
port)
(write-char #\( port)
(if (null? args)
(display "void" port)
(begin
(display-c-type (car args) #f port)
(let loop ((args (cdr args)))
(if (not (null? args))
(begin
(display ", " port)
(display-c-type (car args) #f port)
(loop (cdr args)))))))
(display ");" port)
(newline port)))
; Write declarations for global variables.
(define (write-global-variable-declarations forms port)
(for-each (lambda (form)
(if (memq (form-type form)
'(stob initialize alias))
(let* ((var (form-var form))
(type (final-variable-type var)))
(if (not (or (eq? type type/unit)
(eq? type type/null)))
(really-write-variable-declaration
var type (form-exported? form) port 0)))))
forms))
; Write general variable declarations.
(define (write-variable-declarations vars port indent)
(for-each (lambda (var)
(let ((type (final-variable-type var)))
(if (not (or (eq? type type/unit)
(eq? type type/null)))
(really-write-variable-declaration var type #t port indent))))
vars))
(define (really-write-variable-declaration var type exported? port indent)
(indent-to port indent)
(if (not exported?)
(display "static " port))
(display-c-type type
(lambda (port)
(c-variable-no-shadowing var port))
port)
(writec port #\;))
;----------------------------------------------------------------
; Writing C types
(define (display-c-type type name port)
(display-c-base-type (type->c-base-type type) port)
(if name (display " " port))
(display-c-type-modifiers type name port))
(define (write-c-coercion type out)
(write-char #\( out)
(display-c-type type #f out)
(write-char #\) out))
; Searches through the type modifiers until the base type is found.
; Unspecified result types are assumed to be `void'.
(define (type->c-base-type type)
(let ((type (maybe-follow-uvar type)))
(cond ((or (base-type? type)
(record-type? type))
type)
((pointer-type? type)
(type->c-base-type (pointer-type-to type)))
((arrow-type? type)
(let ((res (arrow-type-result type)))
(cond ((and (uvar? res)
(not (uvar-binding res)))
type/unit)
((not (tuple-type? res))
(type->c-base-type res))
((null? (tuple-type-types res))
type/unit)
(else
(type->c-base-type (car (tuple-type-types res)))))))
(else
(bug "don't know how to write ~S as a C type" type)))))
; Table of C names for base types.
(define c-decl-table (make-integer-table))
(define (add-c-type-declaration! type decl)
(table-set! c-decl-table (base-type-uid type) decl))
(for-each (lambda (p)
(let ((type (lookup-type (car p))))
(add-c-type-declaration! type (cadr p))))
'((boolean "char")
(char "char")
(integer "long")
(unsigned-integer "unsigned long")
(float "double")
(address "char *")
(input-port "FILE *")
(output-port "FILE *")
(unit "void")
(null "void")))
(define (display-c-base-type type port)
(cond ((record-type? type)
(display "struct " port)
(write-c-identifier (record-type-name type) port))
(else
(display (or (table-ref c-decl-table (base-type-uid type))
(bug "no C declaration for ~S" type))
port))))
; Writes out the modifiers of TYPE with NAME used when the base type is reached.
(define (display-c-type-modifiers type name port)
(let label ((type type) (name name))
(let ((type (maybe-follow-uvar type)))
(cond ((or (base-type? type)
(record-type? type))
(if name (name port)))
((pointer-type? type)
(label (pointer-type-to type)
(lambda (port)
(format port "*")
(if name (name port)))))
((arrow-type? type)
(receive (return-type args)
(parse-arrow-type type)
(display-c-type-modifiers return-type #f port)
(format port "(*")
(if name (name port))
(format port ")(")
(cond ((null? args)
(display "void" port))
(else
(display-c-type (car args) #f port)
(do ((args (cdr args) (cdr args)))
((null? args))
(display ", " port)
(display-c-type (car args) #f port))))
(format port ")")))
(else
(bug "don't know how to write ~S as a C type" type))))))
(define (parse-arrow-type type)
(receive (first rest)
(parse-return-type (arrow-type-result type))
(values first
(append (arrow-type-args type)
(map make-pointer-type rest)))))
(define (parse-return-type type)
(cond ((not (tuple-type? type))
(values (if (and (uvar? type)
(not (uvar-binding type)))
type/unit
type)
'()))
((null? (tuple-type-types type))
(values type/unit '()))
(else
(values (car (tuple-type-types type))
(cdr (tuple-type-types type))))))
;------------------------------------------------------------
; Collecting local variables. Each is added to this list when it is first
; used.
(define *local-vars* '())
(define (declare-local-variables port)
(write-variable-declarations *local-vars* port 2))
; Some primops must be given continuations so that calls to them will
; be translated into separate C statements and so expand into arbitrarily
; complex chunks of C if necessary.
(define (fixup-nasty-c-primops! call)
(let ((top call))
(let label ((call call))
(cond ((call-node? call)
(if (and (= 0 (call-exits call))
(nasty-c-primop-call? call))
(set! top (expand-nasty-c-primop! call top)))
(walk-vector label (call-args call)))))
(do ((i 0 (+ i 1)))
((= i (call-arg-count top)))
(let ((arg (call-arg top i)))
(if (lambda-node? arg)
(fixup-nasty-c-primops! (lambda-body arg)))))))
(define (nasty-c-primop-call? call)
(case (primop-id (call-primop call))
((lshl ashl ashr) ; C does poorly when shifting by large amounts
(not (literal-node? (call-arg call 1))))
(else #f)))
; Give CALL a continuation and move it above TOP, replacing CALL
; with the continuation's variable.
;
; top = (p1 ... (p2 a1 ...) ...)
; =>
; (p2 (lambda (v) (p1 ... v ...)) a1 ...)
(define (expand-nasty-c-primop! call top)
(let* ((var (make-variable 'x (node-type call)))
(cont (make-lambda-node 'c 'cont (list var))))
(move call
(lambda (call)
(make-reference-node var)))
(insert-body call
cont
(node-parent top))
(set-call-exits! call 1)
(insert-call-arg call 0 cont)
call))
;------------------------------------------------------------
; Declare the variables used to pass arguments to procedures.
; This is done in each procedure so that the C compiler doesn't have to contend
; with the possibility of globally visible side-effects.
(define (write-arg-variable-declarations lambdas merged port)
(let ((lambdas (filter (lambda (l)
(eq? 'jump (lambda-type l)))
lambdas))
(merged (map form-value merged)))
(really-write-arg-variable-declarations lambdas "arg" port 2)
(really-write-arg-variable-declarations merged "merged_arg" port 2)))
(define (write-global-arg-variable-declarations forms port)
(let ((lambdas (filter-map (lambda (f)
(if (and (form-var f)
(memq? 'tail-called
(variable-flags (form-var f))))
(form-value f)
#f))
forms)))
(really-write-arg-variable-declarations lambdas "goto_arg" port 0)))
(define (really-write-arg-variable-declarations lambdas name port indent)
(for-each (lambda (data)
(destructure (((uid type . indicies) data))
(if (not (eq? type type/unit))
(for-each (lambda (i)
(indent-to port indent)
(declare-arg-variable type uid i name port))
indicies))))
(get-variable-decl-data lambdas)))
(define (get-variable-decl-data lambdas)
(let ((data '()))
(for-each (lambda (l)
(do ((vars (if (eq? 'jump (lambda-type l))
(lambda-variables l)
(cdr (lambda-variables l)))
(cdr vars))
(i 0 (+ i 1)))
((null? vars))
(let* ((type (final-variable-type (car vars)))
(uid (type->uid type))
(datum (assq uid data)))
(cond ((not datum)
(set! data (cons (list uid type i) data)))
((not (memq i (cddr datum)))
(set-cdr! (cdr datum) (cons i (cddr datum))))))))
lambdas)
data))
(define (declare-arg-variable type uid i name port)
(display-c-type type
(lambda (port)
(format port "~A~DK~D" name uid i))
port)
(format port ";~%"))
;------------------------------------------------------------
(define (write-argument-initializers arg-vars port indent)
(really-write-argument-initializers arg-vars "arg" #f port indent))
(define (write-merged-argument-initializers arg-vars port indent)
(really-write-argument-initializers arg-vars "merged_arg" #f port indent))
(define (write-global-argument-initializers arg-vars port indent)
(really-write-argument-initializers arg-vars "goto_arg" #t port indent))
(define (really-write-argument-initializers arg-vars name type? port indent)
(do ((i 0 (+ i 1))
(vars arg-vars (cdr vars)))
((null? vars) (values))
(if (used? (car vars))
(let* ((var (car vars))
(type (final-variable-type var)))
(cond ((not (eq? type/unit type))
(indent-to port indent)
(if type?
(display-c-type type
(lambda (port) (c-variable var port))
port)
(c-variable var port))
(display " = " port)
(display (c-argument-var name type i port) port)
(write-char '#\; port)))))))
(define (c-argument-var name type i port)
(format #f "~A~DK~D" name (type->uid type) i))
(define *type-uids* '())
(define *next-type-uid* 0)
(define (type->uid type)
(cond ((any (lambda (p)
(type-eq? type (car p)))
*type-uids*)
=> cdr)
(else
(let ((id *next-type-uid*))
(set! *next-type-uid* (+ id 1))
(set! *type-uids* (cons (cons type id) *type-uids*))
id))))
;----------------------------------------------------------------
; Random utility here for historical reasons.
(define (goto-call? call)
(and (calls-this-primop? call 'unknown-tail-call)
(goto-protocol? (literal-value (call-arg call 2)))))
;----------------------------------------------------------------
; random type stuff
(define (reference-type node)
(finalize-variable-type (reference-variable node)))
(define (finalize-variable-type var)
(let* ((type (finalize-type (variable-type var)))
(type (if (uvar? type)
type/null
type)))
(set-variable-type! var type)
type))
(define final-variable-type finalize-variable-type)
|