2019-07-20 06:01:24 +02:00
|
|
|
From 0bb92ac5ff3a6a438066972a9983b450375cbe92 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-07-20 06:01:24 +02:00
|
|
|
index 08d1be3117..a75b08ee33 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-07-20 06:01:24 +02:00
|
|
|
@@ -15,7 +15,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-07-20 06:01:24 +02:00
|
|
|
@@ -28,8 +28,8 @@ public class DataBits {
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
|
|
|
|
2019-04-27 05:05:36 +02:00
|
|
|
public int 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;
|
2019-04-27 05:05:36 +02:00
|
|
|
int l = k >> 6;
|
|
|
|
int i1 = (i + 1) * this.b - 1 >> 6;
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -50,8 +50,8 @@ public class DataBits {
|
2019-04-27 05:05:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b(int i, int j) {
|
|
|
|
- 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
|
|
|
|
int k = i * this.b;
|
|
|
|
int l = k >> 6;
|
|
|
|
int i1 = (i + 1) * this.b - 1 >> 6;
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -68,7 +68,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;
|
2019-04-27 05:05:36 +02:00
|
|
|
int k = j >> 6;
|
|
|
|
int l = (i + 1) * this.b - 1 >> 6;
|
2018-07-15 03:53:17 +02:00
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-07-15 03:53:17 +02:00
|
|
|
|