Skip to content

Commit 66f695b

Browse files
toppercAmanieu
authored andcommitted
[X86] Add x, t and g modifiers for inline asm
This patch adds the x, t and g modifiers for inline asm from GCC. These will print a vector register as xmm*, ymm* or zmm* respectively. I also fixed register names with modifiers with inteldialect so they are no longer printed with a leading %. Patch by Amanieu d'Antras Differential Revision: https://reviews.llvm.org/D78977
1 parent 2f94cae commit 66f695b

File tree

3 files changed

+100
-3
lines changed

3 files changed

+100
-3
lines changed

llvm/lib/Target/X86/X86AsmPrinter.cpp

+45-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ void X86AsmPrinter::PrintIntelMemReference(const MachineInstr *MI,
397397
static bool printAsmMRegister(X86AsmPrinter &P, const MachineOperand &MO,
398398
char Mode, raw_ostream &O) {
399399
unsigned Reg = MO.getReg();
400-
bool EmitPercent = true;
400+
bool EmitPercent = MO.getParent()->getInlineAsmDialect() == InlineAsm::AD_ATT;
401401

402402
if (!X86::GR8RegClass.contains(Reg) &&
403403
!X86::GR16RegClass.contains(Reg) &&
@@ -436,6 +436,42 @@ static bool printAsmMRegister(X86AsmPrinter &P, const MachineOperand &MO,
436436
return false;
437437
}
438438

439+
static bool printAsmVRegister(X86AsmPrinter &P, const MachineOperand &MO,
440+
char Mode, raw_ostream &O) {
441+
unsigned Reg = MO.getReg();
442+
bool EmitPercent = MO.getParent()->getInlineAsmDialect() == InlineAsm::AD_ATT;
443+
444+
unsigned Index;
445+
if (X86::VR128XRegClass.contains(Reg))
446+
Index = Reg - X86::XMM0;
447+
else if (X86::VR256XRegClass.contains(Reg))
448+
Index = Reg - X86::YMM0;
449+
else if (X86::VR512RegClass.contains(Reg))
450+
Index = Reg - X86::ZMM0;
451+
else
452+
return true;
453+
454+
switch (Mode) {
455+
default: // Unknown mode.
456+
return true;
457+
case 'x': // Print V4SFmode register
458+
Reg = X86::XMM0 + Index;
459+
break;
460+
case 't': // Print V8SFmode register
461+
Reg = X86::YMM0 + Index;
462+
break;
463+
case 'g': // Print V16SFmode register
464+
Reg = X86::ZMM0 + Index;
465+
break;
466+
}
467+
468+
if (EmitPercent)
469+
O << '%';
470+
471+
O << X86ATTInstPrinter::getRegisterName(Reg);
472+
return false;
473+
}
474+
439475
/// PrintAsmOperand - Print out an operand for an inline asm expression.
440476
///
441477
bool X86AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
@@ -510,6 +546,14 @@ bool X86AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
510546
PrintOperand(MI, OpNo, O);
511547
return false;
512548

549+
case 'x': // Print V4SFmode register
550+
case 't': // Print V8SFmode register
551+
case 'g': // Print V16SFmode register
552+
if (MO.isReg())
553+
return printAsmVRegister(*this, MO, ExtraCode[0], O);
554+
PrintOperand(MI, OpNo, O);
555+
return false;
556+
513557
case 'P': // This is the operand of a call, treat specially.
514558
PrintPCRelImm(MI, OpNo, O);
515559
return false;
+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
; RUN: llc < %s | FileCheck %s
2+
3+
define void @test1() {
4+
; CHECK-LABEL: test1:
5+
; CHECK: vmovaps %xmm0, %xmm0
6+
; CHECK: vmovaps %ymm0, %ymm0
7+
; CHECK: vmovaps %zmm0, %zmm0
8+
tail call void asm sideeffect "vmovaps ${0:x}, ${0:x}", "{xmm0},~{dirflag},~{fpsr},~{flags}"(i32 0)
9+
tail call void asm sideeffect "vmovaps ${0:t}, ${0:t}", "{xmm0},~{dirflag},~{fpsr},~{flags}"(i32 0)
10+
tail call void asm sideeffect "vmovaps ${0:g}, ${0:g}", "{xmm0},~{dirflag},~{fpsr},~{flags}"(i32 0)
11+
ret void
12+
}
13+
14+
define void @test2() {
15+
; CHECK-LABEL: test2:
16+
; CHECK: vmovaps %xmm0, %xmm0
17+
; CHECK: vmovaps %ymm0, %ymm0
18+
; CHECK: vmovaps %zmm0, %zmm0
19+
tail call void asm sideeffect inteldialect "vmovaps ${0:x}, ${0:x}", "{xmm0},~{dirflag},~{fpsr},~{flags}"(i32 0)
20+
tail call void asm sideeffect inteldialect "vmovaps ${0:t}, ${0:t}", "{xmm0},~{dirflag},~{fpsr},~{flags}"(i32 0)
21+
tail call void asm sideeffect inteldialect "vmovaps ${0:g}, ${0:g}", "{xmm0},~{dirflag},~{fpsr},~{flags}"(i32 0)
22+
ret void
23+
}
24+
25+
define void @test3() {
26+
; CHECK-LABEL: test3:
27+
; CHECK: movb %al, %al
28+
; CHECK: movb %ah, %ah
29+
; CHECK: movw %ax, %ax
30+
; CHECK: movl %eax, %eax
31+
; CHECK: movq %rax, %rax
32+
tail call void asm sideeffect "mov ${0:b}, ${0:b}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
33+
tail call void asm sideeffect "mov ${0:h}, ${0:h}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
34+
tail call void asm sideeffect "mov ${0:w}, ${0:w}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
35+
tail call void asm sideeffect "mov ${0:k}, ${0:k}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
36+
tail call void asm sideeffect "mov ${0:q}, ${0:q}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
37+
ret void
38+
}
39+
40+
define void @test4() {
41+
; CHECK-LABEL: test4:
42+
; CHECK: movb %al, %al
43+
; CHECK: movb %ah, %ah
44+
; CHECK: movw %ax, %ax
45+
; CHECK: movl %eax, %eax
46+
; CHECK: movq %rax, %rax
47+
tail call void asm sideeffect inteldialect "mov ${0:b}, ${0:b}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
48+
tail call void asm sideeffect inteldialect "mov ${0:h}, ${0:h}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
49+
tail call void asm sideeffect inteldialect "mov ${0:w}, ${0:w}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
50+
tail call void asm sideeffect inteldialect "mov ${0:k}, ${0:k}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
51+
tail call void asm sideeffect inteldialect "mov ${0:q}, ${0:q}", "{eax},~{dirflag},~{fpsr},~{flags}"(i32 0)
52+
ret void
53+
}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; RUN: not llc -mtriple=x86_64-- < %s 2>&1 | FileCheck %s
22

3-
;CHECK: error: invalid operand in inline asm: 'vmovd ${1:x}, $0'
3+
;CHECK: error: invalid operand in inline asm: 'vmovd ${1:k}, $0'
44
define i32 @foo() {
55
entry:
6-
%0 = tail call i32 asm sideeffect "vmovd ${1:x}, $0", "=r,x,~{dirflag},~{fpsr},~{flags}"(<2 x i64> <i64 240518168632, i64 240518168632>)
6+
%0 = tail call i32 asm sideeffect "vmovd ${1:k}, $0", "=r,x,~{dirflag},~{fpsr},~{flags}"(<2 x i64> <i64 240518168632, i64 240518168632>)
77
ret i32 %0
88
}

0 commit comments

Comments
 (0)