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 : * The dataflow reorder
15 : * MAL programs are largely logical descriptions of an execution plan.
16 : * After the mitosis and mergetable optimizers we have a large program, which when
17 : * executed as is, does not necessarily benefit from the locality
18 : * of data and operations. The problem is that the execution plan is
19 : * a DAG for which a topological order should be found that
20 : * minimizes the life time of variables and maximizes parallel execution.
21 : * This is an NP hard optimization problem. Therefore, we have
22 : * to rely on an affordable heuristic steps.
23 : *
24 : * The reorder optimizer transfers the breadth-first plans of
25 : * the mergetable into a multi-phase execution plan.
26 : * This increases cohesion for parallel execution.
27 : * A subquery is processed completely as quickly as possible.
28 : * Only when the subquery is stalled for available input, the
29 : * threads may start working on another subquery.
30 : *
31 : */
32 : #include "monetdb_config.h"
33 : #include "opt_reorder.h"
34 : #include "mal_instruction.h"
35 : #include "mal_interpreter.h"
36 : #include "opt_mitosis.h"
37 :
38 :
39 : #define MAXSLICES 1024 /* to be refined */
40 :
41 : /* Insert the instruction immediately after a previous instruction that
42 : * generated an argument needed.
43 : * If non can be found, add it to the end.
44 : * Be aware of side-effect instructions, they may not be skipped.
45 : */
46 : str
47 483205 : OPTreorderImplementation(Client cntxt, MalBlkPtr mb, MalStkPtr stk,
48 : InstrPtr pci)
49 : {
50 483205 : int i, j, k, blkcnt = 1, pc = 0, actions = 0;
51 483205 : InstrPtr p = NULL, *old = NULL;
52 483205 : int limit, slimit, *depth = NULL;
53 483205 : str msg = MAL_SUCCEED;
54 483205 : InstrPtr *blocks[MAXSLICES] = { 0 };
55 483205 : int top[MAXSLICES] = { 0 };
56 483205 : int barriers[MAXSLICES] = { 0 }, btop = 0, off = 0;
57 :
58 483205 : for (i = 0; i < MAXSLICES; i++)
59 : top[i] = 0;
60 483205 : if (isOptimizerUsed(mb, pci, mitosisRef) <= 0) {
61 33786 : goto wrapup;
62 : }
63 449412 : (void) cntxt;
64 449412 : (void) stk;
65 :
66 449412 : limit = mb->stop;
67 449412 : slimit = mb->ssize;
68 449412 : old = mb->stmt;
69 :
70 449412 : depth = (int *) GDKzalloc(mb->vtop * sizeof(int));
71 449419 : if (depth == NULL) {
72 0 : throw(MAL, "optimizer.reorder", SQLSTATE(HY013) MAL_MALLOC_FAIL);
73 : }
74 :
75 449419 : if (newMalBlkStmt(mb, mb->ssize) < 0) {
76 0 : GDKfree(depth);
77 0 : throw(MAL, "optimizer.reorder", SQLSTATE(HY013) MAL_MALLOC_FAIL);
78 : }
79 :
80 7719579 : actions = 1;
81 : /* Mark the parameters as constants as belonging to depth 0; */
82 7719579 : for (i = 0; i < limit; i++) {
83 7719579 : p = old[i];
84 7719579 : if (!p) {
85 : //mnstr_printf(cntxt->fdout, "empty stmt:pc %d \n", i);
86 0 : continue;
87 : }
88 7719579 : if (p->token == ENDsymbol)
89 : break;
90 7270160 : k = off;
91 7270160 : if (getModuleId(p) == sqlRef && getFunctionId(p) == tidRef
92 191003 : && p->argc == 6) {
93 89309 : if (depth[getArg(p, 0)] == 0) {
94 89309 : k = getVarConstant(mb, getArg(p, p->argc - 2)).val.ival;
95 89309 : assert(k < MAXSLICES);
96 89309 : depth[getArg(p, 0)] = k;
97 89309 : depth[getArg(p, p->retc)] = k; /* keep order of mvc input var */
98 : }
99 7180851 : } else if (getModuleId(p) == sqlRef && getFunctionId(p) == bindRef
100 961466 : && p->argc == 8) {
101 373196 : if (depth[getArg(p, 0)] == 0) {
102 373196 : k = getVarConstant(mb, getArg(p, p->argc - 2)).val.ival;
103 373196 : assert(k < MAXSLICES);
104 373196 : depth[getArg(p, 0)] = k;
105 373196 : depth[getArg(p, p->retc)] = k; /* keep order of mvc input var */
106 : }
107 : } else {
108 31727808 : for (j = p->retc; j < p->argc; j++) {
109 24920153 : if (depth[getArg(p, j)] > k)
110 : k = depth[getArg(p, j)];
111 : }
112 6807655 : assert(k < MAXSLICES);
113 14442233 : for (j = 0; j < p->retc; j++)
114 7634578 : if (depth[getArg(p, j)] == 0)
115 7634503 : depth[getArg(p, j)] = k;
116 : /* In addition to the input variables of the statements al statements within a barrier also
117 : * depend on the barriers variable */
118 6807655 : if (blockStart(p)) {
119 857 : assert(btop < MAXSLICES);
120 857 : barriers[btop++] = k;
121 857 : off = k;
122 : }
123 6807655 : if (blockExit(p)) {
124 857 : off = 0;
125 857 : if (btop--)
126 857 : off = barriers[btop];
127 : }
128 : }
129 :
130 7270160 : if (top[k] == 0) {
131 534450 : blocks[k] = GDKzalloc(limit * sizeof(InstrPtr));
132 534450 : if (blocks[k] == NULL) {
133 0 : for (i = 0; i < blkcnt; i++)
134 0 : if (top[i])
135 0 : GDKfree(blocks[i]);
136 0 : GDKfree(depth);
137 0 : GDKfree(mb->stmt);
138 0 : mb->stop = limit;
139 0 : mb->ssize = slimit;
140 0 : mb->stmt = old;
141 0 : throw(MAL, "optimizer.reorder",
142 : SQLSTATE(HY013) MAL_MALLOC_FAIL);
143 : }
144 : }
145 7270160 : blocks[k][top[k]] = p;
146 7270160 : top[k] = top[k] + 1;
147 : //mnstr_printf(cntxt->fdout, "block[%d] :%d:",i, k);
148 : //printInstruction(cntxt->fdout, mb, stk, p, LIST_MAL_DEBUG);
149 7270160 : if (k > blkcnt)
150 : blkcnt = k;
151 : }
152 :
153 1402044 : for (k = 0; k <= blkcnt; k++)
154 8222832 : for (j = 0; j < top[k]; j++) {
155 7270207 : p = blocks[k][j];
156 7270207 : p->pc = pc++;
157 7270207 : pushInstruction(mb, p);
158 : }
159 :
160 14380925 : for (; i < limit; i++)
161 13931509 : if (old[i])
162 13931509 : pushInstruction(mb, old[i]);
163 96964754 : for (; i < slimit; i++)
164 96515335 : if (old[i])
165 0 : pushInstruction(mb, old[i]);
166 :
167 : /* Defense line against incorrect plans */
168 449419 : msg = chkTypes(cntxt->usermodule, mb, FALSE);
169 449419 : if (!msg)
170 449419 : msg = chkFlow(mb);
171 449414 : if (!msg)
172 449414 : msg = chkDeclarations(mb);
173 : /* keep all actions taken as a post block comment */
174 : //mnstr_printf(cntxt->fdout,"REORDER RESULT ");
175 : //printFunction(cntxt->fdout, mb, 0, LIST_MAL_ALL);
176 0 : wrapup:
177 1503395 : for (i = 0; i <= blkcnt; i++)
178 1020191 : if (top[i])
179 534447 : GDKfree(blocks[i]);
180 :
181 : /* keep actions taken as a fake argument */
182 483204 : (void) pushInt(mb, pci, actions);
183 483202 : GDKfree(depth);
184 483203 : GDKfree(old);
185 483203 : return msg;
186 : }
|