|
2143 | 2143 | (- n 1)
|
2144 | 2144 | n))
|
2145 | 2145 | n))
|
2146 |
| - (st (gensy))) |
| 2146 | + (st (gensy)) |
| 2147 | + (end '())) |
2147 | 2148 | `(block
|
2148 | 2149 | ,@(if (> n 0) `((local ,st)) '())
|
2149 | 2150 | ,@ini
|
2150 | 2151 | ,@(map (lambda (i lhs)
|
2151 |
| - (expand-forms |
2152 |
| - (if (vararg? lhs) |
2153 |
| - `(= ,(cadr lhs) (call (top rest) ,xx ,@(if (eq? i 0) '() `(,st)))) |
2154 |
| - (lower-tuple-assignment |
2155 |
| - (if (= i (- n 1)) |
2156 |
| - (list lhs) |
2157 |
| - (list lhs st)) |
2158 |
| - `(call (top indexed_iterate) |
2159 |
| - ,xx ,(+ i 1) ,@(if (eq? i 0) '() `(,st))))))) |
| 2152 | + (let ((lhs- (cond ((or (symbol? lhs) (ssavalue? lhs)) |
| 2153 | + lhs) |
| 2154 | + ((vararg? lhs) |
| 2155 | + (let ((lhs- (cadr lhs))) |
| 2156 | + (if (or (symbol? lhs-) (ssavalue? lhs-)) |
| 2157 | + lhs |
| 2158 | + `(|...| ,(if (eventually-call? lhs-) |
| 2159 | + (gensy) |
| 2160 | + (make-ssavalue)))))) |
| 2161 | + ;; can't use ssavalues if it's a function definition |
| 2162 | + ((eventually-call? lhs) (gensy)) |
| 2163 | + (else (make-ssavalue))))) |
| 2164 | + (if (not (eq? lhs lhs-)) |
| 2165 | + (if (vararg? lhs) |
| 2166 | + (set! end (cons (expand-forms `(= ,(cadr lhs) ,(cadr lhs-))) end)) |
| 2167 | + (set! end (cons (expand-forms `(= ,lhs ,lhs-)) end)))) |
| 2168 | + (expand-forms |
| 2169 | + (if (vararg? lhs-) |
| 2170 | + `(= ,(cadr lhs-) (call (top rest) ,xx ,@(if (eq? i 0) '() `(,st)))) |
| 2171 | + (lower-tuple-assignment |
| 2172 | + (if (= i (- n 1)) |
| 2173 | + (list lhs-) |
| 2174 | + (list lhs- st)) |
| 2175 | + `(call (top indexed_iterate) |
| 2176 | + ,xx ,(+ i 1) ,@(if (eq? i 0) '() `(,st)))))))) |
2160 | 2177 | (iota n)
|
2161 | 2178 | lhss)
|
| 2179 | + ,@(reverse end) |
2162 | 2180 | (unnecessary ,xx))))))
|
2163 | 2181 |
|
2164 | 2182 | ;; move an assignment into the last statement of a block to keep more statements at top level
|
|
0 commit comments