Guest User

Untitled

a guest
Jul 16th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. use dynops to implement M0 ops
  2.  
  3. Rewrite current print op in terms of M0 ops
  4.  
  5. Objects are just numbers, a la Smalltalk
  6.  
  7. Write M0 in terms of LLVM
  8.  
  9. No one optimized python for optimizability. That wasn't the point.
  10.  
  11. Simplest possble way in M0 to call C library?
  12. invoke function, arguments, returnvalue
  13.  
  14. Perl 5's syscall
  15.  
  16. Will GC be in M0 ?
  17.  
  18. Spec for M0 dependent on a model?
  19.  
  20. .NET could use their own GC.
  21.  
  22. Is alloc a part of M0?
  23.  
  24. Will the GC ever be written in M0 ?
  25.  
  26. We need temprorary storage in M0.
  27.  
  28. How do we store or get at a Context from M0 ?
  29.  
  30. Allison: I'm having a "Turtles all the way down" problem.
  31.  
  32. M1 - Context, contains:
  33. offset
  34. 0 PC
  35. 4 I
  36. 8 N
  37. 12 S
  38. 16 P
  39.  
  40. M0 : PC = load CTX, 0, 4
  41.  
  42. Is there a single global context? interp->current_ctx
  43.  
  44. Is there just one PC? Or does every "thread" have their own?
  45.  
  46. Context PMC at M1 is a Continuation
  47.  
  48. Context as implicit 1st op to all M0 ops
  49.  
  50. Immutable context data structure
  51.  
  52. How to write fork() in M0 ?
Add Comment
Please, Sign In to add comment