Successfully reported this slideshow.
Your SlideShare is downloading. ×

Python Compiler Internals Presentation Slides

Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Upcoming SlideShare
Inside Python [OSCON 2012]
Inside Python [OSCON 2012]
Loading in …3
×

Check these out next

1 of 31 Ad

More Related Content

Similar to Python Compiler Internals Presentation Slides (20)

Advertisement

Recently uploaded (20)

Python Compiler Internals Presentation Slides

  1. 1. Python Compiler Internals Thomas Lee Shine Technologies, Melbourne
  2. 2. My Contributions to Python <ul><li>try/except/finally syntax for 2.5 </li></ul><ul><li>AST to bytecode compilation from Python </li></ul><ul><li>“ optimization” at the AST level </li></ul>
  3. 3. What will you get out of this? Compiler development != rocket science. No magic: it's just code.
  4. 4. Compiler? Isn't Python interpreted? Well, yes and no.
  5. 5. WTF It ... It's Java?
  6. 6. Aaanyway Let's screw with the compiler.
  7. 7. Erm ... Before we start ... A patch to fix a quirk in the build process. This has been reported on the bug tracker!
  8. 8. An overview of the compiler Tokens Parse Tree AST Bytecode + Data AST + Symtable Tokenizer Parser AST Translation Bytecode Generation Bytecode Optimization Execution Symtable Construction
  9. 9. New construct: the “unless” statement unless may_give_you_up: print “never gonna give you up...”
  10. 10. Semantics of “unless” Works just like “if not” ... if not would_consider_letting_you_down: print “never gonna let you down...”
  11. 11. Implementing “unless” <ul><li>Modify the Grammar </li></ul><ul><li>Change the AST definition </li></ul><ul><li>Generate bytecode for “unless” </li></ul>
  12. 12. So what's first? <ul><li>Modify the Grammar </li></ul><ul><li>Change the AST definition </li></ul><ul><li>Generate bytecode for “unless” </li></ul>
  13. 13. What does this change affect? Tokens Parse Tree AST Bytecode + Data AST + Symtable Tokenizer Parser AST Translation Bytecode Generation Bytecode Optimization Execution Symtable Construction
  14. 14. WTF is a “grammar”? Defines the syntactic structure of the language.
  15. 15. Why a tokenizer? Makes parsing easier.
  16. 16. So what does a tokenizer do, then? Generates a stream of events for the parser.
  17. 17. What does the parser do? Organises tokens into the structure defined by the grammar. This is the “parse tree”.
  18. 18. What's next? <ul><li>Modify the Grammar </li></ul><ul><li>Change the AST definition </li></ul><ul><li>Generate bytecode for “unless” </li></ul>
  19. 19. What's affected by this change? Tokens Parse Tree AST Bytecode + Data AST + Symtable Tokenizer Parser AST Translation Bytecode Generation Bytecode Optimization Execution Symtable Construction
  20. 20. What's an AST? Similar to a parse tree, but not bound to the syntax “ Abstract Syntax Tree”
  21. 21. Why does Python use an AST? Much easier to operate upon an AST than a parse tree.
  22. 22. AST reuse New constructs can sometimes be expressed using existing AST nodes ...
  23. 23. AST reuse ... so we could implement “unless” using “if” and “not” AST nodes. But then I wouldn't be able to show you the code generator ... Unless (test, body) = If ( Not (test), body)
  24. 24. What's next? <ul><li>Modify the Grammar </li></ul><ul><li>Change the AST definition </li></ul><ul><li>Generate bytecode for “unless” </li></ul>
  25. 25. What's affected by this change? Tokens Parse Tree AST Bytecode + Data AST + Symtable Tokenizer Parser AST Translation Bytecode Generation Bytecode Optimization Execution Symtable Construction
  26. 26. Generating bytecode for “unless” <ul><li>Add a hook for our new AST node </li></ul><ul><li>Generate bytecode implementing “unless” logic </li></ul><ul><li>Use basicblocks as labels for jumps </li></ul>
  27. 27. What about the rest of the compiler? Tokens Parse Tree AST Bytecode + Data AST + Symtable Tokenizer Parser AST Translation Bytecode Generation Bytecode Optimization Execution Symtable Construction
  28. 28. “unless” in action Let's see if this stuff works ...
  29. 29. Where to go from here? <ul><li>Use the Source. </li></ul><ul><li>Don't try to grok it all at once. </li></ul><ul><li>Don't be afraid to be wrong. </li></ul><ul><li>Annoy the python-dev mailing list, like I do! </li></ul>
  30. 30. Thanks!
  31. 31. Questions?

×