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

Relocate OMR::SupportsBigDecimalLongLookasideVersioning to OpenJ9 #5839

Merged
merged 1 commit into from
May 24, 2019
Merged
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
16 changes: 10 additions & 6 deletions runtime/compiler/codegen/J9CodeGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,9 @@ class OMR_EXTENSIBLE CodeGenerator : public OMR::CodeGeneratorConnector

bool wantToPatchClassPointer(const TR_OpaqueClassBlock *allegedClassPointer, const TR::Node *forNode);

bool getSupportsBigDecimalLongLookasideVersioning() { return _flags3.testAny(SupportsBigDecimalLongLookasideVersioning);}
void setSupportsBigDecimalLongLookasideVersioning() { _flags3.set(SupportsBigDecimalLongLookasideVersioning);}

// --------------------------------------------------------------------------
// GPU
//
Expand Down Expand Up @@ -476,12 +479,13 @@ class OMR_EXTENSIBLE CodeGenerator : public OMR::CodeGeneratorConnector

enum // Flags
{
HasFixedFrameC_CallingConvention = 0x00000001,
SupportsMaxPrecisionMilliTime = 0x00000002,
SupportsInlineStringCaseConversion = 0x00000004, /*! codegen inlining of Java string case conversion */
SupportsInlineStringIndexOf = 0x00000008, /*! codegen inlining of Java string index of */
SupportsInlineStringHashCode = 0x00000010, /*! codegen inlining of Java string hash code */
SupportsInlineConcurrentLinkedQueue = 0x00000020,
HasFixedFrameC_CallingConvention = 0x00000001,
SupportsMaxPrecisionMilliTime = 0x00000002,
SupportsInlineStringCaseConversion = 0x00000004, /*! codegen inlining of Java string case conversion */
SupportsInlineStringIndexOf = 0x00000008, /*! codegen inlining of Java string index of */
SupportsInlineStringHashCode = 0x00000010, /*! codegen inlining of Java string hash code */
SupportsInlineConcurrentLinkedQueue = 0x00000020,
SupportsBigDecimalLongLookasideVersioning = 0x00000040,
};

flags32_t _j9Flags;
Expand Down