2018-08-11 04:13:00 +02:00
|
|
|
From 2720feea57f8841d8dcc99e884bc9b948b80f0b3 Mon Sep 17 00:00:00 2001
|
2018-07-23 18:58:01 +02:00
|
|
|
From: Andrew Steinborn <git@steinborn.me>
|
2018-07-23 19:10:06 +02:00
|
|
|
Date: Mon, 23 Jul 2018 13:08:19 -0400
|
2018-07-23 18:58:01 +02:00
|
|
|
Subject: [PATCH] Optimize RegistryID.c()
|
|
|
|
|
|
|
|
This is a frequent hotspot for world loading/saving.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/RegistryID.java b/src/main/java/net/minecraft/server/RegistryID.java
|
2018-08-06 01:46:43 +02:00
|
|
|
index bde5714dd6..a01cda9d81 100644
|
2018-07-23 18:58:01 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/RegistryID.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/RegistryID.java
|
2018-07-23 19:10:06 +02:00
|
|
|
@@ -14,12 +14,14 @@ public class RegistryID<K> implements Registry { // Paper - decompile fix
|
2018-07-23 18:58:01 +02:00
|
|
|
private K[] d;
|
|
|
|
private int e;
|
|
|
|
private int f;
|
|
|
|
+ private java.util.BitSet usedIds; // Paper
|
|
|
|
|
|
|
|
public RegistryID(int i) {
|
|
|
|
i = (int) ((float) i / 0.8F);
|
2018-07-23 19:10:06 +02:00
|
|
|
this.b = (K[]) (new Object[i]); // Paper - decompile fix
|
2018-07-23 18:58:01 +02:00
|
|
|
this.c = new int[i];
|
2018-07-23 19:10:06 +02:00
|
|
|
this.d = (K[]) (new Object[i]); // Paper - decompile fix
|
2018-07-23 18:58:01 +02:00
|
|
|
+ this.usedIds = new java.util.BitSet(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getId(@Nullable K k0) {
|
2018-07-23 19:10:06 +02:00
|
|
|
@@ -43,9 +45,14 @@ public class RegistryID<K> implements Registry { // Paper - decompile fix
|
2018-07-23 18:58:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private int c() {
|
|
|
|
+ // Paper start
|
|
|
|
+ /*
|
|
|
|
while (this.e < this.d.length && this.d[this.e] != null) {
|
|
|
|
++this.e;
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
+ this.e = this.usedIds.nextClearBit(0);
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
return this.e;
|
|
|
|
}
|
2018-07-23 19:10:06 +02:00
|
|
|
@@ -59,6 +66,7 @@ public class RegistryID<K> implements Registry { // Paper - decompile fix
|
|
|
|
this.d = (K[]) (new Object[i]); // Paper - decompile fix
|
2018-07-23 18:58:01 +02:00
|
|
|
this.e = 0;
|
|
|
|
this.f = 0;
|
|
|
|
+ this.usedIds.clear(); // Paper
|
|
|
|
|
|
|
|
for (int j = 0; j < aobject.length; ++j) {
|
|
|
|
if (aobject[j] != null) {
|
2018-07-23 19:10:06 +02:00
|
|
|
@@ -84,6 +92,7 @@ public class RegistryID<K> implements Registry { // Paper - decompile fix
|
2018-07-23 18:58:01 +02:00
|
|
|
this.b[k] = k0;
|
|
|
|
this.c[k] = i;
|
|
|
|
this.d[i] = k0;
|
|
|
|
+ this.usedIds.set(i); // Paper
|
|
|
|
++this.f;
|
|
|
|
if (i == this.e) {
|
|
|
|
++this.e;
|
2018-07-23 19:10:06 +02:00
|
|
|
@@ -148,6 +157,7 @@ public class RegistryID<K> implements Registry { // Paper - decompile fix
|
2018-07-23 18:58:01 +02:00
|
|
|
Arrays.fill(this.d, (Object) null);
|
|
|
|
this.e = 0;
|
|
|
|
this.f = 0;
|
|
|
|
+ this.usedIds.clear(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
public int b() {
|
|
|
|
--
|
2018-07-25 07:11:08 +02:00
|
|
|
2.18.0
|
2018-07-23 18:58:01 +02:00
|
|
|
|