├── .github └── workflows │ └── rust.yaml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches ├── README.md ├── allocator_api.rs ├── benches.rs └── tables.toml ├── bumpalo.png ├── src ├── alloc.rs ├── boxed.rs ├── collections │ ├── collect_in.rs │ ├── mod.rs │ ├── raw_vec.rs │ ├── str │ │ ├── lossy.rs │ │ └── mod.rs │ ├── string.rs │ └── vec.rs └── lib.rs ├── tests ├── all │ ├── alloc_fill.rs │ ├── alloc_try_with.rs │ ├── alloc_with.rs │ ├── allocation_limit.rs │ ├── allocator_api.rs │ ├── boxed.rs │ ├── capacity.rs │ ├── collect_in.rs │ ├── main.rs │ ├── quickcheck.rs │ ├── quickchecks.rs │ ├── serde │ │ ├── boxed.rs │ │ ├── mod.rs │ │ ├── string.rs │ │ └── vec.rs │ ├── string.rs │ ├── tests.rs │ ├── try_alloc_try_with.rs │ ├── try_alloc_with.rs │ └── vec.rs └── try_alloc.rs └── valgrind.supp /.github/workflows/rust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/.github/workflows/rust.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | benches/results.json 4 | *perf.data* 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/README.md -------------------------------------------------------------------------------- /benches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/benches/README.md -------------------------------------------------------------------------------- /benches/allocator_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/benches/allocator_api.rs -------------------------------------------------------------------------------- /benches/benches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/benches/benches.rs -------------------------------------------------------------------------------- /benches/tables.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/benches/tables.toml -------------------------------------------------------------------------------- /bumpalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/bumpalo.png -------------------------------------------------------------------------------- /src/alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/alloc.rs -------------------------------------------------------------------------------- /src/boxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/boxed.rs -------------------------------------------------------------------------------- /src/collections/collect_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/collections/collect_in.rs -------------------------------------------------------------------------------- /src/collections/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/collections/mod.rs -------------------------------------------------------------------------------- /src/collections/raw_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/collections/raw_vec.rs -------------------------------------------------------------------------------- /src/collections/str/lossy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/collections/str/lossy.rs -------------------------------------------------------------------------------- /src/collections/str/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/collections/str/mod.rs -------------------------------------------------------------------------------- /src/collections/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/collections/string.rs -------------------------------------------------------------------------------- /src/collections/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/collections/vec.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/all/alloc_fill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/alloc_fill.rs -------------------------------------------------------------------------------- /tests/all/alloc_try_with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/alloc_try_with.rs -------------------------------------------------------------------------------- /tests/all/alloc_with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/alloc_with.rs -------------------------------------------------------------------------------- /tests/all/allocation_limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/allocation_limit.rs -------------------------------------------------------------------------------- /tests/all/allocator_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/allocator_api.rs -------------------------------------------------------------------------------- /tests/all/boxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/boxed.rs -------------------------------------------------------------------------------- /tests/all/capacity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/capacity.rs -------------------------------------------------------------------------------- /tests/all/collect_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/collect_in.rs -------------------------------------------------------------------------------- /tests/all/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/main.rs -------------------------------------------------------------------------------- /tests/all/quickcheck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/quickcheck.rs -------------------------------------------------------------------------------- /tests/all/quickchecks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/quickchecks.rs -------------------------------------------------------------------------------- /tests/all/serde/boxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/serde/boxed.rs -------------------------------------------------------------------------------- /tests/all/serde/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/serde/mod.rs -------------------------------------------------------------------------------- /tests/all/serde/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/serde/string.rs -------------------------------------------------------------------------------- /tests/all/serde/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/serde/vec.rs -------------------------------------------------------------------------------- /tests/all/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/string.rs -------------------------------------------------------------------------------- /tests/all/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/tests.rs -------------------------------------------------------------------------------- /tests/all/try_alloc_try_with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/try_alloc_try_with.rs -------------------------------------------------------------------------------- /tests/all/try_alloc_with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/try_alloc_with.rs -------------------------------------------------------------------------------- /tests/all/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/all/vec.rs -------------------------------------------------------------------------------- /tests/try_alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/tests/try_alloc.rs -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/bumpalo/HEAD/valgrind.supp --------------------------------------------------------------------------------