Skip to content

Commit

Permalink
Merge pull request #3086 from hzongaro/atomic-power-alt
Browse files Browse the repository at this point in the history
Allow some Unsafe atomic ops to be inlined on POWER
  • Loading branch information
gita-omr authored Nov 13, 2018
2 parents 9169881 + 545a95f commit 05b4a2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions runtime/compiler/p/codegen/J9TreeEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11678,6 +11678,10 @@ J9::Power::CodeGenerator::inlineDirectCall(TR::Node *node, TR::Register *&result
resultReg = inlineSinglePrecisionFP(node, TR::InstOpCode::fsqrts, cg);
return true;
}
else if (OMR::CodeGeneratorConnector::inlineDirectCall(node, resultReg))
{
return true;
}
else if (methodSymbol)
{
switch (methodSymbol->getRecognizedMethod())
Expand Down

0 comments on commit 05b4a2b

Please sign in to comment.