Assembler

Struct Assembler 

Source
pub struct Assembler<'a> {
    pub buffer: &'a mut CodeBuffer,
    /* private fields */
}
Expand description

X86/X64 Assembler implementation.

Fields§

§buffer: &'a mut CodeBuffer

Implementations§

Source§

impl<'a> Assembler<'a>

Source

pub fn new(buf: &'a mut CodeBuffer) -> Self

Examples found in repository?
examples/reloc.rs (line 12)
10fn main() {
11    let mut buf = CodeBuffer::new();
12    let mut asm = Assembler::new(&mut buf);
13
14    let str_constant = asm.add_constant("Hello, World!\0");
15    let puts_sym = asm
16        .buffer
17        .add_symbol(ExternalName::Symbol("puts".into()), RelocDistance::Far);
18
19    asm.lea64rm(RDI, ptr64_label(str_constant, 0));
20    asm.callm(ptr64_sym(puts_sym, 0));
21    asm.ret();
22
23    let result = buf.finish();
24
25    for reloc in result.relocs() {
26        println!("{:?}", reloc);
27    }
28
29    let mut jit = JitAllocator::new(Default::default());
30
31    // allocate memory for GOT table and for code itself
32    let mut span = jit
33        .alloc(result.data().len() + result.relocs().len() * 8)
34        .unwrap();
35
36    let mut got_addr_rx = std::ptr::null();
37
38    unsafe {
39        jit.write(&mut span, |span| {
40            span.rw()
41                .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
42            got_addr_rx = span.rx().add(result.data().len());
43            span.rw()
44                .add(result.data().len())
45                .cast::<usize>()
46                .write(puts as *const u8 as usize);
47            // we only link to one symbol in GOT table, don't bother with anything else...
48            perform_relocations(
49                span.rw(),
50                span.rx(),
51                &result.relocs(),
52                |_| unreachable!(),
53                |_| got_addr_rx,
54                |_| unreachable!(),
55            );
56        })
57        .unwrap();
58
59        let mut out = String::new();
60        pretty_disassembler(
61            &mut out,
62            64,
63            std::slice::from_raw_parts(span.rx(), result.data().len()),
64            span.rx() as _,
65        )
66        .unwrap();
67
68        println!("{}", out);
69        #[cfg(target_arch = "x86_64")]
70        {
71            let f: extern "C" fn() = std::mem::transmute(span.rx());
72
73            f();
74        }
75    }
76}
More examples
Hide additional examples
examples/factorial.rs (line 10)
4fn main() {
5    {
6        use asmkit::core::buffer::CodeBuffer;
7        use asmkit::x86::*;
8        use formatter::pretty_disassembler;
9        let mut buf = CodeBuffer::new();
10        let mut asm = Assembler::new(&mut buf);
11
12        let label = asm.get_label();
13        let fac = asm.get_label();
14
15        asm.bind_label(fac);
16        asm.mov64ri(RAX, imm(1));
17        asm.test64rr(RDI, RDI);
18        asm.jnz(label);
19        asm.ret();
20
21        {
22            asm.bind_label(label);
23            asm.pushr(RBX);
24            asm.mov64rr(RBX, RDI);
25            asm.lea64rm(RDI, ptr64(RDI, -1));
26            asm.call(fac);
27            asm.mov64rr(RDX, RAX);
28            asm.mov64rr(RAX, RBX);
29            asm.imul64rr(RAX, RDX);
30            asm.popr(RBX);
31            asm.ret();
32        }
33
34        let result = buf.finish();
35
36        let mut jit = JitAllocator::new(JitAllocatorOptions::default());
37
38        let mut span = jit
39            .alloc(result.data().len())
40            .expect("failed to allocate code");
41        unsafe {
42            jit.write(&mut span, |span| {
43                span.rw()
44                    .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
45            })
46            .unwrap();
47            let mut out = String::new();
48            pretty_disassembler(&mut out, 64, result.data(), span.rx() as _).unwrap();
49            println!("{}", out);
50            #[cfg(target_arch = "x86_64")]
51            {
52                let f: extern "C" fn(u64) -> u64 = std::mem::transmute(span.rx());
53
54                println!("X86 factorial(5) = {:?}", f(5));
55            }
56        }
57    }
58
59    {
60        use asmkit::core::buffer::CodeBuffer;
61        use asmkit::riscv::*;
62        use formatter::pretty_disassembler;
63        let mut buf = CodeBuffer::new();
64        let mut asm = Assembler::new(&mut buf);
65
66        let label = asm.get_label();
67        let fac = asm.get_label();
68        asm.bind_label(fac);
69        asm.bnez(A0, label);
70        asm.addi(A0, ZERO, imm(1));
71        asm.ret();
72        {
73            asm.bind_label(label);
74            asm.addi(SP, SP, imm(-16));
75            asm.sd(SP, RA, imm(8));
76            asm.sd(SP, S0, imm(0));
77            asm.mv(S0, A0);
78            asm.addi(A0, A0, imm(-1));
79
80            asm.call(fac);
81            asm.mul(A0, S0, A0);
82            asm.ld(RA, SP, imm(8));
83            asm.ld(S0, SP, imm(0));
84            asm.addi(SP, SP, imm(16));
85            asm.ret();
86        }
87
88        let result = buf.finish();
89
90        let mut jit = JitAllocator::new(JitAllocatorOptions::default());
91
92        let mut span = jit
93            .alloc(result.data().len())
94            .expect("failed to allocate code");
95        unsafe {
96            jit.write(&mut span, |span| {
97                span.rw()
98                    .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
99            })
100            .unwrap(); 
101            
102
103            let mut out = String::new();
104            pretty_disassembler(&mut out, 64, result.data(), span.rx() as _).unwrap();
105            println!("{}", out);
106            #[cfg(target_arch = "riscv64")]
107            {
108                let f: extern "C" fn(u64) -> u64 = std::mem::transmute(span.rx());
109
110                println!("RV64 factorial(5) = {:?}", f(5));
111            }
112        }
113    }
114}
Source

pub fn sae(&mut self) -> &mut Self

Source

pub fn rn_sae(&mut self) -> &mut Self

Source

pub fn rd_sae(&mut self) -> &mut Self

Source

pub fn ru_sae(&mut self) -> &mut Self

Source

pub fn rz_sae(&mut self) -> &mut Self

Source

pub fn seg(&mut self, sreg: SReg) -> &mut Self

Source

pub fn fs(&mut self) -> &mut Self

Source

pub fn gs(&mut self) -> &mut Self

Source

pub fn k(&mut self, k: KReg) -> &mut Self

Source

pub fn rep(&mut self) -> &mut Self

Source

pub fn repnz(&mut self) -> &mut Self

Source

pub fn repz(&mut self) -> &mut Self

Source

pub fn lock(&mut self) -> &mut Self

Source

pub fn long(&mut self) -> &mut Self

Source

pub fn get_label(&mut self) -> Label

Examples found in repository?
examples/factorial.rs (line 12)
4fn main() {
5    {
6        use asmkit::core::buffer::CodeBuffer;
7        use asmkit::x86::*;
8        use formatter::pretty_disassembler;
9        let mut buf = CodeBuffer::new();
10        let mut asm = Assembler::new(&mut buf);
11
12        let label = asm.get_label();
13        let fac = asm.get_label();
14
15        asm.bind_label(fac);
16        asm.mov64ri(RAX, imm(1));
17        asm.test64rr(RDI, RDI);
18        asm.jnz(label);
19        asm.ret();
20
21        {
22            asm.bind_label(label);
23            asm.pushr(RBX);
24            asm.mov64rr(RBX, RDI);
25            asm.lea64rm(RDI, ptr64(RDI, -1));
26            asm.call(fac);
27            asm.mov64rr(RDX, RAX);
28            asm.mov64rr(RAX, RBX);
29            asm.imul64rr(RAX, RDX);
30            asm.popr(RBX);
31            asm.ret();
32        }
33
34        let result = buf.finish();
35
36        let mut jit = JitAllocator::new(JitAllocatorOptions::default());
37
38        let mut span = jit
39            .alloc(result.data().len())
40            .expect("failed to allocate code");
41        unsafe {
42            jit.write(&mut span, |span| {
43                span.rw()
44                    .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
45            })
46            .unwrap();
47            let mut out = String::new();
48            pretty_disassembler(&mut out, 64, result.data(), span.rx() as _).unwrap();
49            println!("{}", out);
50            #[cfg(target_arch = "x86_64")]
51            {
52                let f: extern "C" fn(u64) -> u64 = std::mem::transmute(span.rx());
53
54                println!("X86 factorial(5) = {:?}", f(5));
55            }
56        }
57    }
58
59    {
60        use asmkit::core::buffer::CodeBuffer;
61        use asmkit::riscv::*;
62        use formatter::pretty_disassembler;
63        let mut buf = CodeBuffer::new();
64        let mut asm = Assembler::new(&mut buf);
65
66        let label = asm.get_label();
67        let fac = asm.get_label();
68        asm.bind_label(fac);
69        asm.bnez(A0, label);
70        asm.addi(A0, ZERO, imm(1));
71        asm.ret();
72        {
73            asm.bind_label(label);
74            asm.addi(SP, SP, imm(-16));
75            asm.sd(SP, RA, imm(8));
76            asm.sd(SP, S0, imm(0));
77            asm.mv(S0, A0);
78            asm.addi(A0, A0, imm(-1));
79
80            asm.call(fac);
81            asm.mul(A0, S0, A0);
82            asm.ld(RA, SP, imm(8));
83            asm.ld(S0, SP, imm(0));
84            asm.addi(SP, SP, imm(16));
85            asm.ret();
86        }
87
88        let result = buf.finish();
89
90        let mut jit = JitAllocator::new(JitAllocatorOptions::default());
91
92        let mut span = jit
93            .alloc(result.data().len())
94            .expect("failed to allocate code");
95        unsafe {
96            jit.write(&mut span, |span| {
97                span.rw()
98                    .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
99            })
100            .unwrap(); 
101            
102
103            let mut out = String::new();
104            pretty_disassembler(&mut out, 64, result.data(), span.rx() as _).unwrap();
105            println!("{}", out);
106            #[cfg(target_arch = "riscv64")]
107            {
108                let f: extern "C" fn(u64) -> u64 = std::mem::transmute(span.rx());
109
110                println!("RV64 factorial(5) = {:?}", f(5));
111            }
112        }
113    }
114}
Source

pub fn bind_label(&mut self, label: Label)

Examples found in repository?
examples/factorial.rs (line 15)
4fn main() {
5    {
6        use asmkit::core::buffer::CodeBuffer;
7        use asmkit::x86::*;
8        use formatter::pretty_disassembler;
9        let mut buf = CodeBuffer::new();
10        let mut asm = Assembler::new(&mut buf);
11
12        let label = asm.get_label();
13        let fac = asm.get_label();
14
15        asm.bind_label(fac);
16        asm.mov64ri(RAX, imm(1));
17        asm.test64rr(RDI, RDI);
18        asm.jnz(label);
19        asm.ret();
20
21        {
22            asm.bind_label(label);
23            asm.pushr(RBX);
24            asm.mov64rr(RBX, RDI);
25            asm.lea64rm(RDI, ptr64(RDI, -1));
26            asm.call(fac);
27            asm.mov64rr(RDX, RAX);
28            asm.mov64rr(RAX, RBX);
29            asm.imul64rr(RAX, RDX);
30            asm.popr(RBX);
31            asm.ret();
32        }
33
34        let result = buf.finish();
35
36        let mut jit = JitAllocator::new(JitAllocatorOptions::default());
37
38        let mut span = jit
39            .alloc(result.data().len())
40            .expect("failed to allocate code");
41        unsafe {
42            jit.write(&mut span, |span| {
43                span.rw()
44                    .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
45            })
46            .unwrap();
47            let mut out = String::new();
48            pretty_disassembler(&mut out, 64, result.data(), span.rx() as _).unwrap();
49            println!("{}", out);
50            #[cfg(target_arch = "x86_64")]
51            {
52                let f: extern "C" fn(u64) -> u64 = std::mem::transmute(span.rx());
53
54                println!("X86 factorial(5) = {:?}", f(5));
55            }
56        }
57    }
58
59    {
60        use asmkit::core::buffer::CodeBuffer;
61        use asmkit::riscv::*;
62        use formatter::pretty_disassembler;
63        let mut buf = CodeBuffer::new();
64        let mut asm = Assembler::new(&mut buf);
65
66        let label = asm.get_label();
67        let fac = asm.get_label();
68        asm.bind_label(fac);
69        asm.bnez(A0, label);
70        asm.addi(A0, ZERO, imm(1));
71        asm.ret();
72        {
73            asm.bind_label(label);
74            asm.addi(SP, SP, imm(-16));
75            asm.sd(SP, RA, imm(8));
76            asm.sd(SP, S0, imm(0));
77            asm.mv(S0, A0);
78            asm.addi(A0, A0, imm(-1));
79
80            asm.call(fac);
81            asm.mul(A0, S0, A0);
82            asm.ld(RA, SP, imm(8));
83            asm.ld(S0, SP, imm(0));
84            asm.addi(SP, SP, imm(16));
85            asm.ret();
86        }
87
88        let result = buf.finish();
89
90        let mut jit = JitAllocator::new(JitAllocatorOptions::default());
91
92        let mut span = jit
93            .alloc(result.data().len())
94            .expect("failed to allocate code");
95        unsafe {
96            jit.write(&mut span, |span| {
97                span.rw()
98                    .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
99            })
100            .unwrap(); 
101            
102
103            let mut out = String::new();
104            pretty_disassembler(&mut out, 64, result.data(), span.rx() as _).unwrap();
105            println!("{}", out);
106            #[cfg(target_arch = "riscv64")]
107            {
108                let f: extern "C" fn(u64) -> u64 = std::mem::transmute(span.rx());
109
110                println!("RV64 factorial(5) = {:?}", f(5));
111            }
112        }
113    }
114}
Source

pub fn add_constant(&mut self, c: impl Into<ConstantData>) -> Label

Examples found in repository?
examples/reloc.rs (line 14)
10fn main() {
11    let mut buf = CodeBuffer::new();
12    let mut asm = Assembler::new(&mut buf);
13
14    let str_constant = asm.add_constant("Hello, World!\0");
15    let puts_sym = asm
16        .buffer
17        .add_symbol(ExternalName::Symbol("puts".into()), RelocDistance::Far);
18
19    asm.lea64rm(RDI, ptr64_label(str_constant, 0));
20    asm.callm(ptr64_sym(puts_sym, 0));
21    asm.ret();
22
23    let result = buf.finish();
24
25    for reloc in result.relocs() {
26        println!("{:?}", reloc);
27    }
28
29    let mut jit = JitAllocator::new(Default::default());
30
31    // allocate memory for GOT table and for code itself
32    let mut span = jit
33        .alloc(result.data().len() + result.relocs().len() * 8)
34        .unwrap();
35
36    let mut got_addr_rx = std::ptr::null();
37
38    unsafe {
39        jit.write(&mut span, |span| {
40            span.rw()
41                .copy_from_nonoverlapping(result.data().as_ptr(), result.data().len());
42            got_addr_rx = span.rx().add(result.data().len());
43            span.rw()
44                .add(result.data().len())
45                .cast::<usize>()
46                .write(puts as *const u8 as usize);
47            // we only link to one symbol in GOT table, don't bother with anything else...
48            perform_relocations(
49                span.rw(),
50                span.rx(),
51                &result.relocs(),
52                |_| unreachable!(),
53                |_| got_addr_rx,
54                |_| unreachable!(),
55            );
56        })
57        .unwrap();
58
59        let mut out = String::new();
60        pretty_disassembler(
61            &mut out,
62            64,
63            std::slice::from_raw_parts(span.rx(), result.data().len()),
64            span.rx() as _,
65        )
66        .unwrap();
67
68        println!("{}", out);
69        #[cfg(target_arch = "x86_64")]
70        {
71            let f: extern "C" fn() = std::mem::transmute(span.rx());
72
73            f();
74        }
75    }
76}
Source

pub fn label_offset(&self, label: Label) -> CodeOffset

Trait Implementations§

Source§

impl<'a> Emitter for Assembler<'a>

Source§

fn emit( &mut self, opcode: i64, op0: &Operand, op1: &Operand, op2: &Operand, op3: &Operand, )

Source§

fn emit_n(&mut self, opcode: i64, ops: &[&Operand])

Source§

impl<'a> X86EmitterExplicit for Assembler<'a>

Source§

fn add8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn push16r(&mut self, op0: impl OperandCast)

Source§

fn pushr(&mut self, op0: impl OperandCast)

Source§

fn pop16r(&mut self, op0: impl OperandCast)

Source§

fn popr(&mut self, op0: impl OperandCast)

Source§

fn movsxr16m32(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr16r32(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr32m32(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr32r32(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr64m32(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr64r32(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn push16i(&mut self, op0: impl OperandCast)

Source§

fn pushi(&mut self, op0: impl OperandCast)

Source§

fn imul16rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn imul16rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn imul32rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn imul32rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn imul64rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn imul64rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn ins8(&mut self)

Source§

fn ins16(&mut self)

Source§

fn ins32(&mut self)

Source§

fn ins64(&mut self)

Source§

fn outs8(&mut self)

Source§

fn outs16(&mut self)

Source§

fn outs32(&mut self)

Source§

fn outs64(&mut self)

Source§

fn jo(&mut self, op0: impl OperandCast)

Source§

fn jno(&mut self, op0: impl OperandCast)

Source§

fn jc(&mut self, op0: impl OperandCast)

Source§

fn jnc(&mut self, op0: impl OperandCast)

Source§

fn jz(&mut self, op0: impl OperandCast)

Source§

fn jnz(&mut self, op0: impl OperandCast)

Source§

fn jbe(&mut self, op0: impl OperandCast)

Source§

fn ja(&mut self, op0: impl OperandCast)

Source§

fn js(&mut self, op0: impl OperandCast)

Source§

fn jns(&mut self, op0: impl OperandCast)

Source§

fn jp(&mut self, op0: impl OperandCast)

Source§

fn jnp(&mut self, op0: impl OperandCast)

Source§

fn jl(&mut self, op0: impl OperandCast)

Source§

fn jge(&mut self, op0: impl OperandCast)

Source§

fn jle(&mut self, op0: impl OperandCast)

Source§

fn jg(&mut self, op0: impl OperandCast)

Source§

fn add8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn add64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn or64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adc64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sbb64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn and64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sub64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xor64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmp64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xchg64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov_s2gmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov_s2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lea16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lea32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lea64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov_g2srm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov_g2srr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn pop16m(&mut self, op0: impl OperandCast)

Source§

fn popm(&mut self, op0: impl OperandCast)

Source§

fn c_ex16(&mut self)

Source§

fn cbw(&mut self)

Source§

fn c_ex32(&mut self)

Source§

fn cwde(&mut self)

Source§

fn c_ex64(&mut self)

Source§

fn cdqe(&mut self)

Source§

fn c_sep16(&mut self)

Source§

fn cwd(&mut self)

Source§

fn c_sep32(&mut self)

Source§

fn cdq(&mut self)

Source§

fn c_sep64(&mut self)

Source§

fn cqo(&mut self)

Source§

fn fwait(&mut self)

Source§

fn pushf16(&mut self)

Source§

fn pushf(&mut self)

Source§

fn popf16(&mut self)

Source§

fn popf(&mut self)

Source§

fn sahf(&mut self)

Source§

fn lahf(&mut self)

Source§

fn mov8ra(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov16ra(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov32ra(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov64ra(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov8ar(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov16ar(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov32ar(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov64ar(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movs8(&mut self)

Source§

fn movs16(&mut self)

Source§

fn movs32(&mut self)

Source§

fn movs64(&mut self)

Source§

fn cmps8(&mut self)

Source§

fn repz_cmps8(&mut self)

Source§

fn cmps16(&mut self)

Source§

fn repz_cmps16(&mut self)

Source§

fn cmps32(&mut self)

Source§

fn repz_cmps32(&mut self)

Source§

fn cmps64(&mut self)

Source§

fn repz_cmps64(&mut self)

Source§

fn test8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn stos8(&mut self)

Source§

fn stos16(&mut self)

Source§

fn stos32(&mut self)

Source§

fn stos64(&mut self)

Source§

fn lods8(&mut self)

Source§

fn lods16(&mut self)

Source§

fn lods32(&mut self)

Source§

fn lods64(&mut self)

Source§

fn scas8(&mut self)

Source§

fn repz_scas8(&mut self)

Source§

fn scas16(&mut self)

Source§

fn repz_scas16(&mut self)

Source§

fn scas32(&mut self)

Source§

fn repz_scas32(&mut self)

Source§

fn scas64(&mut self)

Source§

fn repz_scas64(&mut self)

Source§

fn mov8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn reti(&mut self, op0: impl OperandCast)

Source§

fn ret(&mut self)

Source§

fn mov8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xaborti(&mut self, op0: impl OperandCast)

Source§

fn mov16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xbegin(&mut self, op0: impl OperandCast)

Source§

fn enter16i(&mut self, op0: impl OperandCast)

Source§

fn enteri(&mut self, op0: impl OperandCast)

Source§

fn leave16(&mut self)

Source§

fn leave(&mut self)

Source§

fn retf16i(&mut self, op0: impl OperandCast)

Source§

fn retf32i(&mut self, op0: impl OperandCast)

Source§

fn retf64i(&mut self, op0: impl OperandCast)

Source§

fn retf16(&mut self)

Source§

fn retf32(&mut self)

Source§

fn retf64(&mut self)

Source§

fn int3(&mut self)

Source§

fn inti(&mut self, op0: impl OperandCast)

Source§

fn iret16(&mut self)

Source§

fn iret32(&mut self)

Source§

fn iret64(&mut self)

Source§

fn rol8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rol64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ror64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcl64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rcr64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shl64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shr64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sar64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xlatb(&mut self)

Source§

fn loopnz(&mut self, op0: impl OperandCast)

Source§

fn loopz(&mut self, op0: impl OperandCast)

Source§

fn loop(&mut self, op0: impl OperandCast)

Source§

fn jcxz(&mut self, op0: impl OperandCast)

Source§

fn in8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn in16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn in32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn in64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn out8ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn out16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn out32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn out64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn call(&mut self, op0: impl OperandCast)

Source§

fn jmp(&mut self, op0: impl OperandCast)

Source§

fn in8(&mut self)

Source§

fn in16(&mut self)

Source§

fn in32(&mut self)

Source§

fn in64(&mut self)

Source§

fn out8(&mut self)

Source§

fn out16(&mut self)

Source§

fn out32(&mut self)

Source§

fn out64(&mut self)

Source§

fn int1(&mut self)

Source§

fn hlt(&mut self)

Source§

fn cmc(&mut self)

Source§

fn test8mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn not8r(&mut self, op0: impl OperandCast)

Source§

fn not8m(&mut self, op0: impl OperandCast)

Source§

fn neg8r(&mut self, op0: impl OperandCast)

Source§

fn neg8m(&mut self, op0: impl OperandCast)

Source§

fn mul8r(&mut self, op0: impl OperandCast)

Source§

fn mul8m(&mut self, op0: impl OperandCast)

Source§

fn imul8r(&mut self, op0: impl OperandCast)

Source§

fn imul8m(&mut self, op0: impl OperandCast)

Source§

fn div8r(&mut self, op0: impl OperandCast)

Source§

fn div8m(&mut self, op0: impl OperandCast)

Source§

fn idiv8r(&mut self, op0: impl OperandCast)

Source§

fn idiv8m(&mut self, op0: impl OperandCast)

Source§

fn test16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn test64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn not16r(&mut self, op0: impl OperandCast)

Source§

fn not16m(&mut self, op0: impl OperandCast)

Source§

fn not32r(&mut self, op0: impl OperandCast)

Source§

fn not32m(&mut self, op0: impl OperandCast)

Source§

fn not64r(&mut self, op0: impl OperandCast)

Source§

fn not64m(&mut self, op0: impl OperandCast)

Source§

fn neg16r(&mut self, op0: impl OperandCast)

Source§

fn neg16m(&mut self, op0: impl OperandCast)

Source§

fn neg32r(&mut self, op0: impl OperandCast)

Source§

fn neg32m(&mut self, op0: impl OperandCast)

Source§

fn neg64r(&mut self, op0: impl OperandCast)

Source§

fn neg64m(&mut self, op0: impl OperandCast)

Source§

fn mul16r(&mut self, op0: impl OperandCast)

Source§

fn mul16m(&mut self, op0: impl OperandCast)

Source§

fn mul32r(&mut self, op0: impl OperandCast)

Source§

fn mul32m(&mut self, op0: impl OperandCast)

Source§

fn mul64r(&mut self, op0: impl OperandCast)

Source§

fn mul64m(&mut self, op0: impl OperandCast)

Source§

fn imul16r(&mut self, op0: impl OperandCast)

Source§

fn imul16m(&mut self, op0: impl OperandCast)

Source§

fn imul32r(&mut self, op0: impl OperandCast)

Source§

fn imul32m(&mut self, op0: impl OperandCast)

Source§

fn imul64r(&mut self, op0: impl OperandCast)

Source§

fn imul64m(&mut self, op0: impl OperandCast)

Source§

fn div16r(&mut self, op0: impl OperandCast)

Source§

fn div16m(&mut self, op0: impl OperandCast)

Source§

fn div32r(&mut self, op0: impl OperandCast)

Source§

fn div32m(&mut self, op0: impl OperandCast)

Source§

fn div64r(&mut self, op0: impl OperandCast)

Source§

fn div64m(&mut self, op0: impl OperandCast)

Source§

fn idiv16r(&mut self, op0: impl OperandCast)

Source§

fn idiv16m(&mut self, op0: impl OperandCast)

Source§

fn idiv32r(&mut self, op0: impl OperandCast)

Source§

fn idiv32m(&mut self, op0: impl OperandCast)

Source§

fn idiv64r(&mut self, op0: impl OperandCast)

Source§

fn idiv64m(&mut self, op0: impl OperandCast)

Source§

fn clc(&mut self)

Source§

fn stc(&mut self)

Source§

fn cli(&mut self)

Source§

fn sti(&mut self)

Source§

fn cld(&mut self)

Source§

fn std(&mut self)

Source§

fn inc8r(&mut self, op0: impl OperandCast)

Source§

fn inc8m(&mut self, op0: impl OperandCast)

Source§

fn dec8r(&mut self, op0: impl OperandCast)

Source§

fn dec8m(&mut self, op0: impl OperandCast)

Source§

fn inc16r(&mut self, op0: impl OperandCast)

Source§

fn inc16m(&mut self, op0: impl OperandCast)

Source§

fn inc32r(&mut self, op0: impl OperandCast)

Source§

fn inc32m(&mut self, op0: impl OperandCast)

Source§

fn inc64r(&mut self, op0: impl OperandCast)

Source§

fn inc64m(&mut self, op0: impl OperandCast)

Source§

fn dec16r(&mut self, op0: impl OperandCast)

Source§

fn dec16m(&mut self, op0: impl OperandCast)

Source§

fn dec32r(&mut self, op0: impl OperandCast)

Source§

fn dec32m(&mut self, op0: impl OperandCast)

Source§

fn dec64r(&mut self, op0: impl OperandCast)

Source§

fn dec64m(&mut self, op0: impl OperandCast)

Source§

fn callr(&mut self, op0: impl OperandCast)

Source§

fn callm(&mut self, op0: impl OperandCast)

Source§

fn callf16m(&mut self, op0: impl OperandCast)

Source§

fn callf32m(&mut self, op0: impl OperandCast)

Source§

fn callf64m(&mut self, op0: impl OperandCast)

Source§

fn jmpr(&mut self, op0: impl OperandCast)

Source§

fn jmpm(&mut self, op0: impl OperandCast)

Source§

fn jmpf16m(&mut self, op0: impl OperandCast)

Source§

fn jmpf32m(&mut self, op0: impl OperandCast)

Source§

fn jmpf64m(&mut self, op0: impl OperandCast)

Source§

fn push16m(&mut self, op0: impl OperandCast)

Source§

fn pushm(&mut self, op0: impl OperandCast)

Source§

fn sldtr(&mut self, op0: impl OperandCast)

Source§

fn sldtm(&mut self, op0: impl OperandCast)

Source§

fn strr(&mut self, op0: impl OperandCast)

Source§

fn strm(&mut self, op0: impl OperandCast)

Source§

fn lldtr(&mut self, op0: impl OperandCast)

Source§

fn lldtm(&mut self, op0: impl OperandCast)

Source§

fn ltrr(&mut self, op0: impl OperandCast)

Source§

fn ltrm(&mut self, op0: impl OperandCast)

Source§

fn verrr(&mut self, op0: impl OperandCast)

Source§

fn verrm(&mut self, op0: impl OperandCast)

Source§

fn verwr(&mut self, op0: impl OperandCast)

Source§

fn verwm(&mut self, op0: impl OperandCast)

Source§

fn sgdtm(&mut self, op0: impl OperandCast)

Source§

fn sidtm(&mut self, op0: impl OperandCast)

Source§

fn lgdtm(&mut self, op0: impl OperandCast)

Source§

fn lidtm(&mut self, op0: impl OperandCast)

Source§

fn smswm(&mut self, op0: impl OperandCast)

Source§

fn smsw16r(&mut self, op0: impl OperandCast)

Source§

fn smsw32r(&mut self, op0: impl OperandCast)

Source§

fn smsw64r(&mut self, op0: impl OperandCast)

Source§

fn lmswr(&mut self, op0: impl OperandCast)

Source§

fn lmswm(&mut self, op0: impl OperandCast)

Source§

fn invlpg8m(&mut self, op0: impl OperandCast)

Source§

fn enclv(&mut self)

Source§

fn monitor(&mut self)

Source§

fn mwait(&mut self)

Source§

fn clac(&mut self)

Source§

fn stac(&mut self)

Source§

fn encls(&mut self)

Source§

fn xgetbv(&mut self)

Source§

fn xsetbv(&mut self)

Source§

fn xend(&mut self)

Source§

fn xtest(&mut self)

Source§

fn enclu(&mut self)

Source§

fn swapgs(&mut self)

Source§

fn rdtscp(&mut self)

Source§

fn lar16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lar16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lar32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lar32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lar64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lar64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lsl16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lsl16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lsl32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lsl32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lsl64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lsl64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn syscall(&mut self)

Source§

fn clts(&mut self)

Source§

fn sysret(&mut self)

Source§

fn invd(&mut self)

Source§

fn wbinvd(&mut self)

Source§

fn ud2(&mut self)

Source§

fn prefetchm(&mut self, op0: impl OperandCast)

Source§

fn prefetchwm(&mut self, op0: impl OperandCast)

Source§

fn prefetchwt1m(&mut self, op0: impl OperandCast)

Source§

fn femms(&mut self)

Source§

fn _3dnowrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn _3dnowrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn prefetchntam(&mut self, op0: impl OperandCast)

Source§

fn prefetcht0m(&mut self, op0: impl OperandCast)

Source§

fn prefetcht1m(&mut self, op0: impl OperandCast)

Source§

fn prefetcht2m(&mut self, op0: impl OperandCast)

Source§

fn prefetchit1m(&mut self, op0: impl OperandCast)

Source§

fn prefetchit0m(&mut self, op0: impl OperandCast)

Source§

fn nop16r(&mut self, op0: impl OperandCast)

Source§

fn nop16m(&mut self, op0: impl OperandCast)

Source§

fn nop32r(&mut self, op0: impl OperandCast)

Source§

fn nop32m(&mut self, op0: impl OperandCast)

Source§

fn nop64r(&mut self, op0: impl OperandCast)

Source§

fn nop64m(&mut self, op0: impl OperandCast)

Source§

fn mov_cr2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov_dr2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov_g2crrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mov_g2drrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn wrmsr(&mut self)

Source§

fn rdtsc(&mut self)

Source§

fn rdmsr(&mut self)

Source§

fn rdpmc(&mut self)

Source§

fn sysenter(&mut self)

Source§

fn sysexit(&mut self)

Source§

fn getsec(&mut self)

Source§

fn cmovo16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovo16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovo32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovo32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovo64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovo64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovno16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovno16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovno32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovno32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovno64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovno64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovc16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovc16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovc32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovc32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovc64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovc64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnc16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnc16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnc32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnc32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnc64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnc64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovz16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovz16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovz32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovz32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovz64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovz64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnz16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnz16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnz32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnz32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnz64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnz64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovbe16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovbe16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovbe32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovbe32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovbe64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovbe64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmova16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmova16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmova32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmova32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmova64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmova64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovs16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovs16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovs32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovs32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovs64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovs64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovns16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovns16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovns32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovns32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovns64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovns64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovp16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovp16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovp32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovp32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovp64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovp64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnp16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnp16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnp32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnp32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnp64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovnp64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovl16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovl16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovl32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovl32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovl64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovl64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovge16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovge16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovge32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovge32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovge64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovge64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovle16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovle16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovle32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovle32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovle64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovle64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovg16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovg16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovg32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovg32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovg64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmovg64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn seto8r(&mut self, op0: impl OperandCast)

Source§

fn seto8m(&mut self, op0: impl OperandCast)

Source§

fn setno8r(&mut self, op0: impl OperandCast)

Source§

fn setno8m(&mut self, op0: impl OperandCast)

Source§

fn setc8r(&mut self, op0: impl OperandCast)

Source§

fn setc8m(&mut self, op0: impl OperandCast)

Source§

fn setnc8r(&mut self, op0: impl OperandCast)

Source§

fn setnc8m(&mut self, op0: impl OperandCast)

Source§

fn setz8r(&mut self, op0: impl OperandCast)

Source§

fn setz8m(&mut self, op0: impl OperandCast)

Source§

fn setnz8r(&mut self, op0: impl OperandCast)

Source§

fn setnz8m(&mut self, op0: impl OperandCast)

Source§

fn setbe8r(&mut self, op0: impl OperandCast)

Source§

fn setbe8m(&mut self, op0: impl OperandCast)

Source§

fn seta8r(&mut self, op0: impl OperandCast)

Source§

fn seta8m(&mut self, op0: impl OperandCast)

Source§

fn sets8r(&mut self, op0: impl OperandCast)

Source§

fn sets8m(&mut self, op0: impl OperandCast)

Source§

fn setns8r(&mut self, op0: impl OperandCast)

Source§

fn setns8m(&mut self, op0: impl OperandCast)

Source§

fn setp8r(&mut self, op0: impl OperandCast)

Source§

fn setp8m(&mut self, op0: impl OperandCast)

Source§

fn setnp8r(&mut self, op0: impl OperandCast)

Source§

fn setnp8m(&mut self, op0: impl OperandCast)

Source§

fn setl8r(&mut self, op0: impl OperandCast)

Source§

fn setl8m(&mut self, op0: impl OperandCast)

Source§

fn setge8r(&mut self, op0: impl OperandCast)

Source§

fn setge8m(&mut self, op0: impl OperandCast)

Source§

fn setle8r(&mut self, op0: impl OperandCast)

Source§

fn setle8m(&mut self, op0: impl OperandCast)

Source§

fn setg8r(&mut self, op0: impl OperandCast)

Source§

fn setg8m(&mut self, op0: impl OperandCast)

Source§

fn push_seg16r(&mut self, op0: impl OperandCast)

Source§

fn push_segr(&mut self, op0: impl OperandCast)

Source§

fn pop_seg16r(&mut self, op0: impl OperandCast)

Source§

fn pop_segr(&mut self, op0: impl OperandCast)

Source§

fn cpuid(&mut self)

Source§

fn bt16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shld16mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld16rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld32mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld32rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld64mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld64rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld16rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld16mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shld64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn rsm(&mut self)

Source§

fn bts16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn shrd16mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd16rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd32mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd32rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd64mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd64rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd16rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd16mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn imul16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn imul16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn imul32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn imul32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn imul64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn imul64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchg64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lss16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lss32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lss64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lfs16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lfs32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lfs64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lgs16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lgs32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lgs64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr16m8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr16r8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr32m8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr32r8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr64m8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr64r8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr16m16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr16r16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr32m16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr32r16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr64m16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movzxr64r16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn popcnt16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn popcnt16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn popcnt32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn popcnt32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn popcnt64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn popcnt64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud1_16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud1_16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud1_32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud1_32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud1_64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud1_64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bt64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bts64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btr64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc16mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc16ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc32mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc32ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc64mi(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc64ri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn btc64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsf16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsf16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsf32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsf32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsf64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsf64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tzcnt16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tzcnt16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tzcnt32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tzcnt32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tzcnt64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tzcnt64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsr16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsr16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsr32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsr32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsr64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bsr64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lzcnt16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lzcnt16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lzcnt32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lzcnt32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lzcnt64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lzcnt64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr16m8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr16r8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr32m8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr32r8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr64m8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr64r8(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr16m16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr16r16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr32m16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr32r16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr64m16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movsxr64r16(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd8mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn xadd64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movnti32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movnti64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpxchgd32m(&mut self, op0: impl OperandCast)

Source§

fn cmpxchg8bm(&mut self, op0: impl OperandCast)

Source§

fn cmpxchgd64m(&mut self, op0: impl OperandCast)

Source§

fn cmpxchg16bm(&mut self, op0: impl OperandCast)

Source§

fn bswap16r(&mut self, op0: impl OperandCast)

Source§

fn bswap32r(&mut self, op0: impl OperandCast)

Source§

fn bswap64r(&mut self, op0: impl OperandCast)

Source§

fn ud0_16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud0_16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud0_32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud0_32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud0_64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ud0_64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movbe16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movbe32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movbe64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_8rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_8rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movbe16mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movbe32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movbe64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_16rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_16rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn crc32_64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtpi2psrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtpi2psrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtpi2pdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtpi2pdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvttps2pirm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvttps2pirr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvttpd2pirm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvttpd2pirr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtps2pirm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtps2pirr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtpd2pirm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_cvtpd2pirr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpcklbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpcklbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpcklwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpcklwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckldqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckldqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_packsswbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_packsswbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpgtbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpgtbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpgtwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpgtwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpgtdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpgtdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_packuswbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_packuswbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckhbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckhbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckhwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckhwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckhdqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_punpckhdqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_packssdwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_packssdwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movd_g2mrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movd_g2mrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movq_g2mrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movq_g2mrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pshufwrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mmx_pshufwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mmx_psrlwri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrawri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psllwri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrldri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psradri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pslldri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrlqri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psllqri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpeqbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpeqbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpeqwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpeqwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpeqdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pcmpeqdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_emms(&mut self)

Source§

fn mmx_movd_m2gmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movd_m2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movq_m2gmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movq_m2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movqmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pinsrwrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mmx_pinsrwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mmx_pextrwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mmx_psrlwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrlwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrldrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrldrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrlqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrlqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmullwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmullwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movdq2qrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movq2dqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmovmskbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubusbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubusbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubuswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubuswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pminubrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pminubrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pandrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pandrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddusbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddusbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_padduswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_padduswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaxubrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaxubrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pandnrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pandnrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pavgbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pavgbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrawrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psrawrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psradrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psradrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pavgwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pavgwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmulhuwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmulhuwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmulhwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmulhwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_movntqmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_porrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_porrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pminswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pminswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaxswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaxswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pxorrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pxorrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psllwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psllwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pslldrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pslldrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psllqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psllqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmuludqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmuludqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaddwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaddwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psadbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psadbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psubqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_paddwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_padddrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_padddrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pshufbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pshufbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phaddwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phaddwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phadddrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phadddrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phaddswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phaddswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaddubswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmaddubswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phsubwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phsubwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phsubdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phsubdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phsubswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_phsubswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psignbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psignbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psignwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psignwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psigndrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_psigndrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmulhrswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pmulhrswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pabsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pabsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pabswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pabswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pabsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_pabsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn mmx_palignrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mmx_palignrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_movupsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movupsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movupdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movupdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movupsmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movupdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movssmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movsdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movlpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movhlpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movlpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movslduprm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movslduprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdduprm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdduprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movlpsmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movlpdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpcklpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpcklpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpcklpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpcklpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpckhpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpckhpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpckhpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_unpckhpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movhpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movlhpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movhpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movshduprm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movshduprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movhpsmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movhpdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movapsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movapsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movapdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movapdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movapsmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movapdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2ss32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2ss32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2ss64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2ss64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2sd32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2sd32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2sd64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsi2sd64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movntpsmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movntpdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movntssmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movntsdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttss2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttss2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttss2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttss2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttsd2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttsd2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttsd2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttsd2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtss2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtss2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtss2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtss2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsd2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsd2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsd2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsd2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_ucomissrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_ucomissrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_ucomisdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_ucomisdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_comissrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_comissrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_comisdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_comisdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movmskpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movmskpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_sqrtsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rsqrtpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rsqrtpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rsqrtssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rsqrtssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rcppsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rcppsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rcpssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_rcpssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andnpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andnpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andnpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_andnpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_orpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_orpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_orpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_orpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_xorpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_xorpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_xorpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_xorpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_mulsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtps2pdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtps2pdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtpd2psrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtpd2psrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtss2sdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtss2sdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsd2ssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtsd2ssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtdq2psrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtdq2psrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtps2dqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtps2dqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttps2dqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttps2dqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_subsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_minsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_divsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxssrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_maxsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpcklbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpcklbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpcklwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpcklwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckldqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckldqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packsswbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packsswbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packuswbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packuswbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhdqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhdqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packssdwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packssdwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpcklqdqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpcklqdqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhqdqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_punpckhqdqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movd_g2xrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movd_g2xrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movq_g2xrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movq_g2xrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdqarm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdqarr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdqurm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdqurr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pshufdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pshufdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pshufhwrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pshufhwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pshuflwrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pshuflwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_psrlwri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrawri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psllwri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrldri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psradri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pslldri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrlqri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrldqri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psllqri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pslldqri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_extrqri(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_insertqrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_extrqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_insertqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_haddpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_haddpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_haddpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_haddpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_hsubpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_hsubpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_hsubpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_hsubpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movd_x2gmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movd_x2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movq_x2gmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movq_x2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdqamr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movdqumr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fxsave32m(&mut self, op0: impl OperandCast)

Source§

fn fxsave64m(&mut self, op0: impl OperandCast)

Source§

fn fxrstor32m(&mut self, op0: impl OperandCast)

Source§

fn fxrstor64m(&mut self, op0: impl OperandCast)

Source§

fn ldmxcsrm(&mut self, op0: impl OperandCast)

Source§

fn stmxcsrm(&mut self, op0: impl OperandCast)

Source§

fn lfence(&mut self)

Source§

fn mfence(&mut self)

Source§

fn sfence(&mut self)

Source§

fn sse_cmppsrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_cmppsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_cmppdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_cmppdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_cmpssrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_cmpssrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_cmpsdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_cmpsdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrwrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_shufpsrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_shufpsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_shufpdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_shufpdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_addsubpdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addsubpdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addsubpsrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_addsubpsrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrlwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrlwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrldrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrldrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrlqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrlqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmullwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmullwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movqmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovmskbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubusbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubusbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubuswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubuswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminubrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminubrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pandrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pandrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddusbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddusbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_padduswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_padduswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxubrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxubrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pandnrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pandnrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pavgbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pavgbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrawrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psrawrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psradrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psradrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pavgwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pavgwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulhuwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulhuwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulhwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulhwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttpd2dqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvttpd2dqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtdq2pdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtdq2pdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtpd2dqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_cvtpd2dqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movntdqmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_porrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_porrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pxorrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pxorrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_lddqurm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psllwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psllwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pslldrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pslldrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psllqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psllqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmuludqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmuludqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaddwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaddwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psadbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psadbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psubqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_paddwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_padddrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_padddrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pshufbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pshufbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phaddwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phaddwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phadddrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phadddrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phaddswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phaddswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaddubswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaddubswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phsubwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phsubwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phsubdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phsubdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phsubswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phsubswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psignbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psignbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psignwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psignwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psigndrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_psigndrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulhrswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulhrswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pblendvbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pblendvbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_blendvpsrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_blendvpsrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_blendvpdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_blendvpdrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_ptestrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_ptestrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pabsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pabsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pabswrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pabswrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pabsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pabsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxbdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxbdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxbqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxbqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxwqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxwqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxdqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovsxdqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmuldqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmuldqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpeqqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_movntdqarm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packusdwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_packusdwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxbwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxbwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxbdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxbdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxbqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxbqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxwdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxwdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxwqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxwqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxdqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmovzxdqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pcmpgtqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminuwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminuwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminudrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pminudrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxsbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxsbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxsdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxuwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxuwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxudrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmaxudrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulldrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_pmulldrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phminposuwrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_phminposuwrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movdir64brm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movdiri32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn movdiri64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sse_roundpsrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_roundpsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_roundpdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_roundpdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_roundssrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_roundssrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_roundsdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_roundsdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_blendpsrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_blendpsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_blendpdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_blendpdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pblendwrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pblendwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_palignrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_palignrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrbmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrbrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrwmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrdmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrqmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pextrqrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_extractpsmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_extractpsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrbrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrbrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_insertpsrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_insertpsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrqrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pinsrqrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_dppsrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_dppsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_dppdrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_dppdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_mpsadbwrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_mpsadbwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pclmulqdqrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pclmulqdqrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpestrmrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpestrmrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpestrirmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpestrirri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpistrmrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpistrmrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpistrirmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sse_pcmpistrirri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn aesimcrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesimcrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesencrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesencrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesenclastrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesenclastrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesdecrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesdecrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesdeclastrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesdeclastrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aeskeygenassistrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn aeskeygenassistrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesimcrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vaesimcrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vaesenc128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenc128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenc256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenc256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenclast128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenclast128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenclast256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenclast256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdec128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdec128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdec256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdec256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdeclast128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdeclast128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdeclast256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdeclast256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaeskeygenassistrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaeskeygenassistrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovups128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovups128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovups256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovups256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovssrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovsdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovups128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovups256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovssmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovlpsrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovhlpsrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovlpdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovddup128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovddup128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovddup256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovddup256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsldup128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsldup128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsldup256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsldup256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovlpsmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovlpdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vunpcklps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovhpsrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovlhpsrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovhpdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovshdup128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovshdup128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovshdup256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovshdup256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovhpsmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovhpdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsi2ss32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2ss32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2ss64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2ss64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sd32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sd32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sd64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sd64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovntps128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntps256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntpd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntpd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomissrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomissrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomisdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomisdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomissrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomissrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomisdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomisdrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovmskps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovmskps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovmskpd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovmskpd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsqrtssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsqrtsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsqrtsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrsqrtps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrsqrtssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrcpps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrcpssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtss2sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsd2ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsd2ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtdq2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsubps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklbw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklbw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklbw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklbw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklwd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklwd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklwd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklwd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpacksswb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpacksswb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpacksswb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpacksswb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackuswb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackuswb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackuswb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackuswb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhbw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhbw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhbw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhbw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhwd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhwd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhwd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhwd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovdrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovd_g2xrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovq_g2xrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovq_g2xrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpshufd128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufhw128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufhw128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufhw256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufhw256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshuflw128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshuflw128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshuflw256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshuflw256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrldq128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrldq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslldq128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslldq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vzeroupper(&mut self)

Source§

fn vzeroall(&mut self)

Source§

fn vhaddpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhaddpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhaddpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhaddpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhaddps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhaddps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhaddps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhaddps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vhsubps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovdmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovd_x2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovq_x2gmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovq_x2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovqrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovqrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vldmxcsrm(&mut self, op0: impl OperandCast)

Source§

fn vstmxcsrm(&mut self, op0: impl OperandCast)

Source§

fn vcmpps128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpssrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpssrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpinsrwrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpinsrwrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpextrwrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vshufps128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufps128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufps256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufps256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vaddsubpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsubpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsubpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsubpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsubps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsubps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsubps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsubps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovqmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovmskb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovmskb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpsubusb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminub128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminub128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminub256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminub256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpand128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpand128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpand256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpand256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxub128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxub128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxub256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxub256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandn128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandn128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandn256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandn256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhuw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhuw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhuw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhuw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvttpd2dq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntdq128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntdq256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpsubsb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpor128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpor128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpor256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpor256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxor128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxor128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxor256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxor256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vlddqu128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vlddqu256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpsllw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddwd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddwd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddwd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddwd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsadbw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsadbw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsadbw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsadbw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphaddsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddubsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddubsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddubsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddubsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphsubsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsignd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhrsw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhrsw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhrsw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhrsw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vtestps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vtestps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vtestps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vtestps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vtestpd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vtestpd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vtestpd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vtestpd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpermps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptest128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vptest128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vptest256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vptest256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastss128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastss128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastss256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastss256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastsd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastsd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastf128_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastf128_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsb128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsb256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxdq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxdq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxdq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxdq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmuldq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuldq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuldq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuldq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovntdqa128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntdqa256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpackusdw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmovzxbw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxdq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxdq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxdq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxdq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpermd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vphminposuw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vphminposuw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpsrlvd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpbroadcastd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcasti128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherdd128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpgatherdd256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpgatherdq128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpgatherdq256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpgatherqd128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpgatherqd256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpgatherqq128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpgatherqq256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherdps128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherdps256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherdpd128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherdpd256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherqps128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherqps256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherqpd128rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherqpd256rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpermilps128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vperm2f128_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vperm2f128_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vroundps128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundps128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundps256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundps256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundpd128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundpd128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundpd256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundpd256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vroundssrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vroundssrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vroundsdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vroundsdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendps128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendps128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendps256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendps256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendpd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendpd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendpd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendpd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendw128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendw128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendw256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendw256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpalignr128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpalignr128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpalignr256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpalignr256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpextrbmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpextrbrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpextrwmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpextrdmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpextrdrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpextrqmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpextrqrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractpsmri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractpsrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vinsertf128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vextractf128mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2ph128mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2ph128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2ph256mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2ph256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpinsrbrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpinsrbrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertpsrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertpsrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpinsrdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpinsrdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpinsrqrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpinsrqrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vextracti128mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpps128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdpps128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdpps256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdpps256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdppd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdppd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vmpsadbw128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vmpsadbw128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vmpsadbw256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vmpsadbw256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpclmulqdq128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpclmulqdq128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpclmulqdq256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpclmulqdq256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vperm2i128_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vperm2i128_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvps128rrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvps128rrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvps256rrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvps256rrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvpd128rrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvpd128rrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvpd256rrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendvpd256rrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendvb128rrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendvb128rrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendvb256rrmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpblendvb256rrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpestrmrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpestrmrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpestrirmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpestrirri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpistrmrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpistrmrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpistrirmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpistrirri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn andn32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn andn32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn andn64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn andn64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn blsr32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsr32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsr64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsr64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsmsk32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsmsk32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsmsk64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsmsk64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsi32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsi32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsi64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn blsi64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn bextr32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn bextr32rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn bextr64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn bextr64rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn rorx32rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn rorx32rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn rorx64rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn rorx64rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn bzhi32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn bzhi32rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn bzhi64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn bzhi64rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pdep32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pdep32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pdep64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pdep64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pext32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pext32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pext64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn pext64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mulx32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mulx32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mulx64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn mulx64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shlx32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shlx32rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shlx64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shlx64rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrx32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrx32rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrx64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn shrx64rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sarx32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sarx32rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sarx64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sarx64rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn adcx32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adcx32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adcx64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adcx64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adox32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adox32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adox64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn adox64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn faddm32(&mut self, op0: impl OperandCast)

Source§

fn fmulm32(&mut self, op0: impl OperandCast)

Source§

fn fcomm32(&mut self, op0: impl OperandCast)

Source§

fn fcompm32(&mut self, op0: impl OperandCast)

Source§

fn fsubm32(&mut self, op0: impl OperandCast)

Source§

fn fsubrm32(&mut self, op0: impl OperandCast)

Source§

fn fdivm32(&mut self, op0: impl OperandCast)

Source§

fn fdivrm32(&mut self, op0: impl OperandCast)

Source§

fn faddrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fmulrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fcomrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fcomprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fsubrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fsubrrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fdivrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fdivrrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fldm32(&mut self, op0: impl OperandCast)

Source§

fn fstm32(&mut self, op0: impl OperandCast)

Source§

fn fstpm32(&mut self, op0: impl OperandCast)

Source§

fn fldenvm(&mut self, op0: impl OperandCast)

Source§

fn fldcwm(&mut self, op0: impl OperandCast)

Source§

fn fstenvm(&mut self, op0: impl OperandCast)

Source§

fn fstcwm(&mut self, op0: impl OperandCast)

Source§

fn fldr(&mut self, op0: impl OperandCast)

Source§

fn fxchr(&mut self, op0: impl OperandCast)

Source§

fn fnop(&mut self)

Source§

fn fchs(&mut self)

Source§

fn fabs(&mut self)

Source§

fn ftst(&mut self)

Source§

fn fxam(&mut self)

Source§

fn fld1(&mut self)

Source§

fn fldl2t(&mut self)

Source§

fn fldl2e(&mut self)

Source§

fn fldpi(&mut self)

Source§

fn fldlg2(&mut self)

Source§

fn fldln2(&mut self)

Source§

fn fldz(&mut self)

Source§

fn f2xm1(&mut self)

Source§

fn fyl2x(&mut self)

Source§

fn fptan(&mut self)

Source§

fn fpatan(&mut self)

Source§

fn fxtract(&mut self)

Source§

fn fprem1(&mut self)

Source§

fn fdecstp(&mut self)

Source§

fn fincstp(&mut self)

Source§

fn fprem(&mut self)

Source§

fn fyl2xp1(&mut self)

Source§

fn fsqrt(&mut self)

Source§

fn fsincos(&mut self)

Source§

fn frndint(&mut self)

Source§

fn fscale(&mut self)

Source§

fn fsin(&mut self)

Source§

fn fcos(&mut self)

Source§

fn fiaddm32(&mut self, op0: impl OperandCast)

Source§

fn fimulm32(&mut self, op0: impl OperandCast)

Source§

fn ficomm32(&mut self, op0: impl OperandCast)

Source§

fn ficompm32(&mut self, op0: impl OperandCast)

Source§

fn fisubm32(&mut self, op0: impl OperandCast)

Source§

fn fisubrm32(&mut self, op0: impl OperandCast)

Source§

fn fidivm32(&mut self, op0: impl OperandCast)

Source§

fn fidivrm32(&mut self, op0: impl OperandCast)

Source§

fn fcmovbr(&mut self, op0: impl OperandCast)

Source§

fn fcmover(&mut self, op0: impl OperandCast)

Source§

fn fcmovber(&mut self, op0: impl OperandCast)

Source§

fn fcmovur(&mut self, op0: impl OperandCast)

Source§

fn fucompp(&mut self)

Source§

fn fildm32(&mut self, op0: impl OperandCast)

Source§

fn fisttpm32(&mut self, op0: impl OperandCast)

Source§

fn fistm32(&mut self, op0: impl OperandCast)

Source§

fn fistpm32(&mut self, op0: impl OperandCast)

Source§

fn fldm80(&mut self, op0: impl OperandCast)

Source§

fn fstpm80(&mut self, op0: impl OperandCast)

Source§

fn fcmovnbr(&mut self, op0: impl OperandCast)

Source§

fn fcmovner(&mut self, op0: impl OperandCast)

Source§

fn fcmovnber(&mut self, op0: impl OperandCast)

Source§

fn fcmovnur(&mut self, op0: impl OperandCast)

Source§

fn fclex(&mut self)

Source§

fn finit(&mut self)

Source§

fn fucomir(&mut self, op0: impl OperandCast)

Source§

fn fcomir(&mut self, op0: impl OperandCast)

Source§

fn faddm64(&mut self, op0: impl OperandCast)

Source§

fn fmulm64(&mut self, op0: impl OperandCast)

Source§

fn fcomm64(&mut self, op0: impl OperandCast)

Source§

fn fcompm64(&mut self, op0: impl OperandCast)

Source§

fn fsubm64(&mut self, op0: impl OperandCast)

Source§

fn fsubrm64(&mut self, op0: impl OperandCast)

Source§

fn fdivm64(&mut self, op0: impl OperandCast)

Source§

fn fdivrm64(&mut self, op0: impl OperandCast)

Source§

fn fldm64(&mut self, op0: impl OperandCast)

Source§

fn fisttpm64(&mut self, op0: impl OperandCast)

Source§

fn fstm64(&mut self, op0: impl OperandCast)

Source§

fn fstpm64(&mut self, op0: impl OperandCast)

Source§

fn frstorm(&mut self, op0: impl OperandCast)

Source§

fn fsavem(&mut self, op0: impl OperandCast)

Source§

fn fstswm(&mut self, op0: impl OperandCast)

Source§

fn ffreer(&mut self, op0: impl OperandCast)

Source§

fn fstr(&mut self, op0: impl OperandCast)

Source§

fn fstpr(&mut self, op0: impl OperandCast)

Source§

fn fucomr(&mut self, op0: impl OperandCast)

Source§

fn fucompr(&mut self, op0: impl OperandCast)

Source§

fn fiaddm16(&mut self, op0: impl OperandCast)

Source§

fn fimulm16(&mut self, op0: impl OperandCast)

Source§

fn ficomm16(&mut self, op0: impl OperandCast)

Source§

fn ficompm16(&mut self, op0: impl OperandCast)

Source§

fn fisubm16(&mut self, op0: impl OperandCast)

Source§

fn fisubrm16(&mut self, op0: impl OperandCast)

Source§

fn fidivm16(&mut self, op0: impl OperandCast)

Source§

fn fidivrm16(&mut self, op0: impl OperandCast)

Source§

fn faddprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fmulprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fcompp(&mut self)

Source§

fn fsubrprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fsubprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fdivrprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fdivprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fildm16(&mut self, op0: impl OperandCast)

Source§

fn fisttpm16(&mut self, op0: impl OperandCast)

Source§

fn fistm16(&mut self, op0: impl OperandCast)

Source§

fn fistpm16(&mut self, op0: impl OperandCast)

Source§

fn fbldm(&mut self, op0: impl OperandCast)

Source§

fn fildm64(&mut self, op0: impl OperandCast)

Source§

fn fbstpm(&mut self, op0: impl OperandCast)

Source§

fn fistpm64(&mut self, op0: impl OperandCast)

Source§

fn fstswr(&mut self, op0: impl OperandCast)

Source§

fn fucomiprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn fcomiprr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn rstorsspm(&mut self, op0: impl OperandCast)

Source§

fn setssbsy(&mut self)

Source§

fn saveprevssp(&mut self)

Source§

fn rdssp32r(&mut self, op0: impl OperandCast)

Source§

fn rdssp64r(&mut self, op0: impl OperandCast)

Source§

fn endbr64(&mut self)

Source§

fn endbr32(&mut self)

Source§

fn wruss32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn wruss64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn wrss32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn wrss64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn clrssbsym(&mut self, op0: impl OperandCast)

Source§

fn incssp32r(&mut self, op0: impl OperandCast)

Source§

fn incssp64r(&mut self, op0: impl OperandCast)

Source§

fn cldemotem(&mut self, op0: impl OperandCast)

Source§

fn xstore(&mut self)

Source§

fn inveptrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn invvpidrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmcall(&mut self)

Source§

fn vmclearm(&mut self, op0: impl OperandCast)

Source§

fn vmfunc(&mut self)

Source§

fn vmlaunch(&mut self)

Source§

fn vmresume(&mut self)

Source§

fn vmptrldm(&mut self, op0: impl OperandCast)

Source§

fn vmptrstm(&mut self, op0: impl OperandCast)

Source§

fn vmreadmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmreadrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmwriterm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmwriterr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmxoff(&mut self)

Source§

fn vmxonm(&mut self, op0: impl OperandCast)

Source§

fn tdcall(&mut self)

Source§

fn seamret(&mut self)

Source§

fn seamops(&mut self)

Source§

fn seamcall(&mut self)

Source§

fn clzero16r(&mut self, op0: impl OperandCast)

Source§

fn clzero32r(&mut self, op0: impl OperandCast)

Source§

fn clzero64r(&mut self, op0: impl OperandCast)

Source§

fn rdpru(&mut self)

Source§

fn vmrun(&mut self)

Source§

fn vmmcall(&mut self)

Source§

fn vmgexit(&mut self)

Source§

fn vmload(&mut self)

Source§

fn vmsave(&mut self)

Source§

fn stgi(&mut self)

Source§

fn clgi(&mut self)

Source§

fn skinit(&mut self)

Source§

fn invlpga(&mut self)

Source§

fn monitorx(&mut self)

Source§

fn mcommit(&mut self)

Source§

fn mwaitx(&mut self)

Source§

fn invlpgb(&mut self)

Source§

fn tlbsync(&mut self)

Source§

fn rmpquery(&mut self)

Source§

fn rmpread(&mut self)

Source§

fn rmpadjust(&mut self)

Source§

fn rmpupdate(&mut self)

Source§

fn psmash(&mut self)

Source§

fn pvalidate(&mut self)

Source§

fn tpauser(&mut self, op0: impl OperandCast)

Source§

fn umonitor32r(&mut self, op0: impl OperandCast)

Source§

fn umonitor64r(&mut self, op0: impl OperandCast)

Source§

fn umwaitr(&mut self, op0: impl OperandCast)

Source§

fn ptwrite32r(&mut self, op0: impl OperandCast)

Source§

fn ptwrite32m(&mut self, op0: impl OperandCast)

Source§

fn ptwrite64r(&mut self, op0: impl OperandCast)

Source§

fn ptwrite64m(&mut self, op0: impl OperandCast)

Source§

fn gf2p8mulbrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn gf2p8mulbrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn gf2p8affineqbrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn gf2p8affineqbrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn gf2p8affineinvqbrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn gf2p8affineinvqbrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgf2p8mulb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgf2p8mulb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgf2p8mulb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgf2p8mulb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgf2p8affineqb128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineqb128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineqb256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineqb256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8mulb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgf2p8mulb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgf2p8affineqb128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineqb256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineqb512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineqb512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineqb512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgf2p8affineinvqb512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn enqcmd32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn enqcmd64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn enqcmds32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn enqcmds64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn pconfig(&mut self)

Source§

fn wbnoinvd(&mut self)

Source§

fn rdpkru(&mut self)

Source§

fn wrpkru(&mut self)

Source§

fn rdfsbase32r(&mut self, op0: impl OperandCast)

Source§

fn rdfsbase64r(&mut self, op0: impl OperandCast)

Source§

fn rdgsbase32r(&mut self, op0: impl OperandCast)

Source§

fn rdgsbase64r(&mut self, op0: impl OperandCast)

Source§

fn wrfsbase32r(&mut self, op0: impl OperandCast)

Source§

fn wrfsbase64r(&mut self, op0: impl OperandCast)

Source§

fn wrgsbase32r(&mut self, op0: impl OperandCast)

Source§

fn wrgsbase64r(&mut self, op0: impl OperandCast)

Source§

fn xsave32m(&mut self, op0: impl OperandCast)

Source§

fn xsave64m(&mut self, op0: impl OperandCast)

Source§

fn xrstor32m(&mut self, op0: impl OperandCast)

Source§

fn xrstor64m(&mut self, op0: impl OperandCast)

Source§

fn xsaveopt32m(&mut self, op0: impl OperandCast)

Source§

fn xsaveopt64m(&mut self, op0: impl OperandCast)

Source§

fn clwbm(&mut self, op0: impl OperandCast)

Source§

fn clflushm(&mut self, op0: impl OperandCast)

Source§

fn clflushoptm(&mut self, op0: impl OperandCast)

Source§

fn xrstors32m(&mut self, op0: impl OperandCast)

Source§

fn xrstors64m(&mut self, op0: impl OperandCast)

Source§

fn xsavec32m(&mut self, op0: impl OperandCast)

Source§

fn xsavec64m(&mut self, op0: impl OperandCast)

Source§

fn xsaves32m(&mut self, op0: impl OperandCast)

Source§

fn xsaves64m(&mut self, op0: impl OperandCast)

Source§

fn rdrand16r(&mut self, op0: impl OperandCast)

Source§

fn rdrand32r(&mut self, op0: impl OperandCast)

Source§

fn rdrand64r(&mut self, op0: impl OperandCast)

Source§

fn rdseed16r(&mut self, op0: impl OperandCast)

Source§

fn rdseed32r(&mut self, op0: impl OperandCast)

Source§

fn rdseed64r(&mut self, op0: impl OperandCast)

Source§

fn rdpidr(&mut self, op0: impl OperandCast)

Source§

fn invpcidrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha1nexterm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha1nexterr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha1msg1rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha1msg1rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha1msg2rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha1msg2rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha256rnds2rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sha256rnds2rmr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sha256msg1rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha256msg1rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha256msg2rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha256msg2rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn sha1rnds4rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn sha1rnds4rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn xsusldtrk(&mut self)

Source§

fn xresldtrk(&mut self)

Source§

fn vpdpbuud128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbuud128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbuud256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbuud256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsud128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsud128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsud256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsud256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbuuds128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbuuds128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbuuds256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbuuds256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsuds128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsuds128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsuds256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbsuds256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssds128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssds128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssds256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbssds256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtneoph2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneoph2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneeph2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneeph2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneebf162ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneebf162ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneobf162ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneobf162ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbcstnesh2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbcstnesh2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbcstnebf162ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbcstnebf162ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmadd52luq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52luq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52luq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52luq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn hreseti(&mut self, op0: impl OperandCast)

Source§

fn serialize(&mut self)

Source§

fn uiret(&mut self)

Source§

fn testui(&mut self)

Source§

fn clui(&mut self)

Source§

fn stui(&mut self)

Source§

fn senduipir(&mut self, op0: impl OperandCast)

Source§

fn wrmsrns(&mut self)

Source§

fn rdmsrlist(&mut self)

Source§

fn wrmsrlist(&mut self)

Source§

fn aadd32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aadd64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aand32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aand64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn axor32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn axor64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aor32mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aor64mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn cmpoxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpoxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnoxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnoxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpbxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpbxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnbxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnbxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpzxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpzxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnzxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnzxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpbexadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpbexadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnbexadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnbexadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpsxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpsxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnsxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnsxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmppxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmppxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnpxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnpxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmplxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmplxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnlxadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnlxadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmplexadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmplexadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnlexadd32mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn cmpnlexadd64mrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn aesencwide128klm(&mut self, op0: impl OperandCast)

Source§

fn aesdecwide128klm(&mut self, op0: impl OperandCast)

Source§

fn aesencwide256klm(&mut self, op0: impl OperandCast)

Source§

fn aesdecwide256klm(&mut self, op0: impl OperandCast)

Source§

fn aesenc128klrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn loadiwkeyrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesdec128klrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesenc256klrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn aesdec256klrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn encodekey128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn encodekey256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn lkgsr(&mut self, op0: impl OperandCast)

Source§

fn lkgsm(&mut self, op0: impl OperandCast)

Source§

fn eretu(&mut self)

Source§

fn erets(&mut self)

Source§

fn ldtilecfgm(&mut self, op0: impl OperandCast)

Source§

fn sttilecfgm(&mut self, op0: impl OperandCast)

Source§

fn tilerelease(&mut self)

Source§

fn tilezeror(&mut self, op0: impl OperandCast)

Source§

fn tileloaddt1rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tilestoredmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tileloaddrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn tdpbf16psrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn tdpfp16psrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn tdpbuudrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn tdpbusdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn tdpbsudrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn tdpbssdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn tcmmrlfp16psrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn tcmmimfp16psrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddsdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenc512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenc512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenclast512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesenclast512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdec512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdec512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdeclast512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaesdeclast512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vandnpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcmpps128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps128krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps256krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps512krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpps512krri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd128krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd256krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd512krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmppd512krri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsskrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsskrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsskrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsdkrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsdkrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpsdkrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcomissrr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomisdrr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2dq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2dq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2si32rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2si64rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2si32rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2si64rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2sdrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsd2ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2ss32rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2ss64rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sd32rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sd64rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvttpd2dq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2dq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2dq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2si32rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2si64rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2si32rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2si64rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vdivps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivsdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps512rrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd512rrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxssrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxsdrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps512rrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd512rrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminssrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminsdrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovaps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovaps512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovapd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovddup512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovddup512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa32_512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqa64_512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu32_512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu64_512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu8_512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovdqu16_512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntdqa512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntdq512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntps512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovntpd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsldup512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovsldup512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovshdup512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovshdup512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovups512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovups512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovups512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovupd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmulps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulsdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vorpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpabsb512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpabsq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpacksswb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpacksswb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackuswb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackuswb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackssdw512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpackusdw512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddsw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpaddusw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpalignr512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpalignr512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpandd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpandnq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpavgw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpclmulqdq512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpclmulqdq512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpeqb128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqb512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqw512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqd512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpeqq512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtb512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtw512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtd512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpcmpgtq512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddubsw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddubsw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddwd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaddwd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminub512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminub512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxub512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxub512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminsq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminud512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpminuq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxsq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxud512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmaxuq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmovsxbw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxbq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxwq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxdq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsxdq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxbq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxwq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxdq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovzxdq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmuldq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuldq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuldq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuldq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuldq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhrsw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhrsw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhuw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhuw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulhw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmulld512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmullq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmuludq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpord512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vporq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsadbw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsadbw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufd512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufhw512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufhw512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshuflw512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshuflw512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrld512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrad512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsraq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslld512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrldq128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrldq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrldq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrldq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslldq128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslldq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslldq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpslldq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubsw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsubusw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklbw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklbw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklwd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklwd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckldq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpcklqdq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhbw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhbw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhwd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhwd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhdq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpunpckhqdq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxord512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpxorq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vshufps128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufps256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufps512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufps512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufps512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufpd512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vsqrtps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtpd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsqrtsdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubsdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vucomissrr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomisdrr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vunpcklps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpcklpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vunpckhpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn valignd128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignd512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn valignq512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vblendmps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vblendmpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vbroadcastss512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastss512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastf32x2_256rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf32x2_256rr( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf32x2_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf32x2_512rr( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastsd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastsd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcastf32x4_256rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf32x4_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf64x2_256rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf64x2_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf32x8_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcastf64x4_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vcompressps128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompressps256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompressps512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompressps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompressps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompressps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompresspd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompresspd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompresspd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompresspd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompresspd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcompresspd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtne2ps2bf16_128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtne2ps2bf16_512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtneps2bf16_128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtneps2bf16_512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2qq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2qq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2udq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2udq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2uqq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2uqq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2ps512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2ph512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2ph512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2ph512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtqq2pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2usi32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2usi32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2usi32rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2usi64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2usi64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsd2usi64rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2usi32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2usi32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2usi32rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2usi64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2usi64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2usi64rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtusi2sd32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sd32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sd32rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sd64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sd64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sd64rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2ss32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2ss32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2ss32rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2ss64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2ss64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2ss64rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvttps2qq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2qq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2qq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2udq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2udq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttps2uqq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttpd2uqq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2usi32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2usi32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2usi32rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2usi64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2usi64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsd2usi64rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2usi32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2usi32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2usi32rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2usi64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2usi64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttss2usi64rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vdbpsadbw128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdbpsadbw128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdbpsadbw256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdbpsadbw256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdbpsadbw512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdbpsadbw512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vdpbf16ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdpbf16ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vexpandps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandpd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandpd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandpd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandpd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandpd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vexpandpd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vextractf32x4_256mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf32x4_256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf32x4_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf32x4_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf64x2_256mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf64x2_256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf64x2_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf64x2_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf32x8_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf32x8_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf64x4_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextractf64x4_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti32x4_256mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti32x4_256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti32x4_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti32x4_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti64x2_256mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti64x2_256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti64x2_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti64x2_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti32x8_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti32x8_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti64x4_512mri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vextracti64x4_512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfixupimmps128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps512rrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmps512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd512rrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmpd512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmssrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmssrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmssrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmsdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmsdrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfixupimmsdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfmaddsub132ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231sdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps128kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps128kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps128kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps256kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps256kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps256kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps512kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps512kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassps512kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd128kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd128kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd128kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd256kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd256kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd256kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd512kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd512kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasspd512kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasssskri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasssskmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasssdkri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclasssdkmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgatherdps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherdps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherdps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherdpd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherdpd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherdpd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherqps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherqps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherqps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherqpd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherqpd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgatherqpd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexppd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpssrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpsdrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantps512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantpd512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantssrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantssrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantssrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantsdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantsdrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantsdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf32x4_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf32x4_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf32x4_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf32x4_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf64x2_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf64x2_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf64x2_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf64x2_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf32x8_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf32x8_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf64x4_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinsertf64x4_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti32x4_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti32x4_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti32x4_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti32x4_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti64x2_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti64x2_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti64x2_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti64x2_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti32x8_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti32x8_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti64x4_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vinserti64x4_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vp2intersectd128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectd512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vp2intersectq512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpblendmq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpbroadcastb_gp128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb_gp256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb_gp512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw_gp128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw_gp256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw_gp512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd_gp128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd_gp256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd_gp512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq_gp128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq_gp256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq_gp512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vbroadcasti32x2_128rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x2_128rr( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x2_256rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x2_256rr( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x2_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x2_512rr( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x4_256rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x4_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti64x2_256rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti64x2_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti32x8_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vbroadcasti64x4_512rm( &mut self, op0: impl OperandCast, op1: impl OperandCast, )

Source§

fn vpbroadcastmb2q128rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastmb2q256rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastmb2q512rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastmw2d128rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastmw2d256rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpbroadcastmw2d512rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcmpud128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud128krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud256krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud512krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpud512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd128krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd256krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd512krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpd512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq128krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq256krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq512krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuq512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq128krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq256krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq512krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpq512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpub128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpub128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpub256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpub256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpub512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpub512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpb128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpb128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpb256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpb256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpb512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpb512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuw128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuw128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuw256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuw256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuw512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpuw512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpw128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpw128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpw256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpw256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpw512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcmpw512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpcompressb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressw128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressw256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressw512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressq128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressq256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressq512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpcompressq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpconflictq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpdpbusd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpbusds512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpdpwssds512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2b128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2b128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2b256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2b256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2b512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2b512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2w128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2w128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2w256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2w256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2w512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2w512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2d512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2q512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermi2pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilps512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermilpd512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermpd512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2b128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2b128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2b256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2b256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2b512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2b512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2w128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2w128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2w256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2w256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2w512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2w512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2d512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2q512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2ps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpermt2pd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpexpandb128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandb256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandb512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpexpandq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherdd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherdd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherdd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherdq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherdq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherdq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherqd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherqd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherqd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherqq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherqq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpgatherqq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vplzcntq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmadd52luq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52luq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52luq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52luq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52luq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmadd52huq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmovb2m128kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovb2m256kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovb2m512kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovw2m128kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovw2m256kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovw2m512kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovd2m128kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovd2m256kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovd2m512kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovq2m128kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovq2m256kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovq2m512kr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2b128rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2b256rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2b512rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2w128rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2w256rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2w512rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2d128rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2d256rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2d512rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2q128rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2q256rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovm2q512rk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovwb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovwb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovwb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovwb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovwb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovwb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovswb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovswb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovswb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovswb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovswb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovswb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovuswb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovuswb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovuswb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovuswb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovuswb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovuswb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqb128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqb256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqb512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdw128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdw256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdw512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovdw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdw128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdw256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdw512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsdw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdw128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdw256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdw512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusdw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqw128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqw256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqw512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqw128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqw256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqw512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqw128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqw256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqw512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovqd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovsqd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmovusqd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpmultishiftqb128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpmultishiftqb512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpopcntb128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntb128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntb256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntb256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntb512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntb512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpopcntq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vprorvd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorvq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprord512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprorq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolvq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprold512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vprolq512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpscatterdd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterdd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterdd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterdq128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterdq256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterdq512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterqd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterqd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterqd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterqq128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterqq256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpscatterqq512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vpshldw128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldw128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldw256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldw256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldw512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldw512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldd512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldq512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshldvw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshldvq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdw128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdw128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdw256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdw256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdw512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdw512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdd512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdq512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpshrdvw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshrdvq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufbitqmb128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufbitqmb128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufbitqmb256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufbitqmb256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufbitqmb512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpshufbitqmb512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsllvq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsravq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvw128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvw128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvw256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvw256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvw512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvw512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpsrlvq512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vpternlogd128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogd512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vpternlogq512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vptestmb128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmb128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmb256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmb256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmb512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmb512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmw128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmw128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmw256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmw256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmw512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmw512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmd512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestmq512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmb128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmb128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmb256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmb256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmb512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmb512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmw128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmw128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmw256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmw256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmw512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmw512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmd512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq128krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq128krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq128krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq256krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq256krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq256krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq512krm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq512krr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vptestnmq512krb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrangeps128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps512rrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangeps512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd128rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd128rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd128rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd512rrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangepd512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangessrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangessrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangessrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangesdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangesdrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrangesdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrcp14ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcp14ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrcp14ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrcp14sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrcp14sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceps512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducepd512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreducessrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreducessrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreducessrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreducesdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreducesdrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreducesdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscaleps128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleps512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalepd512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscalessrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscalessrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscalessrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscalesdrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscalesdrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscalesdrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrsqrt14ps128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ps512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrt14ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrsqrt14ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrsqrt14sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrsqrt14sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefssrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefsdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefsdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefsdrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscatterdps128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterdps256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterdps512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterdpd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterdpd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterdpd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterqps128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterqps256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterqps512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterqpd128mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterqpd256mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vscatterqpd512mr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vshuff32x4_256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff32x4_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff32x4_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff32x4_512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff32x4_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff32x4_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff64x2_256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff64x2_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff64x2_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff64x2_512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff64x2_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshuff64x2_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi32x4_256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi32x4_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi32x4_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi32x4_512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi32x4_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi32x4_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi64x2_256rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi64x2_256rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi64x2_256rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi64x2_512rrbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi64x2_512rrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vshufi64x2_512rrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vxorps128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorps512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vxorpd512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kandbkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kandwkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kanddkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kandqkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kandnbkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kandnwkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kandndkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kandnqkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn knotbkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn knotwkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn knotdkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn knotqkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn korbkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn korwkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kordkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn korqkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxnorbkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxnorwkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxnordkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxnorqkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxorbkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxorwkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxordkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kxorqkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kaddbkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kaddwkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kadddkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kaddqkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kunpckbwkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kunpckwdkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kunpckdqkkk( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kortestbkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kortestwkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kortestdkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kortestqkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovbkm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovbkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovwkm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovwkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovdkm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovdkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovqkm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovqkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovbmk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovwmk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovdmk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovqmk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovbkr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovwkr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovdkr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovqkr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovbrk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovwrk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovdrk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kmovqrk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ktestbkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ktestwkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ktestdkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn ktestqkk(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn kshiftrbkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kshiftrwkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kshiftrdkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kshiftrqkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kshiftlbkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kshiftlwkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kshiftldkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn kshiftlqkki( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleph512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrndscaleshrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscaleshrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vrndscaleshrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantph128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantph512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetmantshrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantshrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vgetmantshrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreduceph128rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph128rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph128rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph256rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph256rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph256rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph512rbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph512rmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph512rri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceph512rri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vreduceshrrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreduceshrrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vreduceshrrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vfpclassph128kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph128kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph128kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph256kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph256kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph256kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph512kbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph512kri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassph512kmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassshkri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfpclassshkmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcmpph128krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph128krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph128krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph256krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph256krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph256krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph512krmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph512krbi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph512krri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpph512krri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpshkrmi( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpshkrri( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vcmpshkrri_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, op3: impl OperandCast, )

Source§

fn vmovshrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovshmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtss2shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtss2shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtss2shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtps2phx128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtps2phx512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsi2sh32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sh32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sh32rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sh64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sh64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsi2sh64rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvttsh2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2si32rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2si64rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2si32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2si32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2si32rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2si64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2si64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2si64rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomishrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomishrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vucomishrr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomishrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomishrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcomishrr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsqrtshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsqrtshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsqrtshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vaddshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmulshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtph2pd128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2pd512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtpd2ph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2sdrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsh2sdrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsh2sdrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsd2shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsd2shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsd2shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtdq2ph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtdq2ph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtqq2ph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2dq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2dq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vsubph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vsubshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph512rrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vminshrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vdivshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph512rrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmaxshrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vmovw_g2xrm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovw_g2xrr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2udq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uqq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2usi32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2usi32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2usi32rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2usi64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2usi64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttsh2usi64rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2udq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uqq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2usi32rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2usi32rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2usi32rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2usi64rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2usi64rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2usi64rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2qq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtudq2ph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuqq2ph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2qq512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtusi2sh32rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sh32rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sh32rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sh64rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sh64rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtusi2sh64rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvttph2uw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2uw512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvttph2w512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2uw512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2w512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtw2ph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph512rr_er(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtuw2ph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovw_x2gmr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vmovw_x2grr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtph2psx512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vcvtsh2ssrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsh2ssrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vcvtsh2ssrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vscalefshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph512rr_sae(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vgetexpshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vgetexpshrrr_sae( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrcpph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrcpshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrcpshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrsqrtph128rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph128rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph128rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph256rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph256rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph256rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph512rm(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph512rr(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtph512rb(&mut self, op0: impl OperandCast, op1: impl OperandCast)

Source§

fn vrsqrtshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vrsqrtshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddcshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmaddcshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmulcshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcshrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcshrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfcmulcshrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub132ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub213ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmaddsub231ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd132ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd213ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsubadd231ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd132shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd213shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmadd231shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub132shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub213shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfmsub231shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd132shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd213shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmadd231shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph128rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph128rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph128rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph256rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph256rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph256rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph512rrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph512rrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph512rrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231ph512rrb( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub132shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub213shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231shrrm( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231shrrr( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn vfnmsub231shrrr_er( &mut self, op0: impl OperandCast, op1: impl OperandCast, op2: impl OperandCast, )

Source§

fn nop(&mut self)

Auto Trait Implementations§

§

impl<'a> Freeze for Assembler<'a>

§

impl<'a> RefUnwindSafe for Assembler<'a>

§

impl<'a> Send for Assembler<'a>

§

impl<'a> Sync for Assembler<'a>

§

impl<'a> Unpin for Assembler<'a>

§

impl<'a> !UnwindSafe for Assembler<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.