blob: 9060e120ffc96cf385e39e291a3d5250e6487743 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
2// Exercise various use cases for local asm "register variables".
3
4int foo() {
Eric Christopherd579a882011-07-26 22:52:35 +00005// CHECK: [[A:%[a-zA-Z0-9]+]] = alloca i32
Eric Christopher3883e662011-07-26 22:17:02 +00006
7 register int a asm("rsi")=5;
Eric Christopherd579a882011-07-26 22:52:35 +00008// CHECK: store i32 5, i32* [[A]]
Eric Christopher3883e662011-07-26 22:17:02 +00009
10 asm volatile("; %0 This asm defines rsi" : "=r"(a));
Eric Christopherd579a882011-07-26 22:52:35 +000011// CHECK: [[Z:%[a-zA-Z0-9]+]] = call i32 asm sideeffect "; $0 This asm defines rsi", "={rsi},~{dirflag},~{fpsr},~{flags}"()
12// CHECK: store i32 [[Z]], i32* [[A]]
Eric Christopher3883e662011-07-26 22:17:02 +000013
14 a = 42;
Eric Christopherd579a882011-07-26 22:52:35 +000015// CHECK: store i32 42, i32* [[A]]
Eric Christopher3883e662011-07-26 22:17:02 +000016
17 asm volatile("; %0 This asm uses rsi" : : "r"(a));
Eric Christopherd579a882011-07-26 22:52:35 +000018// CHECK: [[TMP:%[a-zA-Z0-9]+]] = load i32* [[A]]
19// CHECK: call void asm sideeffect "; $0 This asm uses rsi", "{rsi},~{dirflag},~{fpsr},~{flags}"(i32 [[TMP]])
Eric Christopher3883e662011-07-26 22:17:02 +000020
21 return a;
Eric Christopherd579a882011-07-26 22:52:35 +000022// CHECK: [[TMP1:%[a-zA-Z0-9]+]] = load i32* [[A]]
23// CHECK: ret i32 [[TMP1]]
Eric Christopher3883e662011-07-26 22:17:02 +000024}