GithubHelp home page GithubHelp logo

Comments (2)

mrd avatar mrd commented on September 27, 2024

This is actually a much deeper issue but the root cause is that the recursive subroutine is not called by anything but itself. Therefore none of its basic blocks appear in a traversal of the basic block graph when starting from the beginning of the program, simply because they are not connected to the beginning of the program.

Because the basic blocks don't appear in a reverse postorder traversal then the dataflow analysis function dominators ignores them as well. This produces an error because the function genBackEdgeMap assumes that the result of dominators has an entry for every basic block (by definition, every basic block dominates itself).

This part can be 'fixed' by adding stub entries for every basic block but that doesn't really solve the problem: what to do with disconnected sections of the graph? There are dominance relations within the subgraph that can be extracted, but what is the meaning of 'reverse postorder traversal' of nodes that are not connected to the beginning of the program?

This only comes up in the context of supergraph construction, in which case the question becomes: what is the meaning of interprocedural analysis between procedures that are not connected?

from fortran-src.

mrd avatar mrd commented on September 27, 2024

fixed in 9de6d8e by refactoring BBGr to have a bbgrEntries field

from fortran-src.

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.