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, 2025 MonetDB Foundation; 9 : * Copyright August 2008 - 2023 MonetDB B.V.; 10 : * Copyright 1997 - July 2008 CWI. 11 : */ 12 : 13 : /* (c) Martin Kersten 14 : */ 15 : #include "monetdb_config.h" 16 : #include "opt_deadcode.h" 17 : 18 : str 19 1680354 : OPTdeadcodeImplementation(Client cntxt, MalBlkPtr mb, MalStkPtr stk, 20 : InstrPtr pci) 21 : { 22 1680354 : int i, k, se, limit, slimit; 23 1680354 : InstrPtr p = 0, *old = NULL; 24 1680354 : int actions = 0; 25 1680354 : int *varused = 0; 26 1680354 : str msg = MAL_SUCCEED; 27 : 28 1680354 : (void) cntxt; 29 1680354 : (void) stk; /* to fool compilers */ 30 : 31 1680354 : if (mb->inlineProp) 32 0 : goto wrapup; 33 : 34 1680354 : varused = GDKzalloc(mb->vtop * sizeof(int)); 35 1680360 : if (varused == NULL) 36 0 : goto wrapup; 37 : 38 1680360 : old = mb->stmt; 39 1680360 : limit = mb->stop; 40 1680360 : slimit = mb->ssize; 41 1680360 : if (newMalBlkStmt(mb, mb->ssize) < 0) { 42 0 : GDKfree(varused); 43 0 : throw(MAL, "optimizer.deadcode", SQLSTATE(HY013) MAL_MALLOC_FAIL); 44 : } 45 : //mnstr_printf(cntxt->fdout,"deadcode limit %d ssize %d vtop %d vsize %d\n", limit, (int)(mb->ssize), mb->vtop, (int)(mb->vsize)); 46 : 47 : // Calculate the instructions in which a variable is used. 48 : // Variables can be used multiple times in an instruction. 49 79740268 : for (i = 1; i < limit; i++) { 50 78059908 : p = old[i]; 51 268424893 : for (k = p->retc; k < p->argc; k++) 52 190364985 : varused[getArg(p, k)]++; 53 78059908 : if (blockCntrl(p)) 54 19744 : for (k = 0; k < p->retc; k++) 55 14793 : varused[getArg(p, k)]++; 56 : } 57 : 58 : // Consolidate the actual need for variables 59 83132110 : for (i = limit; i >= 0; i--) { 60 81451810 : p = old[i]; 61 81451810 : if (p == 0) 62 1680373 : continue; //left behind by others? 63 : 64 79771437 : if (getModuleId(p) == batRef && isUpdateInstruction(p) && !p->barrier) { 65 : /* bat.append and friends are intermediates that need not be retained 66 : * unless they are not used outside of an update */ 67 664328 : if (varused[getArg(p, 1)] > 1) 68 2793 : varused[getArg(p, 0)]++; // force keeping it 69 79107091 : } else if (hasSideEffects(mb, p, FALSE) || !isLinearFlow(p) 70 24905791 : || (p->retc == 1 && mb->unsafeProp) 71 24849062 : || p->barrier /* ==side-effect */ ) { 72 54260483 : varused[getArg(p, 0)]++; // force keeping it 73 54260483 : continue; 74 : } 75 : // The results should be used somewhere 76 25510894 : se = 0; 77 51648821 : for (k = 0; k < p->retc; k++) 78 26137927 : se += varused[getArg(p, k)] > 0; 79 : 80 : // Reduce input variable count when garbage is detected 81 25510894 : if (se == 0) 82 51761716 : for (k = p->retc; k < p->argc; k++) 83 44499730 : varused[getArg(p, k)]--; 84 : } 85 : 86 : // Now we can simply copy the instructions and discard useless ones. 87 1680300 : pushInstruction(mb, old[0]); 88 34193692 : for (i = 1; i < limit; i++) { 89 32513390 : if ((p = old[i]) != NULL) { 90 32513529 : if (p->token == ENDsymbol) { 91 1680306 : pushInstruction(mb, p); 92 : // Also copy the optimizer trace information 93 47262525 : for (i++; i < limit; i++) 94 45582229 : if (old[i]) 95 45582229 : pushInstruction(mb, old[i]); 96 : break; 97 : } 98 : // Is the instruction still relevant? 99 : se = 0; 100 64302927 : for (k = 0; k < p->retc; k++) 101 33469704 : se += varused[getArg(p, k)] > 0; 102 : 103 30833223 : if (se) 104 25252593 : pushInstruction(mb, p); 105 : else { 106 5580630 : freeInstruction(p); 107 5580673 : actions++; 108 : } 109 : } 110 : } 111 : /* save the free instructions records for later */ 112 373716723 : for (; i < slimit; i++) 113 372036351 : if (old[i]) { 114 0 : pushInstruction(mb, old[i]); 115 : } 116 : /* Defense line against incorrect plans */ 117 : /* we don't create or change existing structures */ 118 : // no type change msg = chkTypes(cntxt->usermodule, mb, FALSE); 119 1680372 : if (actions > 0) { 120 562573 : msg = chkFlow(mb); 121 562570 : if (!msg) 122 562570 : msg = chkDeclarations(mb); 123 : } 124 1117799 : wrapup: 125 : /* keep actions taken as a fake argument */ 126 1680367 : (void) pushInt(mb, pci, actions); 127 : 128 1680330 : if (old) 129 1680330 : GDKfree(old); 130 1680374 : if (varused) 131 1680374 : GDKfree(varused); 132 : return msg; 133 : }