Example #1
1
def test_reg_int():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr+8),
        add(eax, 10),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_int, [c_int])
    assert fun(1234) == 1244
Example #2
0
def log(name, operand, type=c_int):
    if isinstance(operand, Register):
        if isinstance(operand, st):
            type = c_float
            push_fun = [
                sub(esp, 4),
                mov(ebp, esp),
                fld(operand),
                fstp(ebp.addr),
            ]
        else:
            push_fun = push(operand)

        @function(None, type)
        def _debug(value):
            print(name % value)

        return [
            push(eax),
            push(ebx),
            push(ecx),
            push(edx),
            push(ebp),
            push_fun,
            mov(eax, _debug),
            call(eax),
            add(esp, 4),
            pop(ebp),
            pop(edx),
            pop(ecx),
            pop(ebx),
            pop(eax),
        ]
    else:
        raise Exception('operand is not suited: %s' % operand)
Example #3
0
def log(name, operand, type=c_int):
    if isinstance(operand, Register):
        if isinstance(operand, st):
            type = c_float
            push_fun = [
                sub(esp, 4),
                mov(ebp, esp),
                fld(operand),
                fstp(ebp.addr),
            ]
        else:
            push_fun = push(operand)
        @function(None, type)
        def _debug(value):
            print(name % value)
        return [
            push(eax),
            push(ebx),
            push(ecx),
            push(edx),
            push(ebp),
            push_fun,
            mov(eax, _debug),
            call(eax),
            add(esp, 4),
            pop(ebp),
            pop(edx),
            pop(ecx),
            pop(ebx),
            pop(eax),
        ]
    else:
        raise Exception('operand is not suited: %s' % operand)
Example #4
0
def test():
    loop = Label()
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr + 8),
        mov(ebx, ebp.addr + 12),
        mov(ecx, ebp.addr + 16),
        mov(edx, ebp.addr + 20),
        loop,
        fld(ebx.addr),
        fmul(ecx.addr),
        fstp(edx.addr),
        add(ebx, 4),
        add(ecx, 4),
        add(edx, 4),
        dec(eax),
        cmp(eax, 0),
        jg(loop),
        pop(ebp),
        ret(),
    )

    fun = prog.compile(argtypes=[
        c_int,
        POINTER(c_float),
        POINTER(c_float),
        POINTER(c_float),
    ])

    size = 1000
    a = (c_float * size)()
    b = (c_float * size)()
    c = (c_float * size)()
    a[:] = range(0, size)
    b[:] = range(size, size * 2)
    c[:] = [0] * size

    fun(size, a, b, c)
    #weirdly off by 1 for higher result numbers
    for i in range(size):
        assert c[i] == a[i] * b[i]
def test():
    loop = Label()
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr+8),
        mov(ebx, ebp.addr+12),
        mov(ecx, ebp.addr+16),
        mov(edx, ebp.addr+20),
        loop,
            fld(ebx.addr),
            fmul(ecx.addr),
            fstp(edx.addr),
            add(ebx, 4),
            add(ecx, 4),
            add(edx, 4),
            dec(eax),
        cmp(eax, 0),
        jg(loop),
        pop(ebp),
        ret(),
    )
   
    fun = prog.compile(argtypes=[
        c_int,
        POINTER(c_float),
        POINTER(c_float),
        POINTER(c_float),
    ])
   
    size = 1000
    a = (c_float*size)()
    b = (c_float*size)()
    c = (c_float*size)()
    a[:] = range(0, size)
    b[:] = range(size, size*2)
    c[:] = [0] * size
  
    fun(size, a, b, c)
    #weirdly off by 1 for higher result numbers
    for i in range(size):
        assert c[i] == a[i] * b[i]
