data allocation in interpreters

weltraum@astrocat.de
30 May 2006 18:39:43 -0400

          From comp.compilers

Related articles
data allocation in interpreters weltraum@astrocat.de (2006-05-30)
Re: data allocation in interpreters pjb@informatimago.com (Pascal Bourguignon) (2006-05-30)
Re: data allocation in interpreters haberg@math.su.se (2006-06-03)
Re: data allocation in interpreters georgeps@xmission.com (George Peter Staplin) (2006-06-03)
Re: data allocation in interpreters gmt@CS.Arizona.EDU (2006-06-07)
| List of all articles for this month |

From: weltraum@astrocat.de
Newsgroups: comp.compilers
Date: 30 May 2006 18:39:43 -0400
Organization: http://groups.google.com
Keywords: interpreter, storage, question
Posted-Date: 30 May 2006 18:39:43 EDT

Hi,


What are common techniques for data allocation (strings, high-level
data structures) in interpreters? I could think about:


- malloc / free with trying to free unused data as soon as possible.
- same as above with some custom implementation of malloc / free (which
one?)
- full blown grabage collector.
- somthing hybrid (how?)


What do you think, how is it implemented in the famous interpreters?




Bye
Chris


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.