Beispiel #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
Beispiel #2
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
Beispiel #3
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
def test():
    start = Label()
    end = Label()

    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(ebx, ebp.addr + 8),
        mov(eax, 1),
        start,
        cmp(ebx, 1),
        jl(end),
        mul(ebx),
        dec(ebx),
        jmp(start),
        end,
        pop(ebp),
        ret(),
    )
    fun = prog.compile(restype=c_int, argtypes=[c_int])

    for i in range(
            13
    ):  #factorial of 12 is the maximum integer fitting a 32 bit register
        assert fun(i) == factorial(i)
Beispiel #5
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr+8),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(restype=c_int)
    assert fun(1234) == 1234
Beispiel #6
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(ebx, 1234),
        log('ebx is', ebx),
        pop(ebp),
        ret(),
    )
    fun = prog.compile()
    fun()
Beispiel #7
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr + 8),
        inc(eax),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_int, [c_int])
    assert fun(1234) == 1235
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        fld(ebp.addr+8),
        fmul(ebp.addr+12),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_float, [c_float, c_float])
    assert fun(4, 2) == 8.0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        fld(ebp.addr + 8),
        fmul(ebp.addr + 12),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_float, [c_float, c_float])
    assert fun(4, 2) == 8.0
Beispiel #10
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
Beispiel #11
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)
Beispiel #12
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)
Beispiel #13
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),

        mov(ebx, 1234),
        log('ebx is', ebx),
        
        pop(ebp),
        ret(),
    )
    fun = prog.compile()
    fun()
Beispiel #14
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr+8),
        cmp(eax, 100),
        pushfd(),
        pop(eax),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_int, [c_int])

    assert fun(99) & CF
    assert fun(100) & ZF
    assert not (fun(101) & CF  or fun(101) & ZF)
Beispiel #15
0
def test():
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(eax, ebp.addr + 8),
        cmp(eax, 100),
        pushfd(),
        pop(eax),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_int, [c_int])

    assert fun(99) & CF
    assert fun(100) & ZF
    assert not (fun(101) & CF or fun(101) & ZF)
Beispiel #16
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
Beispiel #17
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
Beispiel #18
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]
Beispiel #20
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]
Beispiel #21
0
def test_float():
    label = Label()
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        fld(ebp.addr+8),
        fld(ebp.addr+12),
        fcomi(st(1)),
        fstp(st(0)),
        fstp(st(0)),
        ja(label),
        mov(eax, 1),
        pop(ebp),
        ret(),
        label,
        mov(eax, 2),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_int, [c_float, c_float])
    assert fun(10, 20) == 2
    assert fun(20, 10) == 1
Beispiel #22
0
def test_float():
    label = Label()
    prog = Program(
        push(ebp),
        mov(ebp, esp),
        fld(ebp.addr + 8),
        fld(ebp.addr + 12),
        fcomi(st(1)),
        fstp(st(0)),
        fstp(st(0)),
        ja(label),
        mov(eax, 1),
        pop(ebp),
        ret(),
        label,
        mov(eax, 2),
        pop(ebp),
        ret(),
    )
    fun = prog.compile(c_int, [c_float, c_float])
    assert fun(10, 20) == 2
    assert fun(20, 10) == 1
Beispiel #23
0
def test():
    start = Label()
    end = Label()

    prog = Program(
        push(ebp),
        mov(ebp, esp),
        mov(ebx, ebp.addr+8),
        mov(eax, 1),
        start,
        cmp(ebx, 1),
        jl(end),
        mul(ebx),
        dec(ebx),
        jmp(start),
        end,
        pop(ebp),
        ret(),
    )
    fun = prog.compile(restype=c_int, argtypes=[c_int])

    for i in range(13): #factorial of 12 is the maximum integer fitting a 32 bit register
        assert fun(i) == factorial(i)
Beispiel #24
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
Beispiel #25
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
Beispiel #26
0
def test():
    prog = Program(push(ebp), mov(ebp, esp), mov(eax, ebp.addr + 8), inc(eax), pop(ebp), ret())
    fun = prog.compile(c_int, [c_int])
    assert fun(1234) == 1235