[INFO] fetching crate lejit 0.0.1... [INFO] checking lejit-0.0.1 against try#8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8 for pr-82565 [INFO] extracting crate lejit 0.0.1 into /workspace/builds/worker-12/source [INFO] validating manifest of crates.io crate lejit 0.0.1 on toolchain 8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate lejit 0.0.1 [INFO] finished tweaking crates.io crate lejit 0.0.1 [INFO] tweaked toml for crates.io crate lejit 0.0.1 written to /workspace/builds/worker-12/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "fetch" "--locked" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "rustops/crates-build-env@sha256:f2f6bcd4b43ebee4e173f653a26493129bdb64017c85f916b780ca7fbdbaa79d" "/opt/rustwide/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] d0558b9bd0bd4eeaca1be0d6293bbbdd565e4695848b5a7dad4403bcb805bc91 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "d0558b9bd0bd4eeaca1be0d6293bbbdd565e4695848b5a7dad4403bcb805bc91", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "d0558b9bd0bd4eeaca1be0d6293bbbdd565e4695848b5a7dad4403bcb805bc91", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "d0558b9bd0bd4eeaca1be0d6293bbbdd565e4695848b5a7dad4403bcb805bc91", kill_on_drop: false }` [INFO] [stdout] d0558b9bd0bd4eeaca1be0d6293bbbdd565e4695848b5a7dad4403bcb805bc91 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "rustops/crates-build-env@sha256:f2f6bcd4b43ebee4e173f653a26493129bdb64017c85f916b780ca7fbdbaa79d" "/opt/rustwide/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 64abadd275c7b777d8d99fb78714d8ecde4f20a546efa878c1b34785fc9a21b1 [INFO] running `Command { std: "docker" "start" "-a" "64abadd275c7b777d8d99fb78714d8ecde4f20a546efa878c1b34785fc9a21b1", kill_on_drop: false }` [INFO] [stderr] Checking lejit v0.0.1 (/opt/rustwide/workdir) [INFO] [stdout] error: macros that expand to items must be delimited with braces or followed by a semicolon [INFO] [stdout] --> src/lib.rs:73:28 [INFO] [stdout] | [INFO] [stdout] 73 | macro_rules! jit_compilefn ( [INFO] [stdout] | ____________________________^ [INFO] [stdout] 74 | | ($jit:ident, ($($types:ty),+) -> $rettype:ty) => ({ [INFO] [stdout] 75 | | type JitFnType = extern "C" fn($($types),+) -> $rettype; [INFO] [stdout] 76 | | let region = $jit.region(); [INFO] [stdout] ... | [INFO] [stdout] 79 | | }) [INFO] [stdout] 80 | | ) [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] help: change the delimiters to curly braces [INFO] [stdout] | [INFO] [stdout] 73 | macro_rules! jit_compilefn { [INFO] [stdout] 74 | ($jit:ident, ($($types:ty),+) -> $rettype:ty) => ({ [INFO] [stdout] 75 | type JitFnType = extern "C" fn($($types),+) -> $rettype; [INFO] [stdout] 76 | let region = $jit.region(); [INFO] [stdout] 77 | let addr = region.data(); [INFO] [stdout] 78 | unsafe { ::std::mem::transmute::<*mut u8, JitFnType>(addr) } [INFO] [stdout] ... [INFO] [stdout] help: add a semicolon [INFO] [stdout] | [INFO] [stdout] 80 | ); [INFO] [stdout] | ^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: expected type, found `|` [INFO] [stdout] --> src/jit/mod.rs:123:58 [INFO] [stdout] | [INFO] [stdout] 123 | pub fn build_function(&'b mut self, name: String, cb: |func: JitFunction<'a, 'b>|) { [INFO] [stdout] | ^ expected type [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: expected parameter name, found `'b` [INFO] [stdout] --> src/jit/mod.rs:123:81 [INFO] [stdout] | [INFO] [stdout] 123 | pub fn build_function(&'b mut self, name: String, cb: |func: JitFunction<'a, 'b>|) { [INFO] [stdout] | ^^ expected parameter name [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: macros that expand to items must be delimited with braces or followed by a semicolon [INFO] [stdout] --> src/lib.rs:73:28 [INFO] [stdout] | [INFO] [stdout] 73 | macro_rules! jit_compilefn ( [INFO] [stdout] | ____________________________^ [INFO] [stdout] 74 | | ($jit:ident, ($($types:ty),+) -> $rettype:ty) => ({ [INFO] [stdout] 75 | | type JitFnType = extern "C" fn($($types),+) -> $rettype; [INFO] [stdout] 76 | | let region = $jit.region(); [INFO] [stdout] ... | [INFO] [stdout] 79 | | }) [INFO] [stdout] 80 | | ) [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] help: change the delimiters to curly braces [INFO] [stdout] | [INFO] [stdout] 73 | macro_rules! jit_compilefn { [INFO] [stdout] 74 | ($jit:ident, ($($types:ty),+) -> $rettype:ty) => ({ [INFO] [stdout] 75 | type JitFnType = extern "C" fn($($types),+) -> $rettype; [INFO] [stdout] 76 | let region = $jit.region(); [INFO] [stdout] 77 | let addr = region.data(); [INFO] [stdout] 78 | unsafe { ::std::mem::transmute::<*mut u8, JitFnType>(addr) } [INFO] [stdout] ... [INFO] [stdout] help: add a semicolon [INFO] [stdout] | [INFO] [stdout] 80 | ); [INFO] [stdout] | ^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: expected type, found `|` [INFO] [stdout] --> src/jit/mod.rs:123:58 [INFO] [stdout] | [INFO] [stdout] 123 | pub fn build_function(&'b mut self, name: String, cb: |func: JitFunction<'a, 'b>|) { [INFO] [stdout] | ^ expected type [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: expected parameter name, found `'b` [INFO] [stdout] --> src/jit/mod.rs:123:81 [INFO] [stdout] | [INFO] [stdout] 123 | pub fn build_function(&'b mut self, name: String, cb: |func: JitFunction<'a, 'b>|) { [INFO] [stdout] | ^^ expected parameter name [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/lib.rs:16:4 [INFO] [stdout] | [INFO] [stdout] 16 | #![experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/region.rs:7:3 [INFO] [stdout] | [INFO] [stdout] 7 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/region.rs:13:3 [INFO] [stdout] | [INFO] [stdout] 13 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:7:3 [INFO] [stdout] | [INFO] [stdout] 7 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:22:3 [INFO] [stdout] | [INFO] [stdout] 22 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:55:3 [INFO] [stdout] | [INFO] [stdout] 55 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:262:3 [INFO] [stdout] | [INFO] [stdout] 262 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:11:3 [INFO] [stdout] | [INFO] [stdout] 11 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:16:3 [INFO] [stdout] | [INFO] [stdout] 16 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:21:3 [INFO] [stdout] | [INFO] [stdout] 21 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:27:3 [INFO] [stdout] | [INFO] [stdout] 27 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `deriving` in this scope [INFO] [stdout] --> src/jit/mod.rs:43:3 [INFO] [stdout] | [INFO] [stdout] 43 | #[deriving(PartialEq)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:44:3 [INFO] [stdout] | [INFO] [stdout] 44 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:64:3 [INFO] [stdout] | [INFO] [stdout] 64 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/lib.rs:16:4 [INFO] [stdout] | [INFO] [stdout] 16 | #![experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:71:3 [INFO] [stdout] | [INFO] [stdout] 71 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:80:3 [INFO] [stdout] | [INFO] [stdout] 80 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/region.rs:7:3 [INFO] [stdout] | [INFO] [stdout] 7 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:86:3 [INFO] [stdout] | [INFO] [stdout] 86 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/region.rs:13:3 [INFO] [stdout] | [INFO] [stdout] 13 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:92:3 [INFO] [stdout] | [INFO] [stdout] 92 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:7:3 [INFO] [stdout] | [INFO] [stdout] 7 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:162:3 [INFO] [stdout] | [INFO] [stdout] 162 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:198:3 [INFO] [stdout] | [INFO] [stdout] 198 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:22:3 [INFO] [stdout] | [INFO] [stdout] 22 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:208:3 [INFO] [stdout] | [INFO] [stdout] 208 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:55:3 [INFO] [stdout] | [INFO] [stdout] 55 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:226:3 [INFO] [stdout] | [INFO] [stdout] 226 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:262:3 [INFO] [stdout] | [INFO] [stdout] 262 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:11:3 [INFO] [stdout] | [INFO] [stdout] 11 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:16:3 [INFO] [stdout] | [INFO] [stdout] 16 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:21:3 [INFO] [stdout] | [INFO] [stdout] 21 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:27:3 [INFO] [stdout] | [INFO] [stdout] 27 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `deriving` in this scope [INFO] [stdout] --> src/jit/mod.rs:43:3 [INFO] [stdout] | [INFO] [stdout] 43 | #[deriving(PartialEq)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:44:3 [INFO] [stdout] | [INFO] [stdout] 44 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:64:3 [INFO] [stdout] | [INFO] [stdout] 64 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:71:3 [INFO] [stdout] | [INFO] [stdout] 71 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:80:3 [INFO] [stdout] | [INFO] [stdout] 80 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:86:3 [INFO] [stdout] | [INFO] [stdout] 86 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:92:3 [INFO] [stdout] | [INFO] [stdout] 92 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:162:3 [INFO] [stdout] | [INFO] [stdout] 162 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:198:3 [INFO] [stdout] | [INFO] [stdout] 198 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:208:3 [INFO] [stdout] | [INFO] [stdout] 208 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0433]: failed to resolve: could not find `MemoryMap` in `os` [INFO] [stdout] --> src/jit/mod.rs:151:34 [INFO] [stdout] | [INFO] [stdout] 151 | let mut region = match os::MemoryMap::new(code.len(), &[os::MapReadable, os::MapWritable]) { [INFO] [stdout] | ^^^^^^^^^ could not find `MemoryMap` in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: cannot find attribute `experimental` in this scope [INFO] [stdout] --> src/jit/mod.rs:226:3 [INFO] [stdout] | [INFO] [stdout] 226 | #[experimental] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `MemoryMap` in module `os` [INFO] [stdout] --> src/region.rs:14:27 [INFO] [stdout] | [INFO] [stdout] 14 | impl MemoryRegion for os::MemoryMap { [INFO] [stdout] | ^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find function `copy_memory` in module `ptr` [INFO] [stdout] --> src/region.rs:28:18 [INFO] [stdout] | [INFO] [stdout] 28 | ptr::copy_memory(self.data(), data.as_ptr(), data.len()); [INFO] [stdout] | ^^^^^^^^^^^ not found in `ptr` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:9:49 [INFO] [stdout] | [INFO] [stdout] 9 | fn compile(&self, jit: &'a Jit<'a, 'b>, pos: uint) -> Vec { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:24:21 [INFO] [stdout] | [INFO] [stdout] 24 | fn len(&self) -> uint { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:57:49 [INFO] [stdout] | [INFO] [stdout] 57 | fn compile(&self, jit: &'a Jit<'a, 'b>, pos: uint) -> Vec { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:234:68 [INFO] [stdout] | [INFO] [stdout] 234 | fn encode_call<'a, 'b>(func: Option<&'b JitFunction<'a, 'b>>, pos: uint) -> Vec { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:248:30 [INFO] [stdout] | [INFO] [stdout] 248 | fn needed_bytes(num: u64) -> uint { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:13:49 [INFO] [stdout] | [INFO] [stdout] 13 | fn compile(&self, jit: &'a Jit<'a, 'b>, pos: uint) -> Vec; [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:18:21 [INFO] [stdout] | [INFO] [stdout] 18 | fn len(&self) -> uint; [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `MemoryMap` in module `os` [INFO] [stdout] --> src/jit/mod.rs:68:23 [INFO] [stdout] | [INFO] [stdout] 68 | region: Option [INFO] [stdout] | ^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:77:9 [INFO] [stdout] | [INFO] [stdout] 77 | len: uint [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:83:9 [INFO] [stdout] | [INFO] [stdout] 83 | pos: uint [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find function `cb` in this scope [INFO] [stdout] --> src/jit/mod.rs:125:7 [INFO] [stdout] | [INFO] [stdout] 125 | cb(func) [INFO] [stdout] | ^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `MemoryMap` in module `os` [INFO] [stdout] --> src/jit/mod.rs:149:44 [INFO] [stdout] | [INFO] [stdout] 149 | pub fn region(&'a mut self) -> &mut os::MemoryMap { [INFO] [stdout] | ^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find value `MapReadable` in module `os` [INFO] [stdout] --> src/jit/mod.rs:151:67 [INFO] [stdout] | [INFO] [stdout] 151 | let mut region = match os::MemoryMap::new(code.len(), &[os::MapReadable, os::MapWritable]) { [INFO] [stdout] | ^^^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find value `MapWritable` in module `os` [INFO] [stdout] --> src/jit/mod.rs:151:84 [INFO] [stdout] | [INFO] [stdout] 151 | let mut region = match os::MemoryMap::new(code.len(), &[os::MapReadable, os::MapWritable]) { [INFO] [stdout] | ^^^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:164:68 [INFO] [stdout] | [INFO] [stdout] 164 | pub fn new(name: String, jit: Option<&'b mut Jit<'a, 'b>>, pos: uint) -> JitFunction<'a, 'b> { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:195:25 [INFO] [stdout] | [INFO] [stdout] 195 | pub fn len(&self) -> uint { self.len } [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:200:34 [INFO] [stdout] | [INFO] [stdout] 200 | pub fn new(name: String, pos: uint) -> JitLabel { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:228:21 [INFO] [stdout] | [INFO] [stdout] 228 | fn len(&self) -> uint { self.op.len() } [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/lib.rs:65:1 [INFO] [stdout] | [INFO] [stdout] 65 | extern crate libc; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:3:5 [INFO] [stdout] | [INFO] [stdout] 3 | use libc; [INFO] [stdout] | ^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:17:10 [INFO] [stdout] | [INFO] [stdout] 17 | libc::mprotect(self.data() as *mut libc::c_void, [INFO] [stdout] | ^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:18:39 [INFO] [stdout] | [INFO] [stdout] 18 | self.len() as libc::size_t, [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:19:25 [INFO] [stdout] | [INFO] [stdout] 19 | libc::PROT_READ | libc::PROT_EXEC) == -1 [INFO] [stdout] | ^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:19:43 [INFO] [stdout] | [INFO] [stdout] 19 | libc::PROT_READ | libc::PROT_EXEC) == -1 [INFO] [stdout] | ^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0433]: failed to resolve: could not find `MemoryMap` in `os` [INFO] [stdout] --> src/jit/mod.rs:151:34 [INFO] [stdout] | [INFO] [stdout] 151 | let mut region = match os::MemoryMap::new(code.len(), &[os::MapReadable, os::MapWritable]) { [INFO] [stdout] | ^^^^^^^^^ could not find `MemoryMap` in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `MemoryMap` in module `os` [INFO] [stdout] --> src/region.rs:14:27 [INFO] [stdout] | [INFO] [stdout] 14 | impl MemoryRegion for os::MemoryMap { [INFO] [stdout] | ^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find function `copy_memory` in module `ptr` [INFO] [stdout] --> src/region.rs:28:18 [INFO] [stdout] | [INFO] [stdout] 28 | ptr::copy_memory(self.data(), data.as_ptr(), data.len()); [INFO] [stdout] | ^^^^^^^^^^^ not found in `ptr` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:9:49 [INFO] [stdout] | [INFO] [stdout] 9 | fn compile(&self, jit: &'a Jit<'a, 'b>, pos: uint) -> Vec { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:24:21 [INFO] [stdout] | [INFO] [stdout] 24 | fn len(&self) -> uint { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:57:49 [INFO] [stdout] | [INFO] [stdout] 57 | fn compile(&self, jit: &'a Jit<'a, 'b>, pos: uint) -> Vec { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:234:68 [INFO] [stdout] | [INFO] [stdout] 234 | fn encode_call<'a, 'b>(func: Option<&'b JitFunction<'a, 'b>>, pos: uint) -> Vec { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/x86_64.rs:248:30 [INFO] [stdout] | [INFO] [stdout] 248 | fn needed_bytes(num: u64) -> uint { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:13:49 [INFO] [stdout] | [INFO] [stdout] 13 | fn compile(&self, jit: &'a Jit<'a, 'b>, pos: uint) -> Vec; [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:18:21 [INFO] [stdout] | [INFO] [stdout] 18 | fn len(&self) -> uint; [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `MemoryMap` in module `os` [INFO] [stdout] --> src/jit/mod.rs:68:23 [INFO] [stdout] | [INFO] [stdout] 68 | region: Option [INFO] [stdout] | ^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:77:9 [INFO] [stdout] | [INFO] [stdout] 77 | len: uint [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:83:9 [INFO] [stdout] | [INFO] [stdout] 83 | pos: uint [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find function `cb` in this scope [INFO] [stdout] --> src/jit/mod.rs:125:7 [INFO] [stdout] | [INFO] [stdout] 125 | cb(func) [INFO] [stdout] | ^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `MemoryMap` in module `os` [INFO] [stdout] --> src/jit/mod.rs:149:44 [INFO] [stdout] | [INFO] [stdout] 149 | pub fn region(&'a mut self) -> &mut os::MemoryMap { [INFO] [stdout] | ^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find value `MapReadable` in module `os` [INFO] [stdout] --> src/jit/mod.rs:151:67 [INFO] [stdout] | [INFO] [stdout] 151 | let mut region = match os::MemoryMap::new(code.len(), &[os::MapReadable, os::MapWritable]) { [INFO] [stdout] | ^^^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0425]: cannot find value `MapWritable` in module `os` [INFO] [stdout] --> src/jit/mod.rs:151:84 [INFO] [stdout] | [INFO] [stdout] 151 | let mut region = match os::MemoryMap::new(code.len(), &[os::MapReadable, os::MapWritable]) { [INFO] [stdout] | ^^^^^^^^^^^ not found in `os` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:164:68 [INFO] [stdout] | [INFO] [stdout] 164 | pub fn new(name: String, jit: Option<&'b mut Jit<'a, 'b>>, pos: uint) -> JitFunction<'a, 'b> { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:195:25 [INFO] [stdout] | [INFO] [stdout] 195 | pub fn len(&self) -> uint { self.len } [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:200:34 [INFO] [stdout] | [INFO] [stdout] 200 | pub fn new(name: String, pos: uint) -> JitLabel { [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `uint` in this scope [INFO] [stdout] --> src/jit/mod.rs:228:21 [INFO] [stdout] | [INFO] [stdout] 228 | fn len(&self) -> uint { self.op.len() } [INFO] [stdout] | ^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/lib.rs:65:1 [INFO] [stdout] | [INFO] [stdout] 65 | extern crate libc; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:3:5 [INFO] [stdout] | [INFO] [stdout] 3 | use libc; [INFO] [stdout] | ^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:17:10 [INFO] [stdout] | [INFO] [stdout] 17 | libc::mprotect(self.data() as *mut libc::c_void, [INFO] [stdout] | ^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:18:39 [INFO] [stdout] | [INFO] [stdout] 18 | self.len() as libc::size_t, [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:19:25 [INFO] [stdout] | [INFO] [stdout] 19 | libc::PROT_READ | libc::PROT_EXEC) == -1 [INFO] [stdout] | ^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? [INFO] [stdout] --> src/region.rs:19:43 [INFO] [stdout] | [INFO] [stdout] 19 | libc::PROT_READ | libc::PROT_EXEC) == -1 [INFO] [stdout] | ^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #27812 for more information [INFO] [stdout] = help: add `#![feature(rustc_private)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0282]: type annotations needed [INFO] [stdout] --> src/jit/mod.rs:98:18 [INFO] [stdout] | [INFO] [stdout] 98 | region: None [INFO] [stdout] | ^^^^ cannot infer type for type parameter `T` declared on the enum `Option` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0282]: type annotations needed [INFO] [stdout] --> src/jit/mod.rs:98:18 [INFO] [stdout] | [INFO] [stdout] 98 | region: None [INFO] [stdout] | ^^^^ cannot infer type for type parameter `T` declared on the enum `Option` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:124:11 [INFO] [stdout] | [INFO] [stdout] 124 | if reg != JitReg::R1 { /* rax */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:128:12 [INFO] [stdout] | [INFO] [stdout] 128 | if reg2 != JitReg::R3 { /* rsi */ [INFO] [stdout] | ---- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `push_all` found for struct `Vec` in the current scope [INFO] [stdout] --> src/jit/x86_64.rs:132:8 [INFO] [stdout] | [INFO] [stdout] 132 | res.push_all(&[encode_rex(JitReg::R3, None, true), 0xf7, [INFO] [stdout] | ^^^^^^^^ method not found in `Vec` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:134:12 [INFO] [stdout] | [INFO] [stdout] 134 | if reg2 != JitReg::R3 { /* rsi */ [INFO] [stdout] | ---- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:137:11 [INFO] [stdout] | [INFO] [stdout] 137 | if reg != JitReg::R1 { /* rax */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `==` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:153:14 [INFO] [stdout] | [INFO] [stdout] 153 | if reg == JitReg::R3 { /* rsi */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `==` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:174:14 [INFO] [stdout] | [INFO] [stdout] 174 | if reg == JitReg::R3 { /* rsi */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:124:11 [INFO] [stdout] | [INFO] [stdout] 124 | if reg != JitReg::R1 { /* rax */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:128:12 [INFO] [stdout] | [INFO] [stdout] 128 | if reg2 != JitReg::R3 { /* rsi */ [INFO] [stdout] | ---- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `region::MemoryRegion` [INFO] [stdout] --> src/jit/mod.rs:5:5 [INFO] [stdout] | [INFO] [stdout] 5 | use region::MemoryRegion; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_imports)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 60 previous errors; 1 warning emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] Some errors have detailed explanations: E0282, E0369, E0412, E0425, E0433, E0599, E0658. [INFO] [stdout] [INFO] [stdout] For more information about an error, try `rustc --explain E0282`. [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `push_all` found for struct `Vec` in the current scope [INFO] [stdout] --> src/jit/x86_64.rs:132:8 [INFO] [stdout] | [INFO] [stdout] 132 | res.push_all(&[encode_rex(JitReg::R3, None, true), 0xf7, [INFO] [stdout] | ^^^^^^^^ method not found in `Vec` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:134:12 [INFO] [stdout] | [INFO] [stdout] 134 | if reg2 != JitReg::R3 { /* rsi */ [INFO] [stdout] | ---- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `!=` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:137:11 [INFO] [stdout] | [INFO] [stdout] 137 | if reg != JitReg::R1 { /* rax */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `==` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:153:14 [INFO] [stdout] | [INFO] [stdout] 153 | if reg == JitReg::R3 { /* rsi */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0369]: binary operation `==` cannot be applied to type `JitReg` [INFO] [stdout] --> src/jit/x86_64.rs:174:14 [INFO] [stdout] | [INFO] [stdout] 174 | if reg == JitReg::R3 { /* rsi */ [INFO] [stdout] | --- ^^ ---------- JitReg [INFO] [stdout] | | [INFO] [stdout] | JitReg [INFO] [stdout] | [INFO] [stdout] = note: an implementation of `std::cmp::PartialEq` might be missing for `JitReg` [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `lejit` [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stdout] warning: unused import: `region::MemoryRegion` [INFO] [stdout] --> src/jit/mod.rs:5:5 [INFO] [stdout] | [INFO] [stdout] 5 | use region::MemoryRegion; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_imports)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 60 previous errors; 1 warning emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] Some errors have detailed explanations: E0282, E0369, E0412, E0425, E0433, E0599, E0658. [INFO] [stdout] [INFO] [stdout] For more information about an error, try `rustc --explain E0282`. [INFO] [stdout] [INFO] [stderr] error: build failed [INFO] running `Command { std: "docker" "inspect" "64abadd275c7b777d8d99fb78714d8ecde4f20a546efa878c1b34785fc9a21b1", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "64abadd275c7b777d8d99fb78714d8ecde4f20a546efa878c1b34785fc9a21b1", kill_on_drop: false }` [INFO] [stdout] 64abadd275c7b777d8d99fb78714d8ecde4f20a546efa878c1b34785fc9a21b1