mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
1db659ede4
Summary: MONITORX/MWAITX instructions provide similar capability to the MONITOR/MWAIT pair while adding a timer function, such that another termination of the MWAITX instruction occurs when the timer expires. The presence of the MONITORX and MWAITX instructions is indicated by CPUID 8000_0001, ECX, bit 29. The MONITORX and MWAITX instructions are intercepted by the same bits that intercept MONITOR and MWAIT. MONITORX instruction establishes a range to be monitored. MWAITX instruction causes the processor to stop instruction execution and enter an implementation-dependent optimized state until occurrence of a class of events. Opcode of MONITORX instruction is "0F 01 FA". Opcode of MWAITX instruction is "0F 01 FB". These opcode information is used in adding tests for the disassembler. These instructions are enabled for AMD's bdver4 architecture. Patch by Ganesh Gopalasubramanian! Reviewers: echristo, craig.topper, RKSimon Subscribers: RKSimon, joker.eph, llvm-commits Differential Revision: http://reviews.llvm.org/D19795 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269911 91177308-0d34-0410-b5e6-96231b3b80d8
39 lines
1.1 KiB
LLVM
39 lines
1.1 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-linux -mattr=+mwaitx | FileCheck %s
|
|
; RUN: llc < %s -mtriple=x86_64-win32 -mattr=+mwaitx | FileCheck %s -check-prefix=WIN64
|
|
; RUN: llc < %s -mtriple=x86_64-linux -mcpu=bdver4 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=x86_64-win32 -mcpu=bdver4 | FileCheck %s -check-prefix=WIN64
|
|
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: leaq (%rdi), %rax
|
|
; CHECK-NEXT: movl %esi, %ecx
|
|
; CHECK-NEXT: monitorx
|
|
; WIN64-LABEL: foo:
|
|
; WIN64: leaq (%rcx), %rax
|
|
; WIN64-NEXT: movl %edx, %ecx
|
|
; WIN64-NEXT: movl %r8d, %edx
|
|
; WIN64-NEXT: monitorx
|
|
define void @foo(i8* %P, i32 %E, i32 %H) nounwind {
|
|
entry:
|
|
tail call void @llvm.x86.monitorx(i8* %P, i32 %E, i32 %H)
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.x86.monitorx(i8*, i32, i32) nounwind
|
|
|
|
; CHECK-LABEL: bar:
|
|
; CHECK: movl %edi, %ecx
|
|
; CHECK-NEXT: movl %esi, %eax
|
|
; CHECK-NEXT: movl %edx, %ebx
|
|
; CHECK-NEXT: mwaitx
|
|
; WIN64-LABEL: bar:
|
|
; WIN64: movl %edx, %eax
|
|
; WIN64: movl %r8d, %ebx
|
|
; WIN64-NEXT: mwaitx
|
|
define void @bar(i32 %E, i32 %H, i32 %C) nounwind {
|
|
entry:
|
|
tail call void @llvm.x86.mwaitx(i32 %E, i32 %H, i32 %C)
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.x86.mwaitx(i32, i32, i32) nounwind
|