blob: 10a362f369a3486c43e0a74a46653a2d86c28d56 [file] [log] [blame]
Dale Johannesen4caadc32009-08-20 16:58:04 +00001; RUN: llvm-as < %s | llc | FileCheck %s
Dale Johannesen7bcec7e2009-08-19 22:44:41 +00002; ModuleID = 'asm.c'
3target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
4target triple = "i386-apple-darwin9.6"
5
Chris Lattner934a7562009-08-22 00:44:24 +00006define i32 @test1() nounwind {
Dale Johannesen7bcec7e2009-08-19 22:44:41 +00007entry:
Chris Lattner934a7562009-08-22 00:44:24 +00008; CHECK: test1:
9; CHECK: movw %gs:6, %ax
Dale Johannesen7bcec7e2009-08-19 22:44:41 +000010 %asmtmp.i = tail call i16 asm "movw\09%gs:${1:a}, ${0:w}", "=r,ir,~{dirflag},~{fpsr},~{flags}"(i32 6) nounwind ; <i16> [#uses=1]
11 %0 = zext i16 %asmtmp.i to i32 ; <i32> [#uses=1]
12 ret i32 %0
13}
14
Chris Lattner934a7562009-08-22 00:44:24 +000015define zeroext i16 @test2(i32 %address) nounwind {
Dale Johannesen7bcec7e2009-08-19 22:44:41 +000016entry:
Chris Lattner934a7562009-08-22 00:44:24 +000017; CHECK: test2:
18; CHECK: movw %gs:(%eax), %ax
Dale Johannesen7bcec7e2009-08-19 22:44:41 +000019 %asmtmp = tail call i16 asm "movw\09%gs:${1:a}, ${0:w}", "=r,ir,~{dirflag},~{fpsr},~{flags}"(i32 %address) nounwind ; <i16> [#uses=1]
20 ret i16 %asmtmp
21}
Dale Johannesenf6163dc2009-08-25 00:16:14 +000022
23@n = global i32 42 ; <i32*> [#uses=3]
24@y = common global i32 0 ; <i32*> [#uses=3]
25
26define void @test3() nounwind {
27entry:
28; CHECK: test3:
29; CHECK: movl _n, %eax
30 call void asm sideeffect "movl ${0:a}, %eax", "ir,~{dirflag},~{fpsr},~{flags},~{eax}"(i32* @n) nounwind
31 ret void
32}
33
34define void @test4() nounwind {
35entry:
36; CHECK: test4:
37; CHECK: movl L_y$non_lazy_ptr, %ecx
38; CHECK: movl (%ecx), %eax
39 call void asm sideeffect "movl ${0:a}, %eax", "ir,~{dirflag},~{fpsr},~{flags},~{eax}"(i32* @y) nounwind
40 ret void
41}