RelocActions is instantiated every time we need to apply a reloc. There's really no need for this, and the use of virtual member functions and function pointers obfuscates the code.
While C++ compilers can devirtualize much of this, they don't always devirtualize all of it. Let's make RelocActions all static.
While C++ compilers can devirtualize much of this, they don't always devirtualize all of it. Let's make RelocActions all static.
- links to
-
Review(master) openjdk/jdk/27649