Satyajit Sarangi bio photo

Satyajit Sarangi

I am a software engineer currently residing in Bay Area.

Email Twitter LinkedIn Github Stackoverflow

Posts Tagged “python3”

Posts Tagged “python3”

Debugger for PyVyM

python3 debugger virtualmachine vm


January 11, 2016 . .
PyVyM is a Virtual Machine for python and this post describes a debugger for that VM.

A simple python based JIT

python3 python jit


January 10, 2016 . .
A simple python based JIT with a C module backend which uses mmap to execute arbitrary x86 code.

A Simple Type Verifier for Python Functions using Decorators

python3 python decorators type verifier


January 8, 2016 . .
A Simple Type Verifier for Python Functions using Decorators. Type verification is useful in debugging or when code is written to handle only a specific set of types.

PyVyM - Part 2. Design description

virtualmachine vm python3 python


January 6, 2016 . .
Description of the design of a python based VM. This post details the model, exec_frame stack and other details sorrounding the implementation.

PyVyM - A python based VM for 'Python'

virtualmachine vm python3 python


January 5, 2016 . .
A virtual machine for python designed in python. It also has an accompanying debugger which will be described in a later post.