blob: 803250503750e9c5d50312abb61be75a205f28a7 (
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
|
.version 6.5
.target sm_30
.address_size 64
.visible .entry setp(
.param .u64 input,
.param .u64 output
)
{
.reg .u64 in_addr;
.reg .u64 out_addr;
.reg .u64 temp;
.reg .u64 temp2;
.reg .u64 temp3;
.reg .pred pred;
ld.param.u64 in_addr, [input];
ld.param.u64 out_addr, [output];
ld.u64 temp, [in_addr];
ld.u64 temp2, [in_addr + 8];
setp.lt.u64 pred, temp, temp2;
@pred mov.u64 temp3, 1;
@!pred mov.u64 temp3, 2;
st.u64 [out_addr], temp3;
ret;
}
|