LCOV - code coverage report
Current view: top level - monetdb5/optimizer - opt_support.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 226 251 90.0 %
Date: 2024-11-13 22:44:48 Functions: 30 33 90.9 %

          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             :  /* (c) M. Kersten
      14             :   */
      15             : #include "monetdb_config.h"
      16             : #include "opt_prelude.h"
      17             : #include "opt_support.h"
      18             : #include "mal_interpreter.h"
      19             : #include "mal_listing.h"
      20             : #include "opt_multiplex.h"
      21             : #include "optimizer_private.h"
      22             : #include "manifold.h"
      23             : 
      24             : /* Some optimizers can/need only be applied once.
      25             :  * The optimizer trace at the end of the MAL block
      26             :  * can be used to check for this.
      27             :  */
      28             : int
      29      444151 : optimizerIsApplied(MalBlkPtr mb, const char *opt)
      30             : {
      31      444151 :         InstrPtr p;
      32      444151 :         int i;
      33    97002740 :         for (i = mb->stop; i < mb->ssize; i++) {
      34    96558589 :                 p = getInstrPtr(mb, i);
      35    96558589 :                 if (p && getModuleId(p) == optimizerRef && p->token == REMsymbol
      36           0 :                         && getFunctionId(p) == opt)
      37             :                         return 1;
      38             :         }
      39             :         return 0;
      40             : }
      41             : 
      42             : /*
      43             :  * Some optimizers are interdependent (e.g. mitosis ), which
      44             :  * requires inspection of the pipeline attached to a MAL block.
      45             :  */
      46             : int
      47      445928 : isOptimizerEnabled(MalBlkPtr mb, const char *opt)
      48             : {
      49      445928 :         int i;
      50      445928 :         InstrPtr q;
      51             : 
      52     8641559 :         for (i = mb->stop - 1; i > 0; i--) {
      53     8641559 :                 q = getInstrPtr(mb, i);
      54     8641559 :                 if (q->token == ENDsymbol)
      55             :                         break;
      56     8522520 :                 if (q->token != REMsymbol && getModuleId(q) == optimizerRef
      57     7622300 :                         && getFunctionId(q) == opt)
      58             :                         return 1;
      59             :         }
      60             :         return 0;
      61             : }
      62             : 
      63             : /*
      64             :  * Find if an optimizer 'opt' has run before the instruction 'p'.
      65             :  */
      66             : int
      67     1337746 : isOptimizerUsed(MalBlkPtr mb, InstrPtr p, const char *opt)
      68             : {
      69     1337746 :         bool p_found = false;
      70             : 
      71    22165722 :         for (int i = mb->stop - 1; i > 0; i--) {
      72    22165741 :                 InstrPtr q = getInstrPtr(mb, i);
      73             : 
      74    22165741 :                 p_found |= q == p;              /* the optimizer to find must come before p */
      75    22165741 :                 if (q && q->token == ENDsymbol)
      76             :                         return 0;
      77    22066187 :                 if (p_found && q && q != p && getModuleId(q) == optimizerRef
      78     6247682 :                         && getFunctionId(q) == opt)
      79             :                         return 1;
      80             :         }
      81             :         return 0;
      82             : }
      83             : 
      84             : /* Simple insertion statements do not require complex optimizer steps */
      85             : int
      86      923867 : isSimpleSQL(MalBlkPtr mb)
      87             : {
      88      923867 :         int cnt = 0;
      89             : 
      90    28706909 :         for (int i = 0; i < mb->stop; i++) {
      91    28350291 :                 InstrPtr p = getInstrPtr(mb, i);
      92             : 
      93    28350291 :                 if (p && getModuleId(p) == sqlRef && getFunctionId(p) == appendRef)
      94      377135 :                         cnt++;
      95    28350291 :                 if (p && getModuleId(p) == sqlRef && getFunctionId(p) == setVariableRef)
      96             :                         return 1;
      97    28349548 :                 if (p && getModuleId(p) == sqlcatalogRef)
      98             :                         return 1;
      99             :         }
     100      356618 :         return cnt > 0.63 * mb->stop;
     101             : }
     102             : 
     103             : /* Only used by opt_commonTerms! */
     104             : int
     105      130597 : hasSameSignature(MalBlkPtr mb, InstrPtr p, InstrPtr q)
     106             : {
     107      130597 :         int i;
     108             : 
     109      130597 :         if (q->retc != p->retc || q->argc != p->argc)
     110             :                 return FALSE;
     111      729043 :         for (i = 0; i < p->argc; i++)
     112      598464 :                 if (getArgType(mb, p, i) != getArgType(mb, q, i))
     113             :                         return FALSE;
     114             :         return TRUE;
     115             : }
     116             : 
     117             : /* Only used by opt_commonTerms! */
     118             : int
     119    24201523 : hasSameArguments(MalBlkPtr mb, InstrPtr p, InstrPtr q)
     120             : {
     121    24201523 :         int k;
     122    24201523 :         int (*cmp)(const void *, const void *);
     123    24201523 :         VarPtr w, u;
     124             : 
     125    24201523 :         (void) mb;
     126    24201523 :         if (p->retc != q->retc || p->argc != q->argc)
     127             :                 return FALSE;
     128             :         /* heuristic, because instructions are linked using last constant argument */
     129    36094707 :         for (k = p->argc - 1; k >= p->retc; k--)
     130    35964110 :                 if (q->argv[k] != p->argv[k]) {
     131    28654126 :                         if (isVarConstant(mb, getArg(p, k))
     132    27133864 :                                 && isVarConstant(mb, getArg(q, k))) {
     133    27133708 :                                 w = getVar(mb, getArg(p, k));
     134    27133708 :                                 u = getVar(mb, getArg(q, k));
     135    27133708 :                                 cmp = ATOMcompare(w->value.vtype);
     136    27133708 :                                 if (w->value.vtype == u->value.vtype
     137    26759645 :                                         && (*cmp) (VALptr(&w->value), VALptr(&u->value)) == 0)
     138    12354047 :                                         continue;
     139             :                         }
     140    16298412 :                         return FALSE;
     141             :                 }
     142             :         return TRUE;
     143             : }
     144             : 
     145             : /*
     146             :  * If two instructions have elements in common in their target list,
     147             :  * it means a variable is re-initialized and should not be considered
     148             :  * an alias.
     149             :  */
     150             : int
     151      130579 : hasCommonResults(InstrPtr p, InstrPtr q)
     152             : {
     153      130579 :         int k, l;
     154             : 
     155      267976 :         for (k = 0; k < p->retc; k++)
     156      289720 :                 for (l = 0; l < q->retc; l++)
     157      152323 :                         if (p->argv[k] == q->argv[l])
     158             :                                 return TRUE;
     159             :         return FALSE;
     160             : }
     161             : 
     162             : /*
     163             :  * Dependency between target variables and arguments can be
     164             :  * checked with isDependent().
     165             :  */
     166             : static int
     167      117195 : isDependent(InstrPtr p, InstrPtr q)
     168             : {
     169      117195 :         int i, j;
     170      241208 :         for (i = 0; i < q->retc; i++)
     171      591392 :                 for (j = p->retc; j < p->argc; j++)
     172      467379 :                         if (getArg(q, i) == getArg(p, j))
     173             :                                 return TRUE;
     174             :         return FALSE;
     175             : }
     176             : 
     177             : /*
     178             :  * The safety property should be relatively easy to determine for
     179             :  * each MAL function. This calls for accessing the function MAL block
     180             :  * and to inspect the arguments of the signature.
     181             :  */
     182             : inline int
     183   119664019 : isUnsafeFunction(InstrPtr q)
     184             : {
     185   119664019 :         InstrPtr p;
     186             : 
     187   119664019 :         if (q->unsafeProp)
     188             :                 return TRUE;
     189   118264445 :         if (q->fcn == 0 || getFunctionId(q) == 0 || q->blk == NULL)
     190             :                 return FALSE;
     191           0 :         p = getInstrPtr(q->blk, 0);
     192           0 :         if (p->retc == 0)
     193           0 :                 return TRUE;
     194             :         return FALSE;
     195             : }
     196             : 
     197             : /*
     198             :  * Instructions are unsafe if one of the arguments is also mentioned
     199             :  * in the result list. Alternatively, the 'unsafe' property is set
     200             :  * for the function call itself.
     201             :  */
     202             : int
     203           0 : isUnsafeInstruction(InstrPtr q)
     204             : {
     205           0 :         int j, k;
     206             : 
     207           0 :         for (j = 0; j < q->retc; j++)
     208           0 :                 for (k = q->retc; k < q->argc; k++)
     209           0 :                         if (q->argv[k] == q->argv[j])
     210             :                                 return TRUE;
     211             :         return FALSE;
     212             : }
     213             : 
     214             : /*
     215             :  * Any instruction may block identification of a common
     216             :  * subexpression. It suffices to stumble upon an unsafe function
     217             :  * whose parameter lists has a non-empty intersection with the
     218             :  * targeted instruction.
     219             :  * To illustrate, consider the sequence
     220             :  * @example
     221             :  * L1 := f(A,B,C);
     222             :  * ...
     223             :  * G1 := g(D,E,F);
     224             :  * ...
     225             :  * l2:= f(A,B,C);
     226             :  * ...
     227             :  * L2:= h()
     228             :  * @end example
     229             :  *
     230             :  * The instruction G1:=g(D,E,F) is blocking if G1 is an alias
     231             :  * for @verb{ { }A,B,C@verb{ } }.
     232             :  * Alternatively, function g() may be unsafe and @verb{ { }D,E,F@verb{ } }
     233             :  * has a non-empty intersection with @verb{ { }A,B,C@verb{ } }.
     234             :  * An alias can only be used later on for readonly (and not be used for a function with side effects).
     235             :  */
     236             : int
     237      117195 : safetyBarrier(InstrPtr p, InstrPtr q)
     238             : {
     239      117195 :         int i, j;
     240      117195 :         if (isDependent(q, p))
     241             :                 return TRUE;
     242      117195 :         if (isUnsafeFunction(q)) {
     243           0 :                 for (i = p->retc; i < p->argc; i++)
     244           0 :                         for (j = q->retc; j < q->argc; j++)
     245           0 :                                 if (p->argv[i] == q->argv[j]) {
     246             :                                         /* TODO check safety property of the argument */
     247             :                                         return TRUE;
     248             :                                 }
     249             :         }
     250             :         return FALSE;
     251             : }
     252             : 
     253             : inline int
     254   123919934 : isUpdateInstruction(InstrPtr p)
     255             : {
     256   123919934 :         if (getModuleId(p) == sqlRef &&
     257    27176254 :                 (getFunctionId(p) == appendRef || getFunctionId(p) == updateRef
     258    26293920 :                  || getFunctionId(p) == deleteRef || getFunctionId(p) == claimRef
     259    26252154 :                  || getFunctionId(p) == growRef || getFunctionId(p) == clear_tableRef
     260    26251701 :                  || getFunctionId(p) == setVariableRef || getFunctionId(p) == dependRef
     261    26205479 :                  || getFunctionId(p) == predicateRef))
     262             :                 return TRUE;
     263   122900817 :         if (getModuleId(p) == batRef
     264     8956596 :                 && (getFunctionId(p) == appendRef || getFunctionId(p) == replaceRef
     265     7569077 :                         || getFunctionId(p) == deleteRef))
     266     1387563 :                 return TRUE;
     267             :         return FALSE;
     268             : }
     269             : 
     270             : int
     271    98602523 : hasSideEffects(MalBlkPtr mb, InstrPtr p, int strict)
     272             : {
     273    98602523 :         if (getFunctionId(p) == NULL)
     274             :                 return FALSE;
     275             : 
     276             : /*
     277             :  * Void-returning operations have side-effects and
     278             :  * should be considered as such
     279             :  */
     280    96012858 :         if (p->retc == 0 || (p->retc == 1 && getArgType(mb, p, 0) == TYPE_void))
     281             :                 return TRUE;
     282             : 
     283             : /*
     284             :  * Any function marked as unsafe can not be moved around without
     285             :  * affecting its behavior on the program. For example, because they
     286             :  * check for volatile resource levels.
     287             :  */
     288    90473667 :         if (isUnsafeFunction(p))
     289             :                 return TRUE;
     290             : 
     291             :         /* update instructions have side effects, they can be marked as unsafe */
     292    89582782 :         if (isUpdateInstruction(p))
     293             :                 return TRUE;
     294             : 
     295    88518533 :         if ((getModuleId(p) == batRef || getModuleId(p) == sqlRef)
     296    14595689 :                 && (getFunctionId(p) == setAccessRef))
     297             :                 return TRUE;
     298             : 
     299    88518533 :         if (getModuleId(p) == malRef && getFunctionId(p) == multiplexRef)
     300             :                 return FALSE;
     301             : 
     302    88512042 :         if (getModuleId(p) == ioRef ||
     303    88512042 :                 getModuleId(p) == streamsRef ||
     304    88512042 :                 getModuleId(p) == bstreamRef ||
     305    88512042 :                 getModuleId(p) == mdbRef ||
     306    88511397 :                 getModuleId(p) == malRef ||
     307    88511397 :                 getModuleId(p) == remapRef ||
     308    88511397 :                 getModuleId(p) == optimizerRef ||
     309    47138001 :                 getModuleId(p) == lockRef ||
     310    47138001 :                 getModuleId(p) == semaRef ||
     311    47138001 :                 getModuleId(p) == alarmRef)
     312             :                 return TRUE;
     313             : 
     314    47138001 :         if( getModuleId(p) == pyapi3Ref ||
     315    47138001 :                 getModuleId(p) == rapiRef ||
     316    47137861 :                 getModuleId(p) == capiRef)
     317             :                 return TRUE;
     318             : 
     319    47137703 :         if (getModuleId(p) == sqlcatalogRef)
     320             :                 return TRUE;
     321    47137703 :         if (getModuleId(p) == sqlRef) {
     322    10814067 :                 if (getFunctionId(p) == tidRef)
     323             :                         return FALSE;
     324     9098017 :                 if (getFunctionId(p) == deltaRef)
     325             :                         return FALSE;
     326     8171621 :                 if (getFunctionId(p) == subdeltaRef)
     327             :                         return FALSE;
     328     7974847 :                 if (getFunctionId(p) == projectdeltaRef)
     329             :                         return FALSE;
     330     7453890 :                 if (getFunctionId(p) == bindRef)
     331             :                         return FALSE;
     332      919935 :                 if (getFunctionId(p) == bindidxRef)
     333             :                         return FALSE;
     334      904085 :                 if (getFunctionId(p) == binddbatRef)
     335             :                         return FALSE;
     336      904085 :                 if (getFunctionId(p) == columnBindRef)
     337             :                         return FALSE;
     338      904085 :                 if (getFunctionId(p) == copy_fromRef)
     339             :                         return FALSE;
     340             :                 /* assertions are the end-point of a flow path */
     341      904085 :                 if (getFunctionId(p) == not_uniqueRef)
     342             :                         return FALSE;
     343      904085 :                 if (getFunctionId(p) == zero_or_oneRef)
     344             :                         return FALSE;
     345      904085 :                 if (getFunctionId(p) == mvcRef)
     346             :                         return FALSE;
     347       11292 :                 if (getFunctionId(p) == singleRef)
     348             :                         return FALSE;
     349       11292 :                 if (getFunctionId(p) == importColumnRef)
     350             :                         return FALSE;
     351       10212 :                 return TRUE;
     352             :         }
     353    36323636 :         if (getModuleId(p) == mapiRef) {
     354           0 :                 if (getFunctionId(p) == rpcRef)
     355             :                         return TRUE;
     356           0 :                 if (getFunctionId(p) == reconnectRef)
     357             :                         return TRUE;
     358           0 :                 if (getFunctionId(p) == disconnectRef)
     359             :                         return TRUE;
     360             :         }
     361    36323636 :         if (strict && getFunctionId(p) == newRef && getModuleId(p) != groupRef)
     362             :                 return TRUE;
     363             : 
     364    36027107 :         if (getModuleId(p) == sqlcatalogRef)
     365             :                 return TRUE;
     366    36027107 :         if (getModuleId(p) == remoteRef)
     367       36999 :                 return TRUE;
     368             :         return FALSE;
     369             : }
     370             : 
     371             : /* Void returning functions always have side-effects.
     372             :  */
     373             : int
     374    15697048 : mayhaveSideEffects(Client cntxt, MalBlkPtr mb, InstrPtr p, int strict)
     375             : {
     376    15697048 :         int tpe;
     377    15697048 :         tpe = getVarType(mb, getArg(p, 0));
     378    15697048 :         if (tpe == TYPE_void)
     379             :                 return TRUE;
     380    15343137 :         if (getModuleId(p) != malRef || getFunctionId(p) != multiplexRef)
     381    15340653 :                 return hasSideEffects(mb, p, strict);
     382             :         //  a manifold instruction can also have side effects.
     383             :         //  for this to check we need the function signature, not its function address.
     384             :         //  The easy way out now is to consider all manifold instructions as potentially having side effects.
     385        2484 :         if (getModuleId(p) == malRef && getFunctionId(p) == manifoldRef)
     386             :                 return TRUE;
     387        2484 :         if (MANIFOLDtypecheck(cntxt, mb, p, 1) == NULL)
     388             :                 return TRUE;
     389             :         return FALSE;
     390             : }
     391             : 
     392             : /*
     393             :  * Side-effect free functions are crucial for several operators.
     394             :  */
     395             : int
     396         262 : isSideEffectFree(MalBlkPtr mb)
     397             : {
     398         262 :         int i;
     399        4228 :         for (i = 1; i < mb->stop && getInstrPtr(mb, i)->token != ENDsymbol; i++) {
     400        4013 :                 if (hasSideEffects(mb, getInstrPtr(mb, i), TRUE))
     401             :                         return FALSE;
     402             :         }
     403             :         return TRUE;
     404             : }
     405             : 
     406             : /*
     407             :  * Breaking up a MAL program into pieces for distributed processing requires
     408             :  * identification of (partial) blocking instructions. A conservative
     409             :  * definition can be used.
     410             :  */
     411             : inline int
     412           0 : isBlocking(InstrPtr p)
     413             : {
     414           0 :         if (blockStart(p) || blockExit(p) || blockCntrl(p))
     415             :                 return TRUE;
     416             : 
     417           0 :         if (getFunctionId(p) == sortRef)
     418             :                 return TRUE;
     419             : 
     420           0 :         if (getModuleId(p) == aggrRef || getModuleId(p) == groupRef
     421           0 :                 || getModuleId(p) == sqlcatalogRef)
     422           0 :                 return TRUE;
     423             :         return FALSE;
     424             : }
     425             : 
     426             : /*
     427             :  * Used in the merge table optimizer. It is built incrementally
     428             :  * and should be conservative.
     429             :  */
     430             : 
     431             : static int
     432      231267 : isOrderDepenent(InstrPtr p)
     433             : {
     434      231267 :         if (getModuleId(p) != batsqlRef)
     435             :                 return 0;
     436         931 :         if (getFunctionId(p) == differenceRef || getFunctionId(p) == window_boundRef
     437         823 :                 || getFunctionId(p) == row_numberRef || getFunctionId(p) == rankRef
     438         683 :                 || getFunctionId(p) == dense_rankRef
     439         671 :                 || getFunctionId(p) == percent_rankRef
     440         666 :                 || getFunctionId(p) == cume_distRef || getFunctionId(p) == ntileRef
     441         654 :                 || getFunctionId(p) == first_valueRef
     442         646 :                 || getFunctionId(p) == last_valueRef || getFunctionId(p) == nth_valueRef
     443         643 :                 || getFunctionId(p) == lagRef || getFunctionId(p) == leadRef
     444         641 :                 || getFunctionId(p) == corrRef)
     445         298 :                 return 1;
     446             :         return 0;
     447             : }
     448             : 
     449             : inline int
     450    14846589 : isMapOp(InstrPtr p)
     451             : {
     452    14846589 :         if (isUnsafeFunction(p))
     453             :                 return 0;
     454    14701863 :         return getModuleId(p)
     455    14337544 :                         && ((getModuleId(p) == malRef && getFunctionId(p) == multiplexRef)
     456         687 :                                 || (getModuleId(p) == malRef && getFunctionId(p) == manifoldRef)
     457    14336857 :                                 || (getModuleId(p) == batcalcRef)
     458    14190348 :                                 || (getModuleId(p) != batcalcRef && getModuleId(p) != batRef
     459    13674421 :                                         && strncmp(getModuleId(p), "bat", 3) == 0)
     460    14337544 :                                 || (getModuleId(p) == batmkeyRef)) && !isOrderDepenent(p)
     461      161284 :                         && getModuleId(p) != batrapiRef && getModuleId(p) != batpyapi3Ref
     462    14863134 :                         && getModuleId(p) != batcapiRef;
     463             : }
     464             : 
     465             : inline int
     466      214812 : isMap2Op(InstrPtr p)
     467             : {
     468      214812 :         if (isUnsafeFunction(p))
     469             :                 return 0;
     470      214742 :         return getModuleId(p)
     471      214741 :                         && ((getModuleId(p) == malRef && getFunctionId(p) == multiplexRef)
     472         372 :                                 || (getModuleId(p) == malRef && getFunctionId(p) == manifoldRef)
     473      214369 :                                 || (getModuleId(p) == batcalcRef)
     474      149037 :                                 || (getModuleId(p) != batcalcRef && getModuleId(p) != batRef
     475      104524 :                                         && strncmp(getModuleId(p), "bat", 3) == 0)
     476      214741 :                                 || (getModuleId(p) == batmkeyRef)) && !isOrderDepenent(p)
     477       69685 :                         && getModuleId(p) != batrapiRef && getModuleId(p) != batpyapi3Ref
     478      284423 :                         && getModuleId(p) != batcapiRef;
     479             : }
     480             : 
     481             : inline int
     482    16391221 : isLikeOp(InstrPtr p)
     483             : {
     484    16391221 :         return (getModuleId(p) == batalgebraRef
     485    16391221 :                         && (getFunctionId(p) == likeRef
     486         127 :                                 || getFunctionId(p) == not_likeRef));
     487             : }
     488             : 
     489             : inline int
     490      190362 : isTopn(InstrPtr p)
     491             : {
     492       67947 :         return ((getModuleId(p) == algebraRef && getFunctionId(p) == firstnRef)
     493      258181 :                         || isSlice(p));
     494             : }
     495             : 
     496             : inline int
     497    33195143 : isSlice(InstrPtr p)
     498             : {
     499    33195143 :         return (getModuleId(p) == algebraRef
     500    33195143 :                         && (getFunctionId(p) == subsliceRef
     501     3336578 :                                 || getFunctionId(p) == sliceRef));
     502             : }
     503             : 
     504             : int
     505    17449423 : isSample(InstrPtr p)
     506             : {
     507    17449423 :         return (getModuleId(p) == sampleRef && getFunctionId(p) == subuniformRef);
     508             : }
     509             : 
     510             : inline int
     511           0 : isOrderby(InstrPtr p)
     512             : {
     513           0 :         return getModuleId(p) == algebraRef && getFunctionId(p) == sortRef;
     514             : }
     515             : 
     516             : inline int
     517     1455939 : isMatJoinOp(InstrPtr p)
     518             : {
     519     1455939 :         return (isSubJoin(p)
     520     1455939 :                         || (getModuleId(p) == algebraRef
     521      959203 :                                 && (getFunctionId(p) == crossRef || getFunctionId(p) == joinRef
     522      942976 :                                         || getFunctionId(p) == thetajoinRef
     523      942976 :                                         || getFunctionId(p) == bandjoinRef
     524      942976 :                                         || getFunctionId(p) == rangejoinRef)
     525             :                         ));
     526             : }
     527             : 
     528             : inline int
     529     1317054 : isMatLeftJoinOp(InstrPtr p)
     530             : {
     531     1317054 :         return (getModuleId(p) == algebraRef
     532     1317054 :                         && (getFunctionId(p) == leftjoinRef
     533     1050130 :                                 || getFunctionId(p) == outerjoinRef
     534     1050112 :                                 || getFunctionId(p) == markjoinRef));
     535             : }
     536             : 
     537             : inline int
     538      115981 : isDelta(InstrPtr p)
     539             : {
     540      115981 :         return (getModuleId(p) == sqlRef
     541      115981 :                         && (getFunctionId(p) == deltaRef
     542       38563 :                                 || getFunctionId(p) == projectdeltaRef
     543       14016 :                                 || getFunctionId(p) == subdeltaRef)
     544             :                         );
     545             : }
     546             : 
     547             : int
     548       34048 : isFragmentGroup2(InstrPtr p)
     549             : {
     550       34048 :         if (getModuleId(p) == batRef && getFunctionId(p) == replaceRef)
     551             :                 return TRUE;
     552          10 :         return (getModuleId(p) == algebraRef && (getFunctionId(p) == projectionRef))
     553       11406 :                         || (getModuleId(p) == batRef
     554        8822 :                                 && (getFunctionId(p) == mergecandRef
     555           0 :                                         || getFunctionId(p) == intersectcandRef
     556           0 :                                         || getFunctionId(p) == diffcandRef)
     557             :                         );
     558             : }
     559             : 
     560             : inline int
     561    32355359 : isSelect(InstrPtr p)
     562             : {
     563    32355359 :         const char *func = getFunctionId(p);
     564    62253703 :         size_t l = func ? strlen(func) : 0;
     565             : 
     566    31061323 :         return (l >= 6 && strcmp(func + l - 6, "select") == 0);
     567             : }
     568             : 
     569             : inline int
     570     1455939 : isSubJoin(InstrPtr p)
     571             : {
     572     1455939 :         const char *func = getFunctionId(p);
     573     2804041 :         size_t l = func ? strlen(func) : 0;
     574             : 
     575     1455855 :         return (l >= 4 && strcmp(func + l - 4, "join") == 0);
     576             : }
     577             : 
     578             : inline int
     579    49348925 : isMultiplex(InstrPtr p)
     580             : {
     581    49348925 :         return (malRef && (getModuleId(p) == malRef || getModuleId(p) == batmalRef)
     582    49372729 :                         && getFunctionId(p) == multiplexRef);
     583             : }
     584             : 
     585             : inline int
     586     3070850 : isUnion(InstrPtr p)
     587             : {
     588     3070850 :         return (malRef && (getModuleId(p) == malRef || getModuleId(p) == batmalRef)
     589     3217535 :                         && getFunctionId(p) == multiplexRef) ||
     590     2924165 :                    (getModuleId(p) == sqlRef && getFunctionId(p) == unionfuncRef);
     591             : }
     592             : 
     593             : int
     594      144982 : isFragmentGroup(InstrPtr p)
     595             : {
     596      144982 :         return (getModuleId(p) == algebraRef
     597       97891 :                         && (getFunctionId(p) == projectRef
     598      117117 :                                 || getFunctionId(p) == selectNotNilRef)) || isSelect(p)
     599      192067 :                         || (getModuleId(p) == batRef && (getFunctionId(p) == mirrorRef));
     600             : }

Generated by: LCOV version 1.14