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

Summary: Disable JFR support in windows/mac build #16

Merged
merged 1 commit into from
Sep 18, 2019
Merged

Summary: Disable JFR support in windows/mac build #16

merged 1 commit into from
Sep 18, 2019

Conversation

D-D-H
Copy link
Contributor

@D-D-H D-D-H commented Sep 16, 2019

Test Plan: existing test cases

Reviewed-by: shiyue, kuaiwei

Issue: dragonwell-project/dragonwell8#52

Test Plan: existing test cases

Reviewed-by: shiyue, kuaiwei

Issue: dragonwell-project/dragonwell8#52
@@ -187,6 +187,29 @@ class DepSuccs : public StackObj {


// ========================= SuperWord =====================
//------------------------------OrderedPair---------------------------
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hotspot with JVMCI also move OrderedPair up

// JVMCI: OrderedPair is moved up to deal with compilation issues on Windows
//------------------------------OrderedPair---------------------------
// Ordered pair of Node*.
class OrderedPair VALUE_OBJ_CLASS_SPEC {
 protected:
  Node* _p1;
  Node* _p2;
 public:
  OrderedPair() : _p1(NULL), _p2(NULL) {}
  OrderedPair(Node* p1, Node* p2) {
    if (p1->_idx < p2->_idx) {
      _p1 = p1; _p2 = p2;
    } else {
      _p1 = p2; _p2 = p1;
    }
  }

  bool operator==(const OrderedPair &rhs) {
    return _p1 == rhs._p1 && _p2 == rhs._p2;
  }
  void print() { tty->print("  (%d, %d)", _p1->_idx, _p2->_idx); }

  static const OrderedPair initial;
};

// -----------------------------SuperWord---------------------------------
// Transforms scalar operations into packed (superword) operations.

@D-D-H D-D-H merged commit eb3bc69 into dragonwell-project:master Sep 18, 2019
@D-D-H D-D-H deleted the build branch September 18, 2019 12:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants