Opened 12 years ago
Last modified 17 months ago
#292 new defect
Large generated functions problems
Reported by: | stassats | Owned by: | ehuelsmann |
---|---|---|---|
Priority: | major | Milestone: | 1.9.3 |
Component: | compiler | Version: | 1.3.0-dev |
Keywords: | Cc: | stassats@… | |
Parent Tickets: |
Description
Some components of f2cl, which are generated from Fortran, have functions with lots of code in it.
If there's too much code between go and a label, ABCL can't compile it.
(defmacro labels-galore (n) `(prog () (go label1) label2 ,@(loop for i to n collect `(print ,i) ) (return) label1 (go label2))) (defun test () (labels-galore 10000))
The assertion (<= -32768 JVM::OFFSET 32767) failed.
Increasing the number will eventually lead to a stack overflow.
Just a large body:
(defmacro large-body (n) `(progn ,@(loop for i to n collect `(print ,i)))) (defun test () (large-body 10000))
The assertion (< 0 (LENGTH JVM::C) 65536) failed.
Change History (18)
comment:1 Changed 12 years ago by
Cc: | stassats@… added |
---|
comment:2 Changed 11 years ago by
Milestone: | → 1.3.0 |
---|---|
Version: | → 1.3.0-dev |
comment:3 Changed 11 years ago by
Milestone: | 1.3.0 → 2.0 |
---|
comment:5 Changed 11 years ago by
Milestone: | 2.0.0 → 1.4.0 |
---|
comment:10 Changed 4 years ago by
Milestone: | 1.6.2 → 1.7.0 |
---|
comment:15 Changed 3 years ago by
Milestone: | 1.8.1 → 1.9.0 |
---|
comment:16 Changed 22 months ago by
Milestone: | 1.9.0 → 1.9.1 |
---|
comment:17 Changed 21 months ago by
Milestone: | 1.9.1 → 1.9.2 |
---|
comment:18 Changed 17 months ago by
Milestone: | 1.9.2 → 1.9.3 |
---|
Note: See
TracTickets for help on using
tickets.
Ticket retargeted after milestone closed