Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Virtualized CodeGenerator Hierarchy #2639

Closed
wants to merge 45 commits into from

Conversation

samasri
Copy link
Contributor

@samasri samasri commented Jun 5, 2018

  • Commented out OMR_EXTENSIBLE from CodeGenerator class declarations
  • Removed self() from function calls of CodeGenerator

Since virtualizing the CodeGenerator hierarchy requires changes from both, the OMR and OpenJ9, projects this PR is linked to a related one in openJ9 achieving the same purpose.

Signed-off-by: Samer AL Masri [email protected]

@@ -74,8 +74,10 @@
// OMR_EXTENSIBLE
#if defined(__clang__) // Only clang is checking this macro for now
#define OMR_EXTENSIBLE __attribute__((annotate("OMR_Extensible")))
#deine OMR_API __attribute__((annotate("OMR_API")))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo here would cause an error

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks, will fix it!

@samasri samasri force-pushed the Virtualizing-CodeGenerator branch from 49793b1 to a424309 Compare July 9, 2018 16:57
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch 3 times, most recently from 182cb66 to aec51ba Compare August 30, 2018 18:08
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch 2 times, most recently from 42b6b39 to d756183 Compare September 6, 2018 19:32
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch 2 times, most recently from 233a454 to 249ed4e Compare September 17, 2018 14:32
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch 2 times, most recently from d2f1b9e to 253b3ec Compare October 10, 2018 19:33
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch from 253b3ec to 2322df9 Compare November 6, 2018 01:37
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch from 90ea05e to 09bbd6f Compare November 18, 2018 07:37
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
The function has no implementation in OMR so it is causing compilation error

Signed-off-by: Samer AL Masri <[email protected]>
Mistakenly removed self() from functions that do not belong to CodeGenerator classes

Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Tests won't work on this commit since continueConstruction functin is still not called. So the constructor is technically missing part of its implementation

Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
Signed-off-by: Samer AL Masri <[email protected]>
…ion and is never called in OMR

Signed-off-by: Samer AL Masri <[email protected]>
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch from 8da06d5 to 859aae5 Compare November 29, 2018 06:18
After virtualizing the functions of CodeGenerator, I am removing all the self keywords
This caused expressions like `TR::Compilation comp = comp()` to appear
Since this is not allowed in C++, I change the `comp` variable name to `compilation`

Signed-off-by: Samer AL Masri <[email protected]>
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch from 859aae5 to ba88f14 Compare November 29, 2018 07:32
This is part of the work to  virtualize overridden functions in CodeGenerator and removing self() functions
self()->insertInstructionPrefetches() is being called from OMR::CodeGenerator::doInstructionSelection()
When removing self() from the call, the compiler complains that the function is not declared in the header
Hence, I add it the function in OMR::CodeGenerator with an empty implementation

Signed-off-by: Samer AL Masri <[email protected]>
@samasri samasri force-pushed the Virtualizing-CodeGenerator branch from 1158448 to c4f8c0d Compare November 29, 2018 08:14
After virtualizing the functions of CodeGenerator, I am removing all the self keywords
This caused expressions like `TR::Compilation* machine = machine()` to appear
Since this is not allowed in C++, I change the `machine` variable name to `thisMachine`

Signed-off-by: Samer AL Masri <[email protected]>
@charliegracie
Copy link
Contributor

Is this PR still active or has it been super-ceded by newer work?

@samasri
Copy link
Contributor Author

samasri commented Dec 27, 2018

It is still active. This wiki page describes the current state of the project for which this PR belongs.

@0xdaryl
Copy link
Contributor

0xdaryl commented Nov 11, 2019

This PR was created as part of a research project led by Dr. Sarah Nadi at the University of Alberta. I discussed the resolution of this family of PRs with Dr. Nadi last week. We agreed that since an effective alternate solution to address the extensibility requirements of the OMR compiler has not yet been determined (investigative work to do so will be part of a research project as described by Dr. Nadi at the Feb 25, 2019 OMR Architecture Meeting in #3607), plus the fact that the classes touched by these PRs represent only a partial and incomplete "revirtualization" solution, and that further progress on these PRs is unlikely in the near term, that we will close these PRs in the main OMR repository.

@0xdaryl 0xdaryl closed this Nov 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants