@@ -2603,7 +2603,7 @@ TR::Register *J9::Power::TreeEvaluator::BNDCHKwithSpineCHKEvaluator(TR::Node *no
2603
2603
TR_ASSERT(
2604
2604
arrayLengthChild->getOpCode().isConversion() || arrayLengthChild->getOpCodeValue() == TR::iloadi || arrayLengthChild->getOpCodeValue() == TR::iload
2605
2605
|| arrayLengthChild->getOpCodeValue() == TR::iRegLoad || arrayLengthChild->getOpCode().isLoadConst(),
2606
- "Expecting array length child under BNDCHKwithSpineCHK to be a conversion, iiload , iload, iRegLoad or iconst");
2606
+ "Expecting array length child under BNDCHKwithSpineCHK to be a conversion, iloadi , iload, iRegLoad or iconst");
2607
2607
2608
2608
TR::Register *condReg = srm->findOrCreateScratchRegister(TR_CCR);
2609
2609
@@ -6963,7 +6963,7 @@ static bool simpleReadMonitor(TR::Node *node, TR::CodeGenerator *cg, TR::Node *o
6963
6963
// look for the special case of a read monitor sequence that protects
6964
6964
// a single fixed-point load, ie:
6965
6965
// monenter (object)
6966
- // a simple form of iaload or iiload
6966
+ // a simple form of aloadi or iloadi
6967
6967
// monexit (object)
6968
6968
6969
6969
// note: before we make the following checks it is important that the
@@ -7026,8 +7026,8 @@ static bool simpleReadMonitor(TR::Node *node, TR::CodeGenerator *cg, TR::Node *o
7026
7026
return false;
7027
7027
}
7028
7028
// possible TODO: expand the complexity of loads we can handle
7029
- // iaload and iiload are indirect and have a child
7030
- // if we don't need to evaluate that child then the iaload or iiload
7029
+ // aloadi and iloadi are indirect and have a child
7030
+ // if we don't need to evaluate that child then the aloadi or iloadi
7031
7031
// consists of a single hardware instruction and satisfies our current
7032
7032
// constraint of simple
7033
7033
if (!nextTopNode->getFirstChild()->getRegister())
@@ -7152,7 +7152,7 @@ static bool simpleReadMonitor(TR::Node *node, TR::CodeGenerator *cg, TR::Node *o
7152
7152
TR::addDependency(conditions, offsetReg, TR::RealRegister::NoReg, TR_GPR, cg);
7153
7153
TR::addDependency(conditions, cndReg, TR::RealRegister::cr0, TR_CCR, cg);
7154
7154
7155
- // the following code is derived from the iaload and iiload evaluators
7155
+ // the following code is derived from the aloadi and iloadi evaluators
7156
7156
TR::Register *loadResultReg;
7157
7157
OMR::Power::NodeMemoryReference tempMR;
7158
7158
if (nextTopNode->getOpCodeValue() == TR::aloadi)
@@ -7184,7 +7184,7 @@ static bool simpleReadMonitor(TR::Node *node, TR::CodeGenerator *cg, TR::Node *o
7184
7184
tempMR = TR::LoadStoreHandler::generateSimpleLoadMemoryReference(cg, nextTopNode, 4);
7185
7185
loadOpCode = TR::InstOpCode::lwz;
7186
7186
}
7187
- // end of code derived from the iaload and iiload evaluators
7187
+ // end of code derived from the aloadi and iloadi evaluators
7188
7188
7189
7189
TR::addDependency(conditions, loadResultReg, TR::RealRegister::NoReg, TR_GPR, cg);
7190
7190
if (tempMR.getMemoryReference()->getBaseRegister() != objReg)
0 commit comments