Line data Source code
1 : /*
2 : * SPDX-License-Identifier: MPL-2.0
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * Copyright 2024 MonetDB Foundation;
9 : * Copyright August 2008 - 2023 MonetDB B.V.;
10 : * Copyright 1997 - July 2008 CWI.
11 : */
12 :
13 : #include "monetdb_config.h"
14 : #include "opt_multiplex.h"
15 : #include "manifold.h"
16 : #include "mal_interpreter.h"
17 :
18 : /*
19 : * The generic solution to the multiplex operators is to translate
20 : * them to a MAL loop.
21 : * The call optimizer.multiplex(MOD,FCN,A1,...An) introduces the following code
22 : * structure:
23 : *
24 : * resB:= bat.new(restype, A1);
25 : * barrier (h,t1):= iterator.new(A1);
26 : * t2:= algebra.fetch(A2,h)
27 : * ...
28 : * cr:= MOD.FCN(t1,...,tn);
29 : * bat.append(resB,cr);
30 : * redo (h,t):= iterator.next(A1);
31 : * end h;
32 : *
33 : * The algorithm consists of two phases: phase one deals with
34 : * collecting the relevant information, phase two is the actual
35 : * code construction.
36 : */
37 : static str
38 773 : OPTexpandMultiplex(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci)
39 : {
40 773 : int i = 2, iter = 0;
41 773 : int hvar, tvar;
42 773 : const char *mod, *fcn;
43 773 : int *alias, *resB;
44 773 : InstrPtr q;
45 773 : int tt;
46 773 : int bat = (getModuleId(pci) == batmalRef);
47 :
48 773 : (void) cntxt;
49 773 : (void) stk;
50 1579 : for (i = 0; i < pci->retc; i++) {
51 806 : tt = getBatType(getArgType(mb, pci, i));
52 806 : if (tt == TYPE_any)
53 0 : throw(MAL, "optimizer.multiplex",
54 : SQLSTATE(HY002) "Target tail type is missing");
55 806 : if (isAnyExpression(getArgType(mb, pci, i)))
56 0 : throw(MAL, "optimizer.multiplex",
57 : SQLSTATE(HY002) "Target type is missing");
58 : }
59 773 : int plus_one = getArgType(mb, pci, pci->retc) == TYPE_lng ? 1 : 0;
60 773 : mod = VALget(&getVar(mb, getArg(pci, pci->retc + plus_one))->value);
61 773 : mod = putName(mod);
62 773 : fcn = VALget(&getVar(mb, getArg(pci, pci->retc + 1 + plus_one))->value);
63 773 : fcn = putName(fcn);
64 773 : if (mod == NULL || fcn == NULL)
65 0 : throw(MAL, "optimizer.multiplex", SQLSTATE(HY013) MAL_MALLOC_FAIL);
66 :
67 : #ifndef NDEBUG
68 : TRC_WARNING_IF(MAL_OPTIMIZER) {
69 773 : char *ps = instruction2str(mb, stk, pci, LIST_MAL_DEBUG);
70 773 : TRC_WARNING_ENDIF(MAL_OPTIMIZER,
71 : "To speedup %s.%s a bulk operator implementation is needed%s%s\n",
72 : mod, fcn, ps ? " for " : "", ps ? ps : "");
73 773 : GDKfree(ps);
74 : }
75 : #endif
76 :
77 773 : if (plus_one) {
78 0 : q = newFcnCallArgs(mb, batRef, putName("densebat"), 2);
79 0 : if (q == NULL) {
80 0 : throw(MAL, "optimizer.multiplex", SQLSTATE(HY013) MAL_MALLOC_FAIL);
81 : }
82 0 : q = pushArgument(mb, q, getArg(pci, pci->retc));
83 0 : pushInstruction(mb, q);
84 0 : iter = getArg(q, 0);
85 : } else /* search the iterator bat */
86 785 : for (i = pci->retc + 2; i < pci->argc; i++)
87 785 : if (isaBatType(getArgType(mb, pci, i))) {
88 : iter = getArg(pci, i);
89 : break;
90 : }
91 773 : if (i == pci->argc)
92 0 : throw(MAL, "optimizer.multiplex",
93 : SQLSTATE(HY002) "Iterator BAT type is missing");
94 :
95 : /*
96 : * Beware, the operator constant (arg=1) is passed along as well,
97 : * because in the end we issue a recursive function call that should
98 : * find the actual arguments at the proper place of the callee.
99 : */
100 :
101 773 : alias = (int *) GDKmalloc(sizeof(int) * pci->maxarg);
102 773 : resB = (int *) GDKmalloc(sizeof(int) * pci->retc);
103 773 : if (alias == NULL || resB == NULL) {
104 0 : goto nomem;
105 : }
106 :
107 : /* resB := new(refBat) */
108 1579 : for (i = 0; i < pci->retc; i++) {
109 806 : q = newFcnCallArgs(mb, batRef, newRef, 3);
110 806 : if (q == NULL) {
111 0 : goto nomem;
112 : }
113 806 : resB[i] = getArg(q, 0);
114 :
115 806 : tt = getBatType(getArgType(mb, pci, i));
116 :
117 806 : setVarType(mb, getArg(q, 0), newBatType(tt));
118 806 : q = pushType(mb, q, tt);
119 806 : q = pushArgument(mb, q, iter);
120 806 : pushInstruction(mb, q);
121 806 : assert(q->argc == 3);
122 : }
123 :
124 : /* barrier (h,r) := iterator.new(refBat); */
125 773 : q = newFcnCall(mb, iteratorRef, newRef);
126 773 : if (q == NULL) {
127 0 : goto nomem;
128 : }
129 773 : q->barrier = BARRIERsymbol;
130 773 : hvar = newTmpVariable(mb, TYPE_any);
131 773 : getArg(q, 0) = hvar;
132 773 : tvar = newTmpVariable(mb, TYPE_any);
133 773 : q = pushReturn(mb, q, tvar);
134 773 : q = pushArgument(mb, q, iter);
135 773 : pushInstruction(mb, q);
136 :
137 : /* $1:= algebra.fetch(Ai,h) or constant */
138 2229 : for (i = pci->retc + 2 + plus_one; i < pci->argc; i++) {
139 1456 : if (getArg(pci, i) != iter &&isaBatType(getArgType(mb, pci, i))) {
140 515 : q = newFcnCall(mb, algebraRef, "fetch");
141 515 : if (q == NULL) {
142 0 : goto nomem;
143 : }
144 515 : alias[i] = newTmpVariable(mb, getBatType(getArgType(mb, pci, i)));
145 515 : getArg(q, 0) = alias[i];
146 515 : q = pushArgument(mb, q, getArg(pci, i));
147 515 : q = pushArgument(mb, q, hvar);
148 515 : pushInstruction(mb, q);
149 : }
150 : }
151 :
152 : /* cr:= mod.CMD($1,...,$n); */
153 773 : q = newFcnCallArgs(mb, mod, fcn, pci->argc - 2 - plus_one);
154 773 : if (q == NULL) {
155 0 : goto nomem;
156 : }
157 1579 : for (i = 0; i < pci->retc; i++) {
158 806 : int nvar = 0;
159 806 : if (bat) {
160 50 : tt = getBatType(getArgType(mb, pci, i));
161 50 : nvar = newTmpVariable(mb, newBatType(tt));
162 : } else {
163 756 : nvar = newTmpVariable(mb, TYPE_any);
164 : }
165 806 : if (i)
166 33 : q = pushReturn(mb, q, nvar);
167 : else
168 773 : getArg(q, 0) = nvar;
169 : }
170 :
171 2229 : for (i = pci->retc + 2 + plus_one; i < pci->argc; i++) {
172 1456 : if (getArg(pci, i) == iter) {
173 773 : q = pushArgument(mb, q, tvar);
174 683 : } else if (isaBatType(getArgType(mb, pci, i))) {
175 515 : q = pushArgument(mb, q, alias[i]);
176 : } else {
177 168 : q = pushArgument(mb, q, getArg(pci, i));
178 : }
179 : }
180 773 : pushInstruction(mb, q);
181 :
182 2352 : for (i = 0; i < pci->retc; i++) {
183 806 : InstrPtr a = newFcnCall(mb, batRef, appendRef);
184 806 : if (a == NULL) {
185 0 : goto nomem;
186 : }
187 806 : a = pushArgument(mb, a, resB[i]);
188 806 : a = pushArgument(mb, a, getArg(q, i));
189 806 : getArg(a, 0) = resB[i];
190 806 : pushInstruction(mb, a);
191 : }
192 :
193 : /* redo (h,r):= iterator.next(refBat); */
194 773 : q = newFcnCall(mb, iteratorRef, nextRef);
195 773 : if (q == NULL) {
196 0 : goto nomem;
197 : }
198 773 : q->barrier = REDOsymbol;
199 773 : getArg(q, 0) = hvar;
200 773 : q = pushReturn(mb, q, tvar);
201 773 : q = pushArgument(mb, q, iter);
202 773 : pushInstruction(mb, q);
203 :
204 773 : q = newAssignment(mb);
205 773 : if (q == NULL) {
206 0 : goto nomem;
207 : }
208 773 : q->barrier = EXITsymbol;
209 773 : getArg(q, 0) = hvar;
210 773 : q = pushReturn(mb, q, tvar);
211 773 : pushInstruction(mb, q);
212 :
213 2352 : for (i = 0; i < pci->retc; i++) {
214 806 : q = newAssignment(mb);
215 806 : if (q == NULL) {
216 0 : goto nomem;
217 : }
218 806 : getArg(q, 0) = getArg(pci, i);
219 806 : q = pushArgument(mb, q, resB[i]);
220 806 : pushInstruction(mb, q);
221 : }
222 773 : GDKfree(alias);
223 773 : GDKfree(resB);
224 773 : return MAL_SUCCEED;
225 :
226 0 : nomem:
227 0 : GDKfree(alias);
228 0 : GDKfree(resB);
229 0 : throw(MAL, "optimizer.multiplex", SQLSTATE(HY013) MAL_MALLOC_FAIL);
230 : }
231 :
232 : /*
233 : * The multiplexSimple is called by the MAL scenario. It bypasses
234 : * the optimizer infrastructure, to avoid excessive space allocation
235 : * and interpretation overhead.
236 : */
237 : str
238 6 : OPTmultiplexSimple(Client cntxt, MalBlkPtr mb)
239 : {
240 6 : int i, doit = 0;
241 6 : InstrPtr p;
242 6 : str msg = MAL_SUCCEED;
243 :
244 6 : if (mb)
245 1243 : for (i = 0; i < mb->stop; i++) {
246 1237 : p = getInstrPtr(mb, i);
247 1237 : if (isMultiplex(p)) {
248 0 : p->typeresolved = false;
249 0 : doit++;
250 : }
251 : }
252 6 : if (doit) {
253 0 : msg = OPTmultiplexImplementation(cntxt, mb, 0, 0);
254 0 : if (!msg)
255 0 : msg = chkTypes(cntxt->usermodule, mb, TRUE);
256 0 : if (!msg)
257 0 : msg = chkFlow(mb);
258 0 : if (!msg)
259 0 : msg = chkDeclarations(mb);
260 : }
261 6 : return msg;
262 : }
263 :
264 : str
265 449066 : OPTmultiplexImplementation(Client cntxt, MalBlkPtr mb, MalStkPtr stk,
266 : InstrPtr pci)
267 : {
268 449066 : InstrPtr *old = 0, p;
269 449066 : int i, limit, slimit, actions = 0;
270 449066 : str msg = MAL_SUCCEED;
271 :
272 449066 : (void) stk;
273 26391145 : for (i = 0; i < mb->stop; i++) {
274 25942543 : p = getInstrPtr(mb, i);
275 25942543 : if (isMultiplex(p)) {
276 : break;
277 : }
278 : }
279 449083 : if (i == mb->stop) {
280 448602 : goto wrapup;
281 : }
282 :
283 481 : old = mb->stmt;
284 481 : limit = mb->stop;
285 481 : slimit = mb->ssize;
286 481 : if (newMalBlkStmt(mb, mb->ssize) < 0)
287 0 : throw(MAL, "optimizer.multiplex", SQLSTATE(HY013) MAL_MALLOC_FAIL);
288 :
289 107484 : for (i = 0; i < limit; i++) {
290 107003 : p = old[i];
291 107003 : if (msg == MAL_SUCCEED && isMultiplex(p)) {
292 1522 : if (MANIFOLDtypecheck(cntxt, mb, p, 0) != NULL) {
293 749 : setFunctionId(p, manifoldRef);
294 749 : p->typeresolved = false;
295 749 : pushInstruction(mb, p);
296 749 : actions++;
297 749 : continue;
298 : }
299 773 : msg = OPTexpandMultiplex(cntxt, mb, stk, p);
300 773 : if (msg == MAL_SUCCEED) {
301 773 : freeInstruction(p);
302 773 : old[i] = 0;
303 773 : actions++;
304 773 : continue;
305 : }
306 :
307 0 : pushInstruction(mb, p);
308 0 : actions++;
309 105481 : } else if (old[i])
310 105481 : pushInstruction(mb, p);
311 : }
312 90598 : for (; i < slimit; i++)
313 90117 : if (old[i])
314 0 : pushInstruction(mb, old[i]);
315 481 : GDKfree(old);
316 :
317 : /* Defense line against incorrect plans */
318 481 : if (msg == MAL_SUCCEED && actions > 0) {
319 481 : msg = chkTypes(cntxt->usermodule, mb, FALSE);
320 481 : if (!msg)
321 481 : msg = chkFlow(mb);
322 481 : if (!msg)
323 481 : msg = chkDeclarations(mb);
324 : }
325 0 : wrapup:
326 : /* keep actions taken as a fake argument */
327 449083 : (void) pushInt(mb, pci, actions);
328 :
329 449083 : return msg;
330 : }
|