Mercurial > hg > CbC > CbC_llvm
comparison test/CodeGen/R600/mad_uint24.ll @ 83:60c9769439b8 LLVM3.7
LLVM 3.7
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 18 Feb 2015 14:55:36 +0900 |
parents | 54457678186b |
children |
comparison
equal
deleted
inserted
replaced
78:af83660cff7b | 83:60c9769439b8 |
---|---|
1 ; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s --check-prefix=EG --check-prefix=FUNC | 1 ; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s --check-prefix=EG --check-prefix=FUNC |
2 ; RUN: llc < %s -march=r600 -mcpu=cayman | FileCheck %s --check-prefix=EG --check-prefix=FUNC | 2 ; RUN: llc < %s -march=r600 -mcpu=cayman | FileCheck %s --check-prefix=EG --check-prefix=FUNC |
3 ; RUN: llc < %s -march=r600 -mcpu=SI -verify-machineinstrs | FileCheck %s --check-prefix=SI --check-prefix=FUNC | 3 ; RUN: llc < %s -march=amdgcn -mcpu=SI -verify-machineinstrs | FileCheck %s --check-prefix=SI --check-prefix=FUNC |
4 ; RUN: llc < %s -march=amdgcn -mcpu=tonga -verify-machineinstrs | FileCheck %s --check-prefix=SI --check-prefix=FUNC | |
4 | 5 |
5 ; FUNC-LABEL: @u32_mad24 | 6 ; FUNC-LABEL: {{^}}u32_mad24: |
6 ; EG: MULADD_UINT24 | 7 ; EG: MULADD_UINT24 |
7 ; SI: V_MAD_U32_U24 | 8 ; SI: v_mad_u32_u24 |
8 | 9 |
9 define void @u32_mad24(i32 addrspace(1)* %out, i32 %a, i32 %b, i32 %c) { | 10 define void @u32_mad24(i32 addrspace(1)* %out, i32 %a, i32 %b, i32 %c) { |
10 entry: | 11 entry: |
11 %0 = shl i32 %a, 8 | 12 %0 = shl i32 %a, 8 |
12 %a_24 = lshr i32 %0, 8 | 13 %a_24 = lshr i32 %0, 8 |
16 %3 = add i32 %2, %c | 17 %3 = add i32 %2, %c |
17 store i32 %3, i32 addrspace(1)* %out | 18 store i32 %3, i32 addrspace(1)* %out |
18 ret void | 19 ret void |
19 } | 20 } |
20 | 21 |
21 ; FUNC-LABEL: @i16_mad24 | 22 ; FUNC-LABEL: {{^}}i16_mad24: |
22 ; The order of A and B does not matter. | 23 ; The order of A and B does not matter. |
23 ; EG: MULADD_UINT24 {{[* ]*}}T{{[0-9]}}.[[MAD_CHAN:[XYZW]]] | 24 ; EG: MULADD_UINT24 {{[* ]*}}T{{[0-9]}}.[[MAD_CHAN:[XYZW]]] |
24 ; The result must be sign-extended | 25 ; The result must be sign-extended |
25 ; EG: BFE_INT {{[* ]*}}T{{[0-9]\.[XYZW]}}, PV.[[MAD_CHAN]], 0.0, literal.x | 26 ; EG: BFE_INT {{[* ]*}}T{{[0-9]\.[XYZW]}}, PV.[[MAD_CHAN]], 0.0, literal.x |
26 ; EG: 16 | 27 ; EG: 16 |
27 ; SI: V_MAD_U32_U24 [[MAD:v[0-9]]], {{[sv][0-9], [sv][0-9]}} | 28 ; SI: v_mad_u32_u24 [[MAD:v[0-9]]], {{[sv][0-9], [sv][0-9]}} |
28 ; SI: V_BFE_I32 v{{[0-9]}}, [[MAD]], 0, 16 | 29 ; SI: v_bfe_i32 v{{[0-9]}}, [[MAD]], 0, 16 |
29 | 30 |
30 define void @i16_mad24(i32 addrspace(1)* %out, i16 %a, i16 %b, i16 %c) { | 31 define void @i16_mad24(i32 addrspace(1)* %out, i16 %a, i16 %b, i16 %c) { |
31 entry: | 32 entry: |
32 %0 = mul i16 %a, %b | 33 %0 = mul i16 %a, %b |
33 %1 = add i16 %0, %c | 34 %1 = add i16 %0, %c |
34 %2 = sext i16 %1 to i32 | 35 %2 = sext i16 %1 to i32 |
35 store i32 %2, i32 addrspace(1)* %out | 36 store i32 %2, i32 addrspace(1)* %out |
36 ret void | 37 ret void |
37 } | 38 } |
38 | 39 |
39 ; FUNC-LABEL: @i8_mad24 | 40 ; FUNC-LABEL: {{^}}i8_mad24: |
40 ; EG: MULADD_UINT24 {{[* ]*}}T{{[0-9]}}.[[MAD_CHAN:[XYZW]]] | 41 ; EG: MULADD_UINT24 {{[* ]*}}T{{[0-9]}}.[[MAD_CHAN:[XYZW]]] |
41 ; The result must be sign-extended | 42 ; The result must be sign-extended |
42 ; EG: BFE_INT {{[* ]*}}T{{[0-9]\.[XYZW]}}, PV.[[MAD_CHAN]], 0.0, literal.x | 43 ; EG: BFE_INT {{[* ]*}}T{{[0-9]\.[XYZW]}}, PV.[[MAD_CHAN]], 0.0, literal.x |
43 ; EG: 8 | 44 ; EG: 8 |
44 ; SI: V_MAD_U32_U24 [[MUL:v[0-9]]], {{[sv][0-9], [sv][0-9]}} | 45 ; SI: v_mad_u32_u24 [[MUL:v[0-9]]], {{[sv][0-9], [sv][0-9]}} |
45 ; SI: V_BFE_I32 v{{[0-9]}}, [[MUL]], 0, 8 | 46 ; SI: v_bfe_i32 v{{[0-9]}}, [[MUL]], 0, 8 |
46 | 47 |
47 define void @i8_mad24(i32 addrspace(1)* %out, i8 %a, i8 %b, i8 %c) { | 48 define void @i8_mad24(i32 addrspace(1)* %out, i8 %a, i8 %b, i8 %c) { |
48 entry: | 49 entry: |
49 %0 = mul i8 %a, %b | 50 %0 = mul i8 %a, %b |
50 %1 = add i8 %0, %c | 51 %1 = add i8 %0, %c |
58 ; assuming that the pattern would be matched to a 24-bit mad. This | 59 ; assuming that the pattern would be matched to a 24-bit mad. This |
59 ; led to some instructions being incorrectly erased when the entire | 60 ; led to some instructions being incorrectly erased when the entire |
60 ; 24-bit mad pattern wasn't being matched. | 61 ; 24-bit mad pattern wasn't being matched. |
61 | 62 |
62 ; Check that the select instruction is not deleted. | 63 ; Check that the select instruction is not deleted. |
63 ; FUNC-LABEL: @i24_i32_i32_mad | 64 ; FUNC-LABEL: {{^}}i24_i32_i32_mad: |
64 ; EG: CNDE_INT | 65 ; EG: CNDE_INT |
65 ; SI: V_CNDMASK | 66 ; SI: v_cndmask |
66 define void @i24_i32_i32_mad(i32 addrspace(1)* %out, i32 %a, i32 %b, i32 %c, i32 %d) { | 67 define void @i24_i32_i32_mad(i32 addrspace(1)* %out, i32 %a, i32 %b, i32 %c, i32 %d) { |
67 entry: | 68 entry: |
68 %0 = ashr i32 %a, 8 | 69 %0 = ashr i32 %a, 8 |
69 %1 = icmp ne i32 %c, 0 | 70 %1 = icmp ne i32 %c, 0 |
70 %2 = select i1 %1, i32 %0, i32 34 | 71 %2 = select i1 %1, i32 %0, i32 34 |