Code Monkey home page Code Monkey logo

Comments (2)

MichalStrehovsky avatar MichalStrehovsky commented on July 20, 2024 1

Basically it feels like the success criteria for this is to get rid of CompilationOptions class in it's entirety and allow the driver to compose the LEGO bricks (classes) that constitute the compiler according to the command line arguments and run the Compile method.

from corert.

MichalStrehovsky avatar MichalStrehovsky commented on July 20, 2024

Rough execution plan:

  • Make it possible for CompilationModuleGroup to be instantiated outside of Compilation

    Delete ICompilationRootProvider interface – change the pattern from "compilation group roots everything that should be a root" to "compilation group provides a list of roots for everyone who might be interested"

    In the Compilation's Compile method, iterate over all the roots in the compilation group and root them

    Move the CompilationGroup creation out to the Driver EXE, instantiate and pass the correct one to Compilation based on command line args (multi or single module)

    Delete the MultiFile property on CompilationOptions

  • Remove IsCppCodegen parameter from the NodeFactory constructor

    Instead of the Boolean flag, make NodeFactory accept a new interface with two methods: IMethodNode CreateMethodNode(MethodDesc method) and void CompileMethods(List<DependencyNodeCore<NodeFactory>> obj)

    Have Compilation implement the new interface.

    At this point we need to add two classes deriving from Compilation: RyuJitCompilation and CppCompilation. The split should be obvious.

    Instantiate the correct Compilation class in the driver EXE.

    Delete the IsCppCodegen CompilationOption.

    This will also require a bit of work on NameMangler to make it stop depending on Compilation (it is a weird dependency and unnecessary one).

  • Simplify the NodeFactory construction

    The TypeInitialization class instance passed to NodeFactory is awkward. I see two options: Merge TypeInitialization with CompilerTypeSystemContext (preferred), or hang a TypeInitialization instance as a property on CompilerTypeSystemContext

    Either way, TypeInitialization is no longer created in Compilation

    Expose a public CompilerTypeSystemContext property on the NodeFactory so that the nodes have access to it all the time. Remove the TypeInitialization constructor argument on NodeFactory and the property.

    Move NodeFactory and CompilerTypeSystemContext creation out of Compilation into the driver EXE. Pass the instantiated versions to Compilation

    Delete a few more CompilationOptions

from corert.

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.