Skip to content

Commit

Permalink
Fix a crash in B2D
Browse files Browse the repository at this point in the history
Thanks to @janehmueller for reporting.
  • Loading branch information
fniephaus committed Oct 28, 2021
1 parent ba75056 commit b267a16
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2017-2021 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
Expand Down Expand Up @@ -2989,6 +2990,7 @@ private void initializeGETProcessing() {
if (getUsedGet() == 0) {
/* Nothing to do */
currentYPut(fillMaxYGet());
return;
}
sortGlobalEdgeTable();
currentYPut(edgeYValueOf(getBuffer(0)));
Expand Down

1 comment on commit b267a16

@TruffleSqueak-Bot
Copy link

Choose a reason for hiding this comment

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

Performance Report (b267a16)

Benchmarks ran on graalvm-ce-java11-21.3.0.

Steady (after 50 iterations)

Benchmark Name Min Geomean Median Mean Max Total (ms) Total (min)
Bounce 177 270 181.97 178 181.36 36393 0.61
DeltaBlue 236 382 329.4 330 329.18 65880 1.1
Havlak 1539 1659 1604.76 1613 1604.58 320951 5.35
Json 750 804 758.94 756 758.89 151787 2.53
List 897 945 907.35 907 907.33 181469 3.02
Mandelbrot 145 182 148.57 146 148.38 29714 0.5
NBody 271 317 275.82 273 275.73 55164 0.92
Permute 236 268 238.53 237 238.47 47706 0.8
Queens 256 321 264.62 258 264.33 52923 0.88
Richards 1084 1126 1088.74 1086 1088.71 217748 3.63
Sieve 214 264 218.96 215 218.64 43792 0.73
Storage 290 324 293.61 291 293.53 58721 0.98
Towers 368 561 375.12 369 374.35 75023 1.25
6463 7423 6686.36 6659 6683.48 1337271 22.29

b267a16-2-steady.svg

Warmup (first 50 iterations)

b267a16-3-warmup.svg

Please sign in to comment.