Skip to content
Snippets Groups Projects
Commit d606e547 authored by Rafael Espindola's avatar Rafael Espindola
Browse files

Add support for the 'H' modifier.

llvm-svn: 122667
parent 879be84a
No related branches found
No related tags found
No related merge requests found
......@@ -302,6 +302,9 @@ void X86AsmPrinter::printLeaMemReference(const MachineInstr *MI, unsigned Op,
printSymbolOperand(MI->getOperand(Op+3), O);
}
if (Modifier && strcmp(Modifier, "H") == 0)
O << "+8";
if (HasParenPart) {
assert(IndexReg.getReg() != X86::ESP &&
"X86 doesn't allow scaling by ESP");
......@@ -458,6 +461,9 @@ bool X86AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
case 'q': // Print SImode register
// These only apply to registers, ignore on mem.
break;
case 'H':
printMemReference(MI, OpNo, O, "H");
return false;
case 'P': // Don't print @PLT, but do print as memory.
printMemReference(MI, OpNo, O, "no-rip");
return false;
......
; RUN: llc -march=x86-64 < %s | FileCheck %s
@foobar = common global i32 0, align 4
define void @zed() nounwind {
entry:
call void asm "movq %mm2,${0:H}", "=*m,~{dirflag},~{fpsr},~{flags}"(i32* @foobar) nounwind
ret void
}
; CHECK: zed
; CHECK: movq %mm2,foobar+8(%rip)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment