aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2025-06-20 06:36:43 +0000
committeriximeow <me@iximeow.net>2025-06-20 06:36:43 +0000
commit7c46d5cdc9fdfbc3663a3627d522a259683f594c (patch)
tree4963dc5a02b3ae8451520def1eeacd317278703b
parent276172a5a888165f82075eba48bd6f79246c2dcc (diff)
changelog + another inline
-rw-r--r--CHANGELOG9
-rw-r--r--src/armv8/a64.rs1
2 files changed, 10 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 36c766d..588429a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,12 @@
+## 0.3.2
+
+* fully support PAC instructions
+* support hinted branch instructions from ARMv<VERSION>
+* inline some armv7 decode helper functions
+ - this actually makes the armv7 decoder both faster *and* smaller. measured
+ against tdfx_dri.so, this takes decode throughput from ~410mb/s to ~709mb/s
+ while shedding about 100 bytes of code from the decoder's footprint
+
## 0.3.1
* fix no-std transitively depending on std still
diff --git a/src/armv8/a64.rs b/src/armv8/a64.rs
index 375a7e2..113184e 100644
--- a/src/armv8/a64.rs
+++ b/src/armv8/a64.rs
@@ -138,6 +138,7 @@ mod docs {
Ok((wmask, tmask))
}
+ #[inline(always)]
pub fn DecodeShift(op: u8) -> super::ShiftStyle {
assert!(op <= 0b11);
[