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

Remove supportsTrapsInTMRegion from OMR #3928

Merged
merged 1 commit into from
Jun 7, 2019
Merged
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
3 changes: 0 additions & 3 deletions compiler/codegen/OMRCodeGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1399,9 +1399,6 @@ class OMR_EXTENSIBLE CodeGenerator

bool supportsLengthMinusOneForMemoryOpts() {return false;}

// Java, likely Z
bool supportsTrapsInTMRegion() { return true; }

// Allows a platform code generator to assert that a particular node operation will use 64 bit values
// that are not explicitly present in the node datatype.
bool usesImplicit64BitGPRs(TR::Node *node) { return false; }
Expand Down
5 changes: 0 additions & 5 deletions compiler/z/codegen/OMRCodeGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,11 +299,6 @@ class OMR_EXTENSIBLE CodeGenerator : public OMR::CodeGenerator

bool supportsLengthMinusOneForMemoryOpts() {return true;}

bool supportsTrapsInTMRegion()
{
return TR::Compiler->target.isZOS();
}

bool inlineNDmemcpyWithPad(TR::Node * node, int64_t * maxLengthPtr = NULL);
bool codegenSupportsLoadlessBNDCheck() {return TR::Compiler->target.cpu.getSupportsArch(TR::CPU::zEC12);}
TR::Register *evaluateLengthMinusOneForMemoryOps(TR::Node *, bool , bool &lenMinusOne);
Expand Down