File: 2009-08-06-inlineasm.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (30 lines) | stat: -rw-r--r-- 1,598 bytes parent folder | download | duplicates (13)
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
; RUN: false
; XRUN: llc -mtriple=i386-pc-linux-gnu < %s
; PR4668
; XFAIL: *
; FIXME: If the coalescer happens to coalesce %level.1 with the copy to EAX
; (for ret) then this will fail to compile. The fundamental problem is
; once the coalescer fixes a virtual register to physical register we can't
; evict it. This started passing again due to the changes for PR8969
; so I've disabled it with a bigger stick.

define i32 @x(i32 %qscale) nounwind {
entry:
	%temp_block = alloca [64 x i16], align 16		; <ptr> [#uses=0]
	%tmp = call i32 asm sideeffect "xor %edx, %edx", "={dx},~{dirflag},~{fpsr},~{flags}"() nounwind		; <i32> [#uses=1]
	br i1 undef, label %if.end78, label %if.then28

if.then28:		; preds = %entry
	br label %if.end78

if.end78:		; preds = %if.then28, %entry
	%level.1 = phi i32 [ %tmp, %if.then28 ], [ 0, %entry ]		; <i32> [#uses=1]
	%add.ptr1 = getelementptr [64 x i16], ptr null, i32 0, i32 %qscale		; <ptr> [#uses=1]
	%add.ptr2 = getelementptr [64 x i16], ptr null, i32 1, i32 %qscale		; <ptr> [#uses=1]
	%add.ptr3 = getelementptr [64 x i16], ptr null, i32 2, i32 %qscale		; <ptr> [#uses=1]
	%add.ptr4 = getelementptr [64 x i16], ptr null, i32 3, i32 %qscale		; <ptr> [#uses=1]
	%add.ptr5 = getelementptr [64 x i16], ptr null, i32 4, i32 %qscale		; <ptr> [#uses=1]
	%add.ptr6 = getelementptr [64 x i16], ptr null, i32 5, i32 %qscale		; <ptr> [#uses=1]
	%tmp1 = call i32 asm sideeffect "nop", "={ax},r,r,r,r,r,0,~{dirflag},~{fpsr},~{flags}"(ptr %add.ptr6, ptr %add.ptr5, ptr %add.ptr4, ptr %add.ptr3, ptr %add.ptr2, ptr %add.ptr1) nounwind		; <i32> [#uses=0]
	ret i32 %level.1
}