| /wasmtime-44.0.1/cranelift/filetests/filetests/isa/aarch64/ |
| H A D | condbr.clif | 19 ; cmp x0, x1 38 ; cmp x0, x2 58 ; cmp x0, x2 80 ; cmp x0, x2 82 ; cmp x1, x3 104 ; cmp x0, x2 106 ; cmp x1, x3 128 ; cmp x0, x2 130 ; cmp x1, x3 152 ; cmp x0, x2 [all …]
|
| H A D | bmask.clif | 19 ; cmp x0, #0 37 ; cmp x0, #0 55 ; cmp x0, #0 73 ; cmp x0, #0 91 ; cmp w0, #0 109 ; cmp w0, #0 127 ; cmp w0, #0 145 ; cmp w0, #0 165 ; cmp w2, #0 185 ; cmp w2, #0 [all …]
|
| H A D | condops.clif | 23 ; cmp w4, #0x2a 45 ; cmp w4, #0x2a 67 ; cmp w4, #0x2a 89 ; cmp w4, #0x2a 112 ; cmp w6, #0x2a 135 ; cmp w4, #0x2a 157 ; cmp w4, #0x2a 455 ; cmp x0, x7 482 ; cmp x0, x7 509 ; cmp x0, x7 [all …]
|
| H A D | condops-with-csdb.clif | 23 ; cmp w4, #0x2a 45 ; cmp w4, #0x2a 67 ; cmp w4, #0x2a 89 ; cmp w4, #0x2a 112 ; cmp w6, #0x2a 135 ; cmp w4, #0x2a 157 ; cmp w4, #0x2a 455 ; cmp x0, x7 482 ; cmp x0, x7 509 ; cmp x0, x7 [all …]
|
| H A D | icmp-const.clif | 23 ; cmp w0, #0x111, lsl #12 42 ; cmp w0, #0x111, lsl #12 65 ; cmp w0, w3 88 ; cmp w0, w3 107 ; cmp w0, #0x111, lsl #12 126 ; cmp w0, #0x111, lsl #12 149 ; cmp w0, w3 172 ; cmp w0, w3
|
| H A D | simd-valltrue.clif | 23 ; cmp x4, #0 45 ; cmp x4, #0 67 ; cmp x4, #0 89 ; cmp x4, #0 110 ; cmp xzr, x2, lsr #32 133 ; cmp x4, #0
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/store/ |
| H A D | dynamic_heap.wat | 32 ;; cmp sp, x16 49 ;; 68: cmp x3, x2, uxtx 54 ;; cmp x3, x2, uxtx 63 ;; a0: cmp x3, x2, uxtx 69 ;; cmp x3, x2, uxtx 80 ;; e4: cmp x3, x2, uxtx 87 ;; cmp x3, x2, uxtx
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | v128.rs | 3 use core::cmp::Ordering; 67 Some(self.cmp(other)) in partial_cmp() 72 fn cmp(&self, other: &V128) -> Ordering { in cmp() method 73 self.as_u128().cmp(&other.as_u128()) in cmp()
|
| H A D | resources.rs | 28 core::cmp::max(self.max_initial_memory_size, other.max_initial_memory_size); in add() 31 core::cmp::max(self.max_initial_table_size, other.max_initial_table_size); in add()
|
| /wasmtime-44.0.1/cranelift/bforest/src/ |
| H A D | lib.rs | 27 use core::cmp::Ordering; 62 fn cmp(&self, a: K, b: K) -> Ordering; in cmp() method 71 s.binary_search_by(|x| self.cmp(*x, k)) in search() 80 fn cmp(&self, a: K, b: K) -> Ordering { in cmp() function 81 a.cmp(&b) in cmp()
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/load/ |
| H A D | dynamic_heap.wat | 32 ;; cmp sp, x16 46 ;; 5c: cmp x2, x1, uxtx 51 ;; cmp x2, x1, uxtx 59 ;; 90: cmp x3, x2, uxtx 65 ;; cmp x3, x2, uxtx 75 ;; d0: cmp x4, x3, uxtx 82 ;; cmp x4, x3, uxtx
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/call_indirect/ |
| H A D | call_indirect.wat | 42 ;; cmp sp, x16 51 ;; cmp w0, #1 66 ;; cmp x1, x3, uxtx 76 ;; cmp x1, x3, uxtx 100 ;; cmp w1, w2, uxtx 134 ;; cmp x1, x3, uxtx 142 ;; cmp x1, x3, uxtx 168 ;; cmp w1, w2, uxtx
|
| H A D | local_arg.wat | 30 ;; cmp sp, x16 56 ;; cmp sp, x16 72 ;; cmp x1, x3, uxtx 82 ;; cmp x1, x3, uxtx 106 ;; cmp w1, w2, uxtx
|
| /wasmtime-44.0.1/crates/core/src/alloc/ |
| H A D | try_cow.rs | 2 use core::{cmp, fmt, hash, ops::Deref}; 168 fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> { in partial_cmp() 177 fn cmp(&self, other: &Self) -> cmp::Ordering { in cmp() function 178 Ord::cmp(&**self, &**other) in cmp()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/component/concurrent/ |
| H A D | table.rs | 2 use std::cmp::Ordering; 48 fn cmp(&self, other: &Self) -> Ordering { in cmp() method 49 self.rep.cmp(&other.rep) in cmp()
|
| /wasmtime-44.0.1/crates/cranelift/src/ |
| H A D | trap.rs | 61 let cmp = builder.ins().icmp(IntCC::Equal, value, zero); in trapz() localVariable 62 self.conditionally_trap(builder, cmp, trap); in trapz() 72 let cmp = builder.ins().icmp(IntCC::NotEqual, value, zero); in trapnz() localVariable 73 self.conditionally_trap(builder, cmp, trap); in trapnz()
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/br_table/ |
| H A D | nested_br_table_loop_block.wat | 31 ;; cmp sp, x16 41 ;; cmp w0, w1, uxtx 55 ;; cmp w0, w1, uxtx
|
| /wasmtime-44.0.1/crates/environ/src/collections/ |
| H A D | index_map.rs | 4 cmp::Ordering, 317 cmp: F, in insert_sorted_by() 323 Ok(self.inner.insert_sorted_by(key, value, cmp)) in insert_sorted_by() 535 pub fn sort_by<F>(&mut self, cmp: F) in sort_by() 539 self.inner.sort_by(cmp); in sort_by() 547 self.inner.sorted_by(cmp) in sorted_by() 568 pub fn sort_unstable_by<F>(&mut self, cmp: F) in sort_unstable_by() 572 self.inner.sort_unstable_by(cmp); in sort_unstable_by() 580 self.inner.sorted_unstable_by(cmp) in sorted_unstable_by() 626 pub fn is_sorted_by<'a, F>(&'a self, cmp: F) -> bool in is_sorted_by() [all …]
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/i64_ne/ |
| H A D | const.wat | 22 ;; cmp sp, x16 30 ;; cmp x0, #2
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/i64_lt_u/ |
| H A D | const.wat | 22 ;; cmp sp, x16 30 ;; cmp x0, #2
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/i32_lt_u/ |
| H A D | const.wat | 22 ;; cmp sp, x16 30 ;; cmp w0, #2
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/i64_ge_u/ |
| H A D | const.wat | 22 ;; cmp sp, x16 30 ;; cmp x0, #2
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/i64_gt_u/ |
| H A D | const.wat | 22 ;; cmp sp, x16 30 ;; cmp x0, #2
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/i64_eq/ |
| H A D | const.wat | 22 ;; cmp sp, x16 30 ;; cmp x0, #1
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/i32_ge_u/ |
| H A D | const.wat | 22 ;; cmp sp, x16 30 ;; cmp w0, #2
|