_ZN2mu10ParserBase9DefineFunIPFddEEEvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEET_b:
  145|  91.2k|		{
  146|  91.2k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  91.2k|		}
_ZN2mu10ParserBase9DefineFunIPFdddEEEvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEET_b:
  145|  3.96k|		{
  146|  3.96k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  3.96k|		}
_ZN2mu10ParserBase9DefineFunIPFdPKdiEEEvRKNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEET_b:
  145|  15.8k|		{
  146|  15.8k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  15.8k|		}
_ZN2mu10ParserBase9DefineFunIPFdvEEEvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEET_b:
  145|  3.96k|		{
  146|  3.96k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  3.96k|		}
_ZN2mu10ParserBase14change_dec_sepIcEC2Ecci:
  234|      2|				:std::numpunct<TChar>()
  235|      2|				,m_nGroup(nGroup)
  236|      2|				,m_cDecPoint(cDecSep)
  237|      2|				,m_cThousandsSep(cThousandsSep)
  238|      2|			{}
_ZNK2mu10ParserBase14change_dec_sepIcE16do_decimal_pointEv:
  243|   879k|			{
  244|   879k|				return m_cDecPoint;
  245|   879k|			}
_ZNK2mu10ParserBase14change_dec_sepIcE16do_thousands_sepEv:
  248|   875k|			{
  249|   875k|				return m_cThousandsSep;
  250|   875k|			}
_ZNK2mu10ParserBase14change_dec_sepIcE11do_groupingEv:
  253|   875k|			{
  254|       |				// fix for issue 4: https://code.google.com/p/muparser/issues/detail?id=4
  255|       |				// courtesy of Jens Bartsch
  256|       |				// original code:
  257|       |				//        return std::string(1, (char)m_nGroup); 
  258|       |				// new code:
  259|   875k|				return std::string(1, (char)(m_cThousandsSep > 0 ? m_nGroup : CHAR_MAX));
  ------------------
  |  Branch (259:34): [True: 0, False: 875k]
  ------------------
  260|   875k|			}

_ZNK2mu14ParserByteCode7GetSizeEv:
  142|  1.81k|		{
  143|  1.81k|			return m_vRPN.size();
  144|  1.81k|		}
_ZNK2mu14ParserByteCode7GetBaseEv:
  147|  1.81k|		{
  148|  1.81k|			if (m_vRPN.size() == 0)
  ------------------
  |  Branch (148:8): [True: 0, False: 1.81k]
  ------------------
  149|      0|				throw ParserError(ecINTERNAL_ERROR);
  150|  1.81k|			else
  151|  1.81k|				return &m_vRPN[0];
  152|  1.81k|		}
_ZN2mu14ParserByteCode16StoreEnvironmentENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS1_6vectorIS7_NS5_IS7_EEEE:
  155|  1.81k|		{
  156|  1.81k|			m_stringBuffer = strBuf;
  157|  1.81k|			m_expr = expr;
  158|  1.81k|		}

_ZN2mu14ParserErrorMsgD2Ev:
   64|      1|		~ParserErrorMsg() = default;

_ZN2mu8TypeInfoIdE9IsIntegerEv:
   52|  3.96k|		static bool IsInteger() { return false; }
_ZN2mu8MathImplIdE3SinEd:
  118|    196|		static T Sin(T v) { return sin(v); }
_ZN2mu8MathImplIdE3CosEd:
  119|    195|		static T Cos(T v) { return cos(v); }
_ZN2mu8MathImplIdE3TanEd:
  120|    299|		static T Tan(T v) { return tan(v); }
_ZN2mu8MathImplIdE3CotEd:
  121|    195|		static T Cot(T v) { return 1.0 / tan(v); }
_ZN2mu8MathImplIdE4ASinEd:
  122|    196|		static T ASin(T v) { return asin(v); }
_ZN2mu8MathImplIdE4ACosEd:
  123|    195|		static T ACos(T v) { return acos(v); }
_ZN2mu8MathImplIdE4ATanEd:
  124|    196|		static T ATan(T v) { return atan(v); }
_ZN2mu8MathImplIdE5ATan2Edd:
  125|    415|		static T ATan2(T v1, T v2) { return atan2(v1, v2); }
_ZN2mu8MathImplIdE4SinhEd:
  126|    195|		static T Sinh(T v) { return sinh(v); }
_ZN2mu8MathImplIdE4CoshEd:
  127|    195|		static T Cosh(T v) { return cosh(v); }
_ZN2mu8MathImplIdE4TanhEd:
  128|    195|		static T Tanh(T v) { return tanh(v); }
_ZN2mu8MathImplIdE4CothEd:
  129|    195|		static T Coth(T v) { return 1.0 / tanh(v); }
_ZN2mu8MathImplIdE5ASinhEd:
  130|    195|		static T ASinh(T v) { return log(v + sqrt(v * v + 1)); }
_ZN2mu8MathImplIdE5ACoshEd:
  131|    195|		static T ACosh(T v) { return log(v + sqrt(v * v - 1)); }
_ZN2mu8MathImplIdE5ATanhEd:
  132|    198|		static T ATanh(T v) { return ((T)0.5 * log((1 + v) / (1 - v))); }
_ZN2mu8MathImplIdE4Log2Ed:
  134|    196|		static T Log2(T v) { return log(v) / log((T)2); } // Logarithm base 2
_ZN2mu8MathImplIdE5Log10Ed:
  135|    230|		static T Log10(T v) { return log10(v); }         // Logarithm base 10
_ZN2mu8MathImplIdE3LogEd:
  133|    511|		static T Log(T v) { return log(v); }
_ZN2mu8MathImplIdE3ExpEd:
  136|    196|		static T Exp(T v) { return exp(v); }
_ZN2mu8MathImplIdE4SqrtEd:
  138|    195|		static T Sqrt(T v) { return sqrt(v); }
_ZN2mu8MathImplIdE4SignEd:
  140|    389|		static T Sign(T v) { return (T)((v < 0) ? -1 : (v > 0) ? 1 : 0); }
  ------------------
  |  Branch (140:35): [True: 194, False: 195]
  |  Branch (140:50): [True: 153, False: 42]
  ------------------
_ZN2mu8MathImplIdE4RintEd:
  139|    594|		static T Rint(T v) { return floor(v + (T)0.5); }
_ZN2mu8MathImplIdE3AbsEd:
  137|    389|		static T Abs(T v) { return (v >= 0) ? v : -v; }
  ------------------
  |  Branch (137:30): [True: 195, False: 194]
  ------------------
