Home
last modified time | relevance | path

Searched refs:MRM0m (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrKL.td64 def AESENCWIDE128KL : I<0xD8, MRM0m, (outs), (ins opaquemem:$src),
H A DX86InstrFPStack.td196 defm ADD : FPBinary<any_fadd, MRM0m, "add">;
467 def LD_F32m : FPI<0xD9, MRM0m, (outs), (ins f32mem:$src), "fld{s}\t$src">;
468 def LD_F64m : FPI<0xDD, MRM0m, (outs), (ins f64mem:$src), "fld{l}\t$src">;
471 def ILD_F16m : FPI<0xDF, MRM0m, (outs), (ins i16mem:$src), "fild{s}\t$src">;
472 def ILD_F32m : FPI<0xDB, MRM0m, (outs), (ins i32mem:$src), "fild{l}\t$src">;
668 def FXSAVE : I<0xAE, MRM0m, (outs), (ins opaquemem:$dst),
671 def FXSAVE64 : RI<0xAE, MRM0m, (outs), (ins opaquemem:$dst),
H A DX86InstrAMX.td21 def LDTILECFG#Suffix : I<0x49, MRM0m, (outs), (ins opaquemem:$src),
26 def STTILECFG#Suffix : I<0x49, MRM0m, (outs), (ins opaquemem:$src),
H A DX86Instr3DNow.td84 def PREFETCH : I3DNow<0x0D, MRM0m, (outs), (ins i8mem:$addr),
H A DX86InstrArithmetic.td350 class IncOpM_MF<X86TypeInfo t> : UnaryOpM_MF<0xFF, MRM0m, "inc", t, null_frag> {
358 class IncOpM_RF<X86TypeInfo t> : UnaryOpM_RF<0xFF, MRM0m, "inc", t, null_frag> {
364 class IncOpM_M<X86TypeInfo t> : UnaryOpM_M<0xFF, MRM0m, "inc", t, null_frag>;
366 class IncOpM_R<X86TypeInfo t> : UnaryOpM_R<0xFF, MRM0m, "inc", t, null_frag>;
1057 defm ADD : ArithBinOp_RF<0x01, 0x03, 0x05, "add", MRM0r, MRM0m,
1280 def TEST8mi : BinOpMI_F<0xF6, "test", Xi8 , X86testpat, MRM0m>;
1281 def TEST16mi : BinOpMI_F<0xF7, "test", Xi16, X86testpat, MRM0m>, OpSize16;
1282 def TEST32mi : BinOpMI_F<0xF7, "test", Xi32, X86testpat, MRM0m>, OpSize32;
1285 def TEST64mi32 : BinOpMI_F<0xF7, "test", Xi64, X86testpat, MRM0m>;
H A DX86InstrMisc.td74 def POP16rmm: I<0x8F, MRM0m, (outs), (ins i16mem:$dst), "pop{w}\t$dst", []>,
76 def POP32rmm: I<0x8F, MRM0m, (outs), (ins i32mem:$dst), "pop{l}\t$dst", []>,
175 def POP64rmm: I<0x8F, MRM0m, (outs), (ins i64mem:$dst), "pop{q}\t$dst", []>,
403 def MOV8mi : Ii8 <0xC6, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src),
406 def MOV16mi : Ii16<0xC7, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src),
409 def MOV32mi : Ii32<0xC7, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src),
412 def MOV64mi32 : RIi32S<0xC7, MRM0m, (outs), (ins i64mem:$dst, i64i32imm:$src),
1425 def rmi : Ii32<0x12, MRM0m, (outs), (ins RC:$src0, i32mem:$src1, i32imm:$cntl),
1714 def CLDEMOTE : I<0x1C, MRM0m, (outs), (ins i8mem:$src), "cldemote\t$src",
H A DX86InstrSystem.td379 def SGDT16m : I<0x01, MRM0m, (outs), (ins opaquemem:$dst),
381 def SGDT32m : I<0x01, MRM0m, (outs), (ins opaquemem:$dst),
383 def SGDT64m : I<0x01, MRM0m, (outs), (ins opaquemem:$dst),
394 def SLDT16m : I<0x00, MRM0m, (outs), (ins i16mem:$dst),
H A DX86InstrFormats.td42 def MRM0m : Format<32>; def MRM1m : Format<33>; def MRM2m : Format<34>;
H A DX86InstrShiftRotate.td230 defm ROL: ShiftRotate<"rol", MRM0r, MRM0m, rotl, WriteRotateCL, WriteRotate, WriteRotateCLLd, Write…
239 defm ROL: ShiftRotate_NF<"rol", MRM0r, MRM0m, WriteRotateCL, WriteRotate, WriteRotateCLLd, WriteRot…
H A DX86InstrCompiler.td783 defm LOCK_ADD : LOCK_ArithBinOp<0x00, 0x80, 0x83, MRM0m, X86lock_add, "add">;
792 def LOCK_INC8m : I<0xFE, MRM0m, (outs), (ins i8mem :$dst),
796 def LOCK_INC16m : I<0xFF, MRM0m, (outs), (ins i16mem:$dst),
800 def LOCK_INC32m : I<0xFF, MRM0m, (outs), (ins i32mem:$dst),
820 def LOCK_INC64m : RI<0xFF, MRM0m, (outs), (ins i64mem:$dst),
H A DX86InstrSSE.td3220 def PREFETCHNTA : I<0x18, MRM0m, (outs), (ins i8mem:$src),
H A DX86InstrAVX512.td6034 defm VPROR : avx512_shift_rmi_dq<0x72, 0x72, MRM0r, MRM0m, "vpror", X86vrotri,
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h120 MRM0m = 32, enumerator
H A DX86FoldTablesEmitter.cpp281 return Form >= X86Local::MRM0m && Form <= X86Local::MRM7m; in mayFoldToForm()
298 return RHS == X86Local::MRM0m; in mayFoldFromLeftToRight()
H A DX86RecognizableInstr.cpp747 case X86Local::MRM0m: in emitInstructionSpecifier()
910 case X86Local::MRM0m: in emitDecodePath()
918 filter = std::make_unique<ExtendedFilter>(false, Form - X86Local::MRM0m); in emitDecodePath()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86BaseInfo.h582 MRM0m = 32, // Format /0 enumerator
1077 case X86II::MRM0m: in getMemoryOperandNo()
H A DX86MCCodeEmitter.cpp1147 case X86II::MRM0m: in emitVEXOpcodePrefix()
1375 case X86II::MRM0m: in emitREXPrefix()
1810 case X86II::MRM0m: in encodeInstruction()
1824 (Form == X86II::MRMXm) ? 0 : Form - X86II::MRM0m, TSFlags, in encodeInstruction()