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

Milestone 1 #13

Closed
wants to merge 8 commits into from
Closed

Milestone 1 #13

wants to merge 8 commits into from

Conversation

kdnilsen
Copy link
Contributor

@kdnilsen kdnilsen commented Jan 21, 2021

The objective of Milestone-1 is to demonstrate that certain heap regions can be designated as representing old-gen, card marking and remembered set implementation do not crash. Since the current implementation does not promote objects into old-gen space, much of the implementation of card marking and remembered set scanning is not exercised.

The following simple test program was used to demonstrate execution:

public class hello {
public static void main(String args[]) {
Node n = null;
for (int count = 10000; count > 0; count--) {
n = Node.upheaval(n);
System.out.print(count);
System.out.print(": Hello world: ");
for (int i = 0; i < args.length; i++) {
System.out.print(args[i]);
System.out.print(" ");
}
System.out.print("[node value is " + n.value() + "]");
System.out.println("");
}
}
}

import java.util.Random;

public class Node {
static private final int NeighborCount = 5;
static private Random random = new Random(46);

private int val;
private Object field_o;

private int[] field_ints;
private Node [] neighbors;

// Copy each neighbor of n into new node's neighbor array. Then overwrite
// arbitrarily selected neighbor with newly allocated leaf node.
public static Node upheaval(Node n) {
int first_val = random.nextInt();
if (first_val < 0) first_val = -first_val;
if (first_val < 0) first_val = 0;
Node result = new Node(first_val);
if (n != null) {
for (int i = 0; i < NeighborCount; i++)
result.neighbors[i] = n.neighbors[i];
}
int second_val = random.nextInt();
if (second_val < 0) second_val = -second_val;
if (second_val < 0) second_val = 0;
int overwrite_index = first_val % NeighborCount;
result.neighbors[overwrite_index] = new Node(second_val);
return result;
}

public Node(int val) {
this.val = val;
this.field_o = new Object();
this.field_ints = new int[8];
this.field_ints[0] = 0xca;
this.field_ints[1] = 0xfe;
this.field_ints[2] = 0xba;
this.field_ints[3] = 0xbe;
this.field_ints[4] = 0xba;
this.field_ints[5] = 0xad;
this.field_ints[6] = 0xba;
this.field_ints[7] = 0xbe;
this.neighbors = new Node[NeighborCount];
}

public int value() {
return val;
}
}


Progress

  • Change must not contain extraneous whitespace
  • Change must be properly reviewed

Reviewers

Download

$ git fetch https://git.openjdk.java.net/shenandoah pull/13/head:pull/13
$ git checkout pull/13

Sorry, something went wrong.

bernd-aws and others added 6 commits January 20, 2021 23:00

Verified

This commit was signed with the committer’s verified signature. The key has expired.
brainrake Márton Boros
…ections.
This is a placeholder for an internal commit that is being upstreamed.  The
lines of code affected by the original internal commit were already changed
by some previously applied redundant commit operation.  I'm leaving this
empty commit in place to facilitate audits of the source history.

As originally drafted, this commit removed lines 124 and 125 of
heuristics/shenandoahHeuristics.cpp:
  // We never allocate humongous objects in young gen. (TODO: revisit this).
  assert(region->affiliation() != ShenandoahRegionAffiliation::YOUNG_GENERATION, "Humongous object found in young gen.");

and added the following after line 315 in shenandoahFreeSet.cpp:

    r->set_affiliation(req.affiliation());
@bridgekeeper
Copy link

bridgekeeper bot commented Jan 21, 2021

👋 Welcome back kdnilsen! A progress list of the required criteria for merging this PR into genshen will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk openjdk bot added the rfr Pull request is ready for review label Jan 21, 2021
@mlbridge
Copy link

mlbridge bot commented Jan 21, 2021

Webrevs

Copy link
Collaborator

@rkennke rkennke left a comment

Choose a reason for hiding this comment

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

Very nice! Only one question regarding what looks like a rogue include. Also, maybe the testprogram can be readily included as first jtreg test that exercises genshen when running make test TEST=hotspot_gc_shenandoah (even when it probably doesn't test anything except that it doesn't crash)?

@@ -23,6 +23,7 @@
*/

#include "precompiled.hpp"
#include "gc/shenandoah/shenandoahHeap.inline.hpp"
Copy link
Collaborator

Choose a reason for hiding this comment

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

What is this include used for?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This include will be removed in the next commit.

Removed unneeded include in shenandoahCardTable.cpp.  Established a new
jtreg subdirectory for generational tests with accompanying changes to
TEST.groups to exercise the new tests.
@openjdk openjdk bot removed the rfr Pull request is ready for review label Feb 2, 2021
@openjdk openjdk bot added the rfr Pull request is ready for review label Feb 2, 2021
@adityamandaleeka
Copy link
Contributor

This looks good to me. I like the idea to include the test into hs_gc_shen as the first "real" jtreg test for genshen. In time, perhaps tier1 genshen tests (like "does card marking crash") should be in the Shenandoah tier1 tests, but for now I'm fine with it where you put it.

Copy link
Collaborator

@rkennke rkennke left a comment

Choose a reason for hiding this comment

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

Looks good to me!

@openjdk
Copy link

openjdk bot commented Feb 3, 2021

@kdnilsen This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

Milestone 1

Reviewed-by: rkennke, adityam

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been no new commits pushed to the genshen branch. If another commit should be pushed before you perform the /integrate command, your PR will be automatically rebased. If you prefer to avoid any potential automatic rebasing, please check the documentation for the /integrate command for further details.

As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@rkennke) but any other Committer may sponsor as well.

➡️ To flag this PR as ready for integration with the above commit message, type /integrate in a new comment. (Afterwards, your sponsor types /sponsor in a new comment to perform the integration).

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Feb 3, 2021
Copy link
Contributor

@adityamandaleeka adityamandaleeka left a comment

Choose a reason for hiding this comment

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

Sorry, I wrote my approval in a comment earlier but forgot to actually submit the review.

@kdnilsen
Copy link
Contributor Author

kdnilsen commented Feb 3, 2021

/integrate

@openjdk openjdk bot added the sponsor Pull request is ready to be sponsored label Feb 3, 2021
@openjdk
Copy link

openjdk bot commented Feb 3, 2021

@kdnilsen
Your change (at version 01265c5) is now ready to be sponsored by a Committer.

@rkennke
Copy link
Collaborator

rkennke commented Feb 4, 2021

/sponsor

@openjdk openjdk bot closed this Feb 4, 2021
@openjdk openjdk bot added integrated Pull request has been integrated and removed sponsor Pull request is ready to be sponsored ready Pull request is ready to be integrated rfr Pull request is ready for review labels Feb 4, 2021
@openjdk
Copy link

openjdk bot commented Feb 4, 2021

@rkennke @kdnilsen Pushed as commit 28fc342.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

None yet

5 participants