Giter Site home page Giter Site logo

Comments (3)

marekmaskarinec avatar marekmaskarinec commented on May 27, 2024

Is anything stopping us from making weak pointers to stack objects, or is this just an incorrect runtime error?

from umka-lang.

vtereshkov avatar vtereshkov commented on May 27, 2024

@marekmaskarinec To use a weak pointer, we should first ensure that it is pointing to an existing object, i.e., an object that has not been deleted or replaced with another object at the same address. I don't know how to perform this check for a stack pointer. For a heap pointer it's much easier to do. The weak pointer is a pair of integers: the unique ID of the heap page and the offset within the page. Even if the page has been removed and some other page allocated at the same address, it would have a different ID, so the weak pointer would no longer be valid.

from umka-lang.

vtereshkov avatar vtereshkov commented on May 27, 2024

After eliminating the stack frame escape logic, the original problem is gone. However, a new problem is possible:

fn f(): weak ^int {
        a := 42
        return weak ^int(&a)
}

fn g() {
        a := 666         
}

fn main() {
        p := f()
        g()
        a := ^int(p)^
        printf(repr(a) + '\n')    // 666
}

from umka-lang.

Related Issues (20)

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.