linux-packaging-mono/external/llvm/test/CodeGen/X86/x86-flags-intrinsics.ll
Xamarin Public Jenkins (auto-signing) e19d552987 Imported Upstream version 5.18.0.161
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
2018-10-19 08:34:24 +00:00

32 lines
727 B
LLVM

; RUN: llc -verify-machineinstrs < %s | FileCheck %s
target triple = "i686-pc-win32"
declare i32 @llvm.x86.flags.read.u32()
declare void @llvm.x86.flags.write.u32(i32)
define i32 @read_flags() {
entry:
%flags = call i32 @llvm.x86.flags.read.u32()
ret i32 %flags
}
; CHECK-LABEL: _read_flags:
; CHECK: pushl %ebp
; CHECK-NEXT: movl %esp, %ebp
; CHECK-NEXT: pushfl
; CHECK-NEXT: popl %eax
; CHECK-NEXT: popl %ebp
define x86_fastcallcc void @write_flags(i32 inreg %arg) {
entry:
call void @llvm.x86.flags.write.u32(i32 %arg)
ret void
}
; CHECK-LABEL: @write_flags@4:
; CHECK: pushl %ebp
; CHECK-NEXT: movl %esp, %ebp
; CHECK-NEXT: pushl %ecx
; CHECK-NEXT: popfl
; CHECK-NEXT: popl %ebp