summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/misc.py
Commit message (Collapse)AuthorAgeFilesLines
* Change the graph structure to contain the code generator object forJeremy Hylton2000-11-061-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | embedded code objects (e.g. functions) rather than the generated code object. This change means that the compiler generates code for everything at the end, rather then generating code for each function as it finds it. Implementation note: _convert_LOAD_CONST in pyassem.py must be change to call getCode(). Other changes follow. Several changes creates extra edges between basic blocks to reflect control flow for loops and exceptions. These missing edges had gone unnoticed because they do not affect the current compilation process. pyassem.py: Add _enable_debug() and _disable_debug() methods that print instructions and blocks to stdout as they are generated. Add edges between blocks for instructions like SETUP_LOOP, FOR_LOOP, etc. Add pruneNext to get rid of bogus edges remaining after unconditional transfer ops (e.g. JUMP_FORWARD) Change repr of Block to omit block length. pycodegen.py: Make sure a new block is started after FOR_LOOP, etc. Change assert implementation to use RAISE_VARARGS 1 when there is no user-specified failure output. misc.py: Implement __contains__ and copy for Set.
* change name of Set method: items -> elements (avoids confusion withJeremy Hylton2000-03-161-1/+1
| | | | dict)
* satisfy the tabnanny (thanks to MH for noticing the problem)Jeremy Hylton2000-02-211-8/+8
|
* add flatten helper functionJeremy Hylton2000-02-161-0/+11
|
* add an __len__ to Set and StackJeremy Hylton2000-02-101-0/+4
|
* add remove method to setJeremy Hylton2000-02-101-0/+2
|
* checking in initial weekend's workJeremy Hylton2000-02-041-0/+18
compile.py: ASTVisitor framework plus bits of a code generator that should be bug-for-buf compatible with compile.c misc.py: Set and Stack helpers test.py: a bit of simple sample code that compile.py will work on