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 : /*
14 : * This simple module unrolls the mat.pack into an incremental sequence.
15 : * This could speedup parallel processing and releases resources faster.
16 : */
17 : #include "monetdb_config.h"
18 : #include "opt_matpack.h"
19 :
20 : str
21 483509 : OPTmatpackImplementation(Client cntxt, MalBlkPtr mb, MalStkPtr stk,
22 : InstrPtr pci)
23 : {
24 483509 : int v, i, j, limit, slimit;
25 483509 : InstrPtr p, q;
26 483509 : int actions = 0;
27 483509 : InstrPtr *old = NULL;
28 483509 : str msg = MAL_SUCCEED;
29 :
30 483509 : if (isOptimizerUsed(mb, pci, mergetableRef) <= 0) {
31 31954 : goto wrapup;
32 : }
33 :
34 : (void) cntxt;
35 : (void) stk; /* to fool compilers */
36 21769436 : for (i = 1; i < mb->stop; i++)
37 21348778 : if (getModuleId(getInstrPtr(mb, i)) == matRef
38 46066 : && getFunctionId(getInstrPtr(mb, i)) == packRef
39 33299 : && isaBatType(getArgType(mb, getInstrPtr(mb, i), 1)))
40 : break;
41 451583 : if (i == mb->stop)
42 420658 : goto wrapup;
43 :
44 30925 : old = mb->stmt;
45 30925 : limit = mb->stop;
46 30925 : slimit = mb->ssize;
47 30925 : if (newMalBlkStmt(mb, mb->stop) < 0)
48 0 : throw(MAL, "optimizer.matpack", SQLSTATE(HY013) MAL_MALLOC_FAIL);
49 :
50 8857997 : for (i = 0; mb->errors == NULL && i < limit; i++) {
51 8827072 : p = old[i];
52 8827072 : if (getModuleId(p) == matRef && getFunctionId(p) == packRef
53 159959 : && isaBatType(getArgType(mb, p, 1))) {
54 157823 : q = newInstruction(0, matRef, packIncrementRef);
55 157823 : if (q == NULL) {
56 0 : msg = createException(MAL, "optimizer.matpack",
57 : SQLSTATE(HY013) MAL_MALLOC_FAIL);
58 0 : break;
59 : }
60 157823 : if (setDestVar(q, newTmpVariable(mb, getArgType(mb, p, 1))) < 0) {
61 0 : freeInstruction(q);
62 0 : msg = createException(MAL, "optimizer.matpack",
63 : SQLSTATE(HY013) MAL_MALLOC_FAIL);
64 0 : break;
65 : }
66 157823 : q = pushArgument(mb, q, getArg(p, 1));
67 157823 : v = getArg(q, 0);
68 157823 : q = pushInt(mb, q, p->argc - p->retc);
69 157823 : pushInstruction(mb, q);
70 157823 : typeChecker(cntxt->usermodule, mb, q, mb->stop - 1, TRUE);
71 :
72 1372865 : for (j = 2; j < p->argc; j++) {
73 1057219 : q = newInstruction(0, matRef, packIncrementRef);
74 1057219 : if (q == NULL) {
75 0 : msg = createException(MAL, "optimizer.matpack",
76 : SQLSTATE(HY013) MAL_MALLOC_FAIL);
77 0 : break;
78 : }
79 1057219 : q = pushArgument(mb, q, v);
80 1057219 : q = pushArgument(mb, q, getArg(p, j));
81 1057219 : if (setDestVar(q, newTmpVariable(mb, getVarType(mb, v))) < 0) {
82 0 : freeInstruction(q);
83 0 : msg = createException(MAL, "optimizer.matpack",
84 : SQLSTATE(HY013) MAL_MALLOC_FAIL);
85 0 : break;
86 : }
87 1057219 : v = getArg(q, 0);
88 1057219 : pushInstruction(mb, q);
89 1057219 : typeChecker(cntxt->usermodule, mb, q, mb->stop - 1, TRUE);
90 : }
91 0 : if (msg)
92 : break;
93 157823 : getArg(q, 0) = getArg(p, 0);
94 157823 : freeInstruction(p);
95 157823 : actions++;
96 157823 : continue;
97 : }
98 8669249 : pushInstruction(mb, p);
99 8669249 : old[i] = NULL;
100 : }
101 23299341 : for (; i < slimit; i++)
102 23268416 : if (old[i])
103 0 : pushInstruction(mb, old[i]);
104 30925 : GDKfree(old);
105 :
106 : /* Defense line against incorrect plans */
107 30925 : if (msg == MAL_SUCCEED && actions > 0) {
108 30925 : msg = chkTypes(cntxt->usermodule, mb, FALSE);
109 30925 : if (!msg)
110 30925 : msg = chkFlow(mb);
111 30925 : if (!msg)
112 30925 : msg = chkDeclarations(mb);
113 : }
114 0 : wrapup:
115 : /* keep actions taken as a fake argument */
116 483537 : (void) pushInt(mb, pci, actions);
117 483537 : return msg;
118 : }
|