hotspot/src/share/vm/opto/connode.cpp
changeset 13886 8d82c4dfa722
parent 13728 882756847a04
child 13895 f6dfe4123709
equal deleted inserted replaced
13885:6b056026ecad 13886:8d82c4dfa722
   478     int opc = n->Opcode();
   478     int opc = n->Opcode();
   479     possible_alias = n->is_Phi() ||
   479     possible_alias = n->is_Phi() ||
   480         opc == Op_CheckCastPP ||
   480         opc == Op_CheckCastPP ||
   481         opc == Op_StorePConditional ||
   481         opc == Op_StorePConditional ||
   482         opc == Op_CompareAndSwapP ||
   482         opc == Op_CompareAndSwapP ||
   483         opc == Op_CompareAndSwapN;
   483         opc == Op_CompareAndSwapN ||
       
   484         opc == Op_GetAndSetP ||
       
   485         opc == Op_GetAndSetN;
   484   }
   486   }
   485   return possible_alias;
   487   return possible_alias;
   486 }
   488 }
   487 
   489 
   488 //------------------------------Value------------------------------------------
   490 //------------------------------Value------------------------------------------