Skip to content

Commit

Permalink
Remove CLQ queries as they have migrated to OpenJ9
Browse files Browse the repository at this point in the history
As part of eclipse-openj9/openj9#3763 we have migrated the CLQ related queries
into OpenJ9 where they really belong. This commit removes the OMR
pieces of the code which were left over.

Signed-off-by: Filip Jeremic <fjeremic@ca.ibm.com>
  • Loading branch information
fjeremic committed Nov 29, 2018
1 parent 36bc5b0 commit 4940504
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
5 changes: 1 addition & 4 deletions compiler/codegen/OMRCodeGenerator.hpp
Expand Up @@ -1486,9 +1486,6 @@ class OMR_EXTENSIBLE CodeGenerator
bool getSupportsTMDoubleWordCASORSet() { return _flags3.testAny(SupportsTMDoubleWordCASORSet);}
void setSupportsTMDoubleWordCASORSet() { _flags3.set(SupportsTMDoubleWordCASORSet);}

bool getSupportsTMHashMapAndLinkedQueue() { return _flags4.testAny(SupportsTMHashMapAndLinkedQueue);}
void setSupportsTMHashMapAndLinkedQueue() { _flags4.set(SupportsTMHashMapAndLinkedQueue);}

bool getSupportsAtomicLoadAndAdd() { return _flags4.testAny(SupportsAtomicLoadAndAdd);}
void setSupportsAtomicLoadAndAdd() { _flags4.set(SupportsAtomicLoadAndAdd);}

Expand Down Expand Up @@ -1785,7 +1782,7 @@ class OMR_EXTENSIBLE CodeGenerator
// = 0x02000000, NOW AVAILABLE
// = 0x04000000, NOW AVAILABLE
TrackingInMemoryKilledLoads = 0x08000000,
SupportsTMHashMapAndLinkedQueue = 0x10000000,
// AVAILABLE = 0x10000000,
SupportsLM = 0x20000000,

DummyLastEnum4
Expand Down
3 changes: 0 additions & 3 deletions compiler/p/codegen/OMRCodeGenerator.cpp
Expand Up @@ -287,9 +287,6 @@ OMR::Power::CodeGenerator::CodeGenerator() :
if (TR::Compiler->target.cpu.getPPCSupportsLM())
self()->setSupportsLM();

if(self()->getSupportsTM())
self()->setSupportsTMHashMapAndLinkedQueue();

if (TR::Compiler->target.cpu.getPPCSupportsVMX() && TR::Compiler->target.cpu.getPPCSupportsVSX())
self()->setSupportsAutoSIMD();

Expand Down
3 changes: 0 additions & 3 deletions compiler/z/codegen/OMRCodeGenerator.cpp
Expand Up @@ -712,9 +712,6 @@ OMR::Z::CodeGenerator::CodeGenerator()
self()->setSupportsTM();
}

if(self()->getSupportsTM())
self()->setSupportsTMHashMapAndLinkedQueue();

if (_processorInfo.supportsArch(TR_S390ProcessorInfo::TR_z13) && !comp->getOption(TR_DisableArch11PackedToDFP))
self()->setSupportsFastPackedDFPConversions();

Expand Down

0 comments on commit 4940504

Please sign in to comment.