Changeset 7736
- Timestamp:
- Nov 24, 2007, 6:32:26 PM (17 years ago)
- File:
-
- 1 edited
-
branches/working-0711/ccl/lib/nfcomp.lisp (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/lib/nfcomp.lisp
r6505 r7736 1315 1315 (let* ((nb (ash (+ n 7) -3))) 1316 1316 (fasl-out-ivect v 0 nb)) 1317 ( break"need to byte-swap ~a" v))))1317 (compiler-bug "need to byte-swap ~a" v)))) 1318 1318 1319 1319 (defun fasl-dump-8-bit-ivector (v op) … … 1358 1358 (let* ((nb (ash n 3))) 1359 1359 (fasl-out-ivect v 0 nb)) 1360 ( break"need to byte-swap ~a" v))))1360 (compiler-bug "need to byte-swap ~a" v)))) 1361 1361 1362 1362 (defun fasl-dump-double-float-vector (v) … … 1368 1368 (fasl-out-ivect v (- target::misc-dfloat-offset 1369 1369 target::misc-data-offset) nb)) 1370 ( break"need to byte-swap ~a" v))))1370 (compiler-bug "need to byte-swap ~a" v)))) 1371 1371 1372 1372 ;;; This is used to dump functions and "xfunctions". … … 1378 1378 (if (and (not (eq *fasl-backend* *host-backend*)) 1379 1379 (typep f 'function)) 1380 ( break"Dumping a native function constant ~s during cross-compilation." f))1380 (compiler-bug "Dumping a native function constant ~s during cross-compilation." f)) 1381 1381 (if (and (= (typecode f) target::subtag-xfunction) 1382 1382 (= (typecode (uvref f 0)) target::subtag-u8-vector)) … … 1392 1392 (if (and (not (eq *fasl-backend* *host-backend*)) 1393 1393 (typep f 'function)) 1394 ( break"Dumping a native function constant ~s during cross-compilation." f))1394 (compiler-bug "Dumping a native function constant ~s during cross-compilation." f)) 1395 1395 (if (and (= (typecode f) target::subtag-xfunction) 1396 1396 (= (typecode (uvref f 0)) target::subtag-u8-vector)) … … 1441 1441 (if (and (not (eq *fasl-backend* *host-backend*)) 1442 1442 (typep c 'code-vector)) 1443 ( break"Dumping a native code-vector constant ~s during cross-compilation." c))1443 (compiler-bug "Dumping a native code-vector constant ~s during cross-compilation." c)) 1444 1444 (let* ((n (uvsize c))) 1445 1445 (fasl-out-opcode $fasl-code-vector c)
Note:
See TracChangeset
for help on using the changeset viewer.
