diff options
| author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-09-02 12:19:30 +0000 |
|---|---|---|
| committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-09-02 12:19:30 +0000 |
| commit | e5e77efb2d9832fe3d9fc1df33037307f2ea897f (patch) | |
| tree | e76417887fb3e3fe98f895eac82cfbd1ff060953 /gc.c | |
| parent | e909a59788359ab4d39fed1bb05583e03a33daf9 (diff) | |
| download | ruby-e5e77efb2d9832fe3d9fc1df33037307f2ea897f.tar.gz ruby-e5e77efb2d9832fe3d9fc1df33037307f2ea897f.tar.xz ruby-e5e77efb2d9832fe3d9fc1df33037307f2ea897f.zip | |
* gc.c (gc_sweep): does reclaim nodes in also compile time, if we can.
* ruby.c (load_file): omit GC if we can.
* parse.y (ruby_parser_stack_on_heap): new function.
* intern.h (ruby_parser_stack_on_heap): added.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
| -rw-r--r-- | gc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -863,8 +863,9 @@ gc_sweep() int freed = 0; int i, used = heaps_used; - if (ruby_in_compile) { - /* should not reclaim nodes during compilation */ + if (ruby_in_compile && ruby_parser_stack_on_heap()) { + /* should not reclaim nodes during compilation + if yacc's semantic stack is not allocated on machine stack */ for (i = 0; i < used; i++) { p = heaps[i]; pend = p + heaps_limits[i]; while (p < pend) { |
