blob: 0b09c8fc1e74e6537fe7487b8edbd2038646ba9d [file] [log] [blame]
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+enqcmd | FileCheck %s --check-prefix=X64
; RUN: llc < %s -mtriple=i386-unknown-unknown -mattr=+enqcmd | FileCheck %s --check-prefix=X86
; RUN: llc < %s -mtriple=x86_64-linux-gnux32 -mattr=+enqcmd | FileCheck %s --check-prefix=X32
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+enqcmd,+egpr --show-mc-encoding | FileCheck %s --check-prefix=EGPR
define i8 @test_enqcmd(ptr %dst, ptr %src) {
; X64-LABEL: test_enqcmd:
; X64: # %bb.0: # %entry
; X64-NEXT: enqcmd (%rsi), %rdi
; X64-NEXT: sete %al
; X64-NEXT: retq
;
; X86-LABEL: test_enqcmd:
; X86: # %bb.0: # %entry
; X86-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86-NEXT: movl {{[0-9]+}}(%esp), %ecx
; X86-NEXT: enqcmd (%eax), %ecx
; X86-NEXT: sete %al
; X86-NEXT: retl
;
; X32-LABEL: test_enqcmd:
; X32: # %bb.0: # %entry
; X32-NEXT: enqcmd (%esi), %edi
; X32-NEXT: sete %al
; X32-NEXT: retq
;
; EGPR-LABEL: test_enqcmd:
; EGPR: # %bb.0: # %entry
; EGPR-NEXT: enqcmd (%rsi), %rdi # EVEX TO LEGACY Compression encoding: [0xf2,0x0f,0x38,0xf8,0x3e]
; EGPR-NEXT: sete %al # encoding: [0x0f,0x94,0xc0]
; EGPR-NEXT: retq # encoding: [0xc3]
entry:
%0 = call i8 @llvm.x86.enqcmd(ptr %dst, ptr %src)
ret i8 %0
}
define i8 @test_enqcmds(ptr %dst, ptr %src) {
; X64-LABEL: test_enqcmds:
; X64: # %bb.0: # %entry
; X64-NEXT: enqcmds (%rsi), %rdi
; X64-NEXT: sete %al
; X64-NEXT: retq
;
; X86-LABEL: test_enqcmds:
; X86: # %bb.0: # %entry
; X86-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86-NEXT: movl {{[0-9]+}}(%esp), %ecx
; X86-NEXT: enqcmds (%eax), %ecx
; X86-NEXT: sete %al
; X86-NEXT: retl
;
; X32-LABEL: test_enqcmds:
; X32: # %bb.0: # %entry
; X32-NEXT: enqcmds (%esi), %edi
; X32-NEXT: sete %al
; X32-NEXT: retq
;
; EGPR-LABEL: test_enqcmds:
; EGPR: # %bb.0: # %entry
; EGPR-NEXT: enqcmds (%rsi), %rdi # EVEX TO LEGACY Compression encoding: [0xf3,0x0f,0x38,0xf8,0x3e]
; EGPR-NEXT: sete %al # encoding: [0x0f,0x94,0xc0]
; EGPR-NEXT: retq # encoding: [0xc3]
entry:
%0 = call i8 @llvm.x86.enqcmds(ptr %dst, ptr %src)
ret i8 %0
}
declare i8 @llvm.x86.enqcmd(ptr, ptr)
declare i8 @llvm.x86.enqcmds(ptr, ptr)