_ZN2mu8MathImplIdE3SumEPKdi:
  155|    556|		{
  156|    556|			if (!a_iArgc)
  ------------------
  |  Branch (156:8): [True: 0, False: 556]
  ------------------
  157|      0|				throw ParserError(_T("too few arguments for function sum."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  158|       |
  159|    556|			T fRes = 0;
  160|   100k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (160:20): [True: 100k, False: 556]
  ------------------
  161|    556|			return fRes;
  162|    556|		}
_ZN2mu8MathImplIdE3AvgEPKdi:
  165|    713|		{
  166|    713|			if (!a_iArgc)
  ------------------
  |  Branch (166:8): [True: 0, False: 713]
  ------------------
  167|      0|				throw ParserError(_T("too few arguments for function avg."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  168|       |
  169|    713|			T fRes = 0;
  170|  72.6k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (170:20): [True: 71.9k, False: 713]
  ------------------
  171|    713|			return fRes / (T)a_iArgc;
  172|    713|		}
_ZN2mu8MathImplIdE3MinEPKdi:
  175|    997|		{
  176|    997|			if (!a_iArgc)
  ------------------
  |  Branch (176:8): [True: 0, False: 997]
  ------------------
  177|      0|				throw ParserError(_T("too few arguments for function min."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  178|       |
  179|    997|			T fRes = a_afArg[0];
  180|  61.6k|			for (int i = 0; i < a_iArgc; ++i)
  ------------------
  |  Branch (180:20): [True: 60.6k, False: 997]
  ------------------
  181|  60.6k|				fRes = std::min(fRes, a_afArg[i]);
  182|       |
  183|    997|			return fRes;
  184|    997|		}
_ZN2mu8MathImplIdE3MaxEPKdi:
  187|  1.32k|		{
  188|  1.32k|			if (!a_iArgc)
  ------------------
  |  Branch (188:8): [True: 0, False: 1.32k]
  ------------------
  189|      0|				throw ParserError(_T("too few arguments for function max."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  190|       |
  191|  1.32k|			T fRes = a_afArg[0];
  192|  79.5k|			for (int i = 0; i < a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]);
  ------------------
  |  Branch (192:20): [True: 78.2k, False: 1.32k]
  ------------------
  193|       |
  194|  1.32k|			return fRes;
  195|  1.32k|		}
_ZN2mu8MathImplIdE3RndEv:
  143|    792|		{
  144|    792|			static std::random_device rd;  
  145|    792|			static std::mt19937 gen(rd()); 
  146|    792|			static std::uniform_real_distribution<T> dis(0.0, 1.0); // Range [0, 1)
  147|       |
  148|    792|			return dis(gen);
  149|    792|		}
_ZN2mu8MathImplIdE10UnaryMinusEd:
  151|  6.73k|		static T UnaryMinus(T v) { return -v; }
_ZN2mu8MathImplIdE3PowEdd:
  141|   108k|		static T Pow(T v1, T v2) { return std::pow(v1, v2); }

_ZNK2mu21generic_callable_type12call_multfunEPKdi:
  104|  3.59k|		{
  105|  3.59k|			if (_pUserData == nullptr) {
  ------------------
  |  Branch (105:8): [True: 3.59k, False: 0]
  ------------------
  106|  3.59k|				auto multfun_typed_ptr = reinterpret_cast<multfun_type>(_pRawFun);
  107|  3.59k|				return (*multfun_typed_ptr)(a_afArg, a_iArgc);
  108|  3.59k|			} else {
  109|      0|				auto multfun_userdata_typed_ptr = reinterpret_cast<multfun_userdata_type>(_pRawFun);
  110|      0|				return (*multfun_userdata_typed_ptr)(_pUserData, a_afArg, a_iArgc);
  111|      0|			}
  112|  3.59k|		}
_ZNK2mu21generic_callable_typeeqES0_:
  131|  31.1k|		{
  132|  31.1k|			return _pRawFun == other._pRawFun && _pUserData == other._pUserData; 
  ------------------
  |  Branch (132:11): [True: 5.31k, False: 25.7k]
  |  Branch (132:41): [True: 5.31k, False: 0]
  ------------------
  133|  31.1k|		}
_ZNK2mu21generic_callable_typeeqEDn:
  141|  23.6k|		{
  142|  23.6k|			return _pRawFun == nullptr; 
  143|  23.6k|		}
_ZNK2mu21generic_callable_typeneEDn:
  146|  39.4k|		{
  147|  39.4k|			return _pRawFun != nullptr; 
  148|  39.4k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE7GetCodeEv:
  383|  10.3M|		{
  384|  10.3M|			if (m_pCallback.get())
  ------------------
  |  Branch (384:8): [True: 626k, False: 9.68M]
  ------------------
  385|   626k|			{
  386|   626k|				return m_pCallback->GetCode();
  387|   626k|			}
  388|  9.68M|			else
  389|  9.68M|			{
  390|  9.68M|				return m_iCode;
  391|  9.68M|			}
  392|  10.3M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6GetPriEv:
  409|  54.4k|		{
  410|  54.4k|			if (!m_pCallback.get())
  ------------------
  |  Branch (410:8): [True: 0, False: 54.4k]
  ------------------
  411|      0|				throw ParserError(ecINTERNAL_ERROR);
  412|       |
  413|  54.4k|			if (m_pCallback->GetCode() != cmOPRT_BIN && m_pCallback->GetCode() != cmOPRT_INFIX)
  ------------------
  |  Branch (413:8): [True: 54.4k, False: 0]
  |  Branch (413:48): [True: 0, False: 54.4k]
  ------------------
  414|      0|				throw ParserError(ecINTERNAL_ERROR);
  415|       |
  416|  54.4k|			return m_pCallback->GetPri();
  417|  54.4k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetAsStringEv:
  514|    185|		{
  515|    185|			return m_strTok;
  516|    185|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2Ev:
  192|  2.58M|			:m_iCode(cmUNKNOWN)
  193|  2.58M|			, m_iType(tpVOID)
  194|  2.58M|			, m_pTok(0)
  195|  2.58M|			, m_iIdx(-1)
  196|  2.58M|			, m_strTok()
  197|  2.58M|			, m_strVal()
  198|  2.58M|			, m_fVal(0)
  199|  2.58M|			, m_pCallback()
  200|  2.58M|		{}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetFuncAddrEv:
  444|  99.2k|		{
  445|  99.2k|			return (m_pCallback.get())
  ------------------
  |  Branch (445:11): [True: 83.1k, False: 16.0k]
  ------------------
  446|  99.2k|				? generic_callable_type{(erased_fun_type)m_pCallback->GetAddr(),
  447|  83.1k|				                        m_pCallback->GetUserData()}
  448|  99.2k|				: generic_callable_type{};
  449|  99.2k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetArgCountEv:
  487|  94.6k|		{
  488|  94.6k|			MUP_ASSERT(m_pCallback.get());
  ------------------
  |  |   78|  94.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 94.6k]
  |  |  ------------------
  |  |   79|  94.6k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  489|       |
  490|  94.6k|			if (!m_pCallback->IsValid())
  ------------------
  |  Branch (490:8): [True: 0, False: 94.6k]
  ------------------
  491|      0|				throw ParserError(ecINTERNAL_ERROR);
  492|       |
  493|  94.6k|			return m_pCallback->GetArgc();
  494|  94.6k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6SetValEdRKS7_:
  297|  1.03M|		{
  298|  1.03M|			m_iCode = cmVAL;
  299|  1.03M|			m_iType = tpDBL;
  300|  1.03M|			m_fVal = a_fVal;
  301|  1.03M|			m_strTok = a_strTok;
  302|  1.03M|			m_iIdx = -1;
  303|       |
  304|  1.03M|			m_pTok = 0;
  305|  1.03M|			m_pCallback.reset(0);
  306|       |
  307|  1.03M|			return *this;
  308|  1.03M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6GetValEv:
  458|   905k|		{
  459|   905k|			switch (m_iCode)
  460|   905k|			{
  461|   905k|			case cmVAL:  return m_fVal;
  ------------------
  |  Branch (461:4): [True: 905k, False: 3]
  ------------------
  462|      0|			case cmVAR:  return *((TBase*)m_pTok);
  ------------------
  |  Branch (462:4): [True: 0, False: 905k]
  ------------------
  463|      3|			default:     throw ParserError(ecVAL_EXPECTED);
  ------------------
  |  Branch (463:4): [True: 3, False: 905k]
  ------------------
  464|   905k|			}
  465|   905k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2ERKS8_:
  211|  5.51M|		{
  212|  5.51M|			Assign(a_Tok);
  213|  5.51M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6AssignERKS8_:
  234|  12.3M|		{
  235|  12.3M|			m_iCode = a_Tok.m_iCode;
  236|  12.3M|			m_pTok = a_Tok.m_pTok;
  237|  12.3M|			m_strTok = a_Tok.m_strTok;
  238|  12.3M|			m_iIdx = a_Tok.m_iIdx;
  239|  12.3M|			m_strVal = a_Tok.m_strVal;
  240|  12.3M|			m_iType = a_Tok.m_iType;
  241|  12.3M|			m_fVal = a_Tok.m_fVal;
  242|       |			// create new callback object if a_Tok has one 
  243|  12.3M|			m_pCallback.reset(a_Tok.m_pCallback.get() ? a_Tok.m_pCallback->Clone() : 0);
  ------------------
  |  Branch (243:22): [True: 425k, False: 11.9M]
  ------------------
  244|  12.3M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE7GetTypeEv:
  396|   973k|		{
  397|   973k|			if (m_pCallback.get())
  ------------------
  |  Branch (397:8): [True: 47.3k, False: 926k]
  ------------------
  398|  47.3k|			{
  399|  47.3k|				return m_pCallback->GetType();
  400|  47.3k|			}
  401|   926k|			else
  402|   926k|			{
  403|   926k|				return m_iType;
  404|   926k|			}
  405|   973k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE13IsOptimizableEv:
  500|  23.6k|		{
  501|  23.6k|			return m_pCallback->IsValid() && m_pCallback->IsOptimizable();
  ------------------
  |  Branch (501:11): [True: 23.6k, False: 0]
  |  Branch (501:37): [True: 22.6k, False: 986]
  ------------------
  502|  23.6k|		}
_ZNK2mu21generic_callable_type8call_funILm0EJEEEdDpOT0_:
   76|    792|		{
   77|    792|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|    792|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 792, False: 0]
  ------------------
   79|    792|			{
   80|    792|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|    792|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|    792|			} 
   83|      0|			else 
   84|      0|			{
   85|      0|				auto fun_userdata_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_userdata_type>(_pRawFun);
   86|      0|				return (*fun_userdata_typed_ptr)(_pUserData, std::forward<Args>(args)...);
   87|      0|			}
   88|    792|		}
_ZNK2mu21generic_callable_type8call_funILm1EJRdEEEdDpOT0_:
   76|  12.2k|		{
   77|  12.2k|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|  12.2k|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 12.2k, False: 0]
  ------------------
   79|  12.2k|			{
   80|  12.2k|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|  12.2k|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|  12.2k|			} 
   83|      0|			else 
   84|      0|			{
   85|      0|				auto fun_userdata_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_userdata_type>(_pRawFun);
   86|      0|				return (*fun_userdata_typed_ptr)(_pUserData, std::forward<Args>(args)...);
   87|      0|			}
   88|  12.2k|		}
_ZNK2mu21generic_callable_type8call_funILm2EJRdS2_EEEdDpOT0_:
   76|    415|		{
   77|    415|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|    415|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 415, False: 0]
  ------------------
   79|    415|			{
   80|    415|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|    415|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|    415|			} 
   83|      0|			else 
   84|      0|			{
   85|      0|				auto fun_userdata_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_userdata_type>(_pRawFun);
   86|      0|				return (*fun_userdata_typed_ptr)(_pUserData, std::forward<Args>(args)...);
   87|      0|			}
   88|    415|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEaSERKS8_:
  223|  6.87M|		{
  224|  6.87M|			Assign(a_Tok);
  225|  6.87M|			return *this;
  226|  6.87M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE3SetENS_8ECmdCodeERKS7_:
  258|  1.28M|		{
  259|       |			// The following types can't be set this way, they have special Set functions
  260|  1.28M|			MUP_ASSERT(a_iType != cmVAR);
  ------------------
  |  |   78|  1.28M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.28M]
  |  |  ------------------
  |  |   79|  1.28M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  261|  1.28M|			MUP_ASSERT(a_iType != cmVAL);
  ------------------
  |  |   78|  1.28M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.28M]
  |  |  ------------------
  |  |   79|  1.28M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  262|  1.28M|			MUP_ASSERT(a_iType != cmFUNC);
  ------------------
  |  |   78|  1.28M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.28M]
  |  |  ------------------
  |  |   79|  1.28M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  263|       |
  264|  1.28M|			m_iCode = a_iType;
  265|  1.28M|			m_iType = tpVOID;
  266|  1.28M|			m_pTok = 0;
  267|  1.28M|			m_strTok = a_strTok;
  268|  1.28M|			m_iIdx = -1;
  269|       |
  270|  1.28M|			return *this;
  271|  1.28M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE3SetERKNS_14ParserCallbackERKS7_:
  276|  79.6k|		{
  277|  79.6k|			MUP_ASSERT(a_pCallback.IsValid());
  ------------------
  |  |   78|  79.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 79.6k]
  |  |  ------------------
  |  |   79|  79.6k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  278|       |
  279|  79.6k|			m_iCode = a_pCallback.GetCode();
  280|  79.6k|			m_iType = tpVOID;
  281|  79.6k|			m_strTok = a_sTok;
  282|  79.6k|			m_pCallback.reset(new ParserCallback(a_pCallback));
  283|       |
  284|  79.6k|			m_pTok = 0;
  285|  79.6k|			m_iIdx = -1;
  286|       |
  287|  79.6k|			return *this;
  288|  79.6k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE9SetStringERKS7_m:
  334|  11.3k|		{
  335|  11.3k|			m_iCode = cmSTRING;
  336|  11.3k|			m_iType = tpSTR;
  337|  11.3k|			m_strTok = a_strTok;
  338|  11.3k|			m_iIdx = static_cast<int>(a_iSize);
  339|       |
  340|  11.3k|			m_pTok = 0;
  341|  11.3k|			m_pCallback.reset(0);
  342|  11.3k|			return *this;
  343|  11.3k|		}

_ZN2mu6Parser5IsValEPKcPiPd:
   58|   875k|	{
   59|       |		// There is an issue with libc++ where it creates an error if a double value is followed by a character which
   60|       |		// is the case when using postfix operators.
   61|       |		//
   62|       |		// http://cplusplus.github.io/LWG/lwg-defects.html#2381
   63|       |		//
   64|       |		// This happens only with libc++, not with libstdc++ (Gnu C++ standard library)
   65|       |		// It seems that Macs are using libc++. This is causing #123. The fix below will fix #123
   66|       |		// but is will break localization support and cause #136.
   67|       |
   68|       |		// I'm disabling this fix. For systems using libc++ you must put a space between floating point numbers and postfix operators.
   69|       |#if defined(__APPLE__) && defined(NEVERTRUE)
   70|       |		try
   71|       |		{
   72|       |			std::size_t charsProcessed;
   73|       |			value_type fVal = static_cast<value_type>(std::stod(string_type(a_szExpr), &charsProcessed));
   74|       |			if (charsProcessed == 0)
   75|       |				return 0;
   76|       |
   77|       |			*a_iPos += (int)charsProcessed;
   78|       |			*a_fVal = fVal;
   79|       |			return 1;
   80|       |		}
   81|       |		catch (...)
   82|       |		{
   83|       |			return 0;
   84|       |		}
   85|       |#else
   86|   875k|		value_type fVal(0);
   87|       |
   88|   875k|		stringstream_type stream(a_szExpr);
   89|   875k|		stream.imbue(Parser::s_locale);
   90|   875k|		stream >> fVal;
   91|   875k|		stringstream_type::pos_type iEnd = stream.tellg(); // Position after reading
   92|       |
   93|   875k|		if (iEnd == (stringstream_type::pos_type) - 1)
  ------------------
  |  Branch (93:7): [True: 12.0k, False: 863k]
  ------------------
   94|  12.0k|			return 0;
   95|       |
   96|   863k|		*a_iPos += (int)iEnd;
   97|   863k|		*a_fVal = fVal;
   98|   863k|		return 1;
   99|   875k|#endif		
  100|   875k|	}
_ZN2mu6ParserC2Ev:
  109|  3.96k|		:ParserBase()
  110|  3.96k|	{
  111|  3.96k|		AddValIdent(IsVal);
  112|       |
  113|  3.96k|		InitCharSets();
  114|  3.96k|		InitFun();
  115|  3.96k|		InitConst();
  116|  3.96k|		InitOprt();
  117|  3.96k|	}
_ZN2mu6Parser12InitCharSetsEv:
  127|  3.96k|	{
  128|  3.96k|		DefineNameChars(_T("0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"));
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  129|  3.96k|		DefineOprtChars(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+-*^/?<>=#!$%&|~'_{}"));
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  130|  3.96k|		DefineInfixOprtChars(_T("/+-*^?<>=#!$%&|~'_"));
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  131|  3.96k|	}
_ZN2mu6Parser7InitFunEv:
  136|  3.96k|	{
  137|  3.96k|		if (mu::TypeInfo<mu::value_type>::IsInteger())
  ------------------
  |  Branch (137:7): [True: 0, False: 3.96k]
  ------------------
  138|      0|		{
  139|       |			// When setting MUP_BASETYPE to an integer type
  140|       |			// Place functions for dealing with integer values here
  141|       |			// ...
  142|       |			// ...
  143|       |			// ...
  144|      0|		}
  145|  3.96k|		else
  146|  3.96k|		{
  147|       |			// trigonometric functions
  148|  3.96k|			DefineFun(_T("sin"), MathImpl<value_type>::Sin);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  149|  3.96k|			DefineFun(_T("cos"), MathImpl<value_type>::Cos);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  150|  3.96k|			DefineFun(_T("tan"), MathImpl<value_type>::Tan);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  151|  3.96k|			DefineFun(_T("cot"), MathImpl<value_type>::Cot);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  152|       |			// arcus functions
  153|  3.96k|			DefineFun(_T("asin"), MathImpl<value_type>::ASin);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  154|  3.96k|			DefineFun(_T("acos"), MathImpl<value_type>::ACos);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  155|  3.96k|			DefineFun(_T("atan"), MathImpl<value_type>::ATan);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  156|  3.96k|			DefineFun(_T("atan2"), MathImpl<value_type>::ATan2);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  157|       |			// hyperbolic functions
  158|  3.96k|			DefineFun(_T("sinh"), MathImpl<value_type>::Sinh);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  159|  3.96k|			DefineFun(_T("cosh"), MathImpl<value_type>::Cosh);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  160|  3.96k|			DefineFun(_T("tanh"), MathImpl<value_type>::Tanh);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  161|  3.96k|			DefineFun(_T("coth"), MathImpl<value_type>::Coth);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  162|       |			// arcus hyperbolic functions
  163|  3.96k|			DefineFun(_T("asinh"), MathImpl<value_type>::ASinh);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  164|  3.96k|			DefineFun(_T("acosh"), MathImpl<value_type>::ACosh);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  165|  3.96k|			DefineFun(_T("atanh"), MathImpl<value_type>::ATanh);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  166|       |			// Logarithm functions
  167|  3.96k|			DefineFun(_T("log2"), MathImpl<value_type>::Log2);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  168|  3.96k|			DefineFun(_T("log10"), MathImpl<value_type>::Log10);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  169|  3.96k|			DefineFun(_T("log"), MathImpl<value_type>::Log);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  170|  3.96k|			DefineFun(_T("ln"), MathImpl<value_type>::Log);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  171|       |			// misc
  172|  3.96k|			DefineFun(_T("exp"), MathImpl<value_type>::Exp);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  173|  3.96k|			DefineFun(_T("sqrt"), MathImpl<value_type>::Sqrt);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  174|  3.96k|			DefineFun(_T("sign"), MathImpl<value_type>::Sign);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  175|  3.96k|			DefineFun(_T("rint"), MathImpl<value_type>::Rint);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  176|  3.96k|			DefineFun(_T("abs"), MathImpl<value_type>::Abs);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  177|       |			// Functions with variable number of arguments
  178|  3.96k|			DefineFun(_T("sum"), MathImpl<value_type>::Sum);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  179|  3.96k|			DefineFun(_T("avg"), MathImpl<value_type>::Avg);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  180|  3.96k|			DefineFun(_T("min"), MathImpl<value_type>::Min);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  181|  3.96k|			DefineFun(_T("max"), MathImpl<value_type>::Max);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  182|       |			// Random number
  183|  3.96k|			DefineFun(_T("rnd"), MathImpl<value_type>::Rnd, false);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  184|  3.96k|		}
  185|  3.96k|	}
_ZN2mu6Parser9InitConstEv:
  194|  3.96k|	{
  195|  3.96k|		DefineConst(_T("_pi"), MathImpl<value_type>::CONST_PI);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  196|  3.96k|		DefineConst(_T("_e"), MathImpl<value_type>::CONST_E);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  197|  3.96k|	}
_ZN2mu6Parser8InitOprtEv:
  205|  3.96k|	{
  206|  3.96k|		DefineInfixOprt(_T("-"), MathImpl<value_type>::UnaryMinus);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  207|  3.96k|		DefineInfixOprt(_T("+"), MathImpl<value_type>::UnaryPlus);
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  208|  3.96k|	}

_ZN2mu10ParserBaseC2Ev:
   91|  3.96k|		: m_pParseFormula(&ParserBase::ParseString)
   92|  3.96k|		, m_vRPN()
   93|  3.96k|		, m_vStringBuf()
   94|  3.96k|		, m_pTokenReader()
   95|  3.96k|		, m_FunDef()
   96|  3.96k|		, m_PostOprtDef()
   97|  3.96k|		, m_InfixOprtDef()
   98|  3.96k|		, m_OprtDef()
   99|  3.96k|		, m_ConstDef()
  100|  3.96k|		, m_StrVarDef()
  101|  3.96k|		, m_VarDef()
  102|  3.96k|		, m_bBuiltInOp(true)
  103|  3.96k|		, m_sNameChars()
  104|  3.96k|		, m_sOprtChars()
  105|  3.96k|		, m_sInfixOprtChars()
  106|  3.96k|		, m_vStackBuffer()
  107|  3.96k|		, m_nFinalResultIdx(0)
  108|  3.96k|	{
  109|  3.96k|		InitTokenReader();
  110|  3.96k|	}
_ZN2mu10ParserBaseD2Ev:
  141|  3.96k|	{}
_ZN2mu10ParserBase15InitTokenReaderEv:
  246|  3.96k|	{
  247|  3.96k|		m_pTokenReader.reset(new token_reader_type(this));
  248|  3.96k|	}
_ZNK2mu10ParserBase6ReInitEv:
  257|   138k|	{
  258|   138k|		m_pParseFormula = &ParserBase::ParseString;
  259|   138k|		m_vStringBuf.clear();
  260|   138k|		m_vRPN.clear();
  261|   138k|		m_pTokenReader->ReInit();
  262|   138k|	}
_ZN2mu10ParserBase11AddValIdentEPFiPKcPiPdE:
  353|  3.96k|	{
  354|  3.96k|		m_pTokenReader->AddValIdent(a_pCallback);
  355|  3.96k|	}
_ZN2mu10ParserBase11AddCallbackERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackERNS1_3mapIS7_SA_NS1_4lessIS7_EENS5_INS1_4pairIS8_SA_EEEEEEPKc:
  374|   123k|	{
  375|   123k|		if (!a_Callback.IsValid())
  ------------------
  |  Branch (375:7): [True: 0, False: 123k]
  ------------------
  376|      0|			Error(ecINVALID_FUN_PTR);
  377|       |
  378|   123k|		const funmap_type* pFunMap = &a_Storage;
  379|       |
  380|       |		// Check for conflicting operator or function names
  381|   123k|		if (pFunMap != &m_FunDef && m_FunDef.find(a_strName) != m_FunDef.end())
  ------------------
  |  Branch (381:7): [True: 7.93k, False: 115k]
  |  Branch (381:7): [True: 0, False: 123k]
  |  Branch (381:31): [True: 0, False: 7.93k]
  ------------------
  382|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  383|       |
  384|   123k|		if (pFunMap != &m_PostOprtDef && m_PostOprtDef.find(a_strName) != m_PostOprtDef.end())
  ------------------
  |  Branch (384:7): [True: 123k, False: 0]
  |  Branch (384:7): [True: 0, False: 123k]
  |  Branch (384:36): [True: 0, False: 123k]
  ------------------
  385|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  386|       |
  387|   123k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_InfixOprtDef.find(a_strName) != m_InfixOprtDef.end())
  ------------------
  |  Branch (387:7): [True: 115k, False: 7.93k]
  |  Branch (387:7): [True: 0, False: 123k]
  |  Branch (387:37): [True: 115k, False: 0]
  |  Branch (387:62): [True: 0, False: 115k]
  ------------------
  388|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  389|       |
  390|   123k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_OprtDef.find(a_strName) != m_OprtDef.end())
  ------------------
  |  Branch (390:7): [True: 115k, False: 7.93k]
  |  Branch (390:7): [True: 0, False: 123k]
  |  Branch (390:37): [True: 115k, False: 0]
  |  Branch (390:62): [True: 0, False: 115k]
  ------------------
  391|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  392|       |
  393|   123k|		CheckOprt(a_strName, a_Callback, a_szCharSet);
  394|   123k|		a_Storage[a_strName] = a_Callback;
  395|   123k|		ReInit();
  396|   123k|	}
_ZNK2mu10ParserBase9CheckOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackES9_:
  406|   123k|	{
  407|   123k|		if (!a_sName.length() ||
  ------------------
  |  Branch (407:7): [True: 0, False: 123k]
  ------------------
  408|   123k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (408:4): [True: 0, False: 123k]
  ------------------
  409|   123k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (409:5): [True: 115k, False: 7.93k]
  |  Branch (409:26): [True: 0, False: 115k]
  ------------------
  410|      0|		{
  411|      0|			switch (a_Callback.GetCode())
  412|      0|			{
  413|      0|			case cmOPRT_POSTFIX: Error(ecINVALID_POSTFIX_IDENT, -1, a_sName); break;
  ------------------
  |  Branch (413:4): [True: 0, False: 0]
  ------------------
  414|      0|			case cmOPRT_INFIX:   Error(ecINVALID_INFIX_IDENT, -1, a_sName); break;
  ------------------
  |  Branch (414:4): [True: 0, False: 0]
  ------------------
  415|      0|			default:             Error(ecINVALID_NAME, -1, a_sName);
  ------------------
  |  Branch (415:4): [True: 0, False: 0]
  ------------------
  416|      0|			}
  417|      0|		}
  418|   123k|	}
_ZNK2mu10ParserBase9CheckNameERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_:
  425|  7.93k|	{
  426|  7.93k|		if (!a_sName.length() ||
  ------------------
  |  Branch (426:7): [True: 0, False: 7.93k]
  ------------------
  427|  7.93k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (427:4): [True: 0, False: 7.93k]
  ------------------
  428|  7.93k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (428:5): [True: 7.93k, False: 0]
  |  Branch (428:26): [True: 0, False: 7.93k]
  ------------------
  429|      0|		{
  430|      0|			Error(ecINVALID_NAME);
  431|      0|		}
  432|  7.93k|	}
_ZN2mu10ParserBase7SetExprERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  442|  3.96k|	{
  443|       |		// Check locale compatibility
  444|  3.96k|		if (m_pTokenReader->GetArgSep() == std::use_facet<numpunct<char_type> >(s_locale).decimal_point())
  ------------------
  |  Branch (444:7): [True: 0, False: 3.96k]
  ------------------
  445|      0|			Error(ecLOCALE);
  446|       |
  447|       |		// Check maximum allowed expression length. An arbitrary value small enough so i can debug expressions sent to me
  448|  3.96k|		if (a_sExpr.length() >= MaxLenExpression)
  ------------------
  |  Branch (448:7): [True: 30, False: 3.93k]
  ------------------
  449|     30|			Error(ecEXPRESSION_TOO_LONG, 0, a_sExpr);
  450|       |
  451|  3.96k|		m_pTokenReader->SetFormula(a_sExpr + _T(" "));
  ------------------
  |  |   69|  3.96k|		#define _T(x) x
  ------------------
  452|  3.96k|		ReInit();
  453|  3.96k|	}
_ZNK2mu10ParserBase10GetOprtDefEv:
  460|  2.66M|	{
  461|  2.66M|		return (const char_type**)(&c_DefaultOprt[0]);
  462|  2.66M|	}
_ZN2mu10ParserBase15DefineNameCharsEPKc:
  469|  3.96k|	{
  470|  3.96k|		m_sNameChars = a_szCharset;
  471|  3.96k|	}
_ZN2mu10ParserBase15DefineOprtCharsEPKc:
  478|  3.96k|	{
  479|  3.96k|		m_sOprtChars = a_szCharset;
  480|  3.96k|	}
_ZN2mu10ParserBase20DefineInfixOprtCharsEPKc:
  487|  3.96k|	{
  488|  3.96k|		m_sInfixOprtChars = a_szCharset;
  489|  3.96k|	}
_ZNK2mu10ParserBase14ValidNameCharsEv:
  496|  3.24M|	{
  497|  3.24M|		MUP_ASSERT(m_sNameChars.size());
  ------------------
  |  |   78|  3.24M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.24M]
  |  |  ------------------
  |  |   79|  3.24M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  498|  3.24M|		return m_sNameChars.c_str();
  499|  3.24M|	}
_ZNK2mu10ParserBase14ValidOprtCharsEv:
  506|  2.24M|	{
  507|  2.24M|		MUP_ASSERT(m_sOprtChars.size());
  ------------------
  |  |   78|  2.24M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.24M]
  |  |  ------------------
  |  |   79|  2.24M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  508|  2.24M|		return m_sOprtChars.c_str();
  509|  2.24M|	}
_ZNK2mu10ParserBase19ValidInfixOprtCharsEv:
  516|  75.7k|	{
  517|  75.7k|		MUP_ASSERT(m_sInfixOprtChars.size());
  ------------------
  |  |   78|  75.7k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 75.7k]
  |  |  ------------------
  |  |   79|  75.7k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  518|  75.7k|		return m_sInfixOprtChars.c_str();
  519|  75.7k|	}
_ZN2mu10ParserBase15DefineInfixOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEPFddEib:
  556|  7.93k|	{
  557|  7.93k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (557:7): [True: 0, False: 7.93k]
  ------------------
  558|      0|			Error(ecIDENTIFIER_TOO_LONG);
  559|       |
  560|  7.93k|		AddCallback(a_sName, ParserCallback(a_pFun, a_bAllowOpt, a_iPrec, cmOPRT_INFIX), m_InfixOprtDef, ValidInfixOprtChars());
  561|  7.93k|	}
_ZN2mu10ParserBase11DefineConstERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEd:
  648|  7.93k|	{
  649|  7.93k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (649:7): [True: 0, False: 7.93k]
  ------------------
  650|      0|			Error(ecIDENTIFIER_TOO_LONG);
  651|       |
  652|  7.93k|		CheckName(a_sName, ValidNameChars());
  653|  7.93k|		m_ConstDef[a_sName] = a_fVal;
  654|  7.93k|		ReInit();
  655|  7.93k|	}
_ZNK2mu10ParserBase17GetOprtPrecedenceERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  662|   595k|	{
  663|   595k|		switch (a_Tok.GetCode())
  664|   595k|		{
  665|       |			// built in operators
  666|      0|		case cmEND:      return -5;
  ------------------
  |  Branch (666:3): [True: 0, False: 595k]
  ------------------
  667|      0|		case cmARG_SEP:  return -4;
  ------------------
  |  Branch (667:3): [True: 0, False: 595k]
  ------------------
  668|      0|		case cmASSIGN:   return -1;
  ------------------
  |  Branch (668:3): [True: 0, False: 595k]
  ------------------
  669|      0|		case cmELSE:
  ------------------
  |  Branch (669:3): [True: 0, False: 595k]
  ------------------
  670|  5.45k|		case cmIF:       return  0;
  ------------------
  |  Branch (670:3): [True: 5.45k, False: 590k]
  ------------------
  671|  10.1k|		case cmLAND:     return  prLAND;
  ------------------
  |  Branch (671:3): [True: 10.1k, False: 585k]
  ------------------
  672|  6.38k|		case cmLOR:      return  prLOR;
  ------------------
  |  Branch (672:3): [True: 6.38k, False: 589k]
  ------------------
  673|  7.89k|		case cmLT:
  ------------------
  |  Branch (673:3): [True: 7.89k, False: 588k]
  ------------------
  674|  12.0k|		case cmGT:
  ------------------
  |  Branch (674:3): [True: 4.11k, False: 591k]
  ------------------
  675|  14.4k|		case cmLE:
  ------------------
  |  Branch (675:3): [True: 2.47k, False: 593k]
  ------------------
  676|  16.2k|		case cmGE:
  ------------------
  |  Branch (676:3): [True: 1.75k, False: 594k]
  ------------------
  677|  17.5k|		case cmNEQ:
  ------------------
  |  Branch (677:3): [True: 1.34k, False: 594k]
  ------------------
  678|  19.3k|		case cmEQ:       return  prCMP;
  ------------------
  |  Branch (678:3): [True: 1.80k, False: 594k]
  ------------------
  679|  19.6k|		case cmADD:
  ------------------
  |  Branch (679:3): [True: 19.6k, False: 576k]
  ------------------
  680|   103k|		case cmSUB:      return  prADD_SUB;
  ------------------
  |  Branch (680:3): [True: 84.2k, False: 511k]
  ------------------
  681|  17.3k|		case cmMUL:
  ------------------
  |  Branch (681:3): [True: 17.3k, False: 578k]
  ------------------
  682|  22.4k|		case cmDIV:      return  prMUL_DIV;
  ------------------
  |  Branch (682:3): [True: 5.11k, False: 590k]
  ------------------
  683|   373k|		case cmPOW:      return  prPOW;
  ------------------
  |  Branch (683:3): [True: 373k, False: 222k]
  ------------------
  684|       |
  685|       |		// user defined binary operators
  686|  54.4k|		case cmOPRT_INFIX:
  ------------------
  |  Branch (686:3): [True: 54.4k, False: 541k]
  ------------------
  687|  54.4k|		case cmOPRT_BIN: return a_Tok.GetPri();
  ------------------
  |  Branch (687:3): [True: 0, False: 595k]
  ------------------
  688|      0|		default:  
  ------------------
  |  Branch (688:3): [True: 0, False: 595k]
  ------------------
  689|      0|			throw exception_type(ecINTERNAL_ERROR, 5, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  690|   595k|		}
  691|   595k|	}
_ZNK2mu10ParserBase20GetOprtAssociativityERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  698|   151k|	{
  699|   151k|		switch (a_Tok.GetCode())
  700|   151k|		{
  701|      0|		case cmASSIGN:
  ------------------
  |  Branch (701:3): [True: 0, False: 151k]
  ------------------
  702|  3.18k|		case cmLAND:
  ------------------
  |  Branch (702:3): [True: 3.18k, False: 148k]
  ------------------
  703|  4.70k|		case cmLOR:
  ------------------
  |  Branch (703:3): [True: 1.52k, False: 149k]
  ------------------
  704|  7.41k|		case cmLT:
  ------------------
  |  Branch (704:3): [True: 2.71k, False: 148k]
  ------------------
  705|  8.87k|		case cmGT:
  ------------------
  |  Branch (705:3): [True: 1.45k, False: 149k]
  ------------------
  706|  9.59k|		case cmLE:
  ------------------
  |  Branch (706:3): [True: 723, False: 150k]
  ------------------
  707|  10.2k|		case cmGE:
  ------------------
  |  Branch (707:3): [True: 608, False: 150k]
  ------------------
  708|  10.7k|		case cmNEQ:
  ------------------
  |  Branch (708:3): [True: 553, False: 150k]
  ------------------
  709|  11.4k|		case cmEQ:
  ------------------
  |  Branch (709:3): [True: 684, False: 150k]
  ------------------
  710|  16.9k|		case cmADD:
  ------------------
  |  Branch (710:3): [True: 5.54k, False: 145k]
  ------------------
  711|  19.1k|		case cmSUB:
  ------------------
  |  Branch (711:3): [True: 2.16k, False: 149k]
  ------------------
  712|  25.6k|		case cmMUL:
  ------------------
  |  Branch (712:3): [True: 6.53k, False: 144k]
  ------------------
  713|  27.0k|		case cmDIV:      return oaLEFT;
  ------------------
  |  Branch (713:3): [True: 1.34k, False: 150k]
  ------------------
  714|   124k|		case cmPOW:      return oaRIGHT;
  ------------------
  |  Branch (714:3): [True: 124k, False: 27.0k]
  ------------------
  715|      0|		case cmOPRT_BIN: return a_Tok.GetAssociativity();
  ------------------
  |  Branch (715:3): [True: 0, False: 151k]
  ------------------
  716|      0|		default:         return oaNONE;
  ------------------
  |  Branch (716:3): [True: 0, False: 151k]
  ------------------
  717|   151k|		}
  718|   151k|	}
_ZNK2mu10ParserBase9ApplyFuncERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_i:
  831|  23.6k|	{
  832|  23.6k|		MUP_ASSERT(m_pTokenReader.get());
  ------------------
  |  |   78|  23.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 23.6k]
  |  |  ------------------
  |  |   79|  23.6k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  833|       |
  834|       |		// Operator stack empty or does not contain tokens with callback functions
  835|  23.6k|		if (a_stOpt.empty() || a_stOpt.top().GetFuncAddr() == 0)
  ------------------
  |  Branch (835:7): [True: 0, False: 23.6k]
  |  Branch (835:7): [True: 0, False: 23.6k]
  |  Branch (835:26): [True: 0, False: 23.6k]
  ------------------
  836|      0|			return;
  837|       |
  838|  23.6k|		token_type funTok = a_stOpt.top();
  839|  23.6k|		a_stOpt.pop();
  840|  23.6k|		MUP_ASSERT(funTok.GetFuncAddr() != nullptr);
  ------------------
  |  |   78|  23.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 23.6k]
  |  |  ------------------
  |  |   79|  23.6k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  841|       |
  842|       |		// Binary operators must rely on their internal operator number
  843|       |		// since counting of operators relies on commas for function arguments
  844|       |		// binary operators do not have commas in their expression
  845|  23.6k|		int iArgCount = (funTok.GetCode() == cmOPRT_BIN) ? funTok.GetArgCount() : a_iArgCount;
  ------------------
  |  Branch (845:19): [True: 0, False: 23.6k]
  ------------------
  846|       |
  847|       |		// determine how many parameters the function needs. To remember iArgCount includes the 
  848|       |		// string parameter whilst GetArgCount() counts only numeric parameters.
  849|  23.6k|		int iArgRequired = funTok.GetArgCount() + ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (849:46): [True: 0, False: 23.6k]
  ------------------
  850|       |
  851|       |		// That's the number of numerical parameters
  852|  23.6k|		int iArgNumerical = iArgCount - ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (852:36): [True: 0, False: 23.6k]
  ------------------
  853|       |
  854|  23.6k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount - iArgNumerical > 1)
  ------------------
  |  Branch (854:7): [True: 0, False: 23.6k]
  |  Branch (854:41): [True: 0, False: 0]
  ------------------
  855|      0|			Error(ecINTERNAL_ERROR);
  856|       |
  857|  23.6k|		if (funTok.GetArgCount() >= 0 && iArgCount > iArgRequired)
  ------------------
  |  Branch (857:7): [True: 19.6k, False: 4.04k]
  |  Branch (857:36): [True: 26, False: 19.6k]
  ------------------
  858|     26|			Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  859|       |
  860|  23.6k|		if (funTok.GetCode() != cmOPRT_BIN && iArgCount < iArgRequired)
  ------------------
  |  Branch (860:7): [True: 23.6k, False: 26]
  |  Branch (860:41): [True: 2, False: 23.6k]
  ------------------
  861|      2|			Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  862|       |
  863|  23.6k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount > iArgRequired)
  ------------------
  |  Branch (863:7): [True: 0, False: 23.6k]
  |  Branch (863:41): [True: 0, False: 0]
  ------------------
  864|      0|			Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  865|       |
  866|       |		// Collect the numeric function arguments from the value stack and store them
  867|       |		// in a vector
  868|  23.6k|		std::vector<token_type> stArg;
  869|   354k|		for (int i = 0; i < iArgNumerical; ++i)
  ------------------
  |  Branch (869:19): [True: 331k, False: 23.6k]
  ------------------
  870|   331k|		{
  871|   331k|			if (a_stVal.empty())
  ------------------
  |  Branch (871:8): [True: 2, False: 331k]
  ------------------
  872|      2|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), funTok.GetAsString());
  873|       |
  874|   331k|			stArg.push_back(a_stVal.top());
  875|   331k|			a_stVal.pop();
  876|       |
  877|   331k|			if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR)
  ------------------
  |  Branch (877:8): [True: 3, False: 331k]
  |  Branch (877:43): [True: 3, False: 0]
  ------------------
  878|      3|				Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString());
  879|   331k|		}
  880|       |
  881|  23.6k|		switch (funTok.GetCode())
  882|  23.6k|		{
  883|      0|		case  cmFUNC_STR:
  ------------------
  |  Branch (883:3): [True: 0, False: 23.6k]
  ------------------
  884|      0|			if (a_stVal.empty())
  ------------------
  |  Branch (884:8): [True: 0, False: 0]
  ------------------
  885|      0|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), funTok.GetAsString());
  886|       |
  887|      0|			stArg.push_back(a_stVal.top());
  888|      0|			a_stVal.pop();
  889|       |
  890|      0|			if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR)
  ------------------
  |  Branch (890:8): [True: 0, False: 0]
  |  Branch (890:43): [True: 0, False: 0]
  ------------------
  891|      0|				Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString());
  892|       |
  893|      0|			ApplyStrFunc(funTok, stArg);
  894|      0|			break;
  895|       |
  896|      0|		case  cmFUNC_BULK:
  ------------------
  |  Branch (896:3): [True: 0, False: 23.6k]
  ------------------
  897|      0|			m_vRPN.AddBulkFun(funTok.GetFuncAddr(), (int)stArg.size());
  898|      0|			break;
  899|       |
  900|      0|		case  cmOPRT_BIN:
  ------------------
  |  Branch (900:3): [True: 0, False: 23.6k]
  ------------------
  901|      0|		case  cmOPRT_POSTFIX:
  ------------------
  |  Branch (901:3): [True: 0, False: 23.6k]
  ------------------
  902|  12.4k|		case  cmOPRT_INFIX:
  ------------------
  |  Branch (902:3): [True: 12.4k, False: 11.2k]
  ------------------
  903|  23.6k|		case  cmFUNC:
  ------------------
  |  Branch (903:3): [True: 11.1k, False: 12.4k]
  ------------------
  904|  23.6k|			if (funTok.GetArgCount() == -1 && iArgCount == 0)
  ------------------
  |  Branch (904:8): [True: 4.04k, False: 19.5k]
  |  Branch (904:38): [True: 1, False: 4.04k]
  ------------------
  905|      1|				Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos(), funTok.GetAsString());
  906|       |
  907|  23.6k|			m_vRPN.AddFun(funTok.GetFuncAddr(), (funTok.GetArgCount() == -1) ? -iArgNumerical : iArgNumerical, funTok.IsOptimizable());
  ------------------
  |  Branch (907:40): [True: 4.04k, False: 19.5k]
  ------------------
  908|  23.6k|			break;
  909|      0|		default:
  ------------------
  |  Branch (909:3): [True: 0, False: 23.6k]
  ------------------
  910|      0|			break;
  911|  23.6k|		}
  912|       |
  913|       |		// Push dummy value representing the function result to the stack
  914|  23.6k|		token_type token;
  915|  23.6k|		token.SetVal(1);
  916|  23.6k|		a_stVal.push(token);
  917|  23.6k|	}
