Displaying 1 result from an estimated 1 matches for "writealuld".
Did you mean:
writealu
2018 Mar 01
0
[X86] API to query MCInstr operand types
...f MOVSX64rm (from X86InstrExtension.td)
def MOVSX64rm32: RI<0x63, MRMSrcMem, (outs GR64:$dst), (ins i32mem:$src),
"movs{lq|xd}\t{$src, $dst|$dst, $src}",
[(set GR64:$dst, (sextloadi64i32 addr:$src))],
IIC_MOVSX>,
Sched<[WriteALULd]>, Requires<[In64BitMode]>;
Given an MCInstrDesc object, I'd like to know of a way to find out the type
of 'ins' operand i32mem.
I am particularly interested in figuring out the type of a memory operand
of a given MCInstrDesc, if one exists.
Thanks for any help,
Bharadwaj...