blob: fd5a0a33ca7e74e75f699a05375f3aac0480e94b (
plain)
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
|
.version 6.5
.target sm_30
.address_size 64
.visible .entry bra(
.param .u64 input,
.param .u64 output
)
{
.reg .u64 in_addr;
.reg .u64 out_addr;
.reg .u64 temp;
.reg .u64 temp2;
ld.param.u64 in_addr, [input];
ld.param.u64 out_addr, [output];
ld.u64 temp, [in_addr];
bra case1;
case1:
add.u64 temp2, temp, 1;
bra case3;
case2:
add.u64 temp2, temp, 2;
case3:
st.u64 [out_addr], temp2;
ret;
}
|