_ZNK2mu10ParserBase11ApplyIfElseERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  921|  3.06k|	{
  922|       |		// Check if there is an if Else clause to be calculated
  923|  43.0k|		while (a_stOpt.size() && a_stOpt.top().GetCode() == cmELSE)
  ------------------
  |  Branch (923:10): [True: 42.5k, False: 536]
  |  Branch (923:28): [True: 40.0k, False: 2.52k]
  ------------------
  924|  40.0k|		{
  925|  40.0k|			MUP_ASSERT(!a_stOpt.empty())
  ------------------
  |  |   78|  40.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 40.0k]
  |  |  ------------------
  |  |   79|  40.0k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  926|  40.0k|			token_type opElse = a_stOpt.top();
  927|  40.0k|			a_stOpt.pop();
  928|       |
  929|       |			// Take the value associated with the else branch from the value stack
  930|  40.0k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  40.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 40.0k]
  |  |  ------------------
  |  |   79|  40.0k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  931|  40.0k|			token_type vVal2 = a_stVal.top();
  932|  40.0k|			if (vVal2.GetType() != tpDBL)
  ------------------
  |  Branch (932:8): [True: 3, False: 40.0k]
  ------------------
  933|      3|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  934|       |			
  935|  40.0k|			a_stVal.pop();
  936|       |
  937|       |			// it then else is a ternary operator Pop all three values from the value s
  938|       |			// tack and just return the right value
  939|  40.0k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  40.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 1, False: 40.0k]
  |  |  ------------------
  |  |   79|  40.0k|            {														\
  |  |   80|      1|              stringstream_type ss;									\
  |  |   81|      1|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |   82|      1|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |   83|      1|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |   84|      1|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      1|            }
  ------------------
  940|  40.0k|			token_type vVal1 = a_stVal.top();
  941|  40.0k|			if (vVal1.GetType() != tpDBL)
  ------------------
  |  Branch (941:8): [True: 1, False: 40.0k]
  ------------------
  942|      1|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  943|       |
  944|  40.0k|			a_stVal.pop();
  945|       |
  946|  40.0k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  40.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 9, False: 40.0k]
  |  |  ------------------
  |  |   79|  40.0k|            {														\
  |  |   80|      9|              stringstream_type ss;									\
  |  |   81|      9|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      9|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      9|		#define _T(x) x
  |  |  ------------------
  |  |   82|      9|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      9|		#define _T(x) x
  |  |  ------------------
  |  |   83|      9|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      9|		#define _T(x) x
  |  |  ------------------
  |  |   84|      9|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      9|            }
  ------------------
  947|  40.0k|			token_type vExpr = a_stVal.top();
  948|  40.0k|			a_stVal.pop();
  949|       |
  950|  40.0k|			a_stVal.push((vExpr.GetVal() != 0) ? vVal1 : vVal2);
  ------------------
  |  Branch (950:17): [True: 3.08k, False: 36.9k]
  ------------------
  951|       |
  952|  40.0k|			token_type opIf = a_stOpt.top();
  953|  40.0k|			a_stOpt.pop();
  954|       |
  955|  40.0k|			MUP_ASSERT(opElse.GetCode() == cmELSE);
  ------------------
  |  |   78|  40.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 40.0k]
  |  |  ------------------
  |  |   79|  40.0k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  956|       |
  957|  40.0k|			if (opIf.GetCode() != cmIF)
  ------------------
  |  Branch (957:8): [True: 6, False: 40.0k]
  ------------------
  958|      6|				Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
  959|       |
  960|  40.0k|			m_vRPN.AddIfElse(cmENDIF);
  961|  40.0k|		} // while pending if-else-clause found
  962|  3.06k|	}
_ZNK2mu10ParserBase12ApplyBinOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  969|   150k|	{
  970|       |		// is it a user defined binary operator?
  971|   150k|		if (a_stOpt.top().GetCode() == cmOPRT_BIN)
  ------------------
  |  Branch (971:7): [True: 0, False: 150k]
  ------------------
  972|      0|		{
  973|      0|			ApplyFunc(a_stOpt, a_stVal, 2);
  974|      0|		}
  975|   150k|		else
  976|   150k|		{
  977|   150k|			if (a_stVal.size() < 2)
  ------------------
  |  Branch (977:8): [True: 1, False: 150k]
  ------------------
  978|      1|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), _T("ApplyBinOprt: not enough values in value stack!"));
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
  979|       |
  980|   150k|			token_type valTok1 = a_stVal.top();
  981|   150k|			a_stVal.pop();
  982|       |
  983|   150k|			token_type valTok2 = a_stVal.top();
  984|   150k|			a_stVal.pop();
  985|       |
  986|   150k|			token_type optTok = a_stOpt.top();
  987|   150k|			a_stOpt.pop();
  988|       |
  989|   150k|			token_type resTok;
  990|       |
  991|   150k|			if (valTok1.GetType() != valTok2.GetType() ||
  ------------------
  |  Branch (991:8): [True: 32, False: 150k]
  ------------------
  992|   150k|				(valTok1.GetType() == tpSTR && valTok2.GetType() == tpSTR))
  ------------------
  |  Branch (992:6): [True: 14, False: 150k]
  |  Branch (992:36): [True: 14, False: 0]
  ------------------
  993|     45|				Error(ecOPRT_TYPE_CONFLICT, m_pTokenReader->GetPos(), optTok.GetAsString());
  994|       |
  995|   150k|			if (optTok.GetCode() == cmASSIGN)
  ------------------
  |  Branch (995:8): [True: 0, False: 150k]
  ------------------
  996|      0|			{
  997|      0|				if (valTok2.GetCode() != cmVAR)
  ------------------
  |  Branch (997:9): [True: 0, False: 0]
  ------------------
  998|      0|					Error(ecUNEXPECTED_OPERATOR, -1, _T("="));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  999|       |
 1000|      0|				m_vRPN.AddAssignOp(valTok2.GetVar());
 1001|      0|			}
 1002|   150k|			else
 1003|   150k|				m_vRPN.AddOp(optTok.GetCode());
 1004|       |
 1005|   150k|			resTok.SetVal(1);
 1006|   150k|			a_stVal.push(resTok);
 1007|   150k|		}
 1008|   150k|	}
_ZNK2mu10ParserBase18ApplyRemainingOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
 1016|   660k|	{
 1017|   706k|		while (stOpt.size() &&
  ------------------
  |  Branch (1017:10): [True: 630k, False: 75.6k]
  ------------------
 1018|   630k|			stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1018:4): [True: 249k, False: 380k]
  ------------------
 1019|   249k|			stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1019:4): [True: 45.6k, False: 203k]
  ------------------
 1020|  45.6k|		{
 1021|  45.6k|			token_type tok = stOpt.top();
 1022|  45.6k|			switch (tok.GetCode())
 1023|  45.6k|			{
 1024|  3.76k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1024:4): [True: 3.76k, False: 41.8k]
  ------------------
 1025|  3.76k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1025:4): [True: 0, False: 45.6k]
  ------------------
 1026|  4.11k|			case cmLE:
  ------------------
  |  Branch (1026:4): [True: 344, False: 45.2k]
  ------------------
 1027|  4.45k|			case cmGE:
  ------------------
  |  Branch (1027:4): [True: 343, False: 45.3k]
  ------------------
 1028|  4.71k|			case cmNEQ:
  ------------------
  |  Branch (1028:4): [True: 265, False: 45.3k]
  ------------------
 1029|  5.02k|			case cmEQ:
  ------------------
  |  Branch (1029:4): [True: 310, False: 45.3k]
  ------------------
 1030|  5.93k|			case cmLT:
  ------------------
  |  Branch (1030:4): [True: 902, False: 44.7k]
  ------------------
 1031|  6.35k|			case cmGT:
  ------------------
  |  Branch (1031:4): [True: 426, False: 45.2k]
  ------------------
 1032|  7.34k|			case cmADD:
  ------------------
  |  Branch (1032:4): [True: 987, False: 44.6k]
  ------------------
 1033|  9.13k|			case cmSUB:
  ------------------
  |  Branch (1033:4): [True: 1.78k, False: 43.8k]
  ------------------
 1034|  9.92k|			case cmMUL:
  ------------------
  |  Branch (1034:4): [True: 791, False: 44.8k]
  ------------------
 1035|  10.9k|			case cmDIV:
  ------------------
  |  Branch (1035:4): [True: 996, False: 44.6k]
  ------------------
 1036|  40.7k|			case cmPOW:
  ------------------
  |  Branch (1036:4): [True: 29.7k, False: 15.8k]
  ------------------
 1037|  41.7k|			case cmLAND:
  ------------------
  |  Branch (1037:4): [True: 1.00k, False: 44.6k]
  ------------------
 1038|  42.5k|			case cmLOR:
  ------------------
  |  Branch (1038:4): [True: 858, False: 44.7k]
  ------------------
 1039|  42.5k|			case cmASSIGN:
  ------------------
  |  Branch (1039:4): [True: 0, False: 45.6k]
  ------------------
 1040|  42.5k|				if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1040:9): [True: 3.76k, False: 38.8k]
  ------------------
 1041|  3.76k|					ApplyFunc(stOpt, stVal, 1);
 1042|  38.8k|				else
 1043|  38.8k|					ApplyBinOprt(stOpt, stVal);
 1044|  42.5k|				break;
 1045|       |
 1046|  3.06k|			case cmELSE:
  ------------------
  |  Branch (1046:4): [True: 3.06k, False: 42.5k]
  ------------------
 1047|  3.06k|				ApplyIfElse(stOpt, stVal);
 1048|  3.06k|				break;
 1049|       |
 1050|      0|			default:
  ------------------
  |  Branch (1050:4): [True: 0, False: 45.6k]
  ------------------
 1051|      0|				Error(ecINTERNAL_ERROR);
 1052|  45.6k|			}
 1053|  45.6k|		}
 1054|   660k|	}
_ZNK2mu10ParserBase12ParseCmdCodeEv:
 1065|  1.06k|	{
 1066|  1.06k|		return ParseCmdCodeBulk(0, 0);
 1067|  1.06k|	}
_ZNK2mu10ParserBase17ParseCmdCodeShortEv:
 1070|    749|	{
 1071|    749|		const SToken *const tok = m_vRPN.GetBase();
 1072|    749|		value_type buf;
 1073|       |
 1074|    749|		switch (tok->Cmd)
 1075|    749|		{
 1076|    747|		case cmVAL:		
  ------------------
  |  Branch (1076:3): [True: 747, False: 2]
  ------------------
 1077|    747|			return tok->Val.data2;
 1078|       |
 1079|      0|		case cmVAR:
  ------------------
  |  Branch (1079:3): [True: 0, False: 749]
  ------------------
 1080|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1080:8): [True: 0, False: 0]
  ------------------
 1081|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1082|      0|			return *tok->Val.ptr;
 1083|       |
 1084|      0|		case cmVARMUL:
  ------------------
  |  Branch (1084:3): [True: 0, False: 749]
  ------------------
 1085|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1085:8): [True: 0, False: 0]
  ------------------
 1086|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1087|      0|			return *tok->Val.ptr * tok->Val.data + tok->Val.data2;
 1088|       |
 1089|      0|		case cmVARPOW2:
  ------------------
  |  Branch (1089:3): [True: 0, False: 749]
  ------------------
 1090|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1090:8): [True: 0, False: 0]
  ------------------
 1091|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1092|      0|			buf = *(tok->Val.ptr);
 1093|      0|			return buf * buf;
 1094|       |
 1095|      0|		case  cmVARPOW3:
  ------------------
  |  Branch (1095:3): [True: 0, False: 749]
  ------------------
 1096|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1096:8): [True: 0, False: 0]
  ------------------
 1097|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1098|      0|			buf = *(tok->Val.ptr);
 1099|      0|			return buf * buf * buf;
 1100|       |
 1101|      0|		case  cmVARPOW4:
  ------------------
  |  Branch (1101:3): [True: 0, False: 749]
  ------------------
 1102|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1102:8): [True: 0, False: 0]
  ------------------
 1103|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1104|      0|			buf = *(tok->Val.ptr);
 1105|      0|			return buf * buf * buf * buf;
 1106|       |
 1107|       |		// numerical function without any argument
 1108|      2|		case cmFUNC:
  ------------------
  |  Branch (1108:3): [True: 2, False: 747]
  ------------------
 1109|      2|			return tok->Fun.cb.call_fun<0>();
 1110|       |
 1111|       |		// String function without a numerical argument
 1112|      0|		case cmFUNC_STR:
  ------------------
  |  Branch (1112:3): [True: 0, False: 749]
  ------------------
 1113|      0|			if (m_vStringBuf.empty())
  ------------------
  |  Branch (1113:8): [True: 0, False: 0]
  ------------------
 1114|      0|				throw ParserError(ecINTERNAL_ERROR);
 1115|       |
 1116|      0|			return tok->Fun.cb.call_strfun<1>(m_vStringBuf[0].c_str());
 1117|       |
 1118|      0|		default:
  ------------------
  |  Branch (1118:3): [True: 0, False: 749]
  ------------------
 1119|      0|			throw ParserError(ecINTERNAL_ERROR);
 1120|    749|		}
 1121|    749|	}
_ZNK2mu10ParserBase16ParseCmdCodeBulkEii:
 1129|  1.06k|	{
 1130|  1.06k|		assert(nThreadID <= s_MaxNumOpenMPThreads);
 1131|       |
 1132|       |		// Note: The check for nOffset==0 and nThreadID here is not necessary but 
 1133|       |		//       brings a minor performance gain when not in bulk mode.
 1134|  1.06k|		value_type *stack = ((nOffset == 0) && (nThreadID == 0)) ? &m_vStackBuffer[0] : &m_vStackBuffer[nThreadID * (m_vStackBuffer.size() / s_MaxNumOpenMPThreads)];
  ------------------
  |  Branch (1134:24): [True: 1.06k, False: 0]
  |  Branch (1134:42): [True: 1.06k, False: 0]
  ------------------
 1135|       |		
 1136|  1.06k|		const int iStackMaxSize = (int)(m_vStackBuffer.size() / s_MaxNumOpenMPThreads);
 1137|       |
 1138|  1.06k|		value_type buf;
 1139|  1.06k|		int sidx(0);
 1140|   565k|		for (const SToken* pTok = m_vRPN.GetBase(); pTok->Cmd != cmEND; ++pTok)
  ------------------
  |  Branch (1140:47): [True: 564k, False: 1.06k]
  ------------------
 1141|   564k|		{
 1142|   564k|			switch (pTok->Cmd)
 1143|   564k|			{
 1144|       |			// built in binary operators
 1145|    245|			case  cmLE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] <= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    245|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 245]
  |  |  ------------------
  |  |   79|    245|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1145:4): [True: 245, False: 564k]
  ------------------
 1146|    286|			case  cmGE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] >= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    286|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 286]
  |  |  ------------------
  |  |   79|    286|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1146:4): [True: 286, False: 564k]
  ------------------
 1147|    232|			case  cmNEQ:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] != stack[sidx + 1]; continue;
  ------------------
  |  |   78|    232|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 232]
  |  |  ------------------
  |  |   79|    232|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1147:4): [True: 232, False: 564k]
  ------------------
 1148|    240|			case  cmEQ:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] == stack[sidx + 1]; continue;
  ------------------
  |  |   78|    240|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 240]
  |  |  ------------------
  |  |   79|    240|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1148:4): [True: 240, False: 564k]
  ------------------
 1149|  1.45k|			case  cmLT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] < stack[sidx + 1];  continue;
  ------------------
  |  |   78|  1.45k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.45k]
  |  |  ------------------
  |  |   79|  1.45k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1149:4): [True: 1.45k, False: 563k]
  ------------------
 1150|    459|			case  cmGT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] > stack[sidx + 1];  continue;
  ------------------
  |  |   78|    459|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 459]
  |  |  ------------------
  |  |   79|    459|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1150:4): [True: 459, False: 564k]
  ------------------
 1151|    453|			case  cmADD:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] += stack[1 + sidx]; continue;
  ------------------
  |  |   78|    453|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 453]
  |  |  ------------------
  |  |   79|    453|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1151:4): [True: 453, False: 564k]
  ------------------
 1152|    658|			case  cmSUB:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] -= stack[1 + sidx]; continue;
  ------------------
  |  |   78|    658|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 658]
  |  |  ------------------
  |  |   79|    658|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1152:4): [True: 658, False: 563k]
  ------------------
 1153|  5.61k|			case  cmMUL:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] *= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  5.61k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 5.61k]
  |  |  ------------------
  |  |   79|  5.61k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1153:4): [True: 5.61k, False: 559k]
  ------------------
 1154|    556|			case  cmDIV:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] /= stack[1 + sidx]; continue;
  ------------------
  |  |   78|    556|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 556]
  |  |  ------------------
  |  |   79|    556|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1154:4): [True: 556, False: 564k]
  ------------------
 1155|  75.3k|			case  cmPOW:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = MathImpl<value_type>::Pow(stack[sidx], stack[1 + sidx]); continue;
  ------------------
  |  |   78|  75.3k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 75.3k]
  |  |  ------------------
  |  |   79|  75.3k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1155:4): [True: 75.3k, False: 489k]
  ------------------
 1156|    495|			case  cmLAND:   --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] && stack[sidx + 1]; continue;
  ------------------
  |  |   78|    495|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 495]
  |  |  ------------------
  |  |   79|    495|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1156:4): [True: 495, False: 564k]
  |  Branch (1156:65): [True: 291, False: 204]
  |  Branch (1156:80): [True: 259, False: 32]
  ------------------
 1157|    679|			case  cmLOR:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] || stack[sidx + 1]; continue;
  ------------------
  |  |   78|    679|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 679]
  |  |  ------------------
  |  |   79|    679|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1157:4): [True: 679, False: 563k]
  |  Branch (1157:65): [True: 387, False: 292]
  |  Branch (1157:80): [True: 59, False: 233]
  ------------------
 1158|      0|			case  cmASSIGN: --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = *(pTok->Oprt.ptr + nOffset) = stack[sidx + 1]; continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1158:4): [True: 0, False: 564k]
  ------------------
 1159|       |
 1160|  4.83k|			case  cmIF:
  ------------------
  |  Branch (1160:4): [True: 4.83k, False: 559k]
  ------------------
 1161|  4.83k|				if (stack[sidx--] == 0)
  ------------------
  |  Branch (1161:9): [True: 4.17k, False: 665]
  ------------------
 1162|  4.17k|					pTok += pTok->Oprt.offset;
 1163|       |
 1164|  4.83k|				MUP_ASSERT(sidx >= 0);
  ------------------
  |  |   78|  4.83k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 4.83k]
  |  |  ------------------
  |  |   79|  4.83k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1165|  4.83k|				continue;
 1166|       |
 1167|    665|			case  cmELSE:
  ------------------
  |  Branch (1167:4): [True: 665, False: 563k]
  ------------------
 1168|    665|				pTok += pTok->Oprt.offset;
 1169|    665|				continue;
 1170|       |
 1171|  4.17k|			case  cmENDIF:
  ------------------
  |  Branch (1171:4): [True: 4.17k, False: 560k]
  ------------------
 1172|  4.17k|				continue;
 1173|       |
 1174|       |				// value and variable tokens
 1175|      0|			case  cmVAR:    MUP_ASSERT(sidx < iStackMaxSize); stack[++sidx] = *(pTok->Val.ptr + nOffset);  continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1175:4): [True: 0, False: 564k]
  ------------------
 1176|   463k|			case  cmVAL:    MUP_ASSERT(sidx < iStackMaxSize); stack[++sidx] = pTok->Val.data2;  continue;
  ------------------
  |  |   78|   463k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 463k]
  |  |  ------------------
  |  |   79|   463k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1176:4): [True: 463k, False: 101k]
  ------------------
 1177|       |
 1178|      0|			case  cmVARPOW2: 
  ------------------
  |  Branch (1178:4): [True: 0, False: 564k]
  ------------------
 1179|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1180|      0|				buf = *(pTok->Val.ptr + nOffset);
 1181|      0|				stack[++sidx] = buf * buf;
 1182|      0|				continue;
 1183|       |
 1184|      0|			case  cmVARPOW3: 
  ------------------
  |  Branch (1184:4): [True: 0, False: 564k]
  ------------------
 1185|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1186|      0|				buf = *(pTok->Val.ptr + nOffset);
 1187|      0|				stack[++sidx] = buf * buf * buf;
 1188|      0|				continue;
 1189|       |
 1190|      0|			case  cmVARPOW4: 
  ------------------
  |  Branch (1190:4): [True: 0, False: 564k]
  ------------------
 1191|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1192|      0|				buf = *(pTok->Val.ptr + nOffset);
 1193|      0|				stack[++sidx] = buf * buf * buf * buf;
 1194|      0|				continue;
 1195|       |
 1196|      0|			case  cmVARMUL:  
  ------------------
  |  Branch (1196:4): [True: 0, False: 564k]
  ------------------
 1197|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1198|      0|				stack[++sidx] = *(pTok->Val.ptr + nOffset) * pTok->Val.data + pTok->Val.data2;
 1199|      0|				continue;
 1200|       |
 1201|       |				// Next is treatment of numeric functions
 1202|  5.10k|			case  cmFUNC:
  ------------------
  |  Branch (1202:4): [True: 5.10k, False: 559k]
  ------------------
 1203|  5.10k|			{
 1204|  5.10k|				int iArgCount = pTok->Fun.argc;
 1205|       |
 1206|       |				// switch according to argument count
 1207|  5.10k|				switch (iArgCount)
 1208|  5.10k|				{
 1209|    790|				case 0: sidx += 1; MUP_ASSERT(sidx < iStackMaxSize); stack[sidx] = pTok->Fun.cb.call_fun<0 >(); continue;
  ------------------
  |  |   78|    790|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 790]
  |  |  ------------------
  |  |   79|    790|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1209:5): [True: 790, False: 4.31k]
  ------------------
 1210|    494|				case 1:                                              stack[sidx] = pTok->Fun.cb.call_fun<1 >(stack[sidx]); continue;
  ------------------
  |  Branch (1210:5): [True: 494, False: 4.60k]
  ------------------
 1211|    221|				case 2: sidx -= 1; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<2 >(stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  |   78|    221|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 221]
  |  |  ------------------
  |  |   79|    221|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1211:5): [True: 221, False: 4.87k]
  ------------------
 1212|      0|				case 3: sidx -= 2; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<3 >(stack[sidx], stack[sidx + 1], stack[sidx + 2]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1212:5): [True: 0, False: 5.10k]
  ------------------
 1213|      0|				case 4: sidx -= 3; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<4 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1213:5): [True: 0, False: 5.10k]
  ------------------
 1214|      0|				case 5: sidx -= 4; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<5 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1214:5): [True: 0, False: 5.10k]
  ------------------
 1215|      0|				case 6: sidx -= 5; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<6 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1215:5): [True: 0, False: 5.10k]
  ------------------
 1216|      0|				case 7: sidx -= 6; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<7 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1216:5): [True: 0, False: 5.10k]
  ------------------
 1217|      0|				case 8: sidx -= 7; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<8 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1217:5): [True: 0, False: 5.10k]
  ------------------
 1218|      0|				case 9: sidx -= 8; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<9 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1218:5): [True: 0, False: 5.10k]
  ------------------
 1219|      0|				case 10:sidx -= 9; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<10>(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8], stack[sidx + 9]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1219:5): [True: 0, False: 5.10k]
  ------------------
 1220|  3.59k|				default:
  ------------------
  |  Branch (1220:5): [True: 3.59k, False: 1.50k]
  ------------------
 1221|       |					// function with variable arguments store the number as a negative value
 1222|  3.59k|					if (iArgCount > 0)
  ------------------
  |  Branch (1222:10): [True: 0, False: 3.59k]
  ------------------
 1223|      0|						Error(ecINTERNAL_ERROR, -1);
 1224|       |
 1225|  3.59k|					sidx -= -iArgCount - 1;
 1226|  3.59k|					MUP_ASSERT(sidx>=0 && sidx < iStackMaxSize);
  ------------------
  |  |   78|  7.19k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 3.59k, False: 0]
  |  |  |  Branch (78:19): [True: 3.59k, False: 0]
  |  |  ------------------
  |  |   79|  3.59k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1227|       |
 1228|  3.59k|					stack[sidx] = pTok->Fun.cb.call_multfun(&stack[sidx], -iArgCount);
 1229|  3.59k|					continue;
 1230|  5.10k|				}
 1231|  5.10k|			}
 1232|       |
 1233|       |			// Next is treatment of string functions
 1234|      0|			case  cmFUNC_STR:
  ------------------
  |  Branch (1234:4): [True: 0, False: 564k]
  ------------------
 1235|      0|			{
 1236|      0|				sidx -= pTok->Fun.argc - 1;
 1237|      0|				MUP_ASSERT(sidx >= 0 && sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1238|       |
 1239|       |				// The index of the string argument in the string table
 1240|      0|				int iIdxStack = pTok->Fun.idx;
 1241|      0|				if (iIdxStack < 0 || iIdxStack >= (int)m_vStringBuf.size())
  ------------------
  |  Branch (1241:9): [True: 0, False: 0]
  |  Branch (1241:26): [True: 0, False: 0]
  ------------------
 1242|      0|					Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos());
 1243|       |
 1244|      0|				switch (pTok->Fun.argc)  // switch according to argument count
  ------------------
  |  Branch (1244:13): [True: 0, False: 0]
  ------------------
 1245|      0|				{
 1246|      0|				case 0: stack[sidx] = pTok->Fun.cb.call_strfun<1>(m_vStringBuf[iIdxStack].c_str()); continue;
  ------------------
  |  Branch (1246:5): [True: 0, False: 0]
  ------------------
 1247|      0|				case 1: stack[sidx] = pTok->Fun.cb.call_strfun<2>(m_vStringBuf[iIdxStack].c_str(), stack[sidx]); continue;
  ------------------
  |  Branch (1247:5): [True: 0, False: 0]
  ------------------
 1248|      0|				case 2: stack[sidx] = pTok->Fun.cb.call_strfun<3>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  Branch (1248:5): [True: 0, False: 0]
  ------------------
 1249|      0|				case 3: stack[sidx] = pTok->Fun.cb.call_strfun<4>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1], stack[sidx + 2]); continue;
  ------------------
  |  Branch (1249:5): [True: 0, False: 0]
  ------------------
 1250|      0|				case 4: stack[sidx] = pTok->Fun.cb.call_strfun<5>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3]); continue;
  ------------------
  |  Branch (1250:5): [True: 0, False: 0]
  ------------------
 1251|      0|				case 5: stack[sidx] = pTok->Fun.cb.call_strfun<6>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4]); continue;
  ------------------
  |  Branch (1251:5): [True: 0, False: 0]
  ------------------
 1252|      0|				}
 1253|       |
 1254|      0|				continue;
 1255|      0|			}
 1256|       |
 1257|      0|			case  cmFUNC_BULK:
  ------------------
  |  Branch (1257:4): [True: 0, False: 564k]
  ------------------
 1258|      0|			{
 1259|      0|				int iArgCount = pTok->Fun.argc;
 1260|       |
 1261|       |				// switch according to argument count
 1262|      0|				switch (iArgCount)
 1263|      0|				{
 1264|      0|				case 0: sidx += 1;  MUP_ASSERT(sidx < iStackMaxSize); stack[sidx] = pTok->Fun.cb.call_bulkfun<0 >(nOffset, nThreadID); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1264:5): [True: 0, False: 0]
  ------------------
 1265|      0|				case 1:            stack[sidx] = pTok->Fun.cb.call_bulkfun<1 >(nOffset, nThreadID, stack[sidx]); continue;
  ------------------
  |  Branch (1265:5): [True: 0, False: 0]
  ------------------
 1266|      0|				case 2: sidx -= 1; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<2 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1266:5): [True: 0, False: 0]
  ------------------
 1267|      0|				case 3: sidx -= 2; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<3 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1267:5): [True: 0, False: 0]
  ------------------
 1268|      0|				case 4: sidx -= 3; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<4 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1268:5): [True: 0, False: 0]
  ------------------
 1269|      0|				case 5: sidx -= 4; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<5 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1269:5): [True: 0, False: 0]
  ------------------
 1270|      0|				case 6: sidx -= 5; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<6 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1270:5): [True: 0, False: 0]
  ------------------
 1271|      0|				case 7: sidx -= 6; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<7 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1271:5): [True: 0, False: 0]
  ------------------
 1272|      0|				case 8: sidx -= 7; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<8 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1272:5): [True: 0, False: 0]
  ------------------
 1273|      0|				case 9: sidx -= 8; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<9 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1273:5): [True: 0, False: 0]
  ------------------
 1274|      0|				case 10:sidx -= 9; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<10>(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8], stack[sidx + 9]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1274:5): [True: 0, False: 0]
  ------------------
 1275|      0|				default:
  ------------------
  |  Branch (1275:5): [True: 0, False: 0]
  ------------------
 1276|      0|					throw exception_type(ecINTERNAL_ERROR, 2, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1277|      0|				}
 1278|      0|			}
 1279|       |
 1280|      0|			default:
  ------------------
  |  Branch (1280:4): [True: 0, False: 564k]
  ------------------
 1281|      0|				throw exception_type(ecINTERNAL_ERROR, 3, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1282|   564k|			} // switch CmdCode
 1283|   564k|		} // for all bytecode tokens
 1284|       |
 1285|  1.06k|		return stack[m_nFinalResultIdx];
 1286|  1.06k|	}
_ZNK2mu10ParserBase9CreateRPNEv:
 1290|  3.93k|	{
 1291|  3.93k|		if (!m_pTokenReader->GetExpr().length())
  ------------------
  |  Branch (1291:7): [True: 0, False: 3.93k]
  ------------------
 1292|      0|			Error(ecUNEXPECTED_EOF, 0);
 1293|       |
 1294|  3.93k|		std::stack<token_type> stOpt, stVal;
 1295|  3.93k|		std::stack<int> stArgCount;
 1296|  3.93k|		token_type opta, opt;  // for storing operators
 1297|  3.93k|		token_type val, tval;  // for storing value
 1298|  3.93k|		int ifElseCounter = 0;
 1299|       |
 1300|  3.93k|		ReInit();
 1301|       |
 1302|       |		// The outermost counter counts the number of separated items
 1303|       |		// such as in "a=10,b=20,c=c+a"
 1304|  3.93k|		stArgCount.push(1);
 1305|       |
 1306|  3.93k|		for (;;)
 1307|  2.24M|		{
 1308|  2.24M|			opt = m_pTokenReader->ReadNextToken();
 1309|       |
 1310|  2.24M|			switch (opt.GetCode())
 1311|  2.24M|			{
 1312|       |			//
 1313|       |			// Next three are different kind of value entries
 1314|       |			//
 1315|  11.3k|			case cmSTRING:
  ------------------
  |  Branch (1315:4): [True: 11.3k, False: 2.23M]
  ------------------
 1316|  11.3k|				if (stOpt.empty())
  ------------------
  |  Branch (1316:9): [True: 70, False: 11.2k]
  ------------------
 1317|     70|					Error(ecSTR_RESULT, m_pTokenReader->GetPos(), opt.GetAsString());
 1318|       |
 1319|  11.3k|				stVal.push(opt);
 1320|  11.3k|				break;
 1321|       |
 1322|      0|			case cmVAR:
  ------------------
  |  Branch (1322:4): [True: 0, False: 2.24M]
  ------------------
 1323|      0|				stVal.push(opt);
 1324|      0|				m_vRPN.AddVar(static_cast<value_type*>(opt.GetVar()));
 1325|      0|				break;
 1326|       |
 1327|   865k|			case cmVAL:
  ------------------
  |  Branch (1327:4): [True: 865k, False: 1.38M]
  ------------------
 1328|   865k|				stVal.push(opt);
 1329|   865k|				m_vRPN.AddVal(opt.GetVal());
 1330|   865k|				break;
 1331|       |
 1332|  82.3k|			case cmELSE:
  ------------------
  |  Branch (1332:4): [True: 82.3k, False: 2.16M]
  ------------------
 1333|  82.3k|				if (stArgCount.empty())
  ------------------
  |  Branch (1333:9): [True: 0, False: 82.3k]
  ------------------
 1334|      0|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1335|       |
 1336|  82.3k|				if (stArgCount.top() > 1)
  ------------------
  |  Branch (1336:9): [True: 16, False: 82.3k]
  ------------------
 1337|     16|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1338|       |
 1339|  82.3k|				stArgCount.pop();
 1340|       |
 1341|  82.3k|				ifElseCounter--;
 1342|  82.3k|				if (ifElseCounter < 0)
  ------------------
  |  Branch (1342:9): [True: 13, False: 82.3k]
  ------------------
 1343|     13|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1344|       |
 1345|  82.3k|				ApplyRemainingOprt(stOpt, stVal);
 1346|  82.3k|				m_vRPN.AddIfElse(cmELSE);
 1347|  82.3k|				stOpt.push(opt);
 1348|  82.3k|				break;
 1349|       |
 1350|   439k|			case cmARG_SEP:
  ------------------
  |  Branch (1350:4): [True: 439k, False: 1.80M]
  ------------------
 1351|   439k|				if (!stOpt.empty() && stOpt.top().GetCode() == cmIF)
  ------------------
  |  Branch (1351:9): [True: 370k, False: 68.6k]
  |  Branch (1351:27): [True: 4, False: 370k]
  ------------------
 1352|      4|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1353|       |
 1354|   439k|				if (stArgCount.empty())
  ------------------
  |  Branch (1354:9): [True: 0, False: 439k]
  ------------------
 1355|      0|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1356|       |
 1357|   439k|				++stArgCount.top();
 1358|       |				// Falls through.
 1359|       |				// intentional (no break!)
 1360|       |
 1361|   441k|			case cmEND:
  ------------------
  |  Branch (1361:4): [True: 2.06k, False: 2.24M]
  ------------------
 1362|   441k|				ApplyRemainingOprt(stOpt, stVal);
 1363|   441k|				break;
 1364|       |
 1365|   137k|			case cmBC:
  ------------------
  |  Branch (1365:4): [True: 137k, False: 2.11M]
  ------------------
 1366|   137k|			{
 1367|       |				// The argument count for parameterless functions is zero
 1368|       |				// by default an opening bracket sets parameter count to 1
 1369|       |				// in preparation of arguments to come. If the last token
 1370|       |				// was an opening bracket we know better...
 1371|   137k|				if (opta.GetCode() == cmBO)
  ------------------
  |  Branch (1371:9): [True: 989, False: 136k]
  ------------------
 1372|    989|					--stArgCount.top();
 1373|       |
 1374|   137k|				ApplyRemainingOprt(stOpt, stVal);
 1375|       |
 1376|       |				// Check if the bracket content has been evaluated completely
 1377|   137k|				if (stOpt.size() && stOpt.top().GetCode() == cmBO)
  ------------------
  |  Branch (1377:9): [True: 136k, False: 4]
  |  Branch (1377:25): [True: 16.4k, False: 120k]
  ------------------
 1378|  16.4k|				{
 1379|       |					// if opt is ")" and opta is "(" the bracket has been evaluated, now its time to check
 1380|       |					// if there is either a function or a sign pending
 1381|       |					// neither the opening nor the closing bracket will be pushed back to
 1382|       |					// the operator stack
 1383|       |					// Check if a function is standing in front of the opening bracket, 
 1384|       |					// if yes evaluate it afterwards check for infix operators
 1385|  16.4k|					MUP_ASSERT(stArgCount.size());
  ------------------
  |  |   78|  16.4k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 16.4k]
  |  |  ------------------
  |  |   79|  16.4k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1386|  16.4k|					int iArgCount = stArgCount.top();
 1387|  16.4k|					stArgCount.pop();
 1388|       |
 1389|  16.4k|					stOpt.pop(); // Take opening bracket from stack
 1390|       |
 1391|  16.4k|					if (iArgCount > 1 && (stOpt.size() == 0 ||
  ------------------
  |  Branch (1391:10): [True: 3.18k, False: 13.3k]
  |  Branch (1391:28): [True: 1, False: 3.18k]
  ------------------
 1392|  3.18k|						(stOpt.top().GetCode() != cmFUNC &&
  ------------------
  |  Branch (1392:8): [True: 21, False: 3.16k]
  ------------------
 1393|     21|							stOpt.top().GetCode() != cmFUNC_BULK &&
  ------------------
  |  Branch (1393:8): [True: 21, False: 0]
  ------------------
 1394|     21|							stOpt.top().GetCode() != cmFUNC_STR)))
  ------------------
  |  Branch (1394:8): [True: 21, False: 0]
  ------------------
 1395|     22|						Error(ecUNEXPECTED_ARG, m_pTokenReader->GetPos());
 1396|       |
 1397|       |					// The opening bracket was popped from the stack now check if there
 1398|       |					// was a function before this bracket
 1399|  16.4k|					if (stOpt.size() &&
  ------------------
  |  Branch (1399:10): [True: 16.1k, False: 352]
  |  Branch (1399:10): [True: 11.2k, False: 5.28k]
  ------------------
 1400|  16.1k|						stOpt.top().GetCode() != cmOPRT_INFIX &&
  ------------------
  |  Branch (1400:7): [True: 15.7k, False: 354]
  ------------------
 1401|  15.7k|						stOpt.top().GetCode() != cmOPRT_BIN &&
  ------------------
  |  Branch (1401:7): [True: 15.7k, False: 0]
  ------------------
 1402|  15.7k|						stOpt.top().GetFuncAddr() != 0)
  ------------------
  |  Branch (1402:7): [True: 11.2k, False: 4.58k]
  ------------------
 1403|  11.2k|					{
 1404|  11.2k|						ApplyFunc(stOpt, stVal, iArgCount);
 1405|  11.2k|					}
 1406|  16.4k|				}
 1407|   137k|			} // if bracket content is evaluated
 1408|   137k|			break;
 1409|       |
 1410|       |			//
 1411|       |			// Next are the binary operator entries
 1412|       |			//
 1413|   141k|			case cmIF:
  ------------------
  |  Branch (1413:4): [True: 141k, False: 2.10M]
  ------------------
 1414|   141k|				ifElseCounter++;
 1415|   141k|				if (ifElseCounter > MaxNestingDepth)
  ------------------
  |  Branch (1415:9): [True: 1, False: 141k]
  ------------------
 1416|      1|					Error(ecNESTING_LIMIT, m_pTokenReader->GetPos());
 1417|       |
 1418|   141k|				stArgCount.push(1);
 1419|       |				// Falls through.
 1420|       |				// intentional (no break!)
 1421|       |
 1422|   145k|			case cmLAND:
  ------------------
  |  Branch (1422:4): [True: 4.59k, False: 2.24M]
  ------------------
 1423|   148k|			case cmLOR:
  ------------------
  |  Branch (1423:4): [True: 2.44k, False: 2.24M]
  ------------------
 1424|   152k|			case cmLT:
  ------------------
  |  Branch (1424:4): [True: 3.80k, False: 2.24M]
  ------------------
 1425|   154k|			case cmGT:
  ------------------
  |  Branch (1425:4): [True: 2.16k, False: 2.24M]
  ------------------
 1426|   155k|			case cmLE:
  ------------------
  |  Branch (1426:4): [True: 1.17k, False: 2.24M]
  ------------------
 1427|   156k|			case cmGE:
  ------------------
  |  Branch (1427:4): [True: 1.08k, False: 2.24M]
  ------------------
 1428|   157k|			case cmNEQ:
  ------------------
  |  Branch (1428:4): [True: 854, False: 2.24M]
  ------------------
 1429|   158k|			case cmEQ:
  ------------------
  |  Branch (1429:4): [True: 1.06k, False: 2.24M]
  ------------------
 1430|   166k|			case cmADD:
  ------------------
  |  Branch (1430:4): [True: 8.53k, False: 2.23M]
  ------------------
 1431|   171k|			case cmSUB:
  ------------------
  |  Branch (1431:4): [True: 4.59k, False: 2.24M]
  ------------------
 1432|   180k|			case cmMUL:
  ------------------
  |  Branch (1432:4): [True: 8.77k, False: 2.23M]
  ------------------
 1433|   184k|			case cmDIV:
  ------------------
  |  Branch (1433:4): [True: 3.67k, False: 2.24M]
  ------------------
 1434|   354k|			case cmPOW:
  ------------------
  |  Branch (1434:4): [True: 170k, False: 2.07M]
  ------------------
 1435|   354k|			case cmASSIGN:
  ------------------
  |  Branch (1435:4): [True: 0, False: 2.24M]
  ------------------
 1436|   354k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1436:4): [True: 0, False: 2.24M]
  ------------------
 1437|       |
 1438|       |				// A binary operator (user defined or built in) has been found. 
 1439|   354k|				while (
 1440|   474k|					stOpt.size() &&
  ------------------
  |  Branch (1440:6): [True: 450k, False: 23.8k]
  ------------------
 1441|   450k|					stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1441:6): [True: 439k, False: 11.7k]
  ------------------
 1442|   439k|					stOpt.top().GetCode() != cmELSE &&
  ------------------
  |  Branch (1442:6): [True: 358k, False: 80.3k]
  ------------------
 1443|   358k|					stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1443:6): [True: 297k, False: 60.8k]
  ------------------
 1444|   297k|				{
 1445|   297k|					int nPrec1 = GetOprtPrecedence(stOpt.top()),
 1446|   297k|						nPrec2 = GetOprtPrecedence(opt);
 1447|       |
 1448|   297k|					if (stOpt.top().GetCode() == opt.GetCode())
  ------------------
  |  Branch (1448:10): [True: 151k, False: 146k]
  ------------------
 1449|   151k|					{
 1450|       |
 1451|       |						// Deal with operator associativity
 1452|   151k|						EOprtAssociativity eOprtAsct = GetOprtAssociativity(opt);
 1453|   151k|						if ((eOprtAsct == oaRIGHT && (nPrec1 <= nPrec2)) ||
  ------------------
  |  Branch (1453:12): [True: 124k, False: 27.0k]
  |  Branch (1453:36): [True: 124k, False: 0]
  ------------------
 1454|  27.0k|							(eOprtAsct == oaLEFT && (nPrec1 < nPrec2)))
  ------------------
  |  Branch (1454:9): [True: 27.0k, False: 0]
  |  Branch (1454:32): [True: 0, False: 27.0k]
  ------------------
 1455|   124k|						{
 1456|   124k|							break;
 1457|   124k|						}
 1458|   151k|					}
 1459|   146k|					else if (nPrec1 < nPrec2)
  ------------------
  |  Branch (1459:15): [True: 53.6k, False: 92.9k]
  ------------------
 1460|  53.6k|					{
 1461|       |						// In case the operators are not equal the precedence decides alone...
 1462|  53.6k|						break;
 1463|  53.6k|					}
 1464|       |
 1465|   120k|					if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1465:10): [True: 8.69k, False: 111k]
  ------------------
 1466|  8.69k|						ApplyFunc(stOpt, stVal, 1);
 1467|   111k|					else
 1468|   111k|						ApplyBinOprt(stOpt, stVal);
 1469|   120k|				} // while ( ... )
 1470|       |
 1471|   354k|				if (opt.GetCode() == cmIF)
  ------------------
  |  Branch (1471:9): [True: 141k, False: 213k]
  ------------------
 1472|   141k|					m_vRPN.AddIfElse(opt.GetCode());
 1473|       |
 1474|       |				// The operator can't be evaluated right now, push back to the operator stack
 1475|   354k|				stOpt.push(opt);
 1476|   354k|				break;
 1477|       |
 1478|       |				//
 1479|       |				// Last section contains functions and operators implicitly mapped to functions
 1480|       |				//
 1481|   273k|			case cmBO:
  ------------------
  |  Branch (1481:4): [True: 273k, False: 1.97M]
  ------------------
 1482|   273k|				stArgCount.push(1);
 1483|   273k|				stOpt.push(opt);
 1484|   273k|				break;
 1485|       |
 1486|  67.0k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1486:4): [True: 67.0k, False: 2.18M]
  ------------------
 1487|  79.5k|			case cmFUNC:
  ------------------
  |  Branch (1487:4): [True: 12.5k, False: 2.23M]
  ------------------
 1488|  79.5k|			case cmFUNC_BULK:
  ------------------
  |  Branch (1488:4): [True: 0, False: 2.24M]
  ------------------
 1489|  79.5k|			case cmFUNC_STR:
  ------------------
  |  Branch (1489:4): [True: 0, False: 2.24M]
  ------------------
 1490|  79.5k|				stOpt.push(opt);
 1491|  79.5k|				break;
 1492|       |
 1493|      0|			case cmOPRT_POSTFIX:
  ------------------
  |  Branch (1493:4): [True: 0, False: 2.24M]
  ------------------
 1494|      0|				stOpt.push(opt);
 1495|      0|				ApplyFunc(stOpt, stVal, 1);  // this is the postfix operator
 1496|      0|				break;
 1497|       |
 1498|      0|			default:  Error(ecINTERNAL_ERROR, 3);
  ------------------
  |  Branch (1498:4): [True: 0, False: 2.24M]
  ------------------
 1499|  2.24M|			} // end of switch operator-token
 1500|       |
 1501|  2.24M|			opta = opt;
 1502|       |
 1503|  2.24M|			if (opt.GetCode() == cmEND)
  ------------------
  |  Branch (1503:8): [True: 2.01k, False: 2.24M]
  ------------------
 1504|  2.01k|			{
 1505|  2.01k|				m_vRPN.Finalize();
 1506|  2.01k|				break;
 1507|  2.01k|			}
 1508|       |
 1509|  2.24M|			if (ParserBase::g_DbgDumpStack)
  ------------------
  |  Branch (1509:8): [True: 0, False: 2.24M]
  ------------------
 1510|      0|			{
 1511|      0|				StackDump(stVal, stOpt);
 1512|      0|				m_vRPN.AsciiDump();
 1513|      0|			}
 1514|       |
 1515|       |//			if (ParserBase::g_DbgDumpCmdCode)
 1516|       |				//m_vRPN.AsciiDump();
 1517|  2.24M|		} // while (true)
 1518|       |
 1519|  2.01k|		if (ParserBase::g_DbgDumpCmdCode)
  ------------------
  |  Branch (1519:7): [True: 0, False: 2.01k]
  ------------------
 1520|      0|			m_vRPN.AsciiDump();
 1521|       |
 1522|  2.01k|		if (ifElseCounter > 0)
  ------------------
  |  Branch (1522:7): [True: 171, False: 1.84k]
  ------------------
 1523|    171|			Error(ecMISSING_ELSE_CLAUSE);
 1524|       |
 1525|       |		// get the last value (= final result) from the stack
 1526|  2.01k|		MUP_ASSERT(stArgCount.size() == 1);
  ------------------
  |  |   78|  2.01k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 8, False: 2.00k]
  |  |  ------------------
  |  |   79|  2.01k|            {														\
  |  |   80|      8|              stringstream_type ss;									\
  |  |   81|      8|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |   82|      8|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |   83|      8|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |   84|      8|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      8|            }
  ------------------
 1527|  2.00k|		m_nFinalResultIdx = stArgCount.top();
 1528|  2.00k|		if (m_nFinalResultIdx == 0)
  ------------------
  |  Branch (1528:7): [True: 0, False: 2.00k]
  ------------------
 1529|      0|			Error(ecINTERNAL_ERROR, 9);
 1530|       |
 1531|  2.00k|		if (stVal.size() == 0)
  ------------------
  |  Branch (1531:7): [True: 19, False: 1.99k]
  ------------------
 1532|     19|			Error(ecEMPTY_EXPRESSION);
 1533|       |
 1534|       |		// 2020-09-17; fix for https://oss-fuzz.com/testcase-detail/5758791700971520
 1535|       |		// I don't need the value stack any more. Destructively check if all values in the value 
 1536|       |		// stack represent floating point values
 1537|  67.0k|		while (stVal.size())
  ------------------
  |  Branch (1537:10): [True: 65.0k, False: 2.00k]
  ------------------
 1538|  65.0k|		{
 1539|  65.0k|			if (stVal.top().GetType() != tpDBL)
  ------------------
  |  Branch (1539:8): [True: 3, False: 65.0k]
  ------------------
 1540|      3|				Error(ecSTR_RESULT);
 1541|       |
 1542|  65.0k|			stVal.pop();
 1543|  65.0k|		}
 1544|       |
 1545|  2.00k|		m_vStackBuffer.resize(m_vRPN.GetMaxStackSize() * s_MaxNumOpenMPThreads);
 1546|  2.00k|	}
_ZNK2mu10ParserBase11ParseStringEv:
 1558|  3.93k|	{
 1559|  3.93k|		try
 1560|  3.93k|		{
 1561|  3.93k|			CreateRPN();
 1562|       |
 1563|  3.93k|			if (m_vRPN.GetSize() == 2)
  ------------------
  |  Branch (1563:8): [True: 749, False: 3.18k]
  ------------------
 1564|    749|			{
 1565|    749|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1566|    749|				m_pParseFormula = &ParserBase::ParseCmdCodeShort;
 1567|    749|				m_vStackBuffer[1] = (this->*m_pParseFormula)();
 1568|    749|				return m_vStackBuffer[1];
 1569|    749|			}
 1570|  3.18k|			else
 1571|  3.18k|			{
 1572|  3.18k|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1573|  3.18k|				m_pParseFormula = &ParserBase::ParseCmdCode;
 1574|  3.18k|				return (this->*m_pParseFormula)();
 1575|  3.18k|			}
 1576|  3.93k|		}
 1577|  3.93k|		catch (ParserError& exc)
 1578|  3.93k|		{
 1579|  2.12k|			exc.SetFormula(m_pTokenReader->GetExpr());
 1580|  2.12k|			throw;
 1581|  2.12k|		}
 1582|  3.93k|	}
_ZNK2mu10ParserBase5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
 1596|  2.13k|	{
 1597|  2.13k|		throw exception_type(a_iErrc, a_sTok, m_pTokenReader->GetExpr(), a_iPos);
 1598|  2.13k|	}
_ZNK2mu10ParserBase14HasBuiltInOprtEv:
 1733|  6.16M|	{
 1734|  6.16M|		return m_bBuiltInOp;
 1735|  6.16M|	}
_ZNK2mu10ParserBase4EvalEv:
 1850|  3.93k|	{
 1851|  3.93k|		return (this->*m_pParseFormula)();
 1852|  3.93k|	}

_ZN2mu14ParserByteCodeC2Ev:
   52|  3.96k|		: m_iStackPos(0)
   53|  3.96k| 		, m_stringBuffer()
   54|  3.96k|		, m_expr()
   55|  3.96k|		, m_iMaxStackSize(0)
   56|  3.96k|		, m_vRPN()
   57|  3.96k|		, m_bEnableOptimizer(true)
   58|  3.96k|	{
   59|  3.96k|		m_vRPN.reserve(50);
   60|  3.96k|	}
_ZN2mu14ParserByteCode6AddValEd:
  141|   865k|	{
  142|   865k|		++m_iStackPos;
  143|   865k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  144|       |
  145|       |		// If optimization does not apply
  146|   865k|		SToken tok;
  147|   865k|		tok.Cmd = cmVAL;
  148|   865k|		tok.Val.ptr = nullptr;
  149|   865k|		tok.Val.data = 0;
  150|   865k|		tok.Val.data2 = a_fVal;
  151|   865k|		m_vRPN.push_back(tok);
  152|   865k|	}
_ZN2mu14ParserByteCode15ConstantFoldingENS_8ECmdCodeE:
  156|  60.5k|	{
  157|  60.5k|		std::size_t sz = m_vRPN.size();
  158|  60.5k|		value_type& x = m_vRPN[sz - 2].Val.data2;
  159|  60.5k|		value_type& y = m_vRPN[sz - 1].Val.data2;
  160|       |
  161|  60.5k|		switch (a_Oprt)
  162|  60.5k|		{
  163|  3.41k|		case cmLAND: x = (int)x && (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (163:3): [True: 3.41k, False: 57.1k]
  |  Branch (163:20): [True: 1.92k, False: 1.48k]
  |  Branch (163:30): [True: 1.53k, False: 386]
  ------------------
  164|  1.51k|		case cmLOR:  x = (int)x || (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (164:3): [True: 1.51k, False: 59.0k]
  |  Branch (164:20): [True: 860, False: 657]
  |  Branch (164:30): [True: 265, False: 392]
  ------------------
  165|  2.05k|		case cmLT:   x = x < y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (165:3): [True: 2.05k, False: 58.4k]
  ------------------
  166|  1.59k|		case cmGT:   x = x > y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (166:3): [True: 1.59k, False: 58.9k]
  ------------------
  167|    853|		case cmLE:   x = x <= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (167:3): [True: 853, False: 59.6k]
  ------------------
  168|    583|		case cmGE:   x = x >= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (168:3): [True: 583, False: 59.9k]
  ------------------
  169|    582|		case cmNEQ:  x = x != y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (169:3): [True: 582, False: 59.9k]
  ------------------
  170|    788|		case cmEQ:   x = x == y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (170:3): [True: 788, False: 59.7k]
  ------------------
  171|  7.22k|		case cmADD:  x = x + y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (171:3): [True: 7.22k, False: 53.3k]
  ------------------
  172|  3.66k|		case cmSUB:  x = x - y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (172:3): [True: 3.66k, False: 56.8k]
  ------------------
  173|  2.80k|		case cmMUL:  x = x * y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (173:3): [True: 2.80k, False: 57.7k]
  ------------------
  174|  2.29k|		case cmDIV:
  ------------------
  |  Branch (174:3): [True: 2.29k, False: 58.2k]
  ------------------
  175|  2.29k|			if (y == 0)
  ------------------
  |  Branch (175:8): [True: 929, False: 1.37k]
  ------------------
  176|    929|				break;
  177|  1.37k|			x = x / y;
  178|  1.37k|			m_vRPN.pop_back();
  179|  1.37k|			break;
  180|       |
  181|  33.1k|		case cmPOW: x = MathImpl<value_type>::Pow(x, y);
  ------------------
  |  Branch (181:3): [True: 33.1k, False: 27.3k]
  ------------------
  182|  33.1k|			m_vRPN.pop_back();
  183|  33.1k|			break;
  184|       |
  185|      0|		default:
  ------------------
  |  Branch (185:3): [True: 0, False: 60.5k]
  ------------------
  186|      0|			break;
  187|  60.5k|		} // switch opcode
  188|  60.5k|	}
_ZN2mu14ParserByteCode5AddOpENS_8ECmdCodeE:
  202|   150k|	{
  203|   150k|		bool bOptimized = false;
  204|       |
  205|   150k|		if (m_bEnableOptimizer)
  ------------------
  |  Branch (205:7): [True: 150k, False: 0]
  ------------------
  206|   150k|		{
  207|   150k|			std::size_t sz = m_vRPN.size();
  208|       |
  209|       |			// Check for foldable constants like:
  210|       |			//   cmVAL cmVAL cmADD 
  211|       |			// where cmADD can stand fopr any binary operator applied to
  212|       |			// two constant values.
  213|   150k|			if (sz >= 2 && m_vRPN[sz - 2].Cmd == cmVAL && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (213:8): [True: 150k, False: 0]
  |  Branch (213:19): [True: 62.4k, False: 87.6k]
  |  Branch (213:50): [True: 60.5k, False: 1.87k]
  ------------------
  214|  60.5k|			{
  215|  60.5k|				ConstantFolding(a_Oprt);
  216|  60.5k|				bOptimized = true;
  217|  60.5k|			}
  218|  89.5k|			else
  219|  89.5k|			{
  220|  89.5k|				switch (a_Oprt)
  221|  89.5k|				{
  222|  75.6k|				case  cmPOW:
  ------------------
  |  Branch (222:5): [True: 75.6k, False: 13.8k]
  ------------------
  223|       |					// Optimization for polynomials of low order
  224|  75.6k|					if (m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (224:10): [True: 0, False: 75.6k]
  |  Branch (224:41): [True: 0, False: 0]
  ------------------
  225|      0|					{
  226|      0|						if (m_vRPN[sz - 1].Val.data2 == 0)
  ------------------
  |  Branch (226:11): [True: 0, False: 0]
  ------------------
  227|      0|						{
  228|      0|							m_vRPN[sz - 2].Cmd = cmVAL;
  229|      0|							m_vRPN[sz - 2].Val.ptr = nullptr;
  230|      0|							m_vRPN[sz - 2].Val.data = 0;
  231|      0|							m_vRPN[sz - 2].Val.data2 = 1;
  232|      0|						}
  233|      0|						else if (m_vRPN[sz - 1].Val.data2 == 1)
  ------------------
  |  Branch (233:16): [True: 0, False: 0]
  ------------------
  234|      0|							m_vRPN[sz - 2].Cmd = cmVAR;
  235|      0|						else if (m_vRPN[sz - 1].Val.data2 == 2)
  ------------------
  |  Branch (235:16): [True: 0, False: 0]
  ------------------
  236|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW2;
  237|      0|						else if (m_vRPN[sz - 1].Val.data2 == 3)
  ------------------
  |  Branch (237:16): [True: 0, False: 0]
  ------------------
  238|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW3;
  239|      0|						else if (m_vRPN[sz - 1].Val.data2 == 4)
  ------------------
  |  Branch (239:16): [True: 0, False: 0]
  ------------------
  240|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW4;
  241|      0|						else
  242|      0|							break;
  243|       |
  244|      0|						m_vRPN.pop_back();
  245|      0|						bOptimized = true;
  246|      0|					}
  247|  75.6k|					break;
  248|       |
  249|  75.6k|				case  cmSUB:
  ------------------
  |  Branch (249:5): [True: 772, False: 88.7k]
  ------------------
  250|  1.69k|				case  cmADD:
  ------------------
  |  Branch (250:5): [True: 919, False: 88.6k]
  ------------------
  251|       |					// Simple optimization based on pattern recognition for a shitload of different
  252|       |					// bytecode combinations of addition/subtraction
  253|  1.69k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (253:11): [True: 0, False: 1.69k]
  |  Branch (253:42): [True: 0, False: 0]
  ------------------
  254|  1.69k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR) ||
  ------------------
  |  Branch (254:8): [True: 925, False: 766]
  |  Branch (254:39): [True: 0, False: 925]
  ------------------
  255|  1.69k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (255:8): [True: 925, False: 766]
  |  Branch (255:39): [True: 0, False: 925]
  ------------------
  256|  1.69k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (256:8): [True: 0, False: 1.69k]
  |  Branch (256:42): [True: 0, False: 0]
  ------------------
  257|  1.69k|						(m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) ||
  ------------------
  |  Branch (257:8): [True: 0, False: 1.69k]
  |  Branch (257:39): [True: 0, False: 0]
  |  Branch (257:70): [True: 0, False: 0]
  ------------------
  258|  1.69k|						(m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) ||
  ------------------
  |  Branch (258:8): [True: 0, False: 1.69k]
  |  Branch (258:39): [True: 0, False: 0]
  |  Branch (258:73): [True: 0, False: 0]
  ------------------
  259|  1.69k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) ||
  ------------------
  |  Branch (259:8): [True: 0, False: 1.69k]
  |  Branch (259:42): [True: 0, False: 0]
  |  Branch (259:73): [True: 0, False: 0]
  ------------------
  260|  1.69k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr))
  ------------------
  |  Branch (260:8): [True: 0, False: 1.69k]
  |  Branch (260:42): [True: 0, False: 0]
  |  Branch (260:76): [True: 0, False: 0]
  ------------------
  261|      0|					{
  262|      0|						MUP_ASSERT(
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  263|      0|							(m_vRPN[sz - 2].Val.ptr == nullptr && m_vRPN[sz - 1].Val.ptr != nullptr) ||
  264|      0|							(m_vRPN[sz - 2].Val.ptr != nullptr && m_vRPN[sz - 1].Val.ptr == nullptr) ||
  265|      0|							(m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr));
  266|       |
  267|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  268|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;    // variable
  ------------------
  |  Branch (268:32): [True: 0, False: 0]
  ------------------
  269|      0|						m_vRPN[sz - 2].Val.data2 += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data2;  // offset
  ------------------
  |  Branch (269:36): [True: 0, False: 0]
  ------------------
  270|      0|						m_vRPN[sz - 2].Val.data += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data;   // multiplicand
  ------------------
  |  Branch (270:35): [True: 0, False: 0]
  ------------------
  271|      0|						m_vRPN.pop_back();
  272|      0|						bOptimized = true;
  273|      0|					}
  274|  1.69k|					break;
  275|       |
  276|  5.82k|				case  cmMUL:
  ------------------
  |  Branch (276:5): [True: 5.82k, False: 83.7k]
  ------------------
  277|  5.82k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (277:11): [True: 0, False: 5.82k]
  |  Branch (277:42): [True: 0, False: 0]
  ------------------
  278|  5.82k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR))
  ------------------
  |  Branch (278:8): [True: 4.82k, False: 999]
  |  Branch (278:39): [True: 0, False: 4.82k]
  ------------------
  279|      0|					{
  280|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  281|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;
  ------------------
  |  Branch (281:32): [True: 0, False: 0]
  ------------------
  282|      0|						m_vRPN[sz - 2].Val.data = m_vRPN[sz - 2].Val.data2 + m_vRPN[sz - 1].Val.data2;
  283|      0|						m_vRPN[sz - 2].Val.data2 = 0;
  284|      0|						m_vRPN.pop_back();
  285|      0|						bOptimized = true;
  286|      0|					}
  287|  5.82k|					else if (
  288|  5.82k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (288:8): [True: 4.82k, False: 999]
  |  Branch (288:39): [True: 0, False: 4.82k]
  ------------------
  289|  5.82k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL))
  ------------------
  |  Branch (289:8): [True: 0, False: 5.82k]
  |  Branch (289:42): [True: 0, False: 0]
  ------------------
  290|      0|					{
  291|       |						// Optimization: 2*(3*b+1) or (3*b+1)*2 -> 6*b+2
  292|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  293|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;
  ------------------
  |  Branch (293:32): [True: 0, False: 0]
  ------------------
  294|      0|						if (m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (294:11): [True: 0, False: 0]
  ------------------
  295|      0|						{
  296|      0|							m_vRPN[sz - 2].Val.data *= m_vRPN[sz - 1].Val.data2;
  297|      0|							m_vRPN[sz - 2].Val.data2 *= m_vRPN[sz - 1].Val.data2;
  298|      0|						}
  299|      0|						else
  300|      0|						{
  301|      0|							m_vRPN[sz - 2].Val.data = m_vRPN[sz - 1].Val.data * m_vRPN[sz - 2].Val.data2;
  302|      0|							m_vRPN[sz - 2].Val.data2 = m_vRPN[sz - 1].Val.data2 * m_vRPN[sz - 2].Val.data2;
  303|      0|						}
  304|      0|						m_vRPN.pop_back();
  305|      0|						bOptimized = true;
  306|      0|					}
  307|  5.82k|					else if (
  308|  5.82k|						m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR &&
  ------------------
  |  Branch (308:7): [True: 0, False: 5.82k]
  |  Branch (308:38): [True: 0, False: 0]
  ------------------
  309|      0|						m_vRPN[sz - 1].Val.ptr == m_vRPN[sz - 2].Val.ptr)
  ------------------
  |  Branch (309:7): [True: 0, False: 0]
  ------------------
  310|      0|					{
  311|       |						// Optimization: a*a -> a^2
  312|      0|						m_vRPN[sz - 2].Cmd = cmVARPOW2;
  313|      0|						m_vRPN.pop_back();
  314|      0|						bOptimized = true;
  315|      0|					}
  316|  5.82k|					break;
  317|       |
  318|    942|				case cmDIV:
  ------------------
  |  Branch (318:5): [True: 942, False: 88.5k]
  ------------------
  319|    942|					if (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 1].Val.data2 != 0)
  ------------------
  |  Branch (319:10): [True: 354, False: 588]
  |  Branch (319:41): [True: 0, False: 354]
  |  Branch (319:75): [True: 0, False: 0]
  ------------------
  320|      0|					{
  321|       |						// Optimization: 4*a/2 -> 2*a
  322|      0|						m_vRPN[sz - 2].Val.data /= m_vRPN[sz - 1].Val.data2;
  323|      0|						m_vRPN[sz - 2].Val.data2 /= m_vRPN[sz - 1].Val.data2;
  324|      0|						m_vRPN.pop_back();
  325|      0|						bOptimized = true;
  326|      0|					}
  327|    942|					break;
  328|       |
  329|       |					// no optimization for other opcodes
  330|  5.43k|				default:
  ------------------
  |  Branch (330:5): [True: 5.43k, False: 84.0k]
  ------------------
  331|  5.43k|					break;
  332|  89.5k|				} // switch a_Oprt
  333|  89.5k|			}
  334|   150k|		}
  335|       |
  336|       |		// If optimization can't be applied just write the value
  337|   150k|		if (!bOptimized)
  ------------------
  |  Branch (337:7): [True: 89.5k, False: 60.5k]
  ------------------
  338|  89.5k|		{
  339|  89.5k|			--m_iStackPos;
  340|  89.5k|			SToken tok;
  341|  89.5k|			tok.Cmd = a_Oprt;
  342|  89.5k|			m_vRPN.push_back(tok);
  343|  89.5k|		}
  344|   150k|	}
_ZN2mu14ParserByteCode9AddIfElseENS_8ECmdCodeE:
  348|   263k|	{
  349|   263k|		SToken tok;
  350|   263k|		tok.Cmd = a_Oprt;
  351|   263k|		m_vRPN.push_back(tok);
  352|   263k|	}
_ZN2mu14ParserByteCode6AddFunENS_21generic_callable_typeEib:
  382|  23.6k|	{
  383|  23.6k|		std::size_t sz = m_vRPN.size();
  384|  23.6k|		bool optimize = false;
  385|       |
  386|       |		// only optimize functions with fixed number of more than a single arguments
  387|  23.6k|		if (isFunctionOptimizable && m_bEnableOptimizer && a_iArgc > 0)
  ------------------
  |  Branch (387:7): [True: 22.6k, False: 986]
  |  Branch (387:32): [True: 22.6k, False: 0]
  |  Branch (387:54): [True: 18.6k, False: 4.04k]
  ------------------
  388|  18.6k|		{
  389|       |			// <ibg 2020-06-10/> Unary Plus is a no-op, optimize it away
  390|  18.6k|			if (a_pFun == generic_callable_type{(erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr})
  ------------------
  |  Branch (390:8): [True: 5.31k, False: 13.2k]
  ------------------
  391|  5.31k|				return;
  392|       |
  393|  13.2k|			optimize = true;
  394|       |
  395|  25.4k|			for (int i = 0; i < std::abs(a_iArgc); ++i)
  ------------------
  |  Branch (395:20): [True: 13.4k, False: 11.9k]
  ------------------
  396|  13.4k|			{
  397|  13.4k|				if (m_vRPN[sz - i - 1].Cmd != cmVAL)
  ------------------
  |  Branch (397:9): [True: 1.31k, False: 12.1k]
  ------------------
  398|  1.31k|				{
  399|  1.31k|					optimize = false;
  400|  1.31k|					break;
  401|  1.31k|				}
  402|  13.4k|			}
  403|  13.2k|		}
  404|       |
  405|  18.3k|		if (optimize)
  ------------------
  |  Branch (405:7): [True: 11.9k, False: 6.34k]
  ------------------
  406|  11.9k|		{
  407|  11.9k|			value_type val = 0;
  408|  11.9k|			switch (a_iArgc)
  409|  11.9k|			{
  410|  11.7k|			case 1:  val = a_pFun.call_fun<1>(m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (410:4): [True: 11.7k, False: 194]
  ------------------
  411|    194|			case 2:  val = a_pFun.call_fun<2>(m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (411:4): [True: 194, False: 11.7k]
  ------------------
  412|      0|			case 3:  val = a_pFun.call_fun<3>(m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (412:4): [True: 0, False: 11.9k]
  ------------------
  413|      0|			case 4:  val = a_pFun.call_fun<4>(m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (413:4): [True: 0, False: 11.9k]
  ------------------
  414|      0|			case 5:  val = a_pFun.call_fun<5>(m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (414:4): [True: 0, False: 11.9k]
  ------------------
  415|      0|			case 6:  val = a_pFun.call_fun<6>(m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (415:4): [True: 0, False: 11.9k]
  ------------------
  416|      0|			case 7:  val = a_pFun.call_fun<7>(m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (416:4): [True: 0, False: 11.9k]
  ------------------
  417|      0|			case 8:  val = a_pFun.call_fun<8>(m_vRPN[sz - 8].Val.data2, m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (417:4): [True: 0, False: 11.9k]
  ------------------
  418|      0|			case 9:  val = a_pFun.call_fun<9>(m_vRPN[sz - 9].Val.data2, m_vRPN[sz - 8].Val.data2, m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (418:4): [True: 0, False: 11.9k]
  ------------------
  419|      0|			case 10: val = a_pFun.call_fun<10>(m_vRPN[sz - 10].Val.data2, m_vRPN[sz - 9].Val.data2, m_vRPN[sz - 8].Val.data2, m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (419:4): [True: 0, False: 11.9k]
  ------------------
  420|      0|			default:
  ------------------
  |  Branch (420:4): [True: 0, False: 11.9k]
  ------------------
  421|       |				// For now functions with unlimited number of arguments are not optimized
  422|      0|				throw ParserError(ecINTERNAL_ERROR);
  423|  11.9k|			}
  424|       |
  425|       |			// remove the folded values
  426|  11.9k|			m_vRPN.erase(m_vRPN.end() - a_iArgc, m_vRPN.end());
  427|       |
  428|  11.9k|			SToken tok;
  429|  11.9k|			tok.Cmd = cmVAL;
  430|  11.9k|			tok.Val.data = 0;
  431|  11.9k|			tok.Val.data2 = val;
  432|  11.9k|			tok.Val.ptr = nullptr;
  433|  11.9k|			m_vRPN.push_back(tok);
  434|  11.9k|		}
  435|  6.34k|		else
  436|  6.34k|		{
  437|  6.34k|			SToken tok;
  438|  6.34k|			tok.Cmd = cmFUNC;
  439|  6.34k|			tok.Fun.argc = a_iArgc;
  440|  6.34k|			tok.Fun.cb = a_pFun;
  441|  6.34k|			m_vRPN.push_back(tok);
  442|  6.34k|		}
  443|       |
  444|  18.3k|		m_iStackPos = m_iStackPos - std::abs(a_iArgc) + 1;
  445|  18.3k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  446|       |
  447|  18.3k|	}
_ZN2mu14ParserByteCode8FinalizeEv:
  495|  2.01k|	{
  496|  2.01k|		SToken tok;
  497|  2.01k|		tok.Cmd = cmEND;
  498|  2.01k|		m_vRPN.push_back(tok);
  499|  2.01k|		rpn_type(m_vRPN).swap(m_vRPN);     // shrink bytecode vector to fit
  500|       |
  501|       |		// Determine the if-then-else jump offsets
  502|  2.01k|		std::stack<int> stIf, stElse;
  503|  2.01k|		int idx;
  504|   913k|		for (int i = 0; i < (int)m_vRPN.size(); ++i)
  ------------------
  |  Branch (504:19): [True: 911k, False: 2.01k]
  ------------------
  505|   911k|		{
  506|   911k|			switch (m_vRPN[i].Cmd)
  507|   911k|			{
  508|  90.4k|			case cmIF:
  ------------------
  |  Branch (508:4): [True: 90.4k, False: 821k]
  ------------------
  509|  90.4k|				stIf.push(i);
  510|  90.4k|				break;
  511|       |
  512|  71.2k|			case cmELSE:
  ------------------
  |  Branch (512:4): [True: 71.2k, False: 840k]
  ------------------
  513|  71.2k|				stElse.push(i);
  514|  71.2k|				if (stIf.empty())
  ------------------
  |  Branch (514:9): [True: 0, False: 71.2k]
  ------------------
  515|      0|					throw ParserError(ecINTERNAL_ERROR);
  516|  71.2k|				idx = stIf.top();
  517|  71.2k|				stIf.pop();
  518|  71.2k|				m_vRPN[idx].Oprt.offset = i - idx;
  519|  71.2k|				break;
  520|       |
  521|  34.5k|			case cmENDIF:
  ------------------
  |  Branch (521:4): [True: 34.5k, False: 877k]
  ------------------
  522|  34.5k|				if (stElse.empty())
  ------------------
  |  Branch (522:9): [True: 0, False: 34.5k]
  ------------------
  523|      0|					throw ParserError(ecINTERNAL_ERROR);
  524|  34.5k|				idx = stElse.top();
  525|  34.5k|				stElse.pop();
  526|  34.5k|				m_vRPN[idx].Oprt.offset = i - idx;
  527|  34.5k|				break;
  528|       |
  529|   715k|			default:
  ------------------
  |  Branch (529:4): [True: 715k, False: 196k]
  ------------------
  530|   715k|				break;
  531|   911k|			}
  532|   911k|		}
  533|  2.01k|	}
_ZNK2mu14ParserByteCode15GetMaxStackSizeEv:
  537|  1.81k|	{
  538|  1.81k|		return m_iMaxStackSize + 1;
  539|  1.81k|	}
_ZN2mu14ParserByteCode5clearEv:
  551|   138k|	{
  552|   138k|		m_vRPN.clear();
  553|   138k|		m_iStackPos = 0;
  554|   138k|		m_iMaxStackSize = 0;
  555|   138k|	}

_ZN2mu14ParserCallbackC2EPFdvEb:
   55|  3.96k|		:m_pFun((void*)a_pFun)
   56|  3.96k|		, m_iArgc(0)
   57|  3.96k|		, m_iPri(-1)
   58|  3.96k|		, m_eOprtAsct(oaNONE)
   59|  3.96k|		, m_iCode(cmFUNC)
   60|  3.96k|		, m_iType(tpDBL)
   61|  3.96k|		, m_bAllowOpti(a_bAllowOpti)
   62|  3.96k|	{}
_ZN2mu14ParserCallbackC2EPFddEbiNS_8ECmdCodeE:
   66|  99.2k|		:m_pFun((void*)a_pFun)
   67|  99.2k|		, m_iArgc(1)
   68|  99.2k|		, m_iPri(a_iPrec)
   69|  99.2k|		, m_eOprtAsct(oaNONE)
   70|  99.2k|		, m_iCode(a_iCode)
   71|  99.2k|		, m_iType(tpDBL)
   72|  99.2k|		, m_bAllowOpti(a_bAllowOpti)
   73|  99.2k|	{}
_ZN2mu14ParserCallbackC2EPFddEb:
   77|  91.2k|		: ParserCallback(a_pFun, a_bAllowOpti, -1, cmFUNC)
   78|  91.2k|	{}
_ZN2mu14ParserCallbackC2EPFdddEb:
   85|  3.96k|		:m_pFun((void*)a_pFun)
   86|  3.96k|		, m_iArgc(2)
   87|  3.96k|		, m_iPri(-1)
   88|  3.96k|		, m_eOprtAsct(oaNONE)
   89|  3.96k|		, m_iCode(cmFUNC)
   90|  3.96k|		, m_iType(tpDBL)
   91|  3.96k|		, m_bAllowOpti(a_bAllowOpti)
   92|  3.96k|	{}
_ZN2mu14ParserCallbackC2EPFdPKdiEb:
  571|  15.8k|		:m_pFun((void*)a_pFun)
  572|  15.8k|		, m_iArgc(CALLBACK_INTERNAL_VAR_ARGS)
  573|  15.8k|		, m_iPri(-1)
  574|  15.8k|		, m_eOprtAsct(oaNONE)
  575|  15.8k|		, m_iCode(cmFUNC)
  576|  15.8k|		, m_iType(tpDBL)
  577|  15.8k|		, m_bAllowOpti(a_bAllowOpti)
  578|  15.8k|	{}
_ZN2mu14ParserCallbackC2Ev:
  726|   628k|		:m_pFun(0)
  727|   628k|		, m_iArgc(0)
  728|   628k|		, m_iPri(-1)
  729|   628k|		, m_eOprtAsct(oaNONE)
  730|   628k|		, m_iCode(cmUNKNOWN)
  731|   628k|		, m_iType(tpVOID)
  732|   628k|		, m_bAllowOpti(0)
  733|   628k|	{}
_ZN2mu14ParserCallbackC2ERKS0_:
  740|   505k|		:ParserCallback()
  741|   505k|	{
  742|   505k|		Assign(ref);
  743|   505k|	}
_ZN2mu14ParserCallbackaSERKS0_:
  746|   123k|	{
  747|   123k|		Assign(ref);
  748|   123k|		return *this;
  749|   123k|	}
_ZN2mu14ParserCallbackD2Ev:
  753|   751k|	{
  754|   751k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (754:7): [True: 0, False: 751k]
  ------------------
  755|      0|			delete reinterpret_cast<CbWithUserData*>(m_pFun);
  756|   751k|	}
_ZN2mu14ParserCallback6AssignERKS0_:
  764|   628k|	{
  765|   628k|		if (this == &ref)
  ------------------
  |  Branch (765:7): [True: 0, False: 628k]
  ------------------
  766|      0|			return;
  767|       |
  768|   628k|		void* newFun = nullptr;
  769|   628k|		if (ref.m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (769:7): [True: 0, False: 628k]
  ------------------
  770|      0|			newFun = new CbWithUserData(*reinterpret_cast<CbWithUserData*>(ref.m_pFun));
  771|       |
  772|   628k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (772:7): [True: 0, False: 628k]
  ------------------
  773|      0|			delete reinterpret_cast<CbWithUserData*>(m_pFun);
  774|       |
  775|   628k|		if (ref.m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (775:7): [True: 0, False: 628k]
  ------------------
  776|      0|			m_pFun = newFun;
  777|   628k|		else
  778|   628k|			m_pFun = ref.m_pFun;
  779|       |
  780|   628k|		m_iArgc = ref.m_iArgc;
  781|   628k|		m_bAllowOpti = ref.m_bAllowOpti;
  782|   628k|		m_iCode = ref.m_iCode;
  783|   628k|		m_iType = ref.m_iType;
  784|   628k|		m_iPri = ref.m_iPri;
  785|   628k|		m_eOprtAsct = ref.m_eOprtAsct;
  786|   628k|	}
_ZNK2mu14ParserCallback5CloneEv:
  791|   425k|	{
  792|   425k|		return new ParserCallback(*this);
  793|   425k|	}
_ZNK2mu14ParserCallback13IsOptimizableEv:
  802|  23.6k|	{
  803|  23.6k|		return m_bAllowOpti;
  804|  23.6k|	}
_ZNK2mu14ParserCallback7GetAddrEv:
  815|   404k|	{
  816|   404k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (816:7): [True: 0, False: 404k]
  ------------------
  817|      0|			return reinterpret_cast<CbWithUserData*>(m_pFun)->pFun;
  818|   404k|		else
  819|   404k|			return m_pFun;
  820|   404k|	}
_ZNK2mu14ParserCallback11GetUserDataEv:
  828|  83.1k|	{
  829|  83.1k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (829:7): [True: 0, False: 83.1k]
  ------------------
  830|      0|			return reinterpret_cast<CbWithUserData*>(m_pFun)->pUserData;
  831|  83.1k|		else
  832|  83.1k|			return nullptr;
  833|  83.1k|	}
_ZNK2mu14ParserCallback7IsValidEv:
  843|   320k|	{
  844|   320k|		return GetAddr() != nullptr
  ------------------
  |  Branch (844:10): [True: 320k, False: 0]
  ------------------
  845|   320k|			&& !((m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (845:9): [True: 0, False: 320k]
  ------------------
  846|      0|			     && GetUserData() == nullptr);
  ------------------
  |  Branch (846:12): [True: 0, False: 0]
  ------------------
  847|   320k|	}
_ZNK2mu14ParserCallback7GetCodeEv:
  852|   815k|	{
  853|   815k|		return m_iCode;
  854|   815k|	}
_ZNK2mu14ParserCallback7GetTypeEv:
  858|  47.3k|	{
  859|  47.3k|		return m_iType;
  860|  47.3k|	}
_ZNK2mu14ParserCallback6GetPriEv:
  869|  54.4k|	{
  870|  54.4k|		return m_iPri;
  871|  54.4k|	}
_ZNK2mu14ParserCallback7GetArgcEv:
  890|  94.6k|	{
  891|  94.6k|		return (m_iArgc & CALLBACK_INTERNAL_VAR_ARGS) ? -1 : (m_iArgc & CALLBACK_INTERNAL_FIXED_ARGS_MASK);
  ------------------
  |  Branch (891:10): [True: 16.1k, False: 78.4k]
  ------------------
  892|  94.6k|	}

_ZN2mu14ParserErrorMsg8InstanceEv:
   41|  2.15k|	{
   42|  2.15k|		static const ParserErrorMsg instance;
   43|  2.15k|		return instance;
   44|  2.15k|	}
_ZNK2mu14ParserErrorMsgixEj:
   48|  2.15k|	{
   49|  2.15k|		return (a_iIdx < m_vErrMsg.size()) ? m_vErrMsg[a_iIdx] : string_type();
  ------------------
  |  Branch (49:10): [True: 2.15k, False: 0]
  ------------------
   50|  2.15k|	}
_ZN2mu14ParserErrorMsgC2Ev:
   54|      1|		:m_vErrMsg(0)
   55|      1|	{
   56|      1|		m_vErrMsg.resize(ecCOUNT);
   57|       |
   58|      1|		m_vErrMsg[ecUNASSIGNABLE_TOKEN] = _T("Unexpected token \"$TOK$\" found at position $POS$.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   59|      1|		m_vErrMsg[ecINTERNAL_ERROR] = _T("Internal error");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   60|      1|		m_vErrMsg[ecINVALID_NAME] = _T("Invalid function-, variable- or constant name: \"$TOK$\".");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   61|      1|		m_vErrMsg[ecINVALID_BINOP_IDENT] = _T("Invalid binary operator identifier: \"$TOK$\".");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   62|      1|		m_vErrMsg[ecINVALID_INFIX_IDENT] = _T("Invalid infix operator identifier: \"$TOK$\".");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   63|      1|		m_vErrMsg[ecINVALID_POSTFIX_IDENT] = _T("Invalid postfix operator identifier: \"$TOK$\".");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   64|      1|		m_vErrMsg[ecINVALID_FUN_PTR] = _T("Invalid pointer to callback function.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   65|      1|		m_vErrMsg[ecEMPTY_EXPRESSION] = _T("Expression is empty.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   66|      1|		m_vErrMsg[ecINVALID_VAR_PTR] = _T("Invalid pointer to variable.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   67|      1|		m_vErrMsg[ecUNEXPECTED_OPERATOR] = _T("Unexpected operator \"$TOK$\" found at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   68|      1|		m_vErrMsg[ecUNEXPECTED_EOF] = _T("Unexpected end of expression at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   69|      1|		m_vErrMsg[ecUNEXPECTED_ARG_SEP] = _T("Unexpected argument separator at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   70|      1|		m_vErrMsg[ecUNEXPECTED_PARENS] = _T("Unexpected parenthesis \"$TOK$\" at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   71|      1|		m_vErrMsg[ecUNEXPECTED_FUN] = _T("Unexpected function \"$TOK$\" at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   72|      1|		m_vErrMsg[ecUNEXPECTED_VAL] = _T("Unexpected value \"$TOK$\" found at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   73|      1|		m_vErrMsg[ecUNEXPECTED_VAR] = _T("Unexpected variable \"$TOK$\" found at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   74|      1|		m_vErrMsg[ecUNEXPECTED_ARG] = _T("Function arguments used without a function (position: $POS$)");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   75|      1|		m_vErrMsg[ecMISSING_PARENS] = _T("Missing parenthesis");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   76|      1|		m_vErrMsg[ecTOO_MANY_PARAMS] = _T("Too many parameters for function \"$TOK$\" at expression position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   77|      1|		m_vErrMsg[ecTOO_FEW_PARAMS] = _T("Too few parameters for function \"$TOK$\" at expression position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   78|      1|		m_vErrMsg[ecDIV_BY_ZERO] = _T("Divide by zero");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   79|      1|		m_vErrMsg[ecDOMAIN_ERROR] = _T("Domain error");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   80|      1|		m_vErrMsg[ecNAME_CONFLICT] = _T("Name conflict");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   81|      1|		m_vErrMsg[ecOPT_PRI] = _T("Invalid value for operator priority (must be greater or equal to zero).");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   82|      1|		m_vErrMsg[ecBUILTIN_OVERLOAD] = _T("user defined binary operator \"$TOK$\" conflicts with a built in operator.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   83|      1|		m_vErrMsg[ecUNEXPECTED_STR] = _T("Unexpected string token found at position $POS$.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   84|      1|		m_vErrMsg[ecUNTERMINATED_STRING] = _T("Unterminated string starting at position $POS$.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   85|      1|		m_vErrMsg[ecSTRING_EXPECTED] = _T("String function called with a non string type of argument.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   86|      1|		m_vErrMsg[ecVAL_EXPECTED] = _T("String value used where a numerical argument is expected.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   87|      1|		m_vErrMsg[ecOPRT_TYPE_CONFLICT] = _T("No suitable overload for operator \"$TOK$\" at position $POS$.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   88|      1|		m_vErrMsg[ecSTR_RESULT] = _T("Strings must only be used as function arguments!");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   89|      1|		m_vErrMsg[ecGENERIC] = _T("Parser error.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   90|      1|		m_vErrMsg[ecLOCALE] = _T("Decimal separator is identic to function argument separator.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   91|      1|		m_vErrMsg[ecUNEXPECTED_CONDITIONAL] = _T("The \"$TOK$\" operator must be preceded by a closing bracket.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   92|      1|		m_vErrMsg[ecMISSING_ELSE_CLAUSE] = _T("If-then-else operator is missing an else clause");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   93|      1|		m_vErrMsg[ecMISPLACED_COLON] = _T("Misplaced colon at position $POS$");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   94|      1|		m_vErrMsg[ecUNREASONABLE_NUMBER_OF_COMPUTATIONS] = _T("Number of computations to small for bulk mode. (Vectorisation overhead too costly)");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   95|      1|		m_vErrMsg[ecIDENTIFIER_TOO_LONG] = _T("Identifier too long.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   96|      1|		m_vErrMsg[ecEXPRESSION_TOO_LONG] = _T("Expression too long.");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   97|      1|		m_vErrMsg[ecINVALID_CHARACTERS_FOUND] = _T("Invalid non printable characters found in expression/identifer!");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   98|      1|		m_vErrMsg[ecBYTECODE_IMPORT_EXPORT_DISABLED] = _T("Bytecode cannot be imported or exported when parser is using a variable factory!");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
   99|      1|		m_vErrMsg[ecUNARY_PLUS_IN_FRONT_OF_FUNCTION] = _T("Unary plus operator is not allowed in front of functions!");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
  100|      1|		m_vErrMsg[ecNESTING_LIMIT] = _T("Expression too complex. Nesting limit reached!");
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
  101|       |
  102|     44|		for (int i = 0; i < ecCOUNT; ++i)
  ------------------
  |  Branch (102:19): [True: 43, False: 1]
  ------------------
  103|     43|		{
  104|     43|			if (!m_vErrMsg[i].length())
  ------------------
  |  Branch (104:8): [True: 0, False: 43]
  ------------------
  105|      0|				throw std::runtime_error("Error definitions are incomplete!");
  106|     43|		}
  107|      1|	}
_ZN2mu11ParserErrorC2ENS_11EErrorCodesE:
  132|      3|		:m_strMsg()
  133|      3|		, m_strFormula()
  134|      3|		, m_strTok()
  135|      3|		, m_iPos(-1)
  136|      3|		, m_iErrc(a_iErrc)
  137|      3|		, m_ErrMsg(ParserErrorMsg::Instance())
  138|      3|	{
  139|      3|		m_strMsg = m_ErrMsg[m_iErrc];
  140|      3|		stringstream_type stream;
  141|      3|		stream << (int)m_iPos;
  142|      3|		ReplaceSubString(m_strMsg, _T("$POS$"), stream.str());
  ------------------
  |  |   69|      3|		#define _T(x) x
  ------------------
  143|      3|		ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok);
  ------------------
  |  |   69|      3|		#define _T(x) x
  ------------------
  144|      3|	}
_ZN2mu11ParserErrorC2ENS_11EErrorCodesERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_i:
  166|  2.13k|		:m_strMsg()
  167|  2.13k|		, m_strFormula(sExpr)
  168|  2.13k|		, m_strTok(sTok)
  169|  2.13k|		, m_iPos(iPos)
  170|  2.13k|		, m_iErrc(iErrc)
  171|  2.13k|		, m_ErrMsg(ParserErrorMsg::Instance())
  172|  2.13k|	{
  173|  2.13k|		m_strMsg = m_ErrMsg[m_iErrc];
  174|  2.13k|		stringstream_type stream;
  175|  2.13k|		stream << (int)m_iPos;
  176|  2.13k|		ReplaceSubString(m_strMsg, _T("$POS$"), stream.str());
  ------------------
  |  |   69|  2.13k|		#define _T(x) x
  ------------------
  177|  2.13k|		ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok);
  ------------------
  |  |   69|  2.13k|		#define _T(x) x
  ------------------
  178|  2.13k|	}
_ZN2mu11ParserErrorC2ENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
  187|     18|		:m_strMsg()
  188|     18|		, m_strFormula()
  189|     18|		, m_strTok(sTok)
  190|     18|		, m_iPos(iPos)
  191|     18|		, m_iErrc(iErrc)
  192|     18|		, m_ErrMsg(ParserErrorMsg::Instance())
  193|     18|	{
  194|     18|		m_strMsg = m_ErrMsg[m_iErrc];
  195|     18|		stringstream_type stream;
  196|     18|		stream << (int)m_iPos;
  197|     18|		ReplaceSubString(m_strMsg, _T("$POS$"), stream.str());
  ------------------
  |  |   69|     18|		#define _T(x) x
  ------------------
  198|     18|		ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok);
  ------------------
  |  |   69|     18|		#define _T(x) x
  ------------------
  199|     18|	}
_ZN2mu11ParserErrorD2Ev:
  250|  2.15k|	{}
_ZN2mu11ParserError16ReplaceSubStringERNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKS7_SA_:
  260|  4.30k|	{
  261|  4.30k|		string_type strResult;
  262|  4.30k|		string_type::size_type iPos(0), iNext(0);
  263|       |
  264|  4.30k|		for (;;)
  265|  6.84k|		{
  266|  6.84k|			iNext = strSource.find(strFind, iPos);
  267|  6.84k|			strResult.append(strSource, iPos, iNext - iPos);
  268|       |
  269|  6.84k|			if (iNext == string_type::npos)
  ------------------
  |  Branch (269:8): [True: 4.30k, False: 2.54k]
  ------------------
  270|  4.30k|				break;
  271|       |
  272|  2.54k|			strResult.append(strReplaceWith);
  273|  2.54k|			iPos = iNext + strFind.length();
  274|  2.54k|		}
  275|       |
  276|  4.30k|		strSource.swap(strResult);
  277|  4.30k|	}
_ZN2mu11ParserError10SetFormulaERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  293|  2.12k|	{
  294|  2.12k|		m_strFormula = a_strFormula;
  295|  2.12k|	}

_ZN2mu17ParserTokenReaderC2EPNS_10ParserBaseE:
  122|  3.96k|		:m_pParser(a_pParent)
  123|  3.96k|		, m_strFormula()
  124|  3.96k|		, m_iPos(0)
  125|  3.96k|		, m_iSynFlags(0)
  126|  3.96k|		, m_bIgnoreUndefVar(false)
  127|  3.96k|		, m_pFunDef(nullptr)
  128|  3.96k|		, m_pPostOprtDef(nullptr)
  129|  3.96k|		, m_pInfixOprtDef(nullptr)
  130|  3.96k|		, m_pOprtDef(nullptr)
  131|  3.96k|		, m_pConstDef(nullptr)
  132|  3.96k|		, m_pStrVarDef(nullptr)
  133|  3.96k|		, m_pVarDef(nullptr)
  134|  3.96k|		, m_pFactory(nullptr)
  135|  3.96k|		, m_pFactoryData(nullptr)
  136|  3.96k|		, m_vIdentFun()
  137|  3.96k|		, m_UsedVar()
  138|  3.96k|		, m_fZero(0)
  139|  3.96k|		, m_bracketStack()
  140|  3.96k|		, m_lastTok()
  141|  3.96k|		, m_cArgSep(',')
  142|  3.96k|	{
  143|  3.96k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  3.96k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.96k]
  |  |  ------------------
  |  |   79|  3.96k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  144|  3.96k|		SetParent(m_pParser);
  145|  3.96k|	}
_ZN2mu17ParserTokenReader16SaveBeforeReturnERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  165|  2.24M|	{
  166|  2.24M|		m_lastTok = tok;
  167|  2.24M|		return m_lastTok;
  168|  2.24M|	}
_ZN2mu17ParserTokenReader11AddValIdentEPFiPKcPiPdE:
  172|  3.96k|	{
  173|       |		// Use push_front is used to give user defined callbacks a higher priority than
  174|       |		// the built in ones. Otherwise reading hex numbers would not work
  175|       |		// since the "0" in "0xff" would always be read first making parsing of 
  176|       |		// the rest impossible.
  177|       |		// reference:
  178|       |		// http://sourceforge.net/projects/muparser/forums/forum/462843/topic/4824956
  179|  3.96k|		m_vIdentFun.push_front(a_pCallback);
  180|  3.96k|	}
_ZNK2mu17ParserTokenReader6GetPosEv:
  196|    216|	{
  197|    216|		return m_iPos;
  198|    216|	}
_ZNK2mu17ParserTokenReader7GetExprEv:
  207|  10.0k|	{
  208|  10.0k|		return m_strFormula;
  209|  10.0k|	}
_ZN2mu17ParserTokenReader10SetFormulaERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  225|  3.93k|	{
  226|  3.93k|		m_strFormula = a_strFormula;
  227|  3.93k|		ReInit();
  228|  3.93k|	}
_ZN2mu17ParserTokenReader6ReInitEv:
  254|   142k|	{
  255|   142k|		m_iPos = 0;
  256|   142k|		m_iSynFlags = sfSTART_OF_LINE;
  257|   142k|		m_bracketStack = std::stack<int>();
  258|   142k|		m_UsedVar.clear();
  259|   142k|		m_lastTok = token_type();
  260|   142k|	}
_ZN2mu17ParserTokenReader13ReadNextTokenEv:
  265|  2.24M|	{
  266|  2.24M|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  2.24M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.24M]
  |  |  ------------------
  |  |   79|  2.24M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  267|       |
  268|  2.24M|		const char_type* szExpr = m_strFormula.c_str();
  269|  2.24M|		token_type tok;
  270|       |
  271|       |		// Ignore all non printable characters when reading the expression
  272|  2.25M|		while (szExpr[m_iPos] > 0 && szExpr[m_iPos] <= 0x20)
  ------------------
  |  Branch (272:10): [True: 2.24M, False: 2.94k]
  |  Branch (272:32): [True: 5.26k, False: 2.24M]
  ------------------
  273|  5.26k|		{
  274|       |			// 14-31 are control characters. I don't want to have to deal with such strings at all!
  275|       |			// (see https://en.cppreference.com/w/cpp/string/byte/isprint)
  276|  5.26k|			if (szExpr[m_iPos] >= 14 && szExpr[m_iPos] <= 31)
  ------------------
  |  Branch (276:8): [True: 3.19k, False: 2.06k]
  |  Branch (276:32): [True: 11, False: 3.18k]
  ------------------
  277|     11|				Error(ecINVALID_CHARACTERS_FOUND, m_iPos);
  278|       |
  279|  5.26k|			++m_iPos;
  280|  5.26k|		}
  281|       |
  282|       |		// Check for end of formula
  283|  2.24M|		if (IsEOF(tok))
  ------------------
  |  Branch (283:7): [True: 2.06k, False: 2.24M]
  ------------------
  284|  2.06k|			return SaveBeforeReturn(tok);
  285|       |
  286|       |		// Check for user defined binary operator
  287|  2.24M|		if (IsOprt(tok))
  ------------------
  |  Branch (287:7): [True: 0, False: 2.24M]
  ------------------
  288|      0|			return SaveBeforeReturn(tok);
  289|       |
  290|       |		// Check for function token
  291|  2.24M|		if (IsFunTok(tok))
  ------------------
  |  Branch (291:7): [True: 12.5k, False: 2.23M]
  ------------------
  292|  12.5k|			return SaveBeforeReturn(tok);
  293|       |
  294|       |		// Check built in operators / tokens
  295|  2.23M|		if (IsBuiltIn(tok))
  ------------------
  |  Branch (295:7): [True: 915k, False: 1.31M]
  ------------------
  296|   915k|			return SaveBeforeReturn(tok);
  297|       |
  298|       |		// Check for function argument separators
  299|  1.31M|		if (IsArgSep(tok))
  ------------------
  |  Branch (299:7): [True: 439k, False: 878k]
  ------------------
  300|   439k|			return SaveBeforeReturn(tok);
  301|       |
  302|       |		// Check for values / constant tokens
  303|   878k|		if (IsValTok(tok))
  ------------------
  |  Branch (303:7): [True: 865k, False: 13.0k]
  ------------------
  304|   865k|			return SaveBeforeReturn(tok);
  305|       |
  306|       |		// Check for variable tokens
  307|  13.0k|		if (IsVarTok(tok))
  ------------------
  |  Branch (307:7): [True: 0, False: 13.0k]
  ------------------
  308|      0|			return SaveBeforeReturn(tok);
  309|       |
  310|       |		// Check for string variables
  311|  13.0k|		if (IsStrVarTok(tok))
  ------------------
  |  Branch (311:7): [True: 0, False: 13.0k]
  ------------------
  312|      0|			return SaveBeforeReturn(tok);
  313|       |
  314|       |		// Check for String tokens
  315|  13.0k|		if (IsString(tok))
  ------------------
  |  Branch (315:7): [True: 11.3k, False: 1.69k]
  ------------------
  316|  11.3k|			return SaveBeforeReturn(tok);
  317|       |
  318|       |		// Check for unary operators
  319|  1.69k|		if (IsInfixOpTok(tok))
  ------------------
  |  Branch (319:7): [True: 0, False: 1.69k]
  ------------------
  320|      0|			return SaveBeforeReturn(tok);
  321|       |
  322|       |		// Check for unary operators
  323|  1.69k|		if (IsPostOpTok(tok))
  ------------------
  |  Branch (323:7): [True: 0, False: 1.69k]
  ------------------
  324|      0|			return SaveBeforeReturn(tok);
  325|       |
  326|       |		// Check String for undefined variable token. Done only if a 
  327|       |		// flag is set indicating to ignore undefined variables.
  328|       |		// This is a way to conditionally avoid an error if 
  329|       |		// undefined variables occur. 
  330|       |		// (The GetUsedVar function must suppress the error for
  331|       |		// undefined variables in order to collect all variable 
  332|       |		// names including the undefined ones.)
  333|  1.69k|		if ((m_bIgnoreUndefVar || m_pFactory) && IsUndefVarTok(tok))
  ------------------
  |  Branch (333:8): [True: 1.07k, False: 617]
  |  Branch (333:29): [True: 0, False: 617]
  |  Branch (333:44): [True: 0, False: 0]
  ------------------
  334|      0|			return SaveBeforeReturn(tok);
  335|       |
  336|       |		// Check for unknown token
  337|       |		// 
  338|       |		// !!! From this point on there is no exit without an exception possible...
  339|       |		// 
  340|  1.69k|		string_type strTok;
  341|  1.69k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  342|  1.69k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (342:7): [True: 399, False: 1.29k]
  ------------------
  343|    399|			Error(ecUNASSIGNABLE_TOKEN, m_iPos, strTok);
  344|       |
  345|  1.69k|		Error(ecUNASSIGNABLE_TOKEN, m_iPos, m_strFormula.substr(m_iPos));
  346|  1.69k|		return token_type(); // never reached
  347|  1.69k|	}
_ZN2mu17ParserTokenReader9SetParentEPNS_10ParserBaseE:
  351|  3.96k|	{
  352|  3.96k|		m_pParser = a_pParent;
  353|  3.96k|		m_pFunDef = &a_pParent->m_FunDef;
  354|  3.96k|		m_pOprtDef = &a_pParent->m_OprtDef;
  355|  3.96k|		m_pInfixOprtDef = &a_pParent->m_InfixOprtDef;
  356|  3.96k|		m_pPostOprtDef = &a_pParent->m_PostOprtDef;
  357|  3.96k|		m_pVarDef = &a_pParent->m_VarDef;
  358|  3.96k|		m_pStrVarDef = &a_pParent->m_StrVarDef;
  359|  3.96k|		m_pConstDef = &a_pParent->m_ConstDef;
  360|  3.96k|	}
_ZNK2mu17ParserTokenReader12ExtractTokenEPKcRNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEm:
  372|  4.99M|	{
  373|  4.99M|		auto iEnd = m_strFormula.find_first_not_of(a_szCharSet, a_iPos);
  374|       |
  375|  4.99M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (375:7): [True: 0, False: 4.99M]
  ------------------
  376|      0|			iEnd = m_strFormula.length();
  377|       |
  378|       |		// Assign token string if there was something found
  379|  4.99M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (379:7): [True: 1.80M, False: 3.18M]
  ------------------
  380|  1.80M|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  381|       |
  382|  4.99M|		return static_cast<int>(iEnd);
  383|  4.99M|	}
_ZNK2mu17ParserTokenReader20ExtractOperatorTokenERNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEm:
  394|  2.24M|	{
  395|       |		// Changed as per Issue 6: https://code.google.com/p/muparser/issues/detail?id=6
  396|  2.24M|		auto iEnd = m_strFormula.find_first_not_of(m_pParser->ValidOprtChars(), a_iPos);
  397|  2.24M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (397:7): [True: 0, False: 2.24M]
  ------------------
  398|      0|			iEnd = m_strFormula.length();
  399|       |
  400|       |		// Assign token string if there was something found
  401|  2.24M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (401:7): [True: 436k, False: 1.80M]
  ------------------
  402|   436k|		{
  403|   436k|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  404|   436k|			return static_cast<int>(iEnd);
  405|   436k|		}
  406|  1.80M|		else
  407|  1.80M|		{
  408|       |			// There is still the chance of having to deal with an operator consisting exclusively
  409|       |			// of alphabetic characters.
  410|  1.80M|			return ExtractToken(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), a_sTok, (std::size_t)a_iPos);
  ------------------
  |  |   69|  1.80M|		#define _T(x) x
  ------------------
  411|  1.80M|		}
  412|  2.24M|	}
_ZN2mu17ParserTokenReader9IsBuiltInERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  420|  2.23M|	{
  421|  2.23M|		const char_type** const pOprtDef = m_pParser->GetOprtDef(),
  422|  2.23M|			* const szFormula = m_strFormula.c_str();
  423|       |
  424|       |		// Compare token with function and operator strings
  425|       |		// check string for operator/function
  426|  37.9M|		for (int i = 0; pOprtDef[i]; i++)
  ------------------
  |  Branch (426:19): [True: 36.6M, False: 1.31M]
  ------------------
  427|  36.6M|		{
  428|  36.6M|			std::size_t len(std::char_traits<char_type>::length(pOprtDef[i]));
  429|  36.6M|			if (string_type(pOprtDef[i]) == string_type(szFormula + m_iPos, szFormula + m_iPos + len))
  ------------------
  |  Branch (429:8): [True: 915k, False: 35.7M]
  ------------------
  430|   915k|			{
  431|   915k|				switch (i)
  432|   915k|				{
  433|  4.59k|				case cmLAND:
  ------------------
  |  Branch (433:5): [True: 4.59k, False: 910k]
  ------------------
  434|  7.04k|				case cmLOR:
  ------------------
  |  Branch (434:5): [True: 2.45k, False: 912k]
  ------------------
  435|  10.8k|				case cmLT:
  ------------------
  |  Branch (435:5): [True: 3.80k, False: 911k]
  ------------------
  436|  13.0k|				case cmGT:
  ------------------
  |  Branch (436:5): [True: 2.17k, False: 913k]
  ------------------
  437|  14.2k|				case cmLE:
  ------------------
  |  Branch (437:5): [True: 1.18k, False: 914k]
  ------------------
  438|  15.3k|				case cmGE:
  ------------------
  |  Branch (438:5): [True: 1.08k, False: 914k]
  ------------------
  439|  16.1k|				case cmNEQ:
  ------------------
  |  Branch (439:5): [True: 860, False: 914k]
  ------------------
  440|  17.2k|				case cmEQ:
  ------------------
  |  Branch (440:5): [True: 1.07k, False: 914k]
  ------------------
  441|  43.6k|				case cmADD:
  ------------------
  |  Branch (441:5): [True: 26.3k, False: 888k]
  ------------------
  442|  97.4k|				case cmSUB:
  ------------------
  |  Branch (442:5): [True: 53.8k, False: 861k]
  ------------------
  443|   106k|				case cmMUL:
  ------------------
  |  Branch (443:5): [True: 8.77k, False: 906k]
  ------------------
  444|   109k|				case cmDIV:
  ------------------
  |  Branch (444:5): [True: 3.67k, False: 911k]
  ------------------
  445|   280k|				case cmPOW:
  ------------------
  |  Branch (445:5): [True: 170k, False: 744k]
  ------------------
  446|   280k|				case cmASSIGN:
  ------------------
  |  Branch (446:5): [True: 7, False: 915k]
  ------------------
  447|       |					// The assignment operator need special treatment
  448|   280k|					if (i == cmASSIGN && m_iSynFlags & noASSIGN)
  ------------------
  |  Branch (448:10): [True: 7, False: 280k]
  |  Branch (448:27): [True: 6, False: 1]
  ------------------
  449|      6|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  450|       |
  451|   280k|					if (!m_pParser->HasBuiltInOprt()) continue;
  ------------------
  |  Branch (451:10): [True: 0, False: 280k]
  ------------------
  452|   280k|					if (m_iSynFlags & noOPT)
  ------------------
  |  Branch (452:10): [True: 67.2k, False: 213k]
  ------------------
  453|  67.2k|					{
  454|       |						// Maybe its an infix operator not an operator
  455|       |						// Both operator types can share characters in 
  456|       |						// their identifiers
  457|  67.2k|						if (IsInfixOpTok(a_Tok))
  ------------------
  |  Branch (457:11): [True: 67.0k, False: 123]
  ------------------
  458|  67.0k|							return true;
  459|       |
  460|    123|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  461|    123|					}
  462|       |
  463|   213k|					m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE | noEND;
  464|   213k|					break;
  465|       |
  466|   273k|				case cmBO:
  ------------------
  |  Branch (466:5): [True: 273k, False: 641k]
  ------------------
  467|   273k|					if (m_iSynFlags & noBO)
  ------------------
  |  Branch (467:10): [True: 8, False: 273k]
  ------------------
  468|      8|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  469|       |
  470|   273k|					if (m_lastTok.GetCode() == cmFUNC)
  ------------------
  |  Branch (470:10): [True: 12.5k, False: 261k]
  ------------------
  471|  12.5k|						m_iSynFlags = noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  472|   261k|					else
  473|   261k|						m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  474|       |
  475|   273k|					if ((int)m_bracketStack.size() >= MaxNestingDepth)
  ------------------
  |  Branch (475:10): [True: 9, False: 273k]
  ------------------
  476|      9|						Error(ecNESTING_LIMIT, m_iPos, pOprtDef[i]);
  477|       |
  478|   273k|					m_bracketStack.push(cmBO);
  479|   273k|					break;
  480|       |
  481|   137k|				case cmBC:
  ------------------
  |  Branch (481:5): [True: 137k, False: 778k]
  ------------------
  482|   137k|					if (m_iSynFlags & noBC)
  ------------------
  |  Branch (482:10): [True: 10, False: 137k]
  ------------------
  483|     10|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  484|       |
  485|   137k|					m_iSynFlags = noBO | noVAR | noVAL | noFUN | noINFIXOP | noSTR | noASSIGN;
  486|       |
  487|   137k|					if (!m_bracketStack.empty())
  ------------------
  |  Branch (487:10): [True: 137k, False: 19]
  ------------------
  488|   137k|						m_bracketStack.pop();
  489|     19|					else
  490|     19|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  491|   137k|					break;
  492|       |
  493|  82.3k|				case cmELSE:
  ------------------
  |  Branch (493:5): [True: 82.3k, False: 832k]
  ------------------
  494|  82.3k|					if (m_iSynFlags & noELSE)
  ------------------
  |  Branch (494:10): [True: 4, False: 82.3k]
  ------------------
  495|      4|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  496|       |
  497|  82.3k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  498|  82.3k|					break;
  499|       |
  500|   141k|				case cmIF:
  ------------------
  |  Branch (500:5): [True: 141k, False: 774k]
  ------------------
  501|   141k|					if (m_iSynFlags & noIF)
  ------------------
  |  Branch (501:10): [True: 12, False: 141k]
  ------------------
  502|     12|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  503|       |
  504|   141k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  505|   141k|					break;
  506|       |
  507|      0|				default:      // The operator is listed in c_DefaultOprt, but not here. This is a bad thing...
  ------------------
  |  Branch (507:5): [True: 0, False: 915k]
  ------------------
  508|      0|					Error(ecINTERNAL_ERROR);
  509|   915k|				} // switch operator id
  510|       |
  511|   848k|				m_iPos += (int)len;
  512|   848k|				a_Tok.Set((ECmdCode)i, pOprtDef[i]);
  513|   848k|				return true;
  514|   915k|			} // if operator string found
  515|  36.6M|		} // end of for all operator strings
  516|       |
  517|  1.31M|		return false;
  518|  2.23M|	}
_ZN2mu17ParserTokenReader8IsArgSepERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  522|  1.31M|	{
  523|  1.31M|		const char_type* szFormula = m_strFormula.c_str();
  524|       |
  525|  1.31M|		if (szFormula[m_iPos] == m_cArgSep)
  ------------------
  |  Branch (525:7): [True: 439k, False: 877k]
  ------------------
  526|   439k|		{
  527|       |			// copy the separator into null terminated string
  528|   439k|			char_type szSep[2];
  529|   439k|			szSep[0] = m_cArgSep;
  530|   439k|			szSep[1] = 0;
  531|       |
  532|   439k|			if (m_iSynFlags & noARG_SEP)
  ------------------
  |  Branch (532:8): [True: 6, False: 439k]
  ------------------
  533|      6|				Error(ecUNEXPECTED_ARG_SEP, m_iPos, szSep);
  534|       |
  535|   439k|			m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN;
  536|   439k|			m_iPos++;
  537|   439k|			a_Tok.Set(cmARG_SEP, szSep);
  538|   439k|			return true;
  539|   439k|		}
  540|       |
  541|   877k|		return false;
  542|  1.31M|	}
_ZN2mu17ParserTokenReader5IsEOFERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  553|  2.24M|	{
  554|  2.24M|		const char_type* szFormula = m_strFormula.c_str();
  555|       |
  556|       |		// check for EOF
  557|  2.24M|		if (!szFormula[m_iPos] /*|| szFormula[m_iPos] == '\n'*/)
  ------------------
  |  Branch (557:7): [True: 2.81k, False: 2.24M]
  ------------------
  558|  2.81k|		{
  559|  2.81k|			if (m_iSynFlags & noEND)
  ------------------
  |  Branch (559:8): [True: 621, False: 2.19k]
  ------------------
  560|    621|				Error(ecUNEXPECTED_EOF, m_iPos);
  561|       |
  562|  2.81k|			if (!m_bracketStack.empty())
  ------------------
  |  Branch (562:8): [True: 135, False: 2.68k]
  ------------------
  563|    135|				Error(ecMISSING_PARENS, m_iPos, _T(")"));
  ------------------
  |  |   69|    135|		#define _T(x) x
  ------------------
  564|       |
  565|  2.81k|			m_iSynFlags = 0;
  566|  2.81k|			a_Tok.Set(cmEND);
  567|  2.81k|			return true;
  568|  2.81k|		}
  569|       |
  570|  2.24M|		return false;
  571|  2.24M|	}
_ZN2mu17ParserTokenReader12IsInfixOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  578|  67.8k|	{
  579|  67.8k|		string_type sTok;
  580|  67.8k|		auto iEnd = ExtractToken(m_pParser->ValidInfixOprtChars(), sTok, (std::size_t)m_iPos);
  581|  67.8k|		if (iEnd == m_iPos)
  ------------------
  |  Branch (581:7): [True: 413, False: 67.4k]
  ------------------
  582|    413|			return false;
  583|       |
  584|       |		// iterate over all postfix operator strings
  585|  67.4k|		funmap_type::const_reverse_iterator it = m_pInfixOprtDef->rbegin();
  586|  85.8k|		for (; it != m_pInfixOprtDef->rend(); ++it)
  ------------------
  |  Branch (586:10): [True: 85.5k, False: 297]
  ------------------
  587|  85.5k|		{
  588|  85.5k|			if (sTok.find(it->first) != 0)
  ------------------
  |  Branch (588:8): [True: 18.4k, False: 67.1k]
  ------------------
  589|  18.4k|				continue;
  590|       |
  591|  67.1k|			a_Tok.Set(it->second, it->first);
  592|  67.1k|			m_iPos += (int)it->first.length();
  593|       |
  594|  67.1k|			if (m_iSynFlags & noINFIXOP)
  ------------------
  |  Branch (594:8): [True: 30, False: 67.0k]
  ------------------
  595|     30|				Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString());
  596|       |
  597|  67.1k|			m_iSynFlags |= noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN | noARG_SEP;
  598|  67.1k|			return true;
  599|  85.5k|		}
  600|       |
  601|    297|		return false;
  602|  67.4k|	}
_ZN2mu17ParserTokenReader8IsFunTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  612|  2.24M|	{
  613|  2.24M|		string_type strTok;
  614|  2.24M|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  615|  2.24M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (615:7): [True: 1.36M, False: 877k]
  ------------------
  616|  1.36M|			return false;
  617|       |
  618|   877k|		funmap_type::const_iterator item = m_pFunDef->find(strTok);
  619|   877k|		if (item == m_pFunDef->end())
  ------------------
  |  Branch (619:7): [True: 864k, False: 12.5k]
  ------------------
  620|   864k|			return false;
  621|       |
  622|       |		// Check if the next sign is an opening bracket
  623|  12.5k|		const char_type* szFormula = m_strFormula.c_str();
  624|  12.5k|		if (szFormula[iEnd] != '(')
  ------------------
  |  Branch (624:7): [True: 21, False: 12.5k]
  ------------------
  625|     21|			return false;
  626|       |
  627|       |		// fix for #164: https://github.com/beltoforion/muparser/issues/164
  628|  12.5k|		if (m_lastTok.GetFuncAddr() == generic_callable_type{ (erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr })
  ------------------
  |  Branch (628:7): [True: 1, False: 12.5k]
  ------------------
  629|      1|		{
  630|      1|			Error(ecUNARY_PLUS_IN_FRONT_OF_FUNCTION, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  631|      1|		}
  632|       |
  633|  12.5k|		a_Tok.Set(item->second, strTok);
  634|       |
  635|  12.5k|		m_iPos = (int)iEnd;
  636|  12.5k|		if (m_iSynFlags & noFUN)
  ------------------
  |  Branch (636:7): [True: 2, False: 12.5k]
  ------------------
  637|      2|			Error(ecUNEXPECTED_FUN, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  638|       |
  639|  12.5k|		m_iSynFlags = noANY ^ noBO;
  640|  12.5k|		return true;
  641|  12.5k|	}
_ZN2mu17ParserTokenReader6IsOprtERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  649|  2.24M|	{
  650|  2.24M|		const char_type* const szExpr = m_strFormula.c_str();
  651|  2.24M|		string_type strTok;
  652|       |
  653|  2.24M|		auto iEnd = ExtractOperatorToken(strTok, (std::size_t)m_iPos);
  654|  2.24M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (654:7): [True: 1.80M, False: 436k]
  ------------------
  655|  1.80M|			return false;
  656|       |
  657|       |		// Check if the operator is a built in operator, if so ignore it here
  658|   436k|		const char_type** const pOprtDef = m_pParser->GetOprtDef();
  659|  5.88M|		for (int i = 0; m_pParser->HasBuiltInOprt() && pOprtDef[i]; ++i)
  ------------------
  |  Branch (659:19): [True: 5.88M, False: 0]
  |  Branch (659:50): [True: 5.81M, False: 71.2k]
  ------------------
  660|  5.81M|		{
  661|  5.81M|			if (string_type(pOprtDef[i]) == strTok)
  ------------------
  |  Branch (661:8): [True: 365k, False: 5.44M]
  ------------------
  662|   365k|				return false;
  663|  5.81M|		}
  664|       |
  665|       |		// Note:
  666|       |		// All tokens in oprt_bin_maptype are have been sorted by their length
  667|       |		// Long operators must come first! Otherwise short names (like: "add") that
  668|       |		// are part of long token names (like: "add123") will be found instead 
  669|       |		// of the long ones.
  670|       |		// Length sorting is done with ascending length so we use a reverse iterator here.
  671|  71.2k|		funmap_type::const_reverse_iterator it = m_pOprtDef->rbegin();
  672|  71.2k|		for (; it != m_pOprtDef->rend(); ++it)
  ------------------
  |  Branch (672:10): [True: 0, False: 71.2k]
  ------------------
  673|      0|		{
  674|      0|			const string_type& sID = it->first;
  675|      0|			if (sID == string_type(szExpr + m_iPos, szExpr + m_iPos + sID.length()))
  ------------------
  |  Branch (675:8): [True: 0, False: 0]
  ------------------
  676|      0|			{
  677|      0|				a_Tok.Set(it->second, strTok);
  678|       |
  679|       |				// operator was found
  680|      0|				if (m_iSynFlags & noOPT)
  ------------------
  |  Branch (680:9): [True: 0, False: 0]
  ------------------
  681|      0|				{
  682|       |					// An operator was found but is not expected to occur at
  683|       |					// this position of the formula, maybe it is an infix 
  684|       |					// operator, not a binary operator. Both operator types
  685|       |					// can share characters in their identifiers.
  686|      0|					if (IsInfixOpTok(a_Tok))
  ------------------
  |  Branch (686:10): [True: 0, False: 0]
  ------------------
  687|      0|						return true;
  688|      0|					else
  689|      0|					{
  690|       |						// nope, no infix operator
  691|      0|						return false;
  692|       |						//Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString()); 
  693|      0|					}
  694|       |
  695|      0|				}
  696|       |
  697|      0|				m_iPos += (int)sID.length();
  698|      0|				m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noEND | noASSIGN;
  699|      0|				return true;
  700|      0|			}
  701|      0|		}
  702|       |
  703|  71.2k|		return false;
  704|  71.2k|	}
_ZN2mu17ParserTokenReader11IsPostOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  709|    617|	{
  710|       |		// <ibg 20110629> Do not check for postfix operators if they are not allowed at
  711|       |		//                the current expression index.
  712|       |		//
  713|       |		//  This will fix the bug reported here:  
  714|       |		//
  715|       |		//  http://sourceforge.net/tracker/index.php?func=detail&aid=3343891&group_id=137191&atid=737979
  716|       |		//
  717|    617|		if (m_iSynFlags & noPOSTOP)
  ------------------
  |  Branch (717:7): [True: 400, False: 217]
  ------------------
  718|    400|			return false;
  719|       |		// </ibg>
  720|       |
  721|       |		// Tricky problem with equations like "3m+5":
  722|       |		//     m is a postfix operator, + is a valid sign for postfix operators and 
  723|       |		//     for binary operators parser detects "m+" as operator string and 
  724|       |		//     finds no matching postfix operator.
  725|       |		// 
  726|       |		// This is a special case so this routine slightly differs from the other
  727|       |		// token readers.
  728|       |
  729|       |		// Test if there could be a postfix operator
  730|    217|		string_type sTok;
  731|    217|		auto iEnd = ExtractToken(m_pParser->ValidOprtChars(), sTok, (std::size_t)m_iPos);
  732|    217|		if (iEnd == m_iPos)
  ------------------
  |  Branch (732:7): [True: 49, False: 168]
  ------------------
  733|     49|			return false;
  734|       |
  735|       |		// iterate over all postfix operator strings
  736|    168|		funmap_type::const_reverse_iterator it = m_pPostOprtDef->rbegin();
  737|    168|		for (; it != m_pPostOprtDef->rend(); ++it)
  ------------------
  |  Branch (737:10): [True: 0, False: 168]
  ------------------
  738|      0|		{
  739|      0|			if (sTok.find(it->first) != 0)
  ------------------
  |  Branch (739:8): [True: 0, False: 0]
  ------------------
  740|      0|				continue;
  741|       |
  742|      0|			a_Tok.Set(it->second, sTok);
  743|      0|			m_iPos += (int)it->first.length();
  744|       |
  745|      0|			m_iSynFlags = noVAL | noVAR | noFUN | noBO | noPOSTOP | noSTR | noASSIGN;
  746|      0|			return true;
  747|      0|		}
  748|       |
  749|    168|		return false;
  750|    168|	}
_ZN2mu17ParserTokenReader8IsValTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  761|   877k|	{
  762|   877k|		MUP_ASSERT(m_pConstDef != nullptr);
  ------------------
  |  |   78|   877k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 877k]
  |  |  ------------------
  |  |   79|   877k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  763|   877k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|   877k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 877k]
  |  |  ------------------
  |  |   79|   877k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  764|       |
  765|   877k|		string_type strTok;
  766|   877k|		value_type fVal(0);
  767|       |
  768|       |		// 2.) Check for user defined constant
  769|       |		// Read everything that could be a constant name
  770|   877k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  771|   877k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (771:7): [True: 864k, False: 12.7k]
  ------------------
  772|   864k|		{
  773|   864k|			valmap_type::const_iterator item = m_pConstDef->find(strTok);
  774|   864k|			if (item != m_pConstDef->end())
  ------------------
  |  Branch (774:8): [True: 1.94k, False: 862k]
  ------------------
  775|  1.94k|			{
  776|  1.94k|				m_iPos = iEnd;
  777|  1.94k|				a_Tok.SetVal(item->second, strTok);
  778|       |
  779|  1.94k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (779:9): [True: 4, False: 1.94k]
  ------------------
  780|      4|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  781|       |
  782|  1.94k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  783|  1.94k|				return true;
  784|  1.94k|			}
  785|   864k|		}
  786|       |
  787|       |		// 3.call the value recognition functions provided by the user
  788|       |		// Call user defined value recognition functions
  789|   875k|		std::list<identfun_type>::const_iterator item = m_vIdentFun.begin();
  790|   887k|		for (item = m_vIdentFun.begin(); item != m_vIdentFun.end(); ++item)
  ------------------
  |  Branch (790:36): [True: 875k, False: 12.0k]
  ------------------
  791|   875k|		{
  792|   875k|			int iStart = m_iPos;
  793|   875k|			if ((*item)(m_strFormula.c_str() + m_iPos, &m_iPos, &fVal) == 1)
  ------------------
  |  Branch (793:8): [True: 863k, False: 12.0k]
  ------------------
  794|   863k|			{
  795|       |				// 2013-11-27 Issue 2:  https://code.google.com/p/muparser/issues/detail?id=2
  796|   863k|				strTok.assign(m_strFormula.c_str(), iStart, (std::size_t)m_iPos - iStart);
  797|       |
  798|   863k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (798:9): [True: 17, False: 863k]
  ------------------
  799|     17|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  800|       |
  801|   863k|				a_Tok.SetVal(fVal, strTok);
  802|   863k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  803|   863k|				return true;
  804|   863k|			}
  805|   875k|		}
  806|       |
  807|  12.0k|		return false;
  808|   875k|	}
_ZN2mu17ParserTokenReader8IsVarTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  816|  12.0k|	{
  817|  12.0k|		if (m_pVarDef->empty())
  ------------------
  |  Branch (817:7): [True: 12.0k, False: 0]
  ------------------
  818|  12.0k|			return false;
  819|       |
  820|      0|		string_type strTok;
  821|      0|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  822|      0|		if (iEnd == m_iPos)
  ------------------
  |  Branch (822:7): [True: 0, False: 0]
  ------------------
  823|      0|			return false;
  824|       |
  825|      0|		varmap_type::const_iterator item = m_pVarDef->find(strTok);
  826|      0|		if (item == m_pVarDef->end())
  ------------------
  |  Branch (826:7): [True: 0, False: 0]
  ------------------
  827|      0|			return false;
  828|       |
  829|      0|		if (m_iSynFlags & noVAR)
  ------------------
  |  Branch (829:7): [True: 0, False: 0]
  ------------------
  830|      0|			Error(ecUNEXPECTED_VAR, m_iPos, strTok);
  831|       |
  832|      0|		m_pParser->OnDetectVar(&m_strFormula, m_iPos, iEnd);
  833|       |
  834|      0|		m_iPos = iEnd;
  835|      0|		a_Tok.SetVar(item->second, strTok);
  836|      0|		m_UsedVar[item->first] = item->second;  // Add variable to used-var-list
  837|       |
  838|      0|		m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR;
  839|       |
  840|       |		//  Zur Info hier die SynFlags von IsVal():
  841|       |		//    m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN; 
  842|      0|		return true;
  843|      0|	}
_ZN2mu17ParserTokenReader11IsStrVarTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  847|  12.0k|	{
  848|  12.0k|		if (!m_pStrVarDef || m_pStrVarDef->empty())
  ------------------
  |  Branch (848:7): [True: 0, False: 12.0k]
  |  Branch (848:24): [True: 12.0k, False: 0]
  ------------------
  849|  12.0k|			return false;
  850|       |
  851|      0|		string_type strTok;
  852|      0|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  853|      0|		if (iEnd == m_iPos)
  ------------------
  |  Branch (853:7): [True: 0, False: 0]
  ------------------
  854|      0|			return false;
  855|       |
  856|      0|		strmap_type::const_iterator item = m_pStrVarDef->find(strTok);
  857|      0|		if (item == m_pStrVarDef->end())
  ------------------
  |  Branch (857:7): [True: 0, False: 0]
  ------------------
  858|      0|			return false;
  859|       |
  860|      0|		if (m_iSynFlags & noSTR)
  ------------------
  |  Branch (860:7): [True: 0, False: 0]
  ------------------
  861|      0|			Error(ecUNEXPECTED_VAR, m_iPos, strTok);
  862|       |
  863|      0|		m_iPos = iEnd;
  864|      0|		if (!m_pParser->m_vStringVarBuf.size())
  ------------------
  |  Branch (864:7): [True: 0, False: 0]
  ------------------
  865|      0|			Error(ecINTERNAL_ERROR);
  866|       |		
  867|      0|		auto strVal = m_pParser->m_vStringVarBuf[item->second];
  868|      0|		m_pParser->m_vStringBuf.push_back(strVal);
  869|      0|		a_Tok.SetString(strVal, m_pParser->m_vStringBuf.size()-1);
  870|       |
  871|      0|		m_iSynFlags = noANY ^ (noBC | noOPT | noEND | noARG_SEP);
  872|      0|		return true;
  873|      0|	}
_ZN2mu17ParserTokenReader8IsStringERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  936|  12.0k|	{
  937|  12.0k|		if (m_strFormula[m_iPos] != '"')
  ------------------
  |  Branch (937:7): [True: 617, False: 11.4k]
  ------------------
  938|    617|			return false;
  939|       |
  940|  11.4k|		string_type strBuf(&m_strFormula[(std::size_t)m_iPos + 1]);
  941|  11.4k|		std::size_t iEnd(0), iSkip(0);
  942|       |
  943|       |		// parser over escaped '\"' end replace them with '"'
  944|  12.0k|		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|  11.4k|		#define _T(x) x
  ------------------
              		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|    570|		#define _T(x) x
  ------------------
  |  Branch (944:38): [True: 11.9k, False: 54]
  ------------------
  945|  11.9k|		{
  946|  11.9k|			if (iEnd==0 || strBuf[iEnd - 1] != '\\') 
  ------------------
  |  Branch (946:8): [True: 9.97k, False: 2.00k]
  |  Branch (946:19): [True: 1.43k, False: 570]
  ------------------
  947|  11.4k|				break;
  948|       |
  949|    570|			strBuf.replace(iEnd - 1, 2, _T("\""));
  ------------------
  |  |   69|    570|		#define _T(x) x
  ------------------
  950|    570|			iSkip++;
  951|    570|		}
  952|       |
  953|  11.4k|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (953:7): [True: 54, False: 11.4k]
  ------------------
  954|     54|			Error(ecUNTERMINATED_STRING, m_iPos, _T("\""));
  ------------------
  |  |   69|     54|		#define _T(x) x
  ------------------
  955|       |
  956|  11.4k|		string_type strTok(strBuf.begin(), strBuf.begin() + iEnd);
  957|       |
  958|  11.4k|		if (m_iSynFlags & noSTR)
  ------------------
  |  Branch (958:7): [True: 43, False: 11.4k]
  ------------------
  959|     43|			Error(ecUNEXPECTED_STR, m_iPos, strTok);
  960|       |
  961|  11.4k|		m_pParser->m_vStringBuf.push_back(strTok); // Store string in internal buffer
  962|  11.4k|		a_Tok.SetString(strTok, m_pParser->m_vStringBuf.size()-1);
  963|       |
  964|  11.4k|		m_iPos += (int)strTok.length() + 2 + (int)iSkip;  // +2 for quotes; +iSkip for escape characters 
  965|  11.4k|		m_iSynFlags = noANY ^ (noARG_SEP | noBC | noOPT | noEND);
  966|       |
  967|  11.4k|		return true;
  968|  12.0k|	}
_ZNK2mu17ParserTokenReader5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
  981|  1.69k|	{
  982|  1.69k|		m_pParser->Error(a_iErrc, a_iPos, a_sTok);
  983|  1.69k|	}
_ZNK2mu17ParserTokenReader9GetArgSepEv:
  993|  3.96k|	{
  994|  3.96k|		return m_cArgSep;
  995|  3.96k|	}

LLVMFuzzerTestOneInput:
   22|  3.96k|extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
   23|  3.96k|  std::string line_string((char *)data, size);
   24|  3.96k|  try {
   25|  3.96k|    mu::Parser parser;
   26|  3.96k|    parser.SetExpr(line_string);
   27|  3.96k|    parser.Eval();
   28|  3.96k|  } catch (mu::Parser::exception_type &e) {
   29|  2.15k|  } catch (mu::ParserError &e) {
   30|      0|  }
   31|  3.96k|  return 0;
   32|  3.96k|}

