The number of plab refills should be `(100-G1LastPLABAverageOccupancy)/TargetPLABWastePct`, instead of `G1LastPLABAverageOccupancy/TargetPLABWastePct`.
Based on the comment in G1EvacStats::compute_desired_plab_size:
```
total-alloc * target-waste = plab-size * (100 - occupancy)
=> #plab = #refills = total-alloc / plab-size = (100 - occupancy) / target-waste
```
Based on the comment in G1EvacStats::compute_desired_plab_size:
```
total-alloc * target-waste = plab-size * (100 - occupancy)
=> #plab = #refills = total-alloc / plab-size = (100 - occupancy) / target-waste
```