Giter Club home page Giter Club logo

nox-rs's People

Contributors

0xd34d10cc avatar

Watchers

 avatar  avatar

nox-rs's Issues

Functions

Procedures were implemented in #12 & #13
The next step is to add return statement and call expression to implement functions.

JIT functions

Statement/SM functions were implemented in #14. The next step is compile them to amd64 machine code.

Control flow analysis

There is a problem in #15, following program:

fun lol() { return 42 } // function
fun kek() {}            // procedure

lol();
write(kek())

Fails to execute in Statements language (call to procedure kek in expression), but runs successfully in SM (writes 42 to output). Fix: add returns_value flag to Function and check that every Call in Expr .

Initialize globals & locals

Current checks for "attempt to reference uninitialized value" are not exhaustive. For example, this program passed all checks:

fun kek(b) {
    if b == 0 then
        x := 42
    fi
}

kek(1337);
write(x)

To make such programs determenistic we have to always initialize global and local variables with some constant value.

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.