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 : * Constant Duplicate Removal 15 : * The compilers may generate an abundance of constants on 16 : * the stack. This simple optimizer merges them into a single reference. 17 : * This makes it easier to search for statement duplicates 18 : * and alias their variables. 19 : */ 20 : /* We should not look at constants in simple, side-effect functions, because 21 : * they can not be removed later on. 22 : */ 23 : /* 24 : * We have to keep an alias table to reorganize the program 25 : * after the variable stack has changed. 26 : * The plan may contain many constants and to check them all would be quadratic 27 : * in the size of the constant list. 28 : * The heuristic is to look back into the list only partially. 29 : * A hash structure could help out with further reduction. 30 : */ 31 : #include "monetdb_config.h" 32 : #include "mal_instruction.h" 33 : #include "opt_constants.h" 34 : 35 : str 36 483460 : OPTconstantsImplementation(Client cntxt, MalBlkPtr mb, MalStkPtr stk, 37 : InstrPtr pci) 38 : { 39 483460 : int i, j, k = 1, n = 0, fnd = 0, actions = 0, limit = 0; 40 483460 : int *alias = NULL, *index = NULL, *cand = NULL; 41 483460 : VarPtr x, y, *cst = NULL; 42 483460 : str msg = MAL_SUCCEED; 43 483460 : InstrPtr p, q; 44 : 45 483460 : if (isSimpleSQL(mb)) { 46 283868 : goto wrapup; 47 : } 48 199601 : alias = (int *) GDKzalloc(sizeof(int) * mb->vtop); 49 199623 : cand = (int *) GDKzalloc(sizeof(int) * mb->vtop); 50 199627 : cst = (VarPtr *) GDKzalloc(sizeof(VarPtr) * mb->vtop); 51 199623 : index = (int *) GDKzalloc(sizeof(int) * mb->vtop); 52 : 53 199624 : if (alias == NULL || cst == NULL || index == NULL || cand == NULL) { 54 0 : msg = createException(MAL, "optimizer.constants", 55 : SQLSTATE(HY013) MAL_MALLOC_FAIL); 56 0 : goto wrapup; 57 : } 58 : 59 : (void) stk; 60 : (void) cntxt; 61 : 62 21687338 : for (i = 0; i < mb->stop; i++) { 63 21487420 : q = getInstrPtr(mb, i); 64 21487420 : if (!q) { 65 0 : continue; 66 : } 67 21487420 : if (getModuleId(q) == sqlRef && getFunctionId(q) != tidRef) { 68 4070478 : continue; 69 : } 70 17416942 : if (hasSideEffects(mb, q, 1)) 71 5898317 : continue; 72 42601420 : for (k = q->retc; k < q->argc; k++) { 73 31082501 : j = getArg(q, k); 74 31082501 : if (cand[j] == 0) { 75 24395261 : cand[j] = isVarConstant(mb, j) && isVarFixed(mb, j) 76 24395261 : && getVarType(mb, j) != TYPE_ptr; 77 : } 78 : } 79 : } 80 : 81 39423070 : for (i = 0; i < mb->vtop; i++) 82 39223152 : alias[i] = i; 83 39428529 : for (i = 0; i < mb->vtop; i++) 84 39228918 : if (cand[i]) { 85 2901742 : x = getVar(mb, i); 86 2901742 : fnd = 0; 87 2901742 : limit = n - 128; // don't look to far back 88 2901742 : if (x->type && x->value.vtype) 89 76366952 : for (k = n - 1; k >= 0 && k > limit; k--) { 90 74499729 : y = cst[k]; 91 74499729 : if (x->type == y->type && x->rowcnt == y->rowcnt 92 37552373 : && x->value.vtype == y->value.vtype 93 37551713 : && (x->value.vtype == TYPE_any 94 37551627 : || ATOMcmp(x->value.vtype, VALptr(&x->value), 95 : VALptr(&y->value)) == 0)) { 96 : 97 : /* reuse a constant */ 98 625648 : alias[i] = index[k]; 99 625648 : fnd = 1; 100 625648 : actions++; 101 625648 : break; 102 : } 103 : } 104 625648 : if (fnd == 0) { 105 2275787 : cst[n] = x; 106 2275787 : index[n] = i; 107 2275787 : n++; 108 : } 109 : } 110 : 111 199611 : if (actions) 112 16381928 : for (i = 0; i < mb->stop; i++) { 113 16321916 : p = getInstrPtr(mb, i); 114 86061646 : for (k = 0; k < p->argc; k++) 115 69739730 : getArg(p, k) = alias[getArg(p, k)]; 116 : } 117 : 118 : /* Defense line against incorrect plans */ 119 : /* Plan remains unaffected */ 120 : // msg = chkTypes(cntxt->usermodule, mb, FALSE); 121 : // if (!msg) 122 : // msg = chkFlow(mb); 123 : // if(!msg) 124 : // msg = chkDeclarations(mb); 125 : /* keep all actions taken as a post block comment */ 126 199611 : wrapup: 127 : /* keep actions taken as a fake argument */ 128 483479 : (void) pushInt(mb, pci, actions); 129 : 130 483469 : if (cand) 131 199601 : GDKfree(cand); 132 483497 : if (alias) 133 199629 : GDKfree(alias); 134 483483 : if (cst) 135 199615 : GDKfree(cst); 136 483495 : if (index) 137 199627 : GDKfree(index); 138 483491 : return msg; 139 : }