2019-01-01 04:15:55 +01:00
|
|
|
From 2445bd51a7e8e1e29d2ed54a71136d45e2bf9685 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
|
2019-01-01 04:15:55 +01:00
|
|
|
index 9e83610f1..fe5947b6c 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
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -14,7 +14,7 @@ public class DataBits {
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public DataBits(int i, int j, long[] along) {
|
2019-01-01 04:15:55 +01: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;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -27,8 +27,8 @@ public class DataBits {
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void a(int i, int j) {
|
2019-01-01 04:15:55 +01: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;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -45,7 +45,7 @@ public class DataBits {
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int a(int i) {
|
2019-01-01 04:15:55 +01: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;
|
|
|
|
--
|
2019-01-01 04:15:55 +01:00
|
|
|
2.20.1
|
2018-07-15 03:53:17 +02:00
|
|
|
|