mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8252372: Check if cloning is required to move loads out of loops in PhaseIdealLoop::split_if_with_blocks_post()
Reviewed-by: thartmann, kvn
This commit is contained in:
parent
039441689d
commit
9d305b9c06
14 changed files with 541 additions and 215 deletions
|
@ -764,6 +764,11 @@ int InstructForm::memory_operand(FormDict &globals) const {
|
|||
bool InstructForm::captures_bottom_type(FormDict &globals) const {
|
||||
if (_matrule && _matrule->_rChild &&
|
||||
(!strcmp(_matrule->_rChild->_opType,"CastPP") || // new result type
|
||||
!strcmp(_matrule->_rChild->_opType,"CastDD") ||
|
||||
!strcmp(_matrule->_rChild->_opType,"CastFF") ||
|
||||
!strcmp(_matrule->_rChild->_opType,"CastII") ||
|
||||
!strcmp(_matrule->_rChild->_opType,"CastLL") ||
|
||||
!strcmp(_matrule->_rChild->_opType,"CastVV") ||
|
||||
!strcmp(_matrule->_rChild->_opType,"CastX2P") || // new result type
|
||||
!strcmp(_matrule->_rChild->_opType,"DecodeN") ||
|
||||
!strcmp(_matrule->_rChild->_opType,"EncodeP") ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue