Code Monkey home page Code Monkey logo

goto-cp312's Introduction

goto-cp312

A simple package that provide limited supports of goto keyword like C/C++.

Important

This package is only tested locally on Windows amd64 on CPython 3.12.2. Use this package with caution!

Usage

from goto import GOTO, LABEL, with_goto

@with_goto
def example_01() -> None:
    print("Hello, ")
    GOTO.label_01
    print("Skipped!")
    LABEL.label_01
    print("world!")


if __name__ == "__main__":
    example_01()

How this work

  1. Disassemble the raw function.
  2. Iterate over the disassembled contents.
  3. If there‘re LOAD_GLOBAL (GOTO), LOAD_ATTR and POP_TOP in continuing 3 lines, note down the byte position and the label, it's where we jump from.
  4. Hack full byte range of above 3 operations to NOP, except the first 2 bytes of LOAD_GLOBAL.
  5. If there're LOAD_GLOBAL (LABEL), LOAD_ATTR and POP_TOP in continuing 3 lines, note down the byte position the next line of POP_TOP and the label, it's where we jump to.
  6. Hack full byte range of above 3 operations to NOP.
  7. Iterate over all (label, from_, to) pair, check if from_ is smaller than to, to determine there should be JUMP_FORWARD or JUMP_BACKWARD.
  8. Hack the from_ byte position to JUMP_FORWARD or JUMP_BACKWARD according to step 7. If from_ is far away from to (jump more than 256 operations), add necessary EXTENDED_ARG.
Source code
from dis import dis

from goto import GOTO, LABEL, with_goto


@with_goto
def example_01() -> None:
    print("Hello, ")
    GOTO.label_01
    print("Skipped!")
    LABEL.label_01
    print("world!")


if __name__ == "__main__":
    dis(example_01)
Raw disassemble content
  7           0 RESUME                   0

  8           2 LOAD_GLOBAL              1 (NULL + print)
             12 LOAD_CONST               1 ('Hello, ')
             14 CALL                     1
             22 POP_TOP

  9          24 LOAD_GLOBAL              2 (GOTO)
             34 LOAD_ATTR                4 (label_01)
             54 POP_TOP

 10          56 LOAD_GLOBAL              1 (NULL + print)
             66 LOAD_CONST               2 ('Skipped!')
             68 CALL                     1
             76 POP_TOP

 11          78 LOAD_GLOBAL              6 (LABEL)
             88 LOAD_ATTR                4 (label_01)
            108 POP_TOP

 12         110 LOAD_GLOBAL              1 (NULL + print)
            120 LOAD_CONST               3 ('world!')
            122 CALL                     1
            130 POP_TOP
            132 RETURN_CONST             0 (None)
Hacked disassemble content
  6           0 RESUME                   0

  8           2 LOAD_GLOBAL              1 (NULL + print)
             12 LOAD_CONST               1 ('Hello, ')
             14 CALL                     1
             22 POP_TOP

  9          24 JUMP_FORWARD            42 (to 110)
             26 NOP
             28 NOP
             30 NOP
             32 NOP
             34 NOP
             36 NOP
             38 NOP
             40 NOP
             42 NOP
             44 NOP
             46 NOP
             48 NOP
             50 NOP
             52 NOP
             54 NOP

 10          56 LOAD_GLOBAL              1 (NULL + print)
             66 LOAD_CONST               2 ('Skipped!')
             68 CALL                     1
             76 POP_TOP

 11          78 NOP
             80 NOP
             82 NOP
             84 NOP
             86 NOP
             88 NOP
             90 NOP
             92 NOP
             94 NOP
             96 NOP
             98 NOP
            100 NOP
            102 NOP
            104 NOP
            106 NOP
            108 NOP

 12     >>  110 LOAD_GLOBAL              1 (NULL + print)
            120 LOAD_CONST               3 ('world!')
            122 CALL                     1
            130 POP_TOP
            132 RETURN_CONST             0 (None)

Limitations

  • It's able to jump out from nested loop (for or while), but you can't jump into them.
  • There're 3 EXTENDED_ARG operation before other operations at most, means that the jumping gap is no more than 4G. You can't jump such that HUGE distance. (This limitation has no chance to reach for human-written source code)
  • You can't jump to somewhere if they are "dead code" (Python intepreter will remove them directly), such as ...
    • Jump out from a while True loop, as the following snippets is unreachable

goto-cp312's People

Contributors

dragon1573 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.