2018-09-01 00:56:57 +02:00
|
|
|
From 15c0961341cb53d2ff8701e59812bd92a462b07e Mon Sep 17 00:00:00 2001
|
2018-07-15 03:53:17 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Tue, 5 Apr 2016 21:38:58 -0400
|
|
|
|
Subject: [PATCH] Remove Debug checks from DataBits
|
|
|
|
|
|
|
|
These are super hot and causing noticeable hits
|
|
|
|
|
|
|
|
Before: http://i.imgur.com/nQsMzAE.png
|
|
|
|
After: http://i.imgur.com/nJ46crB.png
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/DataBits.java b/src/main/java/net/minecraft/server/DataBits.java
|
2018-09-01 00:56:57 +02:00
|
|
|
index 0dc948a375..f4de7fcf4b 100644
|
2018-07-15 03:53:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/DataBits.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/DataBits.java
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -13,7 +13,7 @@ public class DataBits {
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public DataBits(int i, int j, long[] along) {
|
2018-09-01 00:56:57 +02:00
|
|
|
- Validate.inclusiveBetween(1L, 32L, (long)i);
|
|
|
|
+ //Validate.inclusiveBetween(1L, 32L, (long)i); // Paper
|
2018-07-15 03:53:17 +02:00
|
|
|
this.d = j;
|
|
|
|
this.b = i;
|
|
|
|
this.a = along;
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -25,8 +25,8 @@ public class DataBits {
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void a(int i, int j) {
|
2018-09-01 00:56:57 +02:00
|
|
|
- Validate.inclusiveBetween(0L, (long)(this.d - 1), (long)i);
|
|
|
|
- Validate.inclusiveBetween(0L, this.c, (long)j);
|
|
|
|
+ //Validate.inclusiveBetween(0L, (long)(this.d - 1), (long)i); // Paper
|
|
|
|
+ //Validate.inclusiveBetween(0L, this.c, (long)j); // Paper
|
2018-07-15 03:53:17 +02:00
|
|
|
int k = i * this.b;
|
|
|
|
int l = k / 64;
|
|
|
|
int i1 = ((i + 1) * this.b - 1) / 64;
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -41,7 +41,7 @@ public class DataBits {
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int a(int i) {
|
2018-09-01 00:56:57 +02:00
|
|
|
- Validate.inclusiveBetween(0L, (long)(this.d - 1), (long)i);
|
2018-07-15 03:53:17 +02:00
|
|
|
+ //Validate.inclusiveBetween(0L, (long) (this.d - 1), (long) i); // Paper
|
|
|
|
int j = i * this.b;
|
|
|
|
int k = j / 64;
|
|
|
|
int l = ((i + 1) * this.b - 1) / 64;
|
|
|
|
--
|
|
|
|
2.18.0
|
|
|
|
|