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

Multiply simplifier should ask CG before decomposition #7608

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions compiler/codegen/OMRCodeGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,19 @@ class OMR_EXTENSIBLE CodeGenerator
bool opCodeIsNoOp(TR::ILOpCode &opCode);
bool opCodeIsNoOpOnThisPlatform(TR::ILOpCode &opCode) {return false;}

/**
* @brief Determines whether integer multiplication decomposition should be deferred to the code generator.
*
* This function indicates if the decomposition of integer multiplication operations should
* be handled by the code generator instead of the optimizer (tree simplifier). Each architecture's
* code generator provides its own implementation of this function. By default, this function
* returns `false`, meaning that decomposition is not deferred to the code generator and the
* optimizer will attempt to simplify.
*
* @return true if integer multiplication decomposition should be deferred to the code generator, otherwise false.
*/
bool doIntMulDecompositionInCG() { return false; };

bool supportsSinglePrecisionSQRT() {return false;}
bool supportsFusedMultiplyAdd() {return false;}
bool supportsNegativeFusedMultiplyAdd() {return false;}
Expand Down
6 changes: 5 additions & 1 deletion compiler/optimizer/OMRSimplifierHandlers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8194,6 +8194,7 @@ TR::Node *imulSimplifier(TR::Node * node, TR::Block * block, TR::Simplifier * s)
}
}
else if (secondChildOp == TR::iconst &&
!s->comp()->cg()->doIntMulDecompositionInCG() &&
!s->getLastRun() &&
secondChild->getInt()!=0 && !isNonNegativePowerOf2(secondChild->getInt()) &&
secondChild->getInt() != TR::getMinSigned<TR::Int32>())
Expand Down Expand Up @@ -8588,7 +8589,10 @@ TR::Node *lmulSimplifier(TR::Node * node, TR::Block * block, TR::Simplifier * s)
}
}
}
else if (s->comp()->target().is64Bit() && secondChildOp==TR::lconst && !s->getLastRun() && secondChild->getLongInt()!=0 && !isNonNegativePowerOf2(secondChild->getLongInt()) && secondChild->getLongInt() != TR::getMinSigned<TR::Int64>())
else if (s->comp()->target().is64Bit() && !s->comp()->cg()->doIntMulDecompositionInCG() &&
secondChildOp == TR::lconst && !s->getLastRun() && secondChild->getLongInt() != 0 &&
!isNonNegativePowerOf2(secondChild->getLongInt()) &&
secondChild->getLongInt() != TR::getMinSigned<TR::Int64>())
{
decomposeMultiply(node, s, true);
}
Expand Down
2 changes: 2 additions & 0 deletions compiler/x/codegen/OMRCodeGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,8 @@ class OMR_EXTENSIBLE CodeGenerator : public OMR::CodeGenerator
bool supportsAddressRematerialization();
bool supportsXMMRRematerialization();

bool doIntMulDecompositionInCG() { return true; };

TR::Instruction *setLastCatchAppendInstruction(TR::Instruction *i) {return (_lastCatchAppendInstruction=i);}
TR::Instruction *getLastCatchAppendInstruction() {return _lastCatchAppendInstruction;}

Expand Down