Displaying 1 result from an estimated 1 matches for "shl8rcl".
Did you mean:
shl16rcl
2009 Jun 16
3
[LLVMdev] x86 Intel Syntax and MASM 9.x
...tions. The problem is that ATT syntax states that it
should be referenced as "%cl" while Intel says just "cl" but these
references occur in X86InstInfo.td and this means that it is shared
between Intel and ATT printing! For example, the shift rules:
let Uses = [CL] in {
def SHL8rCL : I<0xD2, MRM4r, (outs GR8 :$dst), (ins GR8 :$src),
"shl{b}\t{%cl, $dst|$dst, %CL}",
[(set GR8:$dst, (shl GR8:$src, %CL))]>;
def SHL16rCL : I<0xD3, MRM4r, (outs GR16:$dst), (ins GR16:$src),
"shl{w}\t{%cl, $dst|$dst, %CL...