-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnclip.addprod.h
115 lines (104 loc) · 2.23 KB
/
nclip.addprod.h
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* defines nclip::addprod functions
validated
*/
#pragma once
namespace nclip {
void addprod_a (
const double start
,const ninstruction::sinst &inst
) {
int offset = tto(inst.start - start);
nlowlevel::addprod (
nregister::localreg[inst.reg0] + offset
,tto(inst.len)
,nregister::localreg[inst.reg1] + offset
,nregister::localreg[inst.reg2] + offset
);
}
void addprod_s (
const double start
,const ninstruction::sinst &inst
) {
int offset = tto(inst.start - start);
nlowlevel::addprod (
nregister::localreg[inst.reg0] + offset
,tto(inst.len)
,nregister::localreg[inst.reg1] + offset
,inst.scalar_a
);
}
void baddprod_a (
const double start
,const ninstruction::sinst &inst
,uacc &acc
) {
nlowlevel::addprod (
nregister::localreg[inst.reg0]
,tto(inst.start + inst.len - start)
,nregister::localreg[inst.reg1]
,nregister::localreg[inst.reg2]
);
}
void baddprod_s (
const double start
,const ninstruction::sinst &inst
,uacc &acc
) {
nlowlevel::addprod (
nregister::localreg[inst.reg0]
,tto(inst.start + inst.len - start)
,nregister::localreg[inst.reg1]
,inst.scalar_a
);
}
void eaddprod_a (
const double start
,const ninstruction::sinst &inst
,uacc &acc
) {
int offset = tto(inst.start - start);
nlowlevel::addprod (
nregister::localreg[inst.reg0] + offset
,nregister::len - offset
,nregister::localreg[inst.reg1] + offset
,nregister::localreg[inst.reg2] + offset
);
}
void eaddprod_s (
const double start
,const ninstruction::sinst &inst
,uacc &acc
) {
int offset = tto(inst.start - start);
nlowlevel::addprod (
nregister::localreg[inst.reg0] + offset
,nregister::len - offset
,nregister::localreg[inst.reg1] + offset
,inst.scalar_a
);
}
void beaddprod_a (
const double start
,const ninstruction::sinst &inst
,uacc &acc
) {
nlowlevel::addprod (
nregister::localreg[inst.reg0]
,nregister::len
,nregister::localreg[inst.reg1]
,nregister::localreg[inst.reg2]
);
}
void beaddprod_s (
const double start
,const ninstruction::sinst &inst
,uacc &acc
) {
nlowlevel::addprod (
nregister::localreg[inst.reg0]
,nregister::len
,nregister::localreg[inst.reg1]
,inst.scalar_a
);
}
}