Ignore:
Timestamp:
Jan 30, 2015, 1:27:51 AM (10 years ago)
Author:
bird
Message:

Started on a make expression and string expansion 'compiler'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/variable.h

    r2758 r2765  
    113113    unsigned int reallocs;     /* Realloc on value count.  */
    114114    unsigned int references;   /* Lookup count.  */
    115     unsigned cEvalVals;        /* $(evalval v) or $(evalvalctx v) count */
    116115    unsigned long long cTicksEvalVal; /* Number of ticks spend in cEvalVal. */
     116#endif
     117#if defined (CONFIG_WITH_COMPILER) || defined (CONFIG_WITH_MAKE_STATS)
     118    unsigned int evalval_count; /* Times used with $(evalval ) or $(evalctx ). */
     119    unsigned int expand_count;  /* Times expanded (not to be confused with exp_count). */
     120#endif
     121#ifdef CONFIG_WITH_COMPILER
     122    struct cceval *evalprog;    /* Pointer to evalval/evalctx "program". */
     123    struct ccexpand *expandprog; /* Pointer to variable expand "program". */
    117124#endif
    118125  };
Note: See TracChangeset for help on using the changeset viewer.