1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
; 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
define i8 @test_enqcmd(i8* %dst, i8* %src) {
entry:
; 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: enqcmd (%esi), %edi
; X32-NEXT: sete %al
; X32-NEXT: retq
%0 = call i8 @llvm.x86.enqcmd(i8* %dst, i8* %src)
ret i8 %0
}
define i8 @test_enqcmds(i8* %dst, i8* %src) {
entry:
; 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: enqcmds (%esi), %edi
; X32-NEXT: sete %al
; X32-NEXT: retq
%0 = call i8 @llvm.x86.enqcmds(i8* %dst, i8* %src)
ret i8 %0
}
declare i8 @llvm.x86.enqcmd(i8*, i8*)
declare i8 @llvm.x86.enqcmds(i8*, i8*)
|