Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8260851 | openjdk8u292 | Andrew Hughes | P4 | Resolved | Fixed | b01 |
In current 8u-aarch64 code, TemplateTable::bytecode() is public:
public:
static Bytecodes::Code bytecode() { return _desc->bytecode(); }
private:
static BarrierSet* _bs; // Cache the barrier set.
This is 8u-aarch64-specific thing, though, and 8u upstream still has it private. It seem to be added to support simulator hack in Template::generate:
https://hg.openjdk.java.net/aarch64-port/jdk8u-shenandoah/hotspot/rev/38b753943a54#l14.1
It would go away with Simulator removal. But even before that, Template and TemplateTable are friends, so this hack is not needed. This change should be reverted.
public:
static Bytecodes::Code bytecode() { return _desc->bytecode(); }
private:
static BarrierSet* _bs; // Cache the barrier set.
This is 8u-aarch64-specific thing, though, and 8u upstream still has it private. It seem to be added to support simulator hack in Template::generate:
https://hg.openjdk.java.net/aarch64-port/jdk8u-shenandoah/hotspot/rev/38b753943a54#l14.1
It would go away with Simulator removal. But even before that, Template and TemplateTable are friends, so this hack is not needed. This change should be reverted.
- backported by
-
JDK-8260851 Revert TemplateTable::bytecode() visibility change
- Resolved
- relates to
-
JDK-8257192 Integrate AArch64 JIT port into 8u
- Resolved