Example #6
0
def test():
    a = (c_float*10)()
    a[2] = 2501.1
    b = (c_float*10)()
    b[2] = 1234.0

    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr+8),
        add(eax, 8),
        mov(edx, ebp.addr+12),
        add(edx, 8),
        mov(edx, edx.addr),
        mov(eax.addr, edx),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(argtypes=[POINTER(c_float), POINTER(c_float)])
    fun(a, b)
    assert a[2] == b[2]
Example #7
0
def test_reg_reg():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr+8),
        mov(ebx, ebp.addr+12),
        add(eax, ebx),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_int, [c_int, c_int])
    assert fun(1234, 20) == 1254
Example #8
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, foo),
        push(1234),
        call(eax),
        add(esp, 4),
        pop(ebp),
        ret(),
    )
    fun = prog.compile()
    fun()
    assert called == 1234
Example #9
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),

        mov(eax, foo),
        push(1234),
        call(eax),
        add(esp, 4),
        
        pop(ebp),
        ret(),
    )
    fun = prog.compile()
    fun()
    assert called == 1234
Example #10
0
def test_float():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        fld(ebp.addr + 8),
        sub(esp, 4),
        mov(ebp, esp),
        fstp(ebp.addr),
        mov(eax, bar),
        call(eax),
        add(esp, 4),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(None, [c_float])
    fun(1234.5)
    assert called == 1234.5
Example #11
0
def test_float():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        
        fld(ebp.addr+8),
        sub(esp, 4),
        mov(ebp, esp),
        fstp(ebp.addr),
        mov(eax, bar),
        call(eax),
        add(esp, 4),
        
        pop(ebp),
        ret(),
    )
    fun = prog.compile(None, [c_float])
    fun(1234.5)
    assert called == 1234.5
Example #12
0
def compile():
    outer_loop = Label()
    inner_loop = Label()
    distance_condition = Label()
    distance_else = Label()
    min_condition = Label()
    size_condition = Label()

    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr + 8),  #size
        cmp(eax, 2),
        jl(size_condition),
        mov(ecx, ebp.addr + 12),  #array pointer
        fld(ebp.addr + 16),  #force factor
        fld(ebp.addr + 20),  #minimum distance
        fld(ebp.addr + 24),  #maximum distance
        sub(eax, 1),
        mov(ebx, 4 * 4),
        mul(ebx),
        add(ecx, eax),
        mov(eax, ebp.addr + 12),  #array pointer
        outer_loop,
        mov(ebx, eax),
        add(ebx, 4 * 4),
        inner_loop,
        # x vector
        fld(eax.addr + 0 * 4),
        fsub(ebx.addr + 0 * 4),
        # y vector
        fld(eax.addr + 1 * 4),
        fsub(ebx.addr + 1 * 4),
        # distance
        fld(st(1)),
        fmul(st(0), st(0)),
        fld(st(1)),
        fmul(st(0), st(0)),
        faddp(),
        fsqrt(),
        #make sure the distance is bigger then 10
        fcomi(st(4)),
        fcmovb(st(4)),
        #only calculate if the distance is less then 200
        fcomi(st(3)),
        ja(distance_condition),
        #cube distance
        fld(st(0)),
        fmul(st(1), st(0)),
        fmulp(),
        #compute force vector
        fdiv(st(2), st(0)),
        fdivp(),
        fld(st(4)),
        fmul(st(2), st(0)),
        fmulp(),
        #accumulate y component
        fld(st(0)),
        fadd(eax.addr + 3 * 4),
        fstp(eax.addr + 3 * 4),
        fsubr(ebx.addr + 3 * 4),
        fstp(ebx.addr + 3 * 4),
        #accumulate x component
        fld(st(0)),
        fadd(eax.addr + 2 * 4),
        fstp(eax.addr + 2 * 4),
        fsubr(ebx.addr + 2 * 4),
        fstp(ebx.addr + 2 * 4),
        jmp(distance_else),
        distance_condition,
        fstp(st(0)),
        fstp(st(0)),
        fstp(st(0)),
        distance_else,
        add(ebx, 4 * 4),
        cmp(ebx, ecx),
        jbe(inner_loop),
        add(eax, 4 * 4),
        cmp(eax, ecx),
        jb(outer_loop),

        #restore the fpu
        fstp(st(0)),
        fstp(st(0)),
        fstp(st(0)),
        size_condition,
        pop(ebp),
        ret(),
    )

    fun = prog.compile(argtypes=[
        c_int,
        POINTER(c_float),
        c_float,
        c_float,
        c_float,
    ])

    return fun
