FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
daScript/src/simulate/runtime_range.cpp at master · harold-b/daScript · GitHub
harold-b
/
daScript
Public
forked from
GaijinEntertainment/daScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
daScript
/
src
/
simulate
/
runtime_range.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
200 lines (182 loc) · 6.7 KB
Breadcrumbs
daScript
/
src
/
simulate
/
runtime_range.cpp
Copy path
File metadata and controls
200 lines (182 loc) · 6.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#
include
"
daScript/misc/platform.h
"
#
include
"
daScript/simulate/runtime_range.h
"
namespace
das
{
bool
RangeIterator::first
( Context &,
char
* _value ) {
int32_t
* value = (
int32_t
*) _value;
*value = rng.
from
;
range_to = rng.
to
;
return
(rng.
from
!=rng.
to
);
}
bool
RangeIterator::next
( Context &,
char
* _value ) {
int32_t
* value = (
int32_t
*) _value;
int32_t
nextValue = *value +
1
;
*value = nextValue;
return
(nextValue != range_to);
}
void
RangeIterator::close
( Context & context,
char
* ) {
context.
heap
->
free
((
char
*)
this
,
sizeof
(RangeIterator));
}
vec4f
SimNode_RangeIterator::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = subexpr->
eval
(context);
range r = cast<range>::
to
(ll);
char
* iter = context.
heap
->
allocate
(
sizeof
(RangeIterator));
context.
heap
->
mark_comment
(iter,
"
range iterator
"
);
context.
heap
->
mark_location
(iter,&debugInfo);
new
(iter)
RangeIterator
(r);
return
cast<
char
*>::
from
(iter);
}
//
//////////
//
FOR RANGE
//
//////////
vec4f
SimNode_ForRange::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode ** __restrict tail = list + total;
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
SimNode ** __restrict body = list;
loopbegin:;
for
(; body!=tail; ++body) {
(*body)->
eval
(context);
DAS_PROCESS_LOOP_FLAGS
(
break
);
}
}
loopend:;
evalFinal
(context);
context.
stopFlags
&= ~EvalFlags::stopForBreak;
return
v_zero
();
}
vec4f
SimNode_ForRangeNF::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode ** __restrict tail = list + total;
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
for
(SimNode ** __restrict body = list; body!=tail; ++body) {
(*body)->
eval
(context);
}
}
evalFinal
(context);
context.
stopFlags
&= ~(EvalFlags::stopForBreak | EvalFlags::stopForContinue);
return
v_zero
();
}
vec4f
SimNode_ForRange1::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode * __restrict pbody = list[
0
];
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
pbody->
eval
(context);
DAS_PROCESS_LOOP1_FLAGS
(
continue
);
}
loopend:;
evalFinal
(context);
context.
stopFlags
&= ~(EvalFlags::stopForBreak | EvalFlags::stopForContinue);
return
v_zero
();
}
vec4f
SimNode_ForRangeNF1::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode * __restrict pbody = list[
0
];
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
pbody->
eval
(context);
}
evalFinal
(context);
context.
stopFlags
&= ~(EvalFlags::stopForBreak | EvalFlags::stopForContinue);
return
v_zero
();
}
#
if
DAS_DEBUGGER
//
////////////////
//
FOR RANGE DEBUG
//
////////////////
vec4f
SimNodeDebug_ForRange::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode ** __restrict tail = list + total;
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
SimNode ** __restrict body = list;
loopbegin:;
for
(; body!=tail; ++body) {
DAS_SINGLE_STEP
(context,(*body)->
debugInfo
,
true
);
(*body)->
eval
(context);
DAS_PROCESS_LOOP_FLAGS
(
break
);
}
}
loopend:;
evalFinal
(context);
context.
stopFlags
&= ~EvalFlags::stopForBreak;
return
v_zero
();
}
vec4f
SimNodeDebug_ForRangeNF::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode ** __restrict tail = list + total;
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
for
(SimNode ** __restrict body = list; body!=tail; ++body) {
DAS_SINGLE_STEP
(context,(*body)->
debugInfo
,
true
);
(*body)->
eval
(context);
}
}
evalFinal
(context);
context.
stopFlags
&= ~(EvalFlags::stopForBreak | EvalFlags::stopForContinue);
return
v_zero
();
}
vec4f
SimNodeDebug_ForRange1::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode * __restrict pbody = list[
0
];
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
DAS_SINGLE_STEP
(context,pbody->
debugInfo
,
true
);
pbody->
eval
(context);
DAS_PROCESS_LOOP1_FLAGS
(
continue
);
}
loopend:;
evalFinal
(context);
context.
stopFlags
&= ~(EvalFlags::stopForBreak | EvalFlags::stopForContinue);
return
v_zero
();
}
vec4f
SimNodeDebug_ForRangeNF1::eval
( Context & context ) {
DAS_PROFILE_NODE
vec4f ll = sources[
0
]->
eval
(context);
range r = cast<range>::
to
(ll);
int32_t
* __restrict pi = (
int32_t
*)(context.
stack
.
sp
() + stackTop[
0
]);
int32_t
r_to = r.
to
;
SimNode * __restrict pbody = list[
0
];
for
(
int32_t
i = r.
from
; i != r_to; ++i) {
*pi = i;
DAS_SINGLE_STEP
(context,pbody->
debugInfo
,
true
);
pbody->
eval
(context);
}
evalFinal
(context);
context.
stopFlags
&= ~(EvalFlags::stopForBreak | EvalFlags::stopForContinue);
return
v_zero
();
}
#
endif
}
Back
|
FazBrowse Home
|
New Git URL