[pypy-svn] r58471 - pypy/branch/gc-experiments/pypy/config

fijal at codespeak.net fijal at codespeak.net
Mon Sep 29 13:22:52 CEST 2008


Author: fijal
Date: Mon Sep 29 13:22:50 2008
New Revision: 58471

Modified:
   pypy/branch/gc-experiments/pypy/config/translationoption.py
Log:
Add mark&compact translation option


Modified: pypy/branch/gc-experiments/pypy/config/translationoption.py
==============================================================================
--- pypy/branch/gc-experiments/pypy/config/translationoption.py	(original)
+++ pypy/branch/gc-experiments/pypy/config/translationoption.py	Mon Sep 29 13:22:50 2008
@@ -45,7 +45,7 @@
     # gc
     ChoiceOption("gc", "Garbage Collection Strategy",
                  ["boehm", "ref", "marksweep", "semispace", "statistics",
-                  "generation", "hybrid", "none"],
+                  "generation", "hybrid", "markcompact", "none"],
                   "ref", requires={
                      "ref": [("translation.rweakref", False), # XXX
                              ("translation.gctransformer", "ref")],
@@ -57,6 +57,7 @@
                      "generation": [("translation.gctransformer", "framework")],
                      "hybrid": [("translation.gctransformer", "framework")],
                      "boehm": [("translation.gctransformer", "boehm")],
+                     "markcompact": [("translation.gctransformer", "framework")],
                      },
                   cmdline="--gc"),
     ChoiceOption("gctransformer", "GC transformer that is used - internal",



More information about the Pypy-commit mailing list