Example #13
0
# -*- coding: utf-8 -*-
"""
    add
    ~~~

    :copyright: 2008 by Henri Tuhola <*****@*****.**>
    :license: GNU AGPL v3 or later, see LICENSE for more details.
"""

from ctypes import c_long

from pyasm import Program
from pyasm.instructions import mov, add, ret
from pyasm.registers import rax, rdi

if __name__ == '__main__':
    prog = Program(
        mov(rax, rdi),
        add(rax, 10),
        ret()
    )

    fun = prog.compile(restype=c_long, argtypes=[c_long])
    assert fun(1234) == 1244
Example #14
0
def compile():
    outer_loop = Label()
    inner_loop = Label()
    distance_condition = Label()
    distance_else = Label()
    min_condition = Label()
    size_condition = Label()

    prog = Program(
        push(ebp),
        mov(ebp, esp),

        mov(eax, ebp.addr+8), #size
        cmp(eax, 2),
        jl(size_condition),

        mov(ecx, ebp.addr+12), #array pointer

        fld(ebp.addr+16), #force factor
        fld(ebp.addr+20), #minimum distance
        fld(ebp.addr+24), #maximum distance

        sub(eax, 1),
        mov(ebx, 4*4),
        mul(ebx),
        add(ecx, eax),

        mov(eax, ebp.addr+12), #array pointer

        outer_loop,
            mov(ebx, eax),
            add(ebx, 4*4),
            inner_loop,
                # x vector
                fld(eax.addr+0*4),
                fsub(ebx.addr+0*4),
                # y vector 
                fld(eax.addr+1*4),
                fsub(ebx.addr+1*4),
                # distance
                fld(st(1)), 
                fmul(st(0), st(0)),
                fld(st(1)), 
                fmul(st(0), st(0)),
                faddp(),
                fsqrt(),
                #make sure the distance is bigger then 10
                fcomi(st(4)),
                fcmovb(st(4)),
                #only calculate if the distance is less then 200
                fcomi(st(3)),
                ja(distance_condition),
                    #cube distance
                    fld(st(0)),
                    fmul(st(1), st(0)),
                    fmulp(),
                    #compute force vector
                    fdiv(st(2), st(0)),
                    fdivp(),
                    fld(st(4)),
                    fmul(st(2), st(0)),
                    fmulp(),
                    #accumulate y component
                    fld(st(0)),
                    fadd(eax.addr+3*4),
                    fstp(eax.addr+3*4),
                    fsubr(ebx.addr+3*4),
                    fstp(ebx.addr+3*4),
                    #accumulate x component
                    fld(st(0)),
                    fadd(eax.addr+2*4),
                    fstp(eax.addr+2*4),
                    fsubr(ebx.addr+2*4),
                    fstp(ebx.addr+2*4),
                jmp(distance_else),
                distance_condition,
                    fstp(st(0)),
                    fstp(st(0)),
                    fstp(st(0)),
                distance_else,
            add(ebx, 4*4),
            cmp(ebx, ecx),
            jbe(inner_loop),
        add(eax, 4*4),
        cmp(eax, ecx),
        jb(outer_loop),
        
        #restore the fpu
        fstp(st(0)),
        fstp(st(0)),
        fstp(st(0)),

        size_condition,
        
        pop(ebp),
        ret(),
    )

    fun = prog.compile(argtypes=[
        c_int,
        POINTER(c_float),
        c_float,
        c_float,
        c_float,
    ])

    return fun