File: sub_ops.ll

package info (click to toggle)
llvm-3.0 3.0-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 75,412 kB
  • sloc: cpp: 468,043; asm: 109,345; ansic: 13,782; sh: 12,935; ml: 4,716; python: 4,351; perl: 2,096; makefile: 1,905; pascal: 1,578; exp: 389; xml: 283; lisp: 187; csh: 117
file content (26 lines) | stat: -rw-r--r-- 721 bytes parent folder | download | duplicates (4)
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
; RUN: llc < %s -march=cellspu | FileCheck %s

define i32 @subword( i32 %param1, i32 %param2) {
; Check ordering of registers ret=param1-param2 -> rt=rb-ra
; CHECK-NOT:	sf	$3, $3, $4
; CHECK:	sf	$3, $4, $3
	%1 = sub i32 %param1, %param2
	ret i32 %1
}

define i16 @subhword( i16 %param1, i16 %param2) {
; Check ordering of registers ret=param1-param2 -> rt=rb-ra
; CHECK-NOT:	sfh	$3, $3, $4
; CHECK:	sfh	$3, $4, $3
	%1 = sub i16 %param1, %param2
	ret i16 %1
}

define float @subfloat( float %param1, float %param2) {
; Check ordering of registers ret=param1-param2 -> rt=ra-rb 
; (yes this is reverse of i32 instruction)
; CHECK-NOT:	fs	$3, $4, $3 
; CHECK:	fs	$3, $3, $4
	%1 = fsub float %param1, %param2
	ret float %1
}