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_commonTerms.h"
15 : #include "mal_exception.h"
16 : /*
17 : * Caveat. A lot of time was lost due to constants that are indistinguisable
18 : * at the surface level. It requires the constant optimizer to be ran first.
19 : */
20 :
21 : /* The key for finding common terms is that they share variables.
22 : * Therefore we skip all constants, except for a constant only situation.
23 : */
24 :
25 : /*
26 : * Speed up simple insert operations by skipping the common terms.
27 : */
28 :
29 : static inline bool __attribute__((__pure__))
30 148418 : isProjectConst(const InstrRecord *p)
31 : {
32 148418 : return (getModuleId(p) == algebraRef && getFunctionId(p) == projectRef);
33 : }
34 :
35 : static int __attribute__((__pure__))
36 7617408 : hashInstruction(const MalBlkRecord *mb, const InstrRecord *p)
37 : {
38 7617408 : int i;
39 20895646 : for (i = p->argc - 1; i >= p->retc; i--)
40 20553493 : if (!isVarConstant(mb, getArg(p, i)))
41 7275255 : return getArg(p, i);
42 342153 : if (isVarConstant(mb, getArg(p, p->retc)))
43 342153 : return p->retc;
44 : return -1;
45 : }
46 :
47 : str
48 483511 : OPTcommonTermsImplementation(Client cntxt, MalBlkPtr mb, MalStkPtr stk,
49 : InstrPtr pci)
50 : {
51 483511 : int i, j, k, barrier = 0, bailout = 0;
52 483511 : InstrPtr p, q;
53 483511 : int actions = 0;
54 483511 : int limit, slimit;
55 483511 : int duplicate;
56 483511 : int *alias = NULL;
57 483511 : int *hash = NULL, h;
58 483511 : int *list = NULL;
59 483511 : str msg = MAL_SUCCEED;
60 :
61 483511 : InstrPtr *old = NULL;
62 :
63 : /* catch simple insert operations */
64 483511 : if (isSimpleSQL(mb)) {
65 283863 : goto wrapup;
66 : }
67 :
68 199650 : (void) cntxt;
69 199650 : (void) stk;
70 199650 : alias = (int *) GDKzalloc(sizeof(int) * mb->vtop);
71 199650 : list = (int *) GDKzalloc(sizeof(int) * mb->stop);
72 199650 : hash = (int *) GDKzalloc(sizeof(int) * mb->vtop);
73 199648 : if (alias == NULL || list == NULL || hash == NULL) {
74 0 : msg = createException(MAL, "optimizer.commonTerms",
75 : SQLSTATE(HY013) MAL_MALLOC_FAIL);
76 0 : goto wrapup;
77 : }
78 :
79 199648 : old = mb->stmt;
80 199648 : limit = mb->stop;
81 199648 : slimit = mb->ssize;
82 199648 : if (newMalBlkStmt(mb, mb->ssize) < 0) {
83 0 : msg = createException(MAL, "optimizer.commonTerms",
84 : SQLSTATE(HY013) MAL_MALLOC_FAIL);
85 0 : old = NULL;
86 0 : goto wrapup;
87 : }
88 :
89 10424081 : for (i = 0; mb->errors == NULL && i < limit; i++) {
90 10424081 : p = old[i];
91 10424081 : duplicate = 0;
92 :
93 56775825 : for (k = 0; k < p->argc; k++)
94 46351744 : if (alias[getArg(p, k)])
95 181517 : getArg(p, k) = alias[getArg(p, k)];
96 :
97 10424081 : if (p->token == ENDsymbol) {
98 199645 : pushInstruction(mb, p);
99 199645 : old[i] = NULL;
100 199645 : break;
101 : }
102 : /*
103 : * Any barrier block signals the end of this optimizer,
104 : * because the impact of the block can affect the common code eliminated.
105 : */
106 20448872 : barrier |= (p->barrier == BARRIERsymbol || p->barrier == CATCHsymbol
107 10224436 : || p->barrier == RETURNsymbol);
108 : /*
109 : * Also block further optimization when you have seen an assert().
110 : * This works particularly for SQL, because it is not easy to track
111 : * the BAT identifier aliases to look for updates. The sql.assert
112 : * at least tells us that an update is planned.
113 : * Like all optimizer decisions, it is safe to stop.
114 : */
115 10224436 : barrier |= getFunctionId(p) == assertRef;
116 10224436 : if (barrier || p->token == ASSIGNsymbol) {
117 257562 : TRC_DEBUG(MAL_OPTIMIZER, "Skipped[%d]: %d %d\n", i, barrier,
118 : p->retc == p->argc);
119 257562 : pushInstruction(mb, p);
120 257553 : old[i] = NULL;
121 257553 : continue;
122 : }
123 :
124 : /* when we enter a barrier block, we should ditch all previous instructions from consideration */
125 9966874 : if (p->barrier == BARRIERsymbol || p->barrier == CATCHsymbol
126 9966874 : || p->barrier == RETURNsymbol) {
127 0 : memset(list, 0, sizeof(int) * mb->stop);
128 0 : memset(hash, 0, sizeof(int) * mb->vtop);
129 : }
130 : /* side-effect producing operators can never be replaced */
131 : /* the same holds for function calls without an argument, it is
132 : * unclear where the results comes from (e.g. clock()) */
133 9966874 : if (mayhaveSideEffects(cntxt, mb, p, TRUE) || p->argc == p->retc) {
134 1573213 : TRC_DEBUG(MAL_OPTIMIZER, "Skipped[%d] side-effect: %d\n", i,
135 : p->retc == p->argc);
136 1573213 : pushInstruction(mb, p);
137 1573180 : old[i] = NULL;
138 1573180 : continue;
139 : }
140 : /* simple SQL bind operations need not be merged, they are cheap
141 : * and/or can be duplicated eliminated elsewhere cheaper */
142 8393895 : if (getModuleId(p) == sqlRef && (getFunctionId(p) != tidRef && getFunctionId(p) != bindRef)) {
143 572017 : pushInstruction(mb, p);
144 572017 : old[i] = NULL;
145 572017 : continue;
146 : }
147 7821878 : if (getModuleId(p) == matRef) { /* mat.packIncrement has requirement on number of instructions (or that needs an update */
148 204653 : pushInstruction(mb, p);
149 204653 : old[i] = NULL;
150 204653 : continue;
151 : }
152 :
153 : /* from here we have a candidate to look for a match */
154 :
155 7617225 : h = hashInstruction(mb, p);
156 :
157 7617225 : TRC_DEBUG(MAL_OPTIMIZER, "Candidate[%d] look at list[%d] => %d\n", i, h,
158 : hash[h]);
159 7617225 : traceInstruction(MAL_OPTIMIZER, mb, 0, p, LIST_MAL_ALL);
160 :
161 7617252 : if (h < 0) {
162 0 : pushInstruction(mb, p);
163 0 : old[i] = NULL;
164 0 : continue;
165 : }
166 :
167 7617252 : bailout = 1024; // don't run over long collision list
168 : /* Look into the hash structure for matching instructions */
169 46596230 : for (j = hash[h]; j > 0 && bailout-- > 0; j = list[j]) {
170 39112321 : if ((q = getInstrPtr(mb, j))
171 39112321 : && getFunctionId(q) == getFunctionId(p)
172 27910671 : && getModuleId(q) == getModuleId(p)) {
173 27910638 : TRC_DEBUG(MAL_OPTIMIZER,
174 : "Candidate[%d->%d] %d %d :%d %d %d=%d %d %d %d\n", j,
175 : list[j], hasSameSignature(mb, p, q),
176 : hasSameArguments(mb, p, q), q->token != ASSIGNsymbol,
177 : list[getArg(q, q->argc - 1)], i, !hasCommonResults(p,
178 : q),
179 : !isUnsafeFunction(q), !isUpdateInstruction(q),
180 : isLinearFlow(q));
181 27910638 : traceInstruction(MAL_OPTIMIZER, mb, 0, q, LIST_MAL_ALL);
182 :
183 : /*
184 : * Simple assignments are not replaced either. They should be
185 : * handled by the alias removal part. All arguments should
186 : * be assigned their value before instruction p.
187 : */
188 27910417 : if (hasSameArguments(mb, p, q)
189 148436 : && hasSameSignature(mb, p, q)
190 148418 : && !hasCommonResults(p, q)
191 148418 : && !isUnsafeFunction(q)
192 148418 : && !isUpdateInstruction(q)
193 148418 : && !isProjectConst(q) && /* disable project(x,val), as its used for the result of case statements */
194 133284 : isLinearFlow(q)) {
195 133284 : if (safetyBarrier(p, q)) {
196 0 : TRC_DEBUG(MAL_OPTIMIZER, "Safety barrier reached\n");
197 : break;
198 : }
199 133284 : duplicate = 1;
200 133284 : clrFunction(p);
201 133284 : p->argc = p->retc;
202 276100 : for (k = 0; k < q->retc; k++) {
203 142816 : alias[getArg(p, k)] = getArg(q, k);
204 : /* we know the arguments fit so the instruction can safely be patched */
205 142816 : p = pushArgument(mb, p, getArg(q, k));
206 : }
207 :
208 133284 : TRC_DEBUG(MAL_OPTIMIZER, "Modified expression %d -> %d ",
209 : getArg(p, 0), getArg(p, 1));
210 133284 : traceInstruction(MAL_OPTIMIZER, mb, 0, p, LIST_MAL_ALL);
211 :
212 133284 : actions++;
213 133284 : break; /* end of search */
214 : }
215 11201683 : } else if (isUpdateInstruction(p)) {
216 0 : TRC_DEBUG(MAL_OPTIMIZER, "Skipped: %d %d\n",
217 : mayhaveSideEffects(cntxt, mb, q, TRUE),
218 : isUpdateInstruction(p));
219 0 : traceInstruction(MAL_OPTIMIZER, mb, 0, q, LIST_MAL_ALL);
220 : }
221 : }
222 :
223 7617193 : if (duplicate) {
224 133284 : pushInstruction(mb, p);
225 133284 : old[i] = NULL;
226 133284 : continue;
227 : }
228 : /* update the hash structure with another candidate for reuse */
229 7483909 : TRC_DEBUG(MAL_OPTIMIZER,
230 : "Update hash[%d] - look at arg '%d' hash '%d' list '%d'\n", i,
231 : getArg(p, p->argc - 1), h, hash[h]);
232 7483909 : traceInstruction(MAL_OPTIMIZER, mb, 0, p, LIST_MAL_ALL);
233 :
234 7483865 : if (!mayhaveSideEffects(cntxt, mb, p, TRUE) && p->argc != p->retc
235 14967695 : && isLinearFlow(p) && !isUnsafeFunction(p)
236 7483799 : && !isUpdateInstruction(p)) {
237 7483771 : list[i] = hash[h];
238 7483771 : hash[h] = i;
239 7483771 : pushInstruction(mb, p);
240 7483745 : old[i] = NULL;
241 : }
242 : }
243 46370682 : for (; i < slimit; i++)
244 46171035 : if (old[i])
245 5057169 : pushInstruction(mb, old[i]);
246 : /* Defense line against incorrect plans */
247 199647 : if (actions > 0) {
248 10061 : msg = chkTypes(cntxt->usermodule, mb, FALSE);
249 10061 : if (!msg)
250 10061 : msg = chkFlow(mb);
251 10061 : if (!msg)
252 10061 : msg = chkDeclarations(mb);
253 : }
254 189586 : wrapup:
255 : /* keep actions taken as a fake argument */
256 483510 : (void) pushInt(mb, pci, actions);
257 :
258 483508 : if (alias)
259 199645 : GDKfree(alias);
260 483512 : if (list)
261 199649 : GDKfree(list);
262 483513 : if (hash)
263 199650 : GDKfree(hash);
264 483511 : if (old)
265 199648 : GDKfree(old);
266 483513 : return msg;
267 : }
|