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

8331733: [PPC64] saving and restoring CR is not needed at most places #19494

Closed
wants to merge 7 commits into from
2 changes: 1 addition & 1 deletion src/hotspot/cpu/ppc/gc/shared/barrierSetAssembler_ppc.cpp
Original file line number Diff line number Diff line change
@@ -342,7 +342,7 @@ int SaveLiveRegisters::iterate_over_register_mask(IterationAction action, int of
}
}
} else if (vm_reg->is_ConditionRegister()) {
ShouldNotReachHere(); // live condition registers are unexpected at this point
// NOP. Conditions registers are covered by save_LR_CR
} else if (vm_reg->is_VectorSRegister()) {
assert(SuperwordUseVSX, "or should not reach here");
VectorSRegister vs_reg = vm_reg->as_VectorSRegister();
2 changes: 1 addition & 1 deletion src/hotspot/cpu/ppc/gc/x/xBarrierSetAssembler_ppc.cpp
Original file line number Diff line number Diff line change
@@ -479,7 +479,7 @@ class XSaveLiveRegisters {
}
}
} else if (vm_reg->is_ConditionRegister()) {
ShouldNotReachHere(); // live condition registers are unexpected at this point.
// NOP. Conditions registers are covered by save_LR_CR
} else if (vm_reg->is_VectorSRegister()) {
assert(SuperwordUseVSX, "or should not reach here");
VectorSRegister vs_reg = vm_reg->as_VectorSRegister();