Lines Matching defs:Move
113 pub fn add(&mut self, source: Source, arch: Arch) -> Move { in add()
118 pub fn sub(&mut self, source: Source, arch: Arch) -> Move { in sub()
123 pub fn mul(&mut self, source: Source, arch: Arch) -> Move { in mul()
128 pub fn div(&mut self, source: Source, arch: Arch) -> Move { in div()
133 pub fn bit_or(&mut self, source: Source, arch: Arch) -> Move { in bit_or()
138 pub fn bit_and(&mut self, source: Source, arch: Arch) -> Move { in bit_and()
143 pub fn left_shift(&mut self, source: Source, arch: Arch) -> Move { in left_shift()
148 pub fn right_shift(&mut self, source: Source, arch: Arch) -> Move { in right_shift()
153 pub fn negate(&mut self, arch: Arch) -> Move { in negate()
158 pub fn modulo(&mut self, source: Source, arch: Arch) -> Move { in modulo()
163 pub fn bit_xor(&mut self, source: Source, arch: Arch) -> Move { in bit_xor()
168 pub fn mov(&mut self, source: Source, arch: Arch) -> Move { in mov()
173 pub fn signed_right_shift(&mut self, source: Source, arch: Arch) -> Move { in signed_right_shift()
178 fn mov_internal(&mut self, source: Source, arch_bits: Arch, op_bits: OpBits) -> Move { in mov_internal()
333 pub struct Move<'i> { struct
341 impl<'i> Move<'i> { argument
350 impl Instruction for Move<'_> { implementation