Inline assembly in Python
Project description
il - inline assembly in Python 3
Examples
- Decorator API - simple
import il
import ctypes
@il.asm
def add_ints(rdi=ctypes.c_int32, rsi=ctypes.c_int32):
"""
# return sum of two 32-bit integers
# 64-bit Linux/MacOS call convention
#
.intel_syntax noprefix
mov rax, 0
mov eax, edi
add eax, esi
ret
"""
return ctypes.c_int32
print(add_ints(43, -1))
- Function API - powerful
add_ints = il.def_asm(
name="add_ints",
prototype=ctypes.CFUNCTYPE(ctypes.c_int32, # return value (eax)
ctypes.c_int32, # 1st param (edi)
ctypes.c_int32), # 2nd param (esi)
code="""
.intel_syntax noprefix
mov rax, 0
mov eax, edi
add eax, esi
ret
""")
print(add_ints(43, -1))
Dependencies
-
If object code is available: no dependencies outside Python standard library.
ctypes
from the standard library is needed for loading and running object code. -
If object code is not available:
as
andobjcopy
(frombinutils
) are required for compiling assembly.
Install
$ sudo python3 setup.py install
Library API documentation and call conventions
$ python3 -c 'import il; help(il)'
How it works
-
Assume that
mylib.py
contains inlined assembly. By default,il
looks for object code frommylib.py.il
. If found, that code will be executed when inlined functions are called. -
If object code is not found,
il
uses binutils:as
(assembler) andobjcopy
to compile the assembly on-the-fly and extract object code from the result. Object code is saved tomylib.py.il
for later use. -
Note:
il
does not link object code before running it. -
You can view contents of
mylib.py.il
usingil
:$ python3 -c 'import il; print(il.dump_lib("mylib.py.il", disasm=False))'
(Use
disasm=True
to disassemble the code in the dump. Requiresobjdump
.)
Debugging inlined assembly
-
Import the library, print the pid of the Python process and the address of the function that you want to debug:
>>> import mylib >>> import os >>> os.getpid() 12345 >>> print(mylib.myfunc.il_addr) 21954560
-
Attach GDB to the Python process, set a breakpoint to the address and let the Python process continue.
$ gdb -p 12345 (gdb) layout asm (gdb) break *21954560 (gdb) cont
-
Call the function in Python
>>> mylib.myfunc()
-
Now you can step assembly instructions and see register values in GDB:
(gdb) ni (gdb) info registers
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file il-0.3.tar.gz
.
File metadata
- Download URL: il-0.3.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d8a1b2777d2b5ca8635766b6e0155420ec4bf3ac9f24c5ab8947936b269629e |
|
MD5 | 9508d54d8b57a7397cc78ec52cdb9582 |
|
BLAKE2b-256 | 8298984ab586c7f77285512bdd907e00508817b85ac9a06c791d221b7d9a15c6 |
File details
Details for the file il-0.3-py3-none-any.whl
.
File metadata
- Download URL: il-0.3-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eaf1a4dca9810bb9b203dd8ecf4235a52dc14d54780176b1395e2d76171689f2 |
|
MD5 | 76168019a4adb6ffb92d7e4d298d2790 |
|
BLAKE2b-256 | a17cc0b8ea34aa852b3173185b1440a4031722c1cb1e2002bb908a8076d498dd |