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

Virtualizing CodeGenerator fails #53

Closed
2 tasks done
samasri opened this issue Jun 7, 2018 · 1 comment
Closed
2 tasks done

Virtualizing CodeGenerator fails #53

samasri opened this issue Jun 7, 2018 · 1 comment

Comments

@samasri
Copy link
Owner

samasri commented Jun 7, 2018

Tasks

  • Remove OMR_API from PRs
  • Try to build it locally and fix issues by creating default implementations

Description of problem

The PR to virtualize CodeGenerator is failing. The main problem seems to be from virtualizing generateSwitchToInterpreterPrePrologue(TR::Instruction*, uint8_t, uint8_t).
Error message:

../../libtestjit_base.a(OMRCodeGenerator.o):(.data.rel.ro._ZTVN3OMR3X865AMD6413CodeGeneratorE[_ZTVN3OMR3X865AMD6413CodeGeneratorE]+0x1d0): undefined reference to `OMR::X86::CodeGenerator::generateSwitchToInterpreterPrePrologue(TR::Instruction*, unsigned char, unsigned char)'

This function is declared in OMR::X86::CodeGenerator however it is not defined in the OMR project. It is, however, defined in J9::X86::CodeGenerator. Hence, when compiling the OMR project independently of OpenJ9 (as in Travis CI), the linker would not be able to find a definition for the virtual function which causes an error.

I tried adding = 0 to the end of the functions declaration making it pure virtual; since pure virtual functions are allowed not to have a declaration which caused another error:

../../compiler/compile/OMRCompilation.cpp:188:56: error: invalid new-expression of abstract class type ‘TR::CodeGenerator’
    return new (comp->trHeapMemory()) TR::CodeGenerator();
@samasri
Copy link
Owner Author

samasri commented Jun 7, 2018

Proposed solution: add default implementation for such cases

samasri added a commit that referenced this issue Jun 9, 2018
Signed-off-by: Samer AL Masri <[email protected]>
samasri added a commit that referenced this issue Jun 9, 2018
@samasri samasri closed this as completed Jun 10, 2018
samasri added a commit that referenced this issue Jul 3, 2018
samasri added a commit that referenced this issue Jul 3, 2018
samasri added a commit that referenced this issue Jul 9, 2018
Signed-off-by: Samer AL Masri <[email protected]>
samasri added a commit that referenced this issue Jul 9, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant