Skip to content

Commit 8f824a9

Browse files
tschneidereitbnjbvr
authored andcommitted
Update outdated references to the Cranelift repository
This patch updates or removes all references to the Cranelift repository. It affects links in README documents, issues that were transferred to the Wasmtime repository, CI badges, and a small bunch of sundry items.
1 parent 7ce1019 commit 8f824a9

25 files changed

Lines changed: 30 additions & 45 deletions

File tree

‎cranelift/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.59.0"
55
description = "Binaries for testing the Cranelift libraries"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://github.com/bytecodealliance/wasmtime/blob/master/cranelift/docs/index.md"
8-
repository = "https://github.com/bytecodealliance/cranelift"
8+
repository = "https://github.com/bytecodealliance/wasmtime"
99
publish = false
1010
edition = "2018"
1111

‎cranelift/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Cranelift is a low-level retargetable code generator. It translates a
88
into executable machine code.
99

1010
[BA]: https://bytecodealliance.org/
11-
[![Build Status](https://github.com/bytecodealliance/cranelift/workflows/CI/badge.svg)](https://github.com/bytecodealliance/cranelift/actions)
11+
[![Build Status](https://github.com/bytecodealliance/wasmtime/workflows/CI/badge.svg)](https://github.com/bytecodealliance/wasmtime/actions)
1212
[![Fuzzit Status](https://app.fuzzit.dev/badge?org_id=bytecodealliance)](https://app.fuzzit.dev/orgs/bytecodealliance/dashboard)
1313
[![Chat](https://img.shields.io/badge/chat-zulip-brightgreen.svg)](https://bytecodealliance.zulipchat.com/#narrow/stream/217117-cranelift/topic/general)
1414
![Minimum rustc 1.37](https://img.shields.io/badge/rustc-1.37+-green.svg)

‎cranelift/bforest/Cargo.toml‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.59.0"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bforest"
8-
repository = "https://github.com/bytecodealliance/cranelift"
8+
repository = "https://github.com/bytecodealliance/wasmtime"
99
categories = ["no-std"]
1010
readme = "README.md"
1111
keywords = ["btree", "forest", "set", "map"]
@@ -16,4 +16,3 @@ cranelift-entity = { path = "../entity", version = "0.59.0", default-features =
1616

1717
[badges]
1818
maintenance = { status = "experimental" }
19-
travis-ci = { repository = "bytecodealliance/cranelift" }

‎cranelift/codegen/Cargo.toml‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.59.0"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
8-
repository = "https://github.com/bytecodealliance/cranelift"
8+
repository = "https://github.com/bytecodealliance/wasmtime"
99
categories = ["no-std"]
1010
readme = "README.md"
1111
keywords = ["compile", "compiler", "jit"]
@@ -71,4 +71,3 @@ enable-serde = ["serde"]
7171

7272
[badges]
7373
maintenance = { status = "experimental" }
74-
travis-ci = { repository = "bytecodealliance/cranelift" }

‎cranelift/codegen/meta/Cargo.toml‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["The Cranelift Project Developers"]
44
version = "0.59.0"
55
description = "Metaprogram for cranelift-codegen code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
7-
repository = "https://github.com/bytecodealliance/cranelift"
7+
repository = "https://github.com/bytecodealliance/wasmtime"
88
readme = "README.md"
99
edition = "2018"
1010

@@ -14,7 +14,6 @@ cranelift-entity = { path = "../../entity", version = "0.59.0" }
1414

1515
[badges]
1616
maintenance = { status = "experimental" }
17-
travis-ci = { repository = "bytecodealliance/cranelift" }
1817

1918
[package.metadata.docs.rs]
2019
rustdoc-args = [ "--document-private-items" ]

‎cranelift/codegen/meta/src/isa/x86/encodings.rs‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1825,7 +1825,7 @@ fn define_simd(
18251825

18261826
// SIMD register movement: store, load, spill, fill, regmove. All of these use encodings of
18271827
// MOVUPS and MOVAPS from SSE (TODO ideally all of these would either use MOVAPS when we have
1828-
// alignment or type-specific encodings, see https://github.com/bytecodealliance/cranelift/issues/1039).
1828+
// alignment or type-specific encodings, see https://github.com/bytecodealliance/wasmtime/issues/1124).
18291829
for ty in ValueType::all_lane_types().filter(allowed_simd_type) {
18301830
// Store
18311831
let bound_store = store.bind(vector(ty, sse_vector_size)).bind(Any);
@@ -1974,7 +1974,7 @@ fn define_simd(
19741974
// allows SIMD shifts to be legalized more easily. TODO ideally this would be typed as an
19751975
// I128x1 but restrictions on the type builder prevent this; the general idea here is that
19761976
// the upper bits are all zeroed and do not form parts of any separate lane. See
1977-
// https://github.com/bytecodealliance/cranelift/issues/1146.
1977+
// https://github.com/bytecodealliance/wasmtime/issues/1140.
19781978
e.enc_both(
19791979
bitcast.bind(vector(I64, sse_vector_size)).bind(I32),
19801980
rec_frurm.opcodes(&MOVD_LOAD_XMM),

‎cranelift/codegen/shared/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "cranelift-codegen-shared"
44
version = "0.59.0"
55
description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
66
license = "Apache-2.0 WITH LLVM-exception"
7-
repository = "https://github.com/bytecodealliance/cranelift"
7+
repository = "https://github.com/bytecodealliance/wasmtime"
88
readme = "README.md"
99
edition = "2018"
1010

‎cranelift/entity/Cargo.toml‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.59.0"
55
description = "Data structures using entity references as mapping keys"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-entity"
8-
repository = "https://github.com/bytecodealliance/cranelift"
8+
repository = "https://github.com/bytecodealliance/wasmtime"
99
categories = ["no-std"]
1010
readme = "README.md"
1111
keywords = ["entity", "set", "map"]
@@ -19,4 +19,3 @@ enable-serde = ["serde"]
1919

2020
[badges]
2121
maintenance = { status = "experimental" }
22-
travis-ci = { repository = "bytecodealliance/cranelift" }

‎cranelift/faerie/Cargo.toml‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cranelift-faerie"
33
version = "0.59.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Emit Cranelift output to native object files with Faerie"
6-
repository = "https://github.com/bytecodealliance/cranelift"
6+
repository = "https://github.com/bytecodealliance/wasmtime"
77
documentation = "https://docs.rs/cranelift-faerie"
88
license = "Apache-2.0 WITH LLVM-exception"
99
readme = "README.md"
@@ -24,4 +24,3 @@ features = ["std"]
2424

2525
[badges]
2626
maintenance = { status = "experimental" }
27-
travis-ci = { repository = "bytecodealliance/cranelift" }

‎cranelift/filetests/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.59.0"
55
description = "Test driver and implementations of the filetest commands"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-filetests"
8-
repository = "https://github.com/bytecodealliance/cranelift"
8+
repository = "https://github.com/bytecodealliance/wasmtime"
99
publish = false
1010
edition = "2018"
1111

0 commit comments

Comments
 (0)