Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 21.2.2 #1481

Open
wants to merge 3 commits into
base: release/v21.2.1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update
- uses: stellar/binaries@v24
- uses: stellar/binaries@v31
with:
name: cargo-semver-checks
version: 0.32.0
version: 0.35.0
- run: cargo semver-checks --exclude soroban-simulation

build-and-test:
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ exclude = ["soroban-test-wasms/wasm-workspace"]
# NB: When bumping the major version make sure to clean up the
# code guarded by `unstable-*` features to make it enabled
# unconditionally.
version = "21.2.1"
version = "21.2.2"
rust-version = "1.74.0"

[workspace.dependencies]
soroban-env-common = { version = "=21.2.1", path = "soroban-env-common", default-features = false }
soroban-env-guest = { version = "=21.2.1", path = "soroban-env-guest" }
soroban-env-host = { version = "=21.2.1", path = "soroban-env-host" }
soroban-env-macros = { version = "=21.2.1", path = "soroban-env-macros" }
soroban-builtin-sdk-macros = { version = "=21.2.1", path = "soroban-builtin-sdk-macros" }
soroban-env-common = { version = "=21.2.2", path = "soroban-env-common", default-features = false }
soroban-env-guest = { version = "=21.2.2", path = "soroban-env-guest" }
soroban-env-host = { version = "=21.2.2", path = "soroban-env-host" }
soroban-env-macros = { version = "=21.2.2", path = "soroban-env-macros" }
soroban-builtin-sdk-macros = { version = "=21.2.2", path = "soroban-builtin-sdk-macros" }
# NB: this must match the wasmparser version wasmi is using
wasmparser = "=0.116.1"

Expand Down
4 changes: 3 additions & 1 deletion soroban-env-host/src/host/metered_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ use crate::{

use std::{borrow::Borrow, cmp::Ordering, marker::PhantomData};

use super::metered_vector::binary_search_by_pre_rust_182;

const MAP_OOB: Error = Error::from_type_and_code(ScErrorType::Object, ScErrorCode::IndexBounds);

pub struct MeteredOrdMap<K, V, Ctx> {
Expand Down Expand Up @@ -161,7 +163,7 @@ where
let _span = tracy_span!("map lookup");
self.charge_binsearch(ctx)?;
let mut err: Option<HostError> = None;
let res = self.map.binary_search_by(|probe| {
let res = binary_search_by_pre_rust_182(self.map.as_slice(), |probe| {
// We've already hit an error, return Ordering::Equal
// to terminate search asap.
if err.is_some() {
Expand Down
56 changes: 55 additions & 1 deletion soroban-env-host/src/host/metered_vector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ where
{
self.charge_binsearch(budget)?;
let mut err: Option<HostError> = None;
let res = self.vec.binary_search_by(|probe| {
let res = binary_search_by_pre_rust_182(self.vec.as_slice(), |probe| {
// We've already hit an error, return Ordering::Equal
// to terminate search asap.
if err.is_some() {
Expand Down Expand Up @@ -373,3 +373,57 @@ where
<Self as Compare<Vec<Elt>>>::compare(self, &a.vec, &b.vec)
}
}

/// This is a copy of implementation of Rust stdlib `binary_search_by` function
/// pre-Rust-1.82 with a minor modifications.
///
/// We cannot rely on the standard library implementation as it might change and
/// thus change the observed metering as well. Thus we are just using the same
/// hardcoded implementation.
///
/// The code is copied from the following file revision:
/// https://github.com/rust-lang/rust/blob/8f7af88b33771ab5ec92a2a767a97a068f2ea17b/library/core/src/slice/mod.rs#L2769
/// Modifications are no-op: switched &self to an explicit `slice` argument,
/// removed assertions and unsafe blocks.
pub(crate) fn binary_search_by_pre_rust_182<F, T>(slice: &[T], mut f: F) -> Result<usize, usize>
where
F: FnMut(&T) -> std::cmp::Ordering,
{
// INVARIANTS:
// - 0 <= left <= left + size = right <= self.len()
// - f returns Less for everything in self[..left]
// - f returns Greater for everything in self[right..]
let mut size = slice.len();
let mut left = 0;
let mut right = size;
while left < right {
let mid = left + size / 2;

// SAFETY: the while condition means `size` is strictly positive, so
// `size/2 < size`. Thus `left + size/2 < left + size`, which
// coupled with the `left + size <= self.len()` invariant means
// we have `left + size/2 < self.len()`, and this is in-bounds.
let cmp = f(slice.get(mid).unwrap());

// This control flow produces conditional moves, which results in
// fewer branches and instructions than if/else or matching on
// cmp::Ordering.
// This is x86 asm for u8: https://rust.godbolt.org/z/698eYffTx.
left = if cmp == std::cmp::Ordering::Less {
mid + 1
} else {
left
};
right = if cmp == std::cmp::Ordering::Greater {
mid
} else {
right
};
if cmp == std::cmp::Ordering::Equal {
return Ok(mid);
}

size = right - left;
}
Err(left)
}
Loading