2019-03-20 02:46:00 +01:00
|
|
|
From 53fd6438952f6854cea9a810e23949c9b027acc1 Mon Sep 17 00:00:00 2001
|
2016-12-01 03:57:02 +01:00
|
|
|
From: Techcable <Techcable@outlook.com>
|
|
|
|
Date: Wed, 30 Nov 2016 20:56:58 -0600
|
|
|
|
Subject: [PATCH] Speedup BlockPos by fixing inlining
|
|
|
|
|
|
|
|
Normally the JVM can inline virtual getters by having two sets of code, one is the 'optimized' code and the other is the 'deoptimized' code.
|
|
|
|
If a single type is used 99% of the time, then its worth it to inline, and to revert to 'deoptimized' the 1% of the time we encounter other types.
|
|
|
|
But if two types are encountered commonly, then the JVM can't inline them both, and the call overhead remains.
|
|
|
|
|
|
|
|
This scenario also occurs with BlockPos and MutableBlockPos.
|
|
|
|
The variables in BlockPos are final, so MutableBlockPos can't modify them.
|
|
|
|
MutableBlockPos fixes this by adding custom mutable variables, and overriding the getters to access them.
|
|
|
|
|
|
|
|
This approach with utility methods that operate on MutableBlockPos and BlockPos.
|
|
|
|
Specific examples are BlockPosition.up(), and World.isValidLocation().
|
|
|
|
It makes these simple methods much slower than they need to be.
|
|
|
|
|
|
|
|
This should result in an across the board speedup in anything that accesses blocks or does logic with positions.
|
|
|
|
|
|
|
|
This is based upon conclusions drawn from inspecting the assenmbly generated bythe JIT compiler on my mircorbenchmarks.
|
|
|
|
They had 'callq' (invoke) instead of 'mov' (get from memory) instructions.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BaseBlockPosition.java b/src/main/java/net/minecraft/server/BaseBlockPosition.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 4c7793f86..cc17a414f 100644
|
2016-12-01 03:57:02 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/BaseBlockPosition.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BaseBlockPosition.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -7,22 +7,22 @@ import javax.annotation.concurrent.Immutable;
|
2016-12-01 03:57:02 +01:00
|
|
|
public class BaseBlockPosition implements Comparable<BaseBlockPosition> {
|
2019-01-01 04:15:55 +01:00
|
|
|
|
2016-12-01 03:57:02 +01:00
|
|
|
public static final BaseBlockPosition ZERO = new BaseBlockPosition(0, 0, 0);
|
|
|
|
- private final int a;
|
|
|
|
- private final int b;
|
|
|
|
- private final int c;
|
2018-07-23 00:46:13 +02:00
|
|
|
// Paper start
|
|
|
|
+ protected int x;
|
|
|
|
+ protected int y;
|
|
|
|
+ protected int z;
|
|
|
|
public boolean isValidLocation() {
|
|
|
|
- return a >= -30000000 && c >= -30000000 && a < 30000000 && c < 30000000 && b >= 0 && b < 256;
|
|
|
|
+ return x >= -30000000 && z >= -30000000 && x < 30000000 && z < 30000000 && y >= 0 && y < 256;
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
public boolean isInvalidYLocation() {
|
2018-07-23 00:46:13 +02:00
|
|
|
- return b < 0 || b >= 256;
|
|
|
|
+ return y < 0 || y >= 256;
|
|
|
|
}
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
public BaseBlockPosition(int i, int j, int k) {
|
|
|
|
- this.a = i;
|
|
|
|
- this.b = j;
|
|
|
|
- this.c = k;
|
|
|
|
+ this.x = i;
|
|
|
|
+ this.y = j;
|
|
|
|
+ this.z = k;
|
|
|
|
}
|
|
|
|
|
|
|
|
public BaseBlockPosition(double d0, double d1, double d2) {
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -49,17 +49,19 @@ public class BaseBlockPosition implements Comparable<BaseBlockPosition> {
|
|
|
|
return this.getY() == baseblockposition.getY() ? (this.getZ() == baseblockposition.getZ() ? this.getX() - baseblockposition.getX() : this.getZ() - baseblockposition.getZ()) : this.getY() - baseblockposition.getY();
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
- public int getX() {
|
2018-07-23 00:46:13 +02:00
|
|
|
- return this.a;
|
|
|
|
+ // Paper start
|
2016-12-01 03:57:02 +01:00
|
|
|
+ public final int getX() {
|
2018-07-23 00:46:13 +02:00
|
|
|
+ return this.x;
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
|
2018-07-23 00:46:13 +02:00
|
|
|
public int getY() {
|
|
|
|
- return this.b;
|
|
|
|
+ return this.y;
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
|
2018-07-23 00:46:13 +02:00
|
|
|
public int getZ() {
|
|
|
|
- return this.c;
|
|
|
|
+ return this.z;
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
2019-01-01 04:15:55 +01:00
|
|
|
public BaseBlockPosition d(BaseBlockPosition baseblockposition) {
|
|
|
|
return new BaseBlockPosition(this.getY() * baseblockposition.getZ() - this.getZ() * baseblockposition.getY(), this.getZ() * baseblockposition.getX() - this.getX() * baseblockposition.getZ(), this.getX() * baseblockposition.getY() - this.getY() * baseblockposition.getX());
|
2016-12-01 03:57:02 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockPosition.java b/src/main/java/net/minecraft/server/BlockPosition.java
|
2019-03-20 02:46:00 +01:00
|
|
|
index 80e13dfb2..20cf9255b 100644
|
2016-12-01 03:57:02 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockPosition.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockPosition.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -202,18 +202,18 @@ public class BlockPosition extends BaseBlockPosition {
|
2018-07-23 00:46:13 +02:00
|
|
|
if (this.g == null) {
|
2019-01-01 04:15:55 +01:00
|
|
|
this.g = new BlockPosition.MutableBlockPosition(i, j, k);
|
2018-07-23 00:46:13 +02:00
|
|
|
return this.g;
|
|
|
|
- } else if (this.g.b == l && this.g.c == i1 && this.g.d == j1) {
|
2019-01-01 04:15:55 +01:00
|
|
|
+ } else if (this.g.x == l && this.g.y == i1 && this.g.z == j1) {
|
|
|
|
return (BlockPosition.MutableBlockPosition) this.endOfData();
|
2018-07-23 00:46:13 +02:00
|
|
|
} else {
|
|
|
|
- if (this.g.b < l) {
|
|
|
|
- ++this.g.b;
|
|
|
|
- } else if (this.g.c < i1) {
|
2019-01-01 04:15:55 +01:00
|
|
|
- this.g.b = i; // Paper - decompile fix Readd line removed by the decompiler
|
2018-07-23 00:46:13 +02:00
|
|
|
- ++this.g.c;
|
|
|
|
- } else if (this.g.d < j1) {
|
2019-01-01 04:15:55 +01:00
|
|
|
- this.g.b = i; // Paper - decompile fix Readd line removed by the decompiler
|
|
|
|
- this.g.c = j; // Paper - decompile fix Readd line removed by the decompiler
|
2018-07-23 00:46:13 +02:00
|
|
|
- ++this.g.d;
|
|
|
|
+ if (this.g.x < l) {
|
|
|
|
+ ++this.g.x;
|
|
|
|
+ } else if (this.g.y < i1) {
|
2019-01-01 04:15:55 +01:00
|
|
|
+ this.g.x = i; // Paper - decompile fix Readd line removed by the decompiler
|
2018-07-23 00:46:13 +02:00
|
|
|
+ ++this.g.y;
|
|
|
|
+ } else if (this.g.z < j1) {
|
2019-01-01 04:15:55 +01:00
|
|
|
+ this.g.x = i; // Paper - decompile fix Readd line removed by the decompiler
|
|
|
|
+ this.g.y = j; // Paper - decompile fix Readd line removed by the decompiler
|
2018-07-23 00:46:13 +02:00
|
|
|
+ ++this.g.z;
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
2018-07-23 00:46:13 +02:00
|
|
|
|
|
|
|
return this.g;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -296,11 +296,12 @@ public class BlockPosition extends BaseBlockPosition {
|
|
|
|
}
|
2016-12-01 03:57:02 +01:00
|
|
|
|
|
|
|
public static class MutableBlockPosition extends BlockPosition {
|
2019-01-01 04:15:55 +01:00
|
|
|
-
|
2018-07-23 00:46:13 +02:00
|
|
|
+ // Paper start - comment out
|
2016-12-01 03:57:02 +01:00
|
|
|
+ /*
|
|
|
|
protected int b;
|
|
|
|
protected int c;
|
|
|
|
protected int d;
|
2018-07-23 00:46:13 +02:00
|
|
|
- // Paper start
|
|
|
|
+
|
|
|
|
@Override
|
|
|
|
public boolean isValidLocation() {
|
|
|
|
return b >= -30000000 && d >= -30000000 && b < 30000000 && d < 30000000 && c >= 0 && c < 256;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -309,6 +310,7 @@ public class BlockPosition extends BaseBlockPosition {
|
2016-12-01 03:57:02 +01:00
|
|
|
public boolean isInvalidYLocation() {
|
|
|
|
return c < 0 || c >= 256;
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
public MutableBlockPosition() {
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -320,10 +322,13 @@ public class BlockPosition extends BaseBlockPosition {
|
2018-07-23 00:46:13 +02:00
|
|
|
}
|
2016-12-01 03:57:02 +01:00
|
|
|
|
|
|
|
public MutableBlockPosition(int i, int j, int k) {
|
2018-07-23 00:46:13 +02:00
|
|
|
- super(0, 0, 0);
|
|
|
|
+ // Paper start
|
|
|
|
+ super(i, j, k);
|
|
|
|
+ /*
|
|
|
|
this.b = i;
|
|
|
|
this.c = j;
|
2016-12-01 03:57:02 +01:00
|
|
|
- this.d = k;
|
2018-07-23 00:46:13 +02:00
|
|
|
+ this.d = k;*/
|
2016-12-01 03:57:02 +01:00
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
public BlockPosition a(double d0, double d1, double d2) {
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -342,6 +347,8 @@ public class BlockPosition extends BaseBlockPosition {
|
2016-12-01 03:57:02 +01:00
|
|
|
return super.a(enumblockrotation).h();
|
|
|
|
}
|
|
|
|
|
|
|
|
+ /*
|
2018-07-23 00:46:13 +02:00
|
|
|
+ // Paper start - use parent getters
|
2016-12-01 03:57:02 +01:00
|
|
|
public int getX() {
|
|
|
|
return this.b;
|
|
|
|
}
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -352,13 +359,16 @@ public class BlockPosition extends BaseBlockPosition {
|
2018-07-23 00:46:13 +02:00
|
|
|
|
2016-12-01 03:57:02 +01:00
|
|
|
public int getZ() {
|
|
|
|
return this.d;
|
2018-07-23 00:46:13 +02:00
|
|
|
- }
|
|
|
|
+ }*/
|
2016-12-01 03:57:02 +01:00
|
|
|
+ // Paper end
|
|
|
|
|
2018-07-23 00:46:13 +02:00
|
|
|
public BlockPosition.MutableBlockPosition setValues(int i, int j, int k) { return c(i, j, k);} // Paper - OBFHELPER
|
2016-12-01 03:57:02 +01:00
|
|
|
public BlockPosition.MutableBlockPosition c(int i, int j, int k) {
|
|
|
|
- this.b = i;
|
|
|
|
- this.c = j;
|
|
|
|
- this.d = k;
|
2018-07-23 00:46:13 +02:00
|
|
|
+ // Paper start - use xyz
|
|
|
|
+ this.x = i;
|
|
|
|
+ this.y = j;
|
|
|
|
+ this.z = k;
|
2016-12-01 03:57:02 +01:00
|
|
|
+ // Paper end
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -376,15 +386,15 @@ public class BlockPosition extends BaseBlockPosition {
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public BlockPosition.MutableBlockPosition c(EnumDirection enumdirection, int i) {
|
|
|
|
- return this.c(this.b + enumdirection.getAdjacentX() * i, this.c + enumdirection.getAdjacentY() * i, this.d + enumdirection.getAdjacentZ() * i);
|
2018-07-23 00:46:13 +02:00
|
|
|
+ return this.c(x + enumdirection.getAdjacentX() * i, y + enumdirection.getAdjacentY() * i, z + enumdirection.getAdjacentZ() * i); // Paper - use xyz
|
|
|
|
}
|
|
|
|
|
|
|
|
public BlockPosition.MutableBlockPosition d(int i, int j, int k) {
|
|
|
|
- return this.c(this.b + i, this.c + j, this.d + k);
|
|
|
|
+ return this.c(x + i, y + j, z + k); // Paper - use xyz
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void p(int i) {
|
|
|
|
- this.c = i;
|
2018-07-23 00:46:13 +02:00
|
|
|
+ this.y = i; // Paper change to y
|
2016-12-01 03:57:02 +01:00
|
|
|
}
|
|
|
|
|
2018-09-01 00:56:57 +02:00
|
|
|
public BlockPosition toBlockPosition() { return h(); } // Paper - OBFHELPER
|
2016-12-01 03:57:02 +01:00
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2016-12-01 03:57:02 +01:00
|
|
|
|