_ZN2mu10ParserBase9DefineFunIPFddEEEvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEET_b:
  145|  85.3k|		{
  146|  85.3k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  85.3k|		}
_ZN2mu10ParserBase9DefineFunIPFdddEEEvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEET_b:
  145|  3.71k|		{
  146|  3.71k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  3.71k|		}
_ZN2mu10ParserBase9DefineFunIPFdPKdiEEEvRKNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEET_b:
  145|  14.8k|		{
  146|  14.8k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  14.8k|		}
_ZN2mu10ParserBase9DefineFunIPFdvEEEvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEET_b:
  145|  3.71k|		{
  146|  3.71k|			AddCallback(a_strName, ParserCallback(a_pFun, a_bAllowOpt), m_FunDef, ValidNameChars());
  147|  3.71k|		}
_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|   815k|			{
  244|   815k|				return m_cDecPoint;
  245|   815k|			}
_ZNK2mu10ParserBase14change_dec_sepIcE16do_thousands_sepEv:
  248|   812k|			{
  249|   812k|				return m_cThousandsSep;
  250|   812k|			}
_ZNK2mu10ParserBase14change_dec_sepIcE11do_groupingEv:
  253|   812k|			{
  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|   812k|				return std::string(1, (char)(m_cThousandsSep > 0 ? m_nGroup : CHAR_MAX));
  ------------------
  |  Branch (259:34): [True: 0, False: 812k]
  ------------------
  260|   812k|			}

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

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

_ZN2mu8TypeInfoIdE9IsIntegerEv:
   52|  3.71k|		static bool IsInteger() { return false; }
_ZN2mu8MathImplIdE3SinEd:
  118|    333|		static T Sin(T v) { return sin(v); }
_ZN2mu8MathImplIdE3CosEd:
  119|    197|		static T Cos(T v) { return cos(v); }
_ZN2mu8MathImplIdE3TanEd:
  120|    304|		static T Tan(T v) { return tan(v); }
_ZN2mu8MathImplIdE3CotEd:
  121|    200|		static T Cot(T v) { return 1.0 / tan(v); }
_ZN2mu8MathImplIdE4ASinEd:
  122|    193|		static T ASin(T v) { return asin(v); }
_ZN2mu8MathImplIdE4ACosEd:
  123|    197|		static T ACos(T v) { return acos(v); }
_ZN2mu8MathImplIdE4ATanEd:
  124|    232|		static T ATan(T v) { return atan(v); }
_ZN2mu8MathImplIdE5ATan2Edd:
  125|    586|		static T ATan2(T v1, T v2) { return atan2(v1, v2); }
_ZN2mu8MathImplIdE4SinhEd:
  126|    196|		static T Sinh(T v) { return sinh(v); }
_ZN2mu8MathImplIdE4CoshEd:
  127|    196|		static T Cosh(T v) { return cosh(v); }
_ZN2mu8MathImplIdE4TanhEd:
  128|    195|		static T Tanh(T v) { return tanh(v); }
_ZN2mu8MathImplIdE4CothEd:
  129|    227|		static T Coth(T v) { return 1.0 / tanh(v); }
_ZN2mu8MathImplIdE5ASinhEd:
  130|    196|		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|    195|		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|    323|		static T Log10(T v) { return log10(v); }         // Logarithm base 10
_ZN2mu8MathImplIdE3LogEd:
  133|    567|		static T Log(T v) { return log(v); }
_ZN2mu8MathImplIdE3ExpEd:
  136|    214|		static T Exp(T v) { return exp(v); }
_ZN2mu8MathImplIdE4SqrtEd:
  138|    193|		static T Sqrt(T v) { return sqrt(v); }
_ZN2mu8MathImplIdE4SignEd:
  140|    474|		static T Sign(T v) { return (T)((v < 0) ? -1 : (v > 0) ? 1 : 0); }
  ------------------
  |  Branch (140:35): [True: 200, False: 274]
  |  Branch (140:50): [True: 250, False: 24]
  ------------------
_ZN2mu8MathImplIdE4RintEd:
  139|    227|		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|    599|		{
  156|    599|			if (!a_iArgc)
  ------------------
  |  Branch (156:8): [True: 0, False: 599]
  ------------------
  157|      0|				throw ParserError(_T("too few arguments for function sum."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  158|       |
  159|    599|			T fRes = 0;
  160|  76.5k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (160:20): [True: 75.9k, False: 599]
  ------------------
  161|    599|			return fRes;
  162|    599|		}
_ZN2mu8MathImplIdE3AvgEPKdi:
  165|    766|		{
  166|    766|			if (!a_iArgc)
  ------------------
  |  Branch (166:8): [True: 0, False: 766]
  ------------------
  167|      0|				throw ParserError(_T("too few arguments for function avg."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  168|       |
  169|    766|			T fRes = 0;
  170|  79.3k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (170:20): [True: 78.5k, False: 766]
  ------------------
  171|    766|			return fRes / (T)a_iArgc;
  172|    766|		}
_ZN2mu8MathImplIdE3MinEPKdi:
  175|  1.22k|		{
  176|  1.22k|			if (!a_iArgc)
  ------------------
  |  Branch (176:8): [True: 0, False: 1.22k]
  ------------------
  177|      0|				throw ParserError(_T("too few arguments for function min."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  178|       |
  179|  1.22k|			T fRes = a_afArg[0];
  180|  69.8k|			for (int i = 0; i < a_iArgc; ++i)
  ------------------
  |  Branch (180:20): [True: 68.5k, False: 1.22k]
  ------------------
  181|  68.5k|				fRes = std::min(fRes, a_afArg[i]);
  182|       |
  183|  1.22k|			return fRes;
  184|  1.22k|		}
_ZN2mu8MathImplIdE3MaxEPKdi:
  187|  1.39k|		{
  188|  1.39k|			if (!a_iArgc)
  ------------------
  |  Branch (188:8): [True: 0, False: 1.39k]
  ------------------
  189|      0|				throw ParserError(_T("too few arguments for function max."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  190|       |
  191|  1.39k|			T fRes = a_afArg[0];
  192|  88.6k|			for (int i = 0; i < a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]);
  ------------------
  |  Branch (192:20): [True: 87.2k, False: 1.39k]
  ------------------
  193|       |
  194|  1.39k|			return fRes;
  195|  1.39k|		}
_ZN2mu8MathImplIdE3RndEv:
  143|  1.06k|		{
  144|  1.06k|			static std::random_device rd;  
  145|  1.06k|			static std::mt19937 gen(rd()); 
  146|  1.06k|			static std::uniform_real_distribution<T> dis(0.0, 1.0); // Range [0, 1)
  147|       |
  148|  1.06k|			return dis(gen);
  149|  1.06k|		}
_ZN2mu8MathImplIdE10UnaryMinusEd:
  151|  14.7k|		static T UnaryMinus(T v) { return -v; }
_ZN2mu8MathImplIdE3PowEdd:
  141|   106k|		static T Pow(T v1, T v2) { return std::pow(v1, v2); }

_ZNK2mu21generic_callable_type12call_multfunEPKdi:
  104|  3.98k|		{
  105|  3.98k|			if (_pUserData == nullptr) {
  ------------------
  |  Branch (105:8): [True: 3.98k, False: 0]
  ------------------
  106|  3.98k|				auto multfun_typed_ptr = reinterpret_cast<multfun_type>(_pRawFun);
  107|  3.98k|				return (*multfun_typed_ptr)(a_afArg, a_iArgc);
  108|  3.98k|			} 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.98k|		}
_ZNK2mu21generic_callable_typeeqES0_:
  131|  46.2k|		{
  132|  46.2k|			return _pRawFun == other._pRawFun && _pUserData == other._pUserData; 
  ------------------
  |  Branch (132:11): [True: 2.95k, False: 43.2k]
  |  Branch (132:41): [True: 2.95k, False: 0]
  ------------------
  133|  46.2k|		}
_ZNK2mu21generic_callable_typeeqEDn:
  141|  35.6k|		{
  142|  35.6k|			return _pRawFun == nullptr; 
  143|  35.6k|		}
_ZNK2mu21generic_callable_typeneEDn:
  146|  57.2k|		{
  147|  57.2k|			return _pRawFun != nullptr; 
  148|  57.2k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE7GetCodeEv:
  383|  9.09M|		{
  384|  9.09M|			if (m_pCallback.get())
  ------------------
  |  Branch (384:8): [True: 598k, False: 8.49M]
  ------------------
  385|   598k|			{
  386|   598k|				return m_pCallback->GetCode();
  387|   598k|			}
  388|  8.49M|			else
  389|  8.49M|			{
  390|  8.49M|				return m_iCode;
  391|  8.49M|			}
  392|  9.09M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6GetPriEv:
  409|  33.1k|		{
  410|  33.1k|			if (!m_pCallback.get())
  ------------------
  |  Branch (410:8): [True: 0, False: 33.1k]
  ------------------
  411|      0|				throw ParserError(ecINTERNAL_ERROR);
  412|       |
  413|  33.1k|			if (m_pCallback->GetCode() != cmOPRT_BIN && m_pCallback->GetCode() != cmOPRT_INFIX)
  ------------------
  |  Branch (413:8): [True: 33.1k, False: 0]
  |  Branch (413:48): [True: 0, False: 33.1k]
  ------------------
  414|      0|				throw ParserError(ecINTERNAL_ERROR);
  415|       |
  416|  33.1k|			return m_pCallback->GetPri();
  417|  33.1k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetAsStringEv:
  514|    191|		{
  515|    191|			return m_strTok;
  516|    191|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2Ev:
  192|  2.31M|			:m_iCode(cmUNKNOWN)
  193|  2.31M|			, m_iType(tpVOID)
  194|  2.31M|			, m_pTok(0)
  195|  2.31M|			, m_iIdx(-1)
  196|  2.31M|			, m_strTok()
  197|  2.31M|			, m_strVal()
  198|  2.31M|			, m_fVal(0)
  199|  2.31M|			, m_pCallback()
  200|  2.31M|		{}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetFuncAddrEv:
  444|   145k|		{
  445|   145k|			return (m_pCallback.get())
  ------------------
  |  Branch (445:11): [True: 125k, False: 19.5k]
  ------------------
  446|   145k|				? generic_callable_type{(erased_fun_type)m_pCallback->GetAddr(),
  447|   125k|				                        m_pCallback->GetUserData()}
  448|   145k|				: generic_callable_type{};
  449|   145k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetArgCountEv:
  487|   142k|		{
  488|   142k|			MUP_ASSERT(m_pCallback.get());
  ------------------
  |  |   78|   142k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 142k]
  |  |  ------------------
  |  |   79|   142k|            {														\
  |  |   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|   142k|			if (!m_pCallback->IsValid())
  ------------------
  |  Branch (490:8): [True: 0, False: 142k]
  ------------------
  491|      0|				throw ParserError(ecINTERNAL_ERROR);
  492|       |
  493|   142k|			return m_pCallback->GetArgc();
  494|   142k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6SetValEdRKS7_:
  297|   986k|		{
  298|   986k|			m_iCode = cmVAL;
  299|   986k|			m_iType = tpDBL;
  300|   986k|			m_fVal = a_fVal;
  301|   986k|			m_strTok = a_strTok;
  302|   986k|			m_iIdx = -1;
  303|       |
  304|   986k|			m_pTok = 0;
  305|   986k|			m_pCallback.reset(0);
  306|       |
  307|   986k|			return *this;
  308|   986k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6GetValEv:
  458|   835k|		{
  459|   835k|			switch (m_iCode)
  460|   835k|			{
  461|   835k|			case cmVAL:  return m_fVal;
  ------------------
  |  Branch (461:4): [True: 835k, False: 3]
  ------------------
  462|      0|			case cmVAR:  return *((TBase*)m_pTok);
  ------------------
  |  Branch (462:4): [True: 0, False: 835k]
  ------------------
  463|      3|			default:     throw ParserError(ecVAL_EXPECTED);
  ------------------
  |  Branch (463:4): [True: 3, False: 835k]
  ------------------
  464|   835k|			}
  465|   835k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2ERKS8_:
  211|  5.08M|		{
  212|  5.08M|			Assign(a_Tok);
  213|  5.08M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6AssignERKS8_:
  234|  11.1M|		{
  235|  11.1M|			m_iCode = a_Tok.m_iCode;
  236|  11.1M|			m_pTok = a_Tok.m_pTok;
  237|  11.1M|			m_strTok = a_Tok.m_strTok;
  238|  11.1M|			m_iIdx = a_Tok.m_iIdx;
  239|  11.1M|			m_strVal = a_Tok.m_strVal;
  240|  11.1M|			m_iType = a_Tok.m_iType;
  241|  11.1M|			m_fVal = a_Tok.m_fVal;
  242|       |			// create new callback object if a_Tok has one 
  243|  11.1M|			m_pCallback.reset(a_Tok.m_pCallback.get() ? a_Tok.m_pCallback->Clone() : 0);
  ------------------
  |  Branch (243:22): [True: 363k, False: 10.7M]
  ------------------
  244|  11.1M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE7GetTypeEv:
  396|   982k|		{
  397|   982k|			if (m_pCallback.get())
  ------------------
  |  Branch (397:8): [True: 71.3k, False: 910k]
  ------------------
  398|  71.3k|			{
  399|  71.3k|				return m_pCallback->GetType();
  400|  71.3k|			}
  401|   910k|			else
  402|   910k|			{
  403|   910k|				return m_iType;
  404|   910k|			}
  405|   982k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE13IsOptimizableEv:
  500|  35.6k|		{
  501|  35.6k|			return m_pCallback->IsValid() && m_pCallback->IsOptimizable();
  ------------------
  |  Branch (501:11): [True: 35.6k, False: 0]
  |  Branch (501:37): [True: 34.1k, False: 1.53k]
  ------------------
  502|  35.6k|		}
_ZNK2mu21generic_callable_type8call_funILm0EJEEEdDpOT0_:
   76|  1.06k|		{
   77|  1.06k|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|  1.06k|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 1.06k, False: 0]
  ------------------
   79|  1.06k|			{
   80|  1.06k|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|  1.06k|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|  1.06k|			} 
   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|  1.06k|		}
_ZNK2mu21generic_callable_type8call_funILm1EJRdEEEdDpOT0_:
   76|  20.3k|		{
   77|  20.3k|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|  20.3k|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 20.3k, False: 0]
  ------------------
   79|  20.3k|			{
   80|  20.3k|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|  20.3k|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|  20.3k|			} 
   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|  20.3k|		}
_ZNK2mu21generic_callable_type8call_funILm2EJRdS2_EEEdDpOT0_:
   76|    586|		{
   77|    586|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|    586|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 586, False: 0]
  ------------------
   79|    586|			{
   80|    586|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|    586|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|    586|			} 
   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|    586|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEaSERKS8_:
  223|  6.06M|		{
  224|  6.06M|			Assign(a_Tok);
  225|  6.06M|			return *this;
  226|  6.06M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE3SetENS_8ECmdCodeERKS7_:
  258|  1.10M|		{
  259|       |			// The following types can't be set this way, they have special Set functions
  260|  1.10M|			MUP_ASSERT(a_iType != cmVAR);
  ------------------
  |  |   78|  1.10M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.10M]
  |  |  ------------------
  |  |   79|  1.10M|            {														\
  |  |   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.10M|			MUP_ASSERT(a_iType != cmVAL);
  ------------------
  |  |   78|  1.10M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.10M]
  |  |  ------------------
  |  |   79|  1.10M|            {														\
  |  |   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.10M|			MUP_ASSERT(a_iType != cmFUNC);
  ------------------
  |  |   78|  1.10M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.10M]
  |  |  ------------------
  |  |   79|  1.10M|            {														\
  |  |   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.10M|			m_iCode = a_iType;
  265|  1.10M|			m_iType = tpVOID;
  266|  1.10M|			m_pTok = 0;
  267|  1.10M|			m_strTok = a_strTok;
  268|  1.10M|			m_iIdx = -1;
  269|       |
  270|  1.10M|			return *this;
  271|  1.10M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE3SetERKNS_14ParserCallbackERKS7_:
  276|  62.4k|		{
  277|  62.4k|			MUP_ASSERT(a_pCallback.IsValid());
  ------------------
  |  |   78|  62.4k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 62.4k]
  |  |  ------------------
  |  |   79|  62.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|            }
  ------------------
  278|       |
  279|  62.4k|			m_iCode = a_pCallback.GetCode();
  280|  62.4k|			m_iType = tpVOID;
  281|  62.4k|			m_strTok = a_sTok;
  282|  62.4k|			m_pCallback.reset(new ParserCallback(a_pCallback));
  283|       |
  284|  62.4k|			m_pTok = 0;
  285|  62.4k|			m_iIdx = -1;
  286|       |
  287|  62.4k|			return *this;
  288|  62.4k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE9SetStringERKS7_m:
  334|  11.8k|		{
  335|  11.8k|			m_iCode = cmSTRING;
  336|  11.8k|			m_iType = tpSTR;
  337|  11.8k|			m_strTok = a_strTok;
  338|  11.8k|			m_iIdx = static_cast<int>(a_iSize);
  339|       |
  340|  11.8k|			m_pTok = 0;
  341|  11.8k|			m_pCallback.reset(0);
  342|  11.8k|			return *this;
  343|  11.8k|		}

_ZN2mu6Parser5IsValEPKcPiPd:
   58|   812k|	{
   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|   812k|		value_type fVal(0);
   87|       |
   88|   812k|		stringstream_type stream(a_szExpr);
   89|   812k|		stream.imbue(Parser::s_locale);
   90|   812k|		stream >> fVal;
   91|   812k|		stringstream_type::pos_type iEnd = stream.tellg(); // Position after reading
   92|       |
   93|   812k|		if (iEnd == (stringstream_type::pos_type) - 1)
  ------------------
  |  Branch (93:7): [True: 12.4k, False: 799k]
  ------------------
   94|  12.4k|			return 0;
   95|       |
   96|   799k|		*a_iPos += (int)iEnd;
   97|   799k|		*a_fVal = fVal;
   98|   799k|		return 1;
   99|   812k|#endif		
  100|   812k|	}
_ZN2mu6ParserC2Ev:
  109|  3.71k|		:ParserBase()
  110|  3.71k|	{
  111|  3.71k|		AddValIdent(IsVal);
  112|       |
  113|  3.71k|		InitCharSets();
  114|  3.71k|		InitFun();
  115|  3.71k|		InitConst();
  116|  3.71k|		InitOprt();
  117|  3.71k|	}
_ZN2mu6Parser12InitCharSetsEv:
  127|  3.71k|	{
  128|  3.71k|		DefineNameChars(_T("0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"));
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  129|  3.71k|		DefineOprtChars(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+-*^/?<>=#!$%&|~'_{}"));
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  130|  3.71k|		DefineInfixOprtChars(_T("/+-*^?<>=#!$%&|~'_"));
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  131|  3.71k|	}
_ZN2mu6Parser7InitFunEv:
  136|  3.71k|	{
  137|  3.71k|		if (mu::TypeInfo<mu::value_type>::IsInteger())
  ------------------
  |  Branch (137:7): [True: 0, False: 3.71k]
  ------------------
  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.71k|		else
  146|  3.71k|		{
  147|       |			// trigonometric functions
  148|  3.71k|			DefineFun(_T("sin"), MathImpl<value_type>::Sin);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  149|  3.71k|			DefineFun(_T("cos"), MathImpl<value_type>::Cos);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  150|  3.71k|			DefineFun(_T("tan"), MathImpl<value_type>::Tan);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  151|  3.71k|			DefineFun(_T("cot"), MathImpl<value_type>::Cot);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  152|       |			// arcus functions
  153|  3.71k|			DefineFun(_T("asin"), MathImpl<value_type>::ASin);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  154|  3.71k|			DefineFun(_T("acos"), MathImpl<value_type>::ACos);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  155|  3.71k|			DefineFun(_T("atan"), MathImpl<value_type>::ATan);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  156|  3.71k|			DefineFun(_T("atan2"), MathImpl<value_type>::ATan2);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  157|       |			// hyperbolic functions
  158|  3.71k|			DefineFun(_T("sinh"), MathImpl<value_type>::Sinh);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  159|  3.71k|			DefineFun(_T("cosh"), MathImpl<value_type>::Cosh);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  160|  3.71k|			DefineFun(_T("tanh"), MathImpl<value_type>::Tanh);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  161|  3.71k|			DefineFun(_T("coth"), MathImpl<value_type>::Coth);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  162|       |			// arcus hyperbolic functions
  163|  3.71k|			DefineFun(_T("asinh"), MathImpl<value_type>::ASinh);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  164|  3.71k|			DefineFun(_T("acosh"), MathImpl<value_type>::ACosh);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  165|  3.71k|			DefineFun(_T("atanh"), MathImpl<value_type>::ATanh);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  166|       |			// Logarithm functions
  167|  3.71k|			DefineFun(_T("log2"), MathImpl<value_type>::Log2);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  168|  3.71k|			DefineFun(_T("log10"), MathImpl<value_type>::Log10);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  169|  3.71k|			DefineFun(_T("log"), MathImpl<value_type>::Log);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  170|  3.71k|			DefineFun(_T("ln"), MathImpl<value_type>::Log);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  171|       |			// misc
  172|  3.71k|			DefineFun(_T("exp"), MathImpl<value_type>::Exp);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  173|  3.71k|			DefineFun(_T("sqrt"), MathImpl<value_type>::Sqrt);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  174|  3.71k|			DefineFun(_T("sign"), MathImpl<value_type>::Sign);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  175|  3.71k|			DefineFun(_T("rint"), MathImpl<value_type>::Rint);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  176|  3.71k|			DefineFun(_T("abs"), MathImpl<value_type>::Abs);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  177|       |			// Functions with variable number of arguments
  178|  3.71k|			DefineFun(_T("sum"), MathImpl<value_type>::Sum);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  179|  3.71k|			DefineFun(_T("avg"), MathImpl<value_type>::Avg);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  180|  3.71k|			DefineFun(_T("min"), MathImpl<value_type>::Min);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  181|  3.71k|			DefineFun(_T("max"), MathImpl<value_type>::Max);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  182|       |			// Random number
  183|  3.71k|			DefineFun(_T("rnd"), MathImpl<value_type>::Rnd, false);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  184|  3.71k|		}
  185|  3.71k|	}
_ZN2mu6Parser9InitConstEv:
  194|  3.71k|	{
  195|  3.71k|		DefineConst(_T("_pi"), MathImpl<value_type>::CONST_PI);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  196|  3.71k|		DefineConst(_T("_e"), MathImpl<value_type>::CONST_E);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  197|  3.71k|	}
_ZN2mu6Parser8InitOprtEv:
  205|  3.71k|	{
  206|  3.71k|		DefineInfixOprt(_T("-"), MathImpl<value_type>::UnaryMinus);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  207|  3.71k|		DefineInfixOprt(_T("+"), MathImpl<value_type>::UnaryPlus);
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  208|  3.71k|	}

_ZN2mu10ParserBaseC2Ev:
   91|  3.71k|		: m_pParseFormula(&ParserBase::ParseString)
   92|  3.71k|		, m_vRPN()
   93|  3.71k|		, m_vStringBuf()
   94|  3.71k|		, m_pTokenReader()
   95|  3.71k|		, m_FunDef()
   96|  3.71k|		, m_PostOprtDef()
   97|  3.71k|		, m_InfixOprtDef()
   98|  3.71k|		, m_OprtDef()
   99|  3.71k|		, m_ConstDef()
  100|  3.71k|		, m_StrVarDef()
  101|  3.71k|		, m_VarDef()
  102|  3.71k|		, m_bBuiltInOp(true)
  103|  3.71k|		, m_sNameChars()
  104|  3.71k|		, m_sOprtChars()
  105|  3.71k|		, m_sInfixOprtChars()
  106|  3.71k|		, m_vStackBuffer()
  107|  3.71k|		, m_nFinalResultIdx(0)
  108|  3.71k|	{
  109|  3.71k|		InitTokenReader();
  110|  3.71k|	}
_ZN2mu10ParserBaseD2Ev:
  141|  3.71k|	{}
_ZN2mu10ParserBase15InitTokenReaderEv:
  246|  3.71k|	{
  247|  3.71k|		m_pTokenReader.reset(new token_reader_type(this));
  248|  3.71k|	}
_ZNK2mu10ParserBase6ReInitEv:
  257|   129k|	{
  258|   129k|		m_pParseFormula = &ParserBase::ParseString;
  259|   129k|		m_vStringBuf.clear();
  260|   129k|		m_vRPN.clear();
  261|   129k|		m_pTokenReader->ReInit();
  262|   129k|	}
_ZN2mu10ParserBase11AddValIdentEPFiPKcPiPdE:
  353|  3.71k|	{
  354|  3.71k|		m_pTokenReader->AddValIdent(a_pCallback);
  355|  3.71k|	}
_ZN2mu10ParserBase11AddCallbackERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackERNS1_3mapIS7_SA_NS1_4lessIS7_EENS5_INS1_4pairIS8_SA_EEEEEEPKc:
  374|   115k|	{
  375|   115k|		if (!a_Callback.IsValid())
  ------------------
  |  Branch (375:7): [True: 0, False: 115k]
  ------------------
  376|      0|			Error(ecINVALID_FUN_PTR);
  377|       |
  378|   115k|		const funmap_type* pFunMap = &a_Storage;
  379|       |
  380|       |		// Check for conflicting operator or function names
  381|   115k|		if (pFunMap != &m_FunDef && m_FunDef.find(a_strName) != m_FunDef.end())
  ------------------
  |  Branch (381:7): [True: 7.42k, False: 107k]
  |  Branch (381:7): [True: 0, False: 115k]
  |  Branch (381:31): [True: 0, False: 7.42k]
  ------------------
  382|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  383|       |
  384|   115k|		if (pFunMap != &m_PostOprtDef && m_PostOprtDef.find(a_strName) != m_PostOprtDef.end())
  ------------------
  |  Branch (384:7): [True: 115k, False: 0]
  |  Branch (384:7): [True: 0, False: 115k]
  |  Branch (384:36): [True: 0, False: 115k]
  ------------------
  385|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  386|       |
  387|   115k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_InfixOprtDef.find(a_strName) != m_InfixOprtDef.end())
  ------------------
  |  Branch (387:7): [True: 107k, False: 7.42k]
  |  Branch (387:7): [True: 0, False: 115k]
  |  Branch (387:37): [True: 107k, False: 0]
  |  Branch (387:62): [True: 0, False: 107k]
  ------------------
  388|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  389|       |
  390|   115k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_OprtDef.find(a_strName) != m_OprtDef.end())
  ------------------
  |  Branch (390:7): [True: 107k, False: 7.42k]
  |  Branch (390:7): [True: 0, False: 115k]
  |  Branch (390:37): [True: 107k, False: 0]
  |  Branch (390:62): [True: 0, False: 107k]
  ------------------
  391|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  392|       |
  393|   115k|		CheckOprt(a_strName, a_Callback, a_szCharSet);
  394|   115k|		a_Storage[a_strName] = a_Callback;
  395|   115k|		ReInit();
  396|   115k|	}
_ZNK2mu10ParserBase9CheckOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackES9_:
  406|   115k|	{
  407|   115k|		if (!a_sName.length() ||
  ------------------
  |  Branch (407:7): [True: 0, False: 115k]
  ------------------
  408|   115k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (408:4): [True: 0, False: 115k]
  ------------------
  409|   115k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (409:5): [True: 107k, False: 7.42k]
  |  Branch (409:26): [True: 0, False: 107k]
  ------------------
  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|   115k|	}
_ZNK2mu10ParserBase9CheckNameERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_:
  425|  7.42k|	{
  426|  7.42k|		if (!a_sName.length() ||
  ------------------
  |  Branch (426:7): [True: 0, False: 7.42k]
  ------------------
  427|  7.42k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (427:4): [True: 0, False: 7.42k]
  ------------------
  428|  7.42k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (428:5): [True: 7.42k, False: 0]
  |  Branch (428:26): [True: 0, False: 7.42k]
  ------------------
  429|      0|		{
  430|      0|			Error(ecINVALID_NAME);
  431|      0|		}
  432|  7.42k|	}
_ZN2mu10ParserBase7SetExprERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  442|  3.71k|	{
  443|       |		// Check locale compatibility
  444|  3.71k|		if (m_pTokenReader->GetArgSep() == std::use_facet<numpunct<char_type> >(s_locale).decimal_point())
  ------------------
  |  Branch (444:7): [True: 0, False: 3.71k]
  ------------------
  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.71k|		if (a_sExpr.length() >= MaxLenExpression)
  ------------------
  |  Branch (448:7): [True: 28, False: 3.68k]
  ------------------
  449|     28|			Error(ecEXPRESSION_TOO_LONG, 0, a_sExpr);
  450|       |
  451|  3.71k|		m_pTokenReader->SetFormula(a_sExpr + _T(" "));
  ------------------
  |  |   69|  3.71k|		#define _T(x) x
  ------------------
  452|  3.71k|		ReInit();
  453|  3.71k|	}
_ZNK2mu10ParserBase10GetOprtDefEv:
  460|  2.32M|	{
  461|  2.32M|		return (const char_type**)(&c_DefaultOprt[0]);
  462|  2.32M|	}
_ZN2mu10ParserBase15DefineNameCharsEPKc:
  469|  3.71k|	{
  470|  3.71k|		m_sNameChars = a_szCharset;
  471|  3.71k|	}
_ZN2mu10ParserBase15DefineOprtCharsEPKc:
  478|  3.71k|	{
  479|  3.71k|		m_sOprtChars = a_szCharset;
  480|  3.71k|	}
_ZN2mu10ParserBase20DefineInfixOprtCharsEPKc:
  487|  3.71k|	{
  488|  3.71k|		m_sInfixOprtChars = a_szCharset;
  489|  3.71k|	}
_ZNK2mu10ParserBase14ValidNameCharsEv:
  496|  2.90M|	{
  497|  2.90M|		MUP_ASSERT(m_sNameChars.size());
  ------------------
  |  |   78|  2.90M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.90M]
  |  |  ------------------
  |  |   79|  2.90M|            {														\
  |  |   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|  2.90M|		return m_sNameChars.c_str();
  499|  2.90M|	}
_ZNK2mu10ParserBase14ValidOprtCharsEv:
  506|  1.97M|	{
  507|  1.97M|		MUP_ASSERT(m_sOprtChars.size());
  ------------------
  |  |   78|  1.97M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.97M]
  |  |  ------------------
  |  |   79|  1.97M|            {														\
  |  |   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|  1.97M|		return m_sOprtChars.c_str();
  509|  1.97M|	}
_ZNK2mu10ParserBase19ValidInfixOprtCharsEv:
  516|  53.8k|	{
  517|  53.8k|		MUP_ASSERT(m_sInfixOprtChars.size());
  ------------------
  |  |   78|  53.8k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 53.8k]
  |  |  ------------------
  |  |   79|  53.8k|            {														\
  |  |   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|  53.8k|		return m_sInfixOprtChars.c_str();
  519|  53.8k|	}
_ZN2mu10ParserBase15DefineInfixOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEPFddEib:
  556|  7.42k|	{
  557|  7.42k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (557:7): [True: 0, False: 7.42k]
  ------------------
  558|      0|			Error(ecIDENTIFIER_TOO_LONG);
  559|       |
  560|  7.42k|		AddCallback(a_sName, ParserCallback(a_pFun, a_bAllowOpt, a_iPrec, cmOPRT_INFIX), m_InfixOprtDef, ValidInfixOprtChars());
  561|  7.42k|	}
_ZN2mu10ParserBase11DefineConstERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEd:
  648|  7.42k|	{
  649|  7.42k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (649:7): [True: 0, False: 7.42k]
  ------------------
  650|      0|			Error(ecIDENTIFIER_TOO_LONG);
  651|       |
  652|  7.42k|		CheckName(a_sName, ValidNameChars());
  653|  7.42k|		m_ConstDef[a_sName] = a_fVal;
  654|  7.42k|		ReInit();
  655|  7.42k|	}
_ZNK2mu10ParserBase17GetOprtPrecedenceERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  662|   475k|	{
  663|   475k|		switch (a_Tok.GetCode())
  664|   475k|		{
  665|       |			// built in operators
  666|      0|		case cmEND:      return -5;
  ------------------
  |  Branch (666:3): [True: 0, False: 475k]
  ------------------
  667|      0|		case cmARG_SEP:  return -4;
  ------------------
  |  Branch (667:3): [True: 0, False: 475k]
  ------------------
  668|      0|		case cmASSIGN:   return -1;
  ------------------
  |  Branch (668:3): [True: 0, False: 475k]
  ------------------
  669|      0|		case cmELSE:
  ------------------
  |  Branch (669:3): [True: 0, False: 475k]
  ------------------
  670|  1.45k|		case cmIF:       return  0;
  ------------------
  |  Branch (670:3): [True: 1.45k, False: 474k]
  ------------------
  671|  9.57k|		case cmLAND:     return  prLAND;
  ------------------
  |  Branch (671:3): [True: 9.57k, False: 466k]
  ------------------
  672|  9.72k|		case cmLOR:      return  prLOR;
  ------------------
  |  Branch (672:3): [True: 9.72k, False: 466k]
  ------------------
  673|  15.2k|		case cmLT:
  ------------------
  |  Branch (673:3): [True: 15.2k, False: 460k]
  ------------------
  674|  21.8k|		case cmGT:
  ------------------
  |  Branch (674:3): [True: 6.54k, False: 469k]
  ------------------
  675|  24.0k|		case cmLE:
  ------------------
  |  Branch (675:3): [True: 2.26k, False: 473k]
  ------------------
  676|  25.8k|		case cmGE:
  ------------------
  |  Branch (676:3): [True: 1.76k, False: 474k]
  ------------------
  677|  28.3k|		case cmNEQ:
  ------------------
  |  Branch (677:3): [True: 2.49k, False: 473k]
  ------------------
  678|  32.9k|		case cmEQ:       return  prCMP;
  ------------------
  |  Branch (678:3): [True: 4.63k, False: 471k]
  ------------------
  679|  12.6k|		case cmADD:
  ------------------
  |  Branch (679:3): [True: 12.6k, False: 463k]
  ------------------
  680|  73.0k|		case cmSUB:      return  prADD_SUB;
  ------------------
  |  Branch (680:3): [True: 60.4k, False: 415k]
  ------------------
  681|  6.87k|		case cmMUL:
  ------------------
  |  Branch (681:3): [True: 6.87k, False: 468k]
  ------------------
  682|  13.0k|		case cmDIV:      return  prMUL_DIV;
  ------------------
  |  Branch (682:3): [True: 6.12k, False: 469k]
  ------------------
  683|   302k|		case cmPOW:      return  prPOW;
  ------------------
  |  Branch (683:3): [True: 302k, False: 172k]
  ------------------
  684|       |
  685|       |		// user defined binary operators
  686|  33.1k|		case cmOPRT_INFIX:
  ------------------
  |  Branch (686:3): [True: 33.1k, False: 442k]
  ------------------
  687|  33.1k|		case cmOPRT_BIN: return a_Tok.GetPri();
  ------------------
  |  Branch (687:3): [True: 0, False: 475k]
  ------------------
  688|      0|		default:  
  ------------------
  |  Branch (688:3): [True: 0, False: 475k]
  ------------------
  689|      0|			throw exception_type(ecINTERNAL_ERROR, 5, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  690|   475k|		}
  691|   475k|	}
_ZNK2mu10ParserBase20GetOprtAssociativityERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  698|   136k|	{
  699|   136k|		switch (a_Tok.GetCode())
  700|   136k|		{
  701|      0|		case cmASSIGN:
  ------------------
  |  Branch (701:3): [True: 0, False: 136k]
  ------------------
  702|  2.19k|		case cmLAND:
  ------------------
  |  Branch (702:3): [True: 2.19k, False: 134k]
  ------------------
  703|  4.30k|		case cmLOR:
  ------------------
  |  Branch (703:3): [True: 2.11k, False: 134k]
  ------------------
  704|  10.3k|		case cmLT:
  ------------------
  |  Branch (704:3): [True: 6.01k, False: 130k]
  ------------------
  705|  12.3k|		case cmGT:
  ------------------
  |  Branch (705:3): [True: 2.00k, False: 134k]
  ------------------
  706|  13.0k|		case cmLE:
  ------------------
  |  Branch (706:3): [True: 759, False: 136k]
  ------------------
  707|  13.6k|		case cmGE:
  ------------------
  |  Branch (707:3): [True: 566, False: 136k]
  ------------------
  708|  14.4k|		case cmNEQ:
  ------------------
  |  Branch (708:3): [True: 780, False: 136k]
  ------------------
  709|  15.8k|		case cmEQ:
  ------------------
  |  Branch (709:3): [True: 1.42k, False: 135k]
  ------------------
  710|  18.3k|		case cmADD:
  ------------------
  |  Branch (710:3): [True: 2.49k, False: 134k]
  ------------------
  711|  22.0k|		case cmSUB:
  ------------------
  |  Branch (711:3): [True: 3.66k, False: 133k]
  ------------------
  712|  23.9k|		case cmMUL:
  ------------------
  |  Branch (712:3): [True: 1.96k, False: 134k]
  ------------------
  713|  25.7k|		case cmDIV:      return oaLEFT;
  ------------------
  |  Branch (713:3): [True: 1.73k, False: 135k]
  ------------------
  714|   111k|		case cmPOW:      return oaRIGHT;
  ------------------
  |  Branch (714:3): [True: 111k, False: 25.7k]
  ------------------
  715|      0|		case cmOPRT_BIN: return a_Tok.GetAssociativity();
  ------------------
  |  Branch (715:3): [True: 0, False: 136k]
  ------------------
  716|      0|		default:         return oaNONE;
  ------------------
  |  Branch (716:3): [True: 0, False: 136k]
  ------------------
  717|   136k|		}
  718|   136k|	}
_ZNK2mu10ParserBase9ApplyFuncERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_i:
  831|  35.6k|	{
  832|  35.6k|		MUP_ASSERT(m_pTokenReader.get());
  ------------------
  |  |   78|  35.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 35.6k]
  |  |  ------------------
  |  |   79|  35.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|  35.6k|		if (a_stOpt.empty() || a_stOpt.top().GetFuncAddr() == 0)
  ------------------
  |  Branch (835:7): [True: 0, False: 35.6k]
  |  Branch (835:7): [True: 0, False: 35.6k]
  |  Branch (835:26): [True: 0, False: 35.6k]
  ------------------
  836|      0|			return;
  837|       |
  838|  35.6k|		token_type funTok = a_stOpt.top();
  839|  35.6k|		a_stOpt.pop();
  840|  35.6k|		MUP_ASSERT(funTok.GetFuncAddr() != nullptr);
  ------------------
  |  |   78|  35.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 35.6k]
  |  |  ------------------
  |  |   79|  35.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|  35.6k|		int iArgCount = (funTok.GetCode() == cmOPRT_BIN) ? funTok.GetArgCount() : a_iArgCount;
  ------------------
  |  Branch (845:19): [True: 0, False: 35.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|  35.6k|		int iArgRequired = funTok.GetArgCount() + ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (849:46): [True: 0, False: 35.6k]
  ------------------
  850|       |
  851|       |		// That's the number of numerical parameters
  852|  35.6k|		int iArgNumerical = iArgCount - ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (852:36): [True: 0, False: 35.6k]
  ------------------
  853|       |
  854|  35.6k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount - iArgNumerical > 1)
  ------------------
  |  Branch (854:7): [True: 0, False: 35.6k]
  |  Branch (854:41): [True: 0, False: 0]
  ------------------
  855|      0|			Error(ecINTERNAL_ERROR);
  856|       |
  857|  35.6k|		if (funTok.GetArgCount() >= 0 && iArgCount > iArgRequired)
  ------------------
  |  Branch (857:7): [True: 31.0k, False: 4.65k]
  |  Branch (857:36): [True: 26, False: 31.0k]
  ------------------
  858|     26|			Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  859|       |
  860|  35.6k|		if (funTok.GetCode() != cmOPRT_BIN && iArgCount < iArgRequired)
  ------------------
  |  Branch (860:7): [True: 35.6k, False: 26]
  |  Branch (860:41): [True: 3, False: 35.6k]
  ------------------
  861|      3|			Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  862|       |
  863|  35.6k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount > iArgRequired)
  ------------------
  |  Branch (863:7): [True: 0, False: 35.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|  35.6k|		std::vector<token_type> stArg;
  869|   379k|		for (int i = 0; i < iArgNumerical; ++i)
  ------------------
  |  Branch (869:19): [True: 343k, False: 35.6k]
  ------------------
  870|   343k|		{
  871|   343k|			if (a_stVal.empty())
  ------------------
  |  Branch (871:8): [True: 2, False: 343k]
  ------------------
  872|      2|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), funTok.GetAsString());
  873|       |
  874|   343k|			stArg.push_back(a_stVal.top());
  875|   343k|			a_stVal.pop();
  876|       |
  877|   343k|			if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR)
  ------------------
  |  Branch (877:8): [True: 3, False: 343k]
  |  Branch (877:43): [True: 3, False: 0]
  ------------------
  878|      3|				Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString());
  879|   343k|		}
  880|       |
  881|  35.6k|		switch (funTok.GetCode())
  882|  35.6k|		{
  883|      0|		case  cmFUNC_STR:
  ------------------
  |  Branch (883:3): [True: 0, False: 35.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: 35.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: 35.6k]
  ------------------
  901|      0|		case  cmOPRT_POSTFIX:
  ------------------
  |  Branch (901:3): [True: 0, False: 35.6k]
  ------------------
  902|  20.4k|		case  cmOPRT_INFIX:
  ------------------
  |  Branch (902:3): [True: 20.4k, False: 15.2k]
  ------------------
  903|  35.6k|		case  cmFUNC:
  ------------------
  |  Branch (903:3): [True: 15.1k, False: 20.4k]
  ------------------
  904|  35.6k|			if (funTok.GetArgCount() == -1 && iArgCount == 0)
  ------------------
  |  Branch (904:8): [True: 4.65k, False: 30.9k]
  |  Branch (904:38): [True: 1, False: 4.65k]
  ------------------
  905|      1|				Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos(), funTok.GetAsString());
  906|       |
  907|  35.6k|			m_vRPN.AddFun(funTok.GetFuncAddr(), (funTok.GetArgCount() == -1) ? -iArgNumerical : iArgNumerical, funTok.IsOptimizable());
  ------------------
  |  Branch (907:40): [True: 4.65k, False: 30.9k]
  ------------------
  908|  35.6k|			break;
  909|      0|		default:
  ------------------
  |  Branch (909:3): [True: 0, False: 35.6k]
  ------------------
  910|      0|			break;
  911|  35.6k|		}
  912|       |
  913|       |		// Push dummy value representing the function result to the stack
  914|  35.6k|		token_type token;
  915|  35.6k|		token.SetVal(1);
  916|  35.6k|		a_stVal.push(token);
  917|  35.6k|	}
_ZNK2mu10ParserBase11ApplyIfElseERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  921|  2.92k|	{
  922|       |		// Check if there is an if Else clause to be calculated
  923|  36.1k|		while (a_stOpt.size() && a_stOpt.top().GetCode() == cmELSE)
  ------------------
  |  Branch (923:10): [True: 35.6k, False: 506]
  |  Branch (923:28): [True: 33.2k, False: 2.41k]
  ------------------
  924|  33.2k|		{
  925|  33.2k|			MUP_ASSERT(!a_stOpt.empty())
  ------------------
  |  |   78|  33.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 33.2k]
  |  |  ------------------
  |  |   79|  33.2k|            {														\
  |  |   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|  33.2k|			token_type opElse = a_stOpt.top();
  927|  33.2k|			a_stOpt.pop();
  928|       |
  929|       |			// Take the value associated with the else branch from the value stack
  930|  33.2k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  33.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 33.2k]
  |  |  ------------------
  |  |   79|  33.2k|            {														\
  |  |   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|  33.2k|			token_type vVal2 = a_stVal.top();
  932|  33.2k|			if (vVal2.GetType() != tpDBL)
  ------------------
  |  Branch (932:8): [True: 3, False: 33.2k]
  ------------------
  933|      3|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  934|       |			
  935|  33.2k|			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|  33.2k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  33.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 1, False: 33.2k]
  |  |  ------------------
  |  |   79|  33.2k|            {														\
  |  |   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|  33.2k|			token_type vVal1 = a_stVal.top();
  941|  33.2k|			if (vVal1.GetType() != tpDBL)
  ------------------
  |  Branch (941:8): [True: 2, False: 33.2k]
  ------------------
  942|      2|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  943|       |
  944|  33.2k|			a_stVal.pop();
  945|       |
  946|  33.2k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  33.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 5, False: 33.2k]
  |  |  ------------------
  |  |   79|  33.2k|            {														\
  |  |   80|      5|              stringstream_type ss;									\
  |  |   81|      5|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      5|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      5|		#define _T(x) x
  |  |  ------------------
  |  |   82|      5|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      5|		#define _T(x) x
  |  |  ------------------
  |  |   83|      5|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      5|		#define _T(x) x
  |  |  ------------------
  |  |   84|      5|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      5|            }
  ------------------
  947|  33.2k|			token_type vExpr = a_stVal.top();
  948|  33.2k|			a_stVal.pop();
  949|       |
  950|  33.2k|			a_stVal.push((vExpr.GetVal() != 0) ? vVal1 : vVal2);
  ------------------
  |  Branch (950:17): [True: 2.99k, False: 30.2k]
  ------------------
  951|       |
  952|  33.2k|			token_type opIf = a_stOpt.top();
  953|  33.2k|			a_stOpt.pop();
  954|       |
  955|  33.2k|			MUP_ASSERT(opElse.GetCode() == cmELSE);
  ------------------
  |  |   78|  33.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 33.2k]
  |  |  ------------------
  |  |   79|  33.2k|            {														\
  |  |   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|  33.2k|			if (opIf.GetCode() != cmIF)
  ------------------
  |  Branch (957:8): [True: 2, False: 33.2k]
  ------------------
  958|      2|				Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
  959|       |
  960|  33.2k|			m_vRPN.AddIfElse(cmENDIF);
  961|  33.2k|		} // while pending if-else-clause found
  962|  2.92k|	}
_ZNK2mu10ParserBase12ApplyBinOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  969|   148k|	{
  970|       |		// is it a user defined binary operator?
  971|   148k|		if (a_stOpt.top().GetCode() == cmOPRT_BIN)
  ------------------
  |  Branch (971:7): [True: 0, False: 148k]
  ------------------
  972|      0|		{
  973|      0|			ApplyFunc(a_stOpt, a_stVal, 2);
  974|      0|		}
  975|   148k|		else
  976|   148k|		{
  977|   148k|			if (a_stVal.size() < 2)
  ------------------
  |  Branch (977:8): [True: 1, False: 148k]
  ------------------
  978|      1|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), _T("ApplyBinOprt: not enough values in value stack!"));
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
  979|       |
  980|   148k|			token_type valTok1 = a_stVal.top();
  981|   148k|			a_stVal.pop();
  982|       |
  983|   148k|			token_type valTok2 = a_stVal.top();
  984|   148k|			a_stVal.pop();
  985|       |
  986|   148k|			token_type optTok = a_stOpt.top();
  987|   148k|			a_stOpt.pop();
  988|       |
  989|   148k|			token_type resTok;
  990|       |
  991|   148k|			if (valTok1.GetType() != valTok2.GetType() ||
  ------------------
  |  Branch (991:8): [True: 25, False: 148k]
  ------------------
  992|   148k|				(valTok1.GetType() == tpSTR && valTok2.GetType() == tpSTR))
  ------------------
  |  Branch (992:6): [True: 11, False: 148k]
  |  Branch (992:36): [True: 11, False: 0]
  ------------------
  993|     35|				Error(ecOPRT_TYPE_CONFLICT, m_pTokenReader->GetPos(), optTok.GetAsString());
  994|       |
  995|   148k|			if (optTok.GetCode() == cmASSIGN)
  ------------------
  |  Branch (995:8): [True: 0, False: 148k]
  ------------------
  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|   148k|			else
 1003|   148k|				m_vRPN.AddOp(optTok.GetCode());
 1004|       |
 1005|   148k|			resTok.SetVal(1);
 1006|   148k|			a_stVal.push(resTok);
 1007|   148k|		}
 1008|   148k|	}
_ZNK2mu10ParserBase18ApplyRemainingOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
 1016|   602k|	{
 1017|   687k|		while (stOpt.size() &&
  ------------------
  |  Branch (1017:10): [True: 623k, False: 63.8k]
  ------------------
 1018|   623k|			stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1018:4): [True: 222k, False: 401k]
  ------------------
 1019|   222k|			stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1019:4): [True: 84.8k, False: 137k]
  ------------------
 1020|  84.8k|		{
 1021|  84.8k|			token_type tok = stOpt.top();
 1022|  84.8k|			switch (tok.GetCode())
 1023|  84.8k|			{
 1024|  15.8k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1024:4): [True: 15.8k, False: 68.9k]
  ------------------
 1025|  15.8k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1025:4): [True: 0, False: 84.8k]
  ------------------
 1026|  16.2k|			case cmLE:
  ------------------
  |  Branch (1026:4): [True: 304, False: 84.5k]
  ------------------
 1027|  16.6k|			case cmGE:
  ------------------
  |  Branch (1027:4): [True: 414, False: 84.4k]
  ------------------
 1028|  16.8k|			case cmNEQ:
  ------------------
  |  Branch (1028:4): [True: 261, False: 84.6k]
  ------------------
 1029|  17.2k|			case cmEQ:
  ------------------
  |  Branch (1029:4): [True: 339, False: 84.5k]
  ------------------
 1030|  17.9k|			case cmLT:
  ------------------
  |  Branch (1030:4): [True: 751, False: 84.1k]
  ------------------
 1031|  18.6k|			case cmGT:
  ------------------
  |  Branch (1031:4): [True: 719, False: 84.1k]
  ------------------
 1032|  19.8k|			case cmADD:
  ------------------
  |  Branch (1032:4): [True: 1.17k, False: 83.6k]
  ------------------
 1033|  21.8k|			case cmSUB:
  ------------------
  |  Branch (1033:4): [True: 2.03k, False: 82.8k]
  ------------------
 1034|  22.6k|			case cmMUL:
  ------------------
  |  Branch (1034:4): [True: 768, False: 84.0k]
  ------------------
 1035|  23.6k|			case cmDIV:
  ------------------
  |  Branch (1035:4): [True: 948, False: 83.9k]
  ------------------
 1036|  79.7k|			case cmPOW:
  ------------------
  |  Branch (1036:4): [True: 56.1k, False: 28.7k]
  ------------------
 1037|  80.6k|			case cmLAND:
  ------------------
  |  Branch (1037:4): [True: 906, False: 83.9k]
  ------------------
 1038|  81.9k|			case cmLOR:
  ------------------
  |  Branch (1038:4): [True: 1.30k, False: 83.5k]
  ------------------
 1039|  81.9k|			case cmASSIGN:
  ------------------
  |  Branch (1039:4): [True: 0, False: 84.8k]
  ------------------
 1040|  81.9k|				if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1040:9): [True: 15.8k, False: 66.0k]
  ------------------
 1041|  15.8k|					ApplyFunc(stOpt, stVal, 1);
 1042|  66.0k|				else
 1043|  66.0k|					ApplyBinOprt(stOpt, stVal);
 1044|  81.9k|				break;
 1045|       |
 1046|  2.92k|			case cmELSE:
  ------------------
  |  Branch (1046:4): [True: 2.92k, False: 81.9k]
  ------------------
 1047|  2.92k|				ApplyIfElse(stOpt, stVal);
 1048|  2.92k|				break;
 1049|       |
 1050|      0|			default:
  ------------------
  |  Branch (1050:4): [True: 0, False: 84.8k]
  ------------------
 1051|      0|				Error(ecINTERNAL_ERROR);
 1052|  84.8k|			}
 1053|  84.8k|		}
 1054|   602k|	}
_ZNK2mu10ParserBase12ParseCmdCodeEv:
 1065|  1.00k|	{
 1066|  1.00k|		return ParseCmdCodeBulk(0, 0);
 1067|  1.00k|	}
_ZNK2mu10ParserBase17ParseCmdCodeShortEv:
 1070|    708|	{
 1071|    708|		const SToken *const tok = m_vRPN.GetBase();
 1072|    708|		value_type buf;
 1073|       |
 1074|    708|		switch (tok->Cmd)
 1075|    708|		{
 1076|    703|		case cmVAL:		
  ------------------
  |  Branch (1076:3): [True: 703, False: 5]
  ------------------
 1077|    703|			return tok->Val.data2;
 1078|       |
 1079|      0|		case cmVAR:		
  ------------------
  |  Branch (1079:3): [True: 0, False: 708]
  ------------------
 1080|      0|			return *tok->Val.ptr;
 1081|       |
 1082|      0|		case cmVARMUL:	
  ------------------
  |  Branch (1082:3): [True: 0, False: 708]
  ------------------
 1083|      0|			return *tok->Val.ptr * tok->Val.data + tok->Val.data2;
 1084|       |
 1085|      0|		case cmVARPOW2: 
  ------------------
  |  Branch (1085:3): [True: 0, False: 708]
  ------------------
 1086|      0|			buf = *(tok->Val.ptr);
 1087|      0|			return buf * buf;
 1088|       |
 1089|      0|		case  cmVARPOW3: 				
  ------------------
  |  Branch (1089:3): [True: 0, False: 708]
  ------------------
 1090|      0|			buf = *(tok->Val.ptr);
 1091|      0|			return buf * buf * buf;
 1092|       |
 1093|      0|		case  cmVARPOW4: 				
  ------------------
  |  Branch (1093:3): [True: 0, False: 708]
  ------------------
 1094|      0|			buf = *(tok->Val.ptr);
 1095|      0|			return buf * buf * buf * buf;
 1096|       |
 1097|       |		// numerical function without any argument
 1098|      5|		case cmFUNC:
  ------------------
  |  Branch (1098:3): [True: 5, False: 703]
  ------------------
 1099|      5|			return tok->Fun.cb.call_fun<0>();
 1100|       |
 1101|       |		// String function without a numerical argument
 1102|      0|		case cmFUNC_STR:
  ------------------
  |  Branch (1102:3): [True: 0, False: 708]
  ------------------
 1103|      0|			if (m_vStringBuf.empty())
  ------------------
  |  Branch (1103:8): [True: 0, False: 0]
  ------------------
 1104|      0|				throw ParserError(ecINTERNAL_ERROR);
 1105|       |
 1106|      0|			return tok->Fun.cb.call_strfun<1>(m_vStringBuf[0].c_str());
 1107|       |
 1108|      0|		default:
  ------------------
  |  Branch (1108:3): [True: 0, False: 708]
  ------------------
 1109|      0|			throw ParserError(ecINTERNAL_ERROR);
 1110|    708|		}
 1111|    708|	}
_ZNK2mu10ParserBase16ParseCmdCodeBulkEii:
 1119|  1.00k|	{
 1120|  1.00k|		assert(nThreadID <= s_MaxNumOpenMPThreads);
 1121|       |
 1122|       |		// Note: The check for nOffset==0 and nThreadID here is not necessary but 
 1123|       |		//       brings a minor performance gain when not in bulk mode.
 1124|  1.00k|		value_type *stack = ((nOffset == 0) && (nThreadID == 0)) ? &m_vStackBuffer[0] : &m_vStackBuffer[nThreadID * (m_vStackBuffer.size() / s_MaxNumOpenMPThreads)];
  ------------------
  |  Branch (1124:24): [True: 1.00k, False: 0]
  |  Branch (1124:42): [True: 1.00k, False: 0]
  ------------------
 1125|       |		
 1126|  1.00k|		const int iStackMaxSize = (int)(m_vStackBuffer.size() / s_MaxNumOpenMPThreads);
 1127|       |
 1128|  1.00k|		value_type buf;
 1129|  1.00k|		int sidx(0);
 1130|   579k|		for (const SToken* pTok = m_vRPN.GetBase(); pTok->Cmd != cmEND; ++pTok)
  ------------------
  |  Branch (1130:47): [True: 578k, False: 1.00k]
  ------------------
 1131|   578k|		{
 1132|   578k|			switch (pTok->Cmd)
 1133|   578k|			{
 1134|       |			// built in binary operators
 1135|    449|			case  cmLE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] <= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    449|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 449]
  |  |  ------------------
  |  |   79|    449|            {														\
  |  |   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 (1135:4): [True: 449, False: 578k]
  ------------------
 1136|    402|			case  cmGE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] >= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    402|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 402]
  |  |  ------------------
  |  |   79|    402|            {														\
  |  |   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 (1136:4): [True: 402, False: 578k]
  ------------------
 1137|    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 (1137:4): [True: 232, False: 578k]
  ------------------
 1138|    471|			case  cmEQ:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] == stack[sidx + 1]; continue;
  ------------------
  |  |   78|    471|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 471]
  |  |  ------------------
  |  |   79|    471|            {														\
  |  |   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 (1138:4): [True: 471, False: 578k]
  ------------------
 1139|  1.17k|			case  cmLT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] < stack[sidx + 1];  continue;
  ------------------
  |  |   78|  1.17k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |   79|  1.17k|            {														\
  |  |   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 (1139:4): [True: 1.17k, False: 577k]
  ------------------
 1140|    355|			case  cmGT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] > stack[sidx + 1];  continue;
  ------------------
  |  |   78|    355|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 355]
  |  |  ------------------
  |  |   79|    355|            {														\
  |  |   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 (1140:4): [True: 355, False: 578k]
  ------------------
 1141|  1.36k|			case  cmADD:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] += stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.36k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.36k]
  |  |  ------------------
  |  |   79|  1.36k|            {														\
  |  |   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 (1141:4): [True: 1.36k, False: 577k]
  ------------------
 1142|    909|			case  cmSUB:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] -= stack[1 + sidx]; continue;
  ------------------
  |  |   78|    909|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 909]
  |  |  ------------------
  |  |   79|    909|            {														\
  |  |   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 (1142:4): [True: 909, False: 577k]
  ------------------
 1143|  1.88k|			case  cmMUL:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] *= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.88k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.88k]
  |  |  ------------------
  |  |   79|  1.88k|            {														\
  |  |   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 (1143:4): [True: 1.88k, False: 576k]
  ------------------
 1144|  1.16k|			case  cmDIV:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] /= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.16k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.16k]
  |  |  ------------------
  |  |   79|  1.16k|            {														\
  |  |   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 (1144:4): [True: 1.16k, False: 577k]
  ------------------
 1145|  87.6k|			case  cmPOW:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = MathImpl<value_type>::Pow(stack[sidx], stack[1 + sidx]); continue;
  ------------------
  |  |   78|  87.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 87.6k]
  |  |  ------------------
  |  |   79|  87.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|            }
  ------------------
  |  Branch (1145:4): [True: 87.6k, False: 491k]
  ------------------
 1146|    490|			case  cmLAND:   --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] && stack[sidx + 1]; continue;
  ------------------
  |  |   78|    490|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 490]
  |  |  ------------------
  |  |   79|    490|            {														\
  |  |   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: 490, False: 578k]
  |  Branch (1146:65): [True: 272, False: 218]
  |  Branch (1146:80): [True: 242, False: 30]
  ------------------
 1147|  1.00k|			case  cmLOR:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] || stack[sidx + 1]; continue;
  ------------------
  |  |   78|  1.00k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.00k]
  |  |  ------------------
  |  |   79|  1.00k|            {														\
  |  |   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: 1.00k, False: 577k]
  |  Branch (1147:65): [True: 545, False: 460]
  |  Branch (1147:80): [True: 175, False: 285]
  ------------------
 1148|      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 (1148:4): [True: 0, False: 578k]
  ------------------
 1149|       |
 1150|  3.10k|			case  cmIF:
  ------------------
  |  Branch (1150:4): [True: 3.10k, False: 575k]
  ------------------
 1151|  3.10k|				if (stack[sidx--] == 0)
  ------------------
  |  Branch (1151:9): [True: 2.42k, False: 674]
  ------------------
 1152|  2.42k|					pTok += pTok->Oprt.offset;
 1153|       |
 1154|  3.10k|				MUP_ASSERT(sidx >= 0);
  ------------------
  |  |   78|  3.10k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.10k]
  |  |  ------------------
  |  |   79|  3.10k|            {														\
  |  |   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|            }
  ------------------
 1155|  3.10k|				continue;
 1156|       |
 1157|    674|			case  cmELSE:
  ------------------
  |  Branch (1157:4): [True: 674, False: 578k]
  ------------------
 1158|    674|				pTok += pTok->Oprt.offset;
 1159|    674|				continue;
 1160|       |
 1161|  2.42k|			case  cmENDIF:
  ------------------
  |  Branch (1161:4): [True: 2.42k, False: 576k]
  ------------------
 1162|  2.42k|				continue;
 1163|       |
 1164|       |				// value and variable tokens
 1165|      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 (1165:4): [True: 0, False: 578k]
  ------------------
 1166|   459k|			case  cmVAL:    MUP_ASSERT(sidx < iStackMaxSize); stack[++sidx] = pTok->Val.data2;  continue;
  ------------------
  |  |   78|   459k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 459k]
  |  |  ------------------
  |  |   79|   459k|            {														\
  |  |   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 (1166:4): [True: 459k, False: 119k]
  ------------------
 1167|       |
 1168|      0|			case  cmVARPOW2: 
  ------------------
  |  Branch (1168:4): [True: 0, False: 578k]
  ------------------
 1169|      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|            }
  ------------------
 1170|      0|				buf = *(pTok->Val.ptr + nOffset);
 1171|      0|				stack[++sidx] = buf * buf;
 1172|      0|				continue;
 1173|       |
 1174|      0|			case  cmVARPOW3: 
  ------------------
  |  Branch (1174:4): [True: 0, False: 578k]
  ------------------
 1175|      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|            }
  ------------------
 1176|      0|				buf = *(pTok->Val.ptr + nOffset);
 1177|      0|				stack[++sidx] = buf * buf * buf;
 1178|      0|				continue;
 1179|       |
 1180|      0|			case  cmVARPOW4: 
  ------------------
  |  Branch (1180:4): [True: 0, False: 578k]
  ------------------
 1181|      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|            }
  ------------------
 1182|      0|				buf = *(pTok->Val.ptr + nOffset);
 1183|      0|				stack[++sidx] = buf * buf * buf * buf;
 1184|      0|				continue;
 1185|       |
 1186|      0|			case  cmVARMUL:  
  ------------------
  |  Branch (1186:4): [True: 0, False: 578k]
  ------------------
 1187|      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|            }
  ------------------
 1188|      0|				stack[++sidx] = *(pTok->Val.ptr + nOffset) * pTok->Val.data + pTok->Val.data2;
 1189|      0|				continue;
 1190|       |
 1191|       |				// Next is treatment of numeric functions
 1192|  15.5k|			case  cmFUNC:
  ------------------
  |  Branch (1192:4): [True: 15.5k, False: 563k]
  ------------------
 1193|  15.5k|			{
 1194|  15.5k|				int iArgCount = pTok->Fun.argc;
 1195|       |
 1196|       |				// switch according to argument count
 1197|  15.5k|				switch (iArgCount)
 1198|  15.5k|				{
 1199|  1.06k|				case 0: sidx += 1; MUP_ASSERT(sidx < iStackMaxSize); stack[sidx] = pTok->Fun.cb.call_fun<0 >(); continue;
  ------------------
  |  |   78|  1.06k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.06k]
  |  |  ------------------
  |  |   79|  1.06k|            {														\
  |  |   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 (1199:5): [True: 1.06k, False: 14.4k]
  ------------------
 1200|  10.2k|				case 1:                                              stack[sidx] = pTok->Fun.cb.call_fun<1 >(stack[sidx]); continue;
  ------------------
  |  Branch (1200:5): [True: 10.2k, False: 5.29k]
  ------------------
 1201|    246|				case 2: sidx -= 1; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<2 >(stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  |   78|    246|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 246]
  |  |  ------------------
  |  |   79|    246|            {														\
  |  |   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 (1201:5): [True: 246, False: 15.2k]
  ------------------
 1202|      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 (1202:5): [True: 0, False: 15.5k]
  ------------------
 1203|      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 (1203:5): [True: 0, False: 15.5k]
  ------------------
 1204|      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 (1204:5): [True: 0, False: 15.5k]
  ------------------
 1205|      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 (1205:5): [True: 0, False: 15.5k]
  ------------------
 1206|      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 (1206:5): [True: 0, False: 15.5k]
  ------------------
 1207|      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 (1207:5): [True: 0, False: 15.5k]
  ------------------
 1208|      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 (1208:5): [True: 0, False: 15.5k]
  ------------------
 1209|      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 (1209:5): [True: 0, False: 15.5k]
  ------------------
 1210|  3.98k|				default:
  ------------------
  |  Branch (1210:5): [True: 3.98k, False: 11.5k]
  ------------------
 1211|       |					// function with variable arguments store the number as a negative value
 1212|  3.98k|					if (iArgCount > 0)
  ------------------
  |  Branch (1212:10): [True: 0, False: 3.98k]
  ------------------
 1213|      0|						Error(ecINTERNAL_ERROR, -1);
 1214|       |
 1215|  3.98k|					sidx -= -iArgCount - 1;
 1216|  3.98k|					MUP_ASSERT(sidx>=0 && sidx < iStackMaxSize);
  ------------------
  |  |   78|  7.96k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 3.98k, False: 0]
  |  |  |  Branch (78:19): [True: 3.98k, False: 0]
  |  |  ------------------
  |  |   79|  3.98k|            {														\
  |  |   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|            }
  ------------------
 1217|       |
 1218|  3.98k|					stack[sidx] = pTok->Fun.cb.call_multfun(&stack[sidx], -iArgCount);
 1219|  3.98k|					continue;
 1220|  15.5k|				}
 1221|  15.5k|			}
 1222|       |
 1223|       |			// Next is treatment of string functions
 1224|      0|			case  cmFUNC_STR:
  ------------------
  |  Branch (1224:4): [True: 0, False: 578k]
  ------------------
 1225|      0|			{
 1226|      0|				sidx -= pTok->Fun.argc - 1;
 1227|      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|            }
  ------------------
 1228|       |
 1229|       |				// The index of the string argument in the string table
 1230|      0|				int iIdxStack = pTok->Fun.idx;
 1231|      0|				if (iIdxStack < 0 || iIdxStack >= (int)m_vStringBuf.size())
  ------------------
  |  Branch (1231:9): [True: 0, False: 0]
  |  Branch (1231:26): [True: 0, False: 0]
  ------------------
 1232|      0|					Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos());
 1233|       |
 1234|      0|				switch (pTok->Fun.argc)  // switch according to argument count
  ------------------
  |  Branch (1234:13): [True: 0, False: 0]
  ------------------
 1235|      0|				{
 1236|      0|				case 0: stack[sidx] = pTok->Fun.cb.call_strfun<1>(m_vStringBuf[iIdxStack].c_str()); continue;
  ------------------
  |  Branch (1236:5): [True: 0, False: 0]
  ------------------
 1237|      0|				case 1: stack[sidx] = pTok->Fun.cb.call_strfun<2>(m_vStringBuf[iIdxStack].c_str(), stack[sidx]); continue;
  ------------------
  |  Branch (1237:5): [True: 0, False: 0]
  ------------------
 1238|      0|				case 2: stack[sidx] = pTok->Fun.cb.call_strfun<3>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  Branch (1238:5): [True: 0, False: 0]
  ------------------
 1239|      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 (1239:5): [True: 0, False: 0]
  ------------------
 1240|      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 (1240:5): [True: 0, False: 0]
  ------------------
 1241|      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 (1241:5): [True: 0, False: 0]
  ------------------
 1242|      0|				}
 1243|       |
 1244|      0|				continue;
 1245|      0|			}
 1246|       |
 1247|      0|			case  cmFUNC_BULK:
  ------------------
  |  Branch (1247:4): [True: 0, False: 578k]
  ------------------
 1248|      0|			{
 1249|      0|				int iArgCount = pTok->Fun.argc;
 1250|       |
 1251|       |				// switch according to argument count
 1252|      0|				switch (iArgCount)
 1253|      0|				{
 1254|      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 (1254:5): [True: 0, False: 0]
  ------------------
 1255|      0|				case 1:            stack[sidx] = pTok->Fun.cb.call_bulkfun<1 >(nOffset, nThreadID, stack[sidx]); continue;
  ------------------
  |  Branch (1255:5): [True: 0, False: 0]
  ------------------
 1256|      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 (1256:5): [True: 0, False: 0]
  ------------------
 1257|      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 (1257:5): [True: 0, False: 0]
  ------------------
 1258|      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 (1258:5): [True: 0, False: 0]
  ------------------
 1259|      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 (1259:5): [True: 0, False: 0]
  ------------------
 1260|      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 (1260:5): [True: 0, False: 0]
  ------------------
 1261|      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 (1261:5): [True: 0, False: 0]
  ------------------
 1262|      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 (1262:5): [True: 0, False: 0]
  ------------------
 1263|      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 (1263:5): [True: 0, False: 0]
  ------------------
 1264|      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 (1264:5): [True: 0, False: 0]
  ------------------
 1265|      0|				default:
  ------------------
  |  Branch (1265:5): [True: 0, False: 0]
  ------------------
 1266|      0|					throw exception_type(ecINTERNAL_ERROR, 2, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1267|      0|				}
 1268|      0|			}
 1269|       |
 1270|      0|			default:
  ------------------
  |  Branch (1270:4): [True: 0, False: 578k]
  ------------------
 1271|      0|				throw exception_type(ecINTERNAL_ERROR, 3, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1272|   578k|			} // switch CmdCode
 1273|   578k|		} // for all bytecode tokens
 1274|       |
 1275|  1.00k|		return stack[m_nFinalResultIdx];
 1276|  1.00k|	}
_ZNK2mu10ParserBase9CreateRPNEv:
 1280|  3.68k|	{
 1281|  3.68k|		if (!m_pTokenReader->GetExpr().length())
  ------------------
  |  Branch (1281:7): [True: 0, False: 3.68k]
  ------------------
 1282|      0|			Error(ecUNEXPECTED_EOF, 0);
 1283|       |
 1284|  3.68k|		std::stack<token_type> stOpt, stVal;
 1285|  3.68k|		std::stack<int> stArgCount;
 1286|  3.68k|		token_type opta, opt;  // for storing operators
 1287|  3.68k|		token_type val, tval;  // for storing value
 1288|  3.68k|		int ifElseCounter = 0;
 1289|       |
 1290|  3.68k|		ReInit();
 1291|       |
 1292|       |		// The outermost counter counts the number of separated items
 1293|       |		// such as in "a=10,b=20,c=c+a"
 1294|  3.68k|		stArgCount.push(1);
 1295|       |
 1296|  3.68k|		for (;;)
 1297|  1.97M|		{
 1298|  1.97M|			opt = m_pTokenReader->ReadNextToken();
 1299|       |
 1300|  1.97M|			switch (opt.GetCode())
 1301|  1.97M|			{
 1302|       |			//
 1303|       |			// Next three are different kind of value entries
 1304|       |			//
 1305|  11.8k|			case cmSTRING:
  ------------------
  |  Branch (1305:4): [True: 11.8k, False: 1.96M]
  ------------------
 1306|  11.8k|				if (stOpt.empty())
  ------------------
  |  Branch (1306:9): [True: 75, False: 11.7k]
  ------------------
 1307|     75|					Error(ecSTR_RESULT, m_pTokenReader->GetPos(), opt.GetAsString());
 1308|       |
 1309|  11.8k|				stVal.push(opt);
 1310|  11.8k|				break;
 1311|       |
 1312|      0|			case cmVAR:
  ------------------
  |  Branch (1312:4): [True: 0, False: 1.97M]
  ------------------
 1313|      0|				stVal.push(opt);
 1314|      0|				m_vRPN.AddVar(static_cast<value_type*>(opt.GetVar()));
 1315|      0|				break;
 1316|       |
 1317|   801k|			case cmVAL:
  ------------------
  |  Branch (1317:4): [True: 801k, False: 1.17M]
  ------------------
 1318|   801k|				stVal.push(opt);
 1319|   801k|				m_vRPN.AddVal(opt.GetVal());
 1320|   801k|				break;
 1321|       |
 1322|  71.4k|			case cmELSE:
  ------------------
  |  Branch (1322:4): [True: 71.4k, False: 1.90M]
  ------------------
 1323|  71.4k|				if (stArgCount.empty())
  ------------------
  |  Branch (1323:9): [True: 0, False: 71.4k]
  ------------------
 1324|      0|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1325|       |
 1326|  71.4k|				if (stArgCount.top() > 1)
  ------------------
  |  Branch (1326:9): [True: 12, False: 71.4k]
  ------------------
 1327|     12|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1328|       |
 1329|  71.4k|				stArgCount.pop();
 1330|       |
 1331|  71.4k|				ifElseCounter--;
 1332|  71.4k|				if (ifElseCounter < 0)
  ------------------
  |  Branch (1332:9): [True: 14, False: 71.4k]
  ------------------
 1333|     14|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1334|       |
 1335|  71.4k|				ApplyRemainingOprt(stOpt, stVal);
 1336|  71.4k|				m_vRPN.AddIfElse(cmELSE);
 1337|  71.4k|				stOpt.push(opt);
 1338|  71.4k|				break;
 1339|       |
 1340|   441k|			case cmARG_SEP:
  ------------------
  |  Branch (1340:4): [True: 441k, False: 1.53M]
  ------------------
 1341|   441k|				if (!stOpt.empty() && stOpt.top().GetCode() == cmIF)
  ------------------
  |  Branch (1341:9): [True: 384k, False: 57.0k]
  |  Branch (1341:27): [True: 7, False: 384k]
  ------------------
 1342|      7|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1343|       |
 1344|   441k|				if (stArgCount.empty())
  ------------------
  |  Branch (1344:9): [True: 0, False: 441k]
  ------------------
 1345|      0|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1346|       |
 1347|   441k|				++stArgCount.top();
 1348|       |				// Falls through.
 1349|       |				// intentional (no break!)
 1350|       |
 1351|   443k|			case cmEND:
  ------------------
  |  Branch (1351:4): [True: 1.91k, False: 1.97M]
  ------------------
 1352|   443k|				ApplyRemainingOprt(stOpt, stVal);
 1353|   443k|				break;
 1354|       |
 1355|  87.8k|			case cmBC:
  ------------------
  |  Branch (1355:4): [True: 87.8k, False: 1.89M]
  ------------------
 1356|  87.8k|			{
 1357|       |				// The argument count for parameterless functions is zero
 1358|       |				// by default an opening bracket sets parameter count to 1
 1359|       |				// in preparation of arguments to come. If the last token
 1360|       |				// was an opening bracket we know better...
 1361|  87.8k|				if (opta.GetCode() == cmBO)
  ------------------
  |  Branch (1361:9): [True: 1.53k, False: 86.3k]
  ------------------
 1362|  1.53k|					--stArgCount.top();
 1363|       |
 1364|  87.8k|				ApplyRemainingOprt(stOpt, stVal);
 1365|       |
 1366|       |				// Check if the bracket content has been evaluated completely
 1367|  87.8k|				if (stOpt.size() && stOpt.top().GetCode() == cmBO)
  ------------------
  |  Branch (1367:9): [True: 87.8k, False: 1]
  |  Branch (1367:25): [True: 22.3k, False: 65.5k]
  ------------------
 1368|  22.3k|				{
 1369|       |					// if opt is ")" and opta is "(" the bracket has been evaluated, now its time to check
 1370|       |					// if there is either a function or a sign pending
 1371|       |					// neither the opening nor the closing bracket will be pushed back to
 1372|       |					// the operator stack
 1373|       |					// Check if a function is standing in front of the opening bracket, 
 1374|       |					// if yes evaluate it afterwards check for infix operators
 1375|  22.3k|					MUP_ASSERT(stArgCount.size());
  ------------------
  |  |   78|  22.3k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 22.3k]
  |  |  ------------------
  |  |   79|  22.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|            }
  ------------------
 1376|  22.3k|					int iArgCount = stArgCount.top();
 1377|  22.3k|					stArgCount.pop();
 1378|       |
 1379|  22.3k|					stOpt.pop(); // Take opening bracket from stack
 1380|       |
 1381|  22.3k|					if (iArgCount > 1 && (stOpt.size() == 0 ||
  ------------------
  |  Branch (1381:10): [True: 3.90k, False: 18.4k]
  |  Branch (1381:28): [True: 3, False: 3.89k]
  ------------------
 1382|  3.89k|						(stOpt.top().GetCode() != cmFUNC &&
  ------------------
  |  Branch (1382:8): [True: 19, False: 3.87k]
  ------------------
 1383|     19|							stOpt.top().GetCode() != cmFUNC_BULK &&
  ------------------
  |  Branch (1383:8): [True: 19, False: 0]
  ------------------
 1384|     19|							stOpt.top().GetCode() != cmFUNC_STR)))
  ------------------
  |  Branch (1384:8): [True: 19, False: 0]
  ------------------
 1385|     22|						Error(ecUNEXPECTED_ARG, m_pTokenReader->GetPos());
 1386|       |
 1387|       |					// The opening bracket was popped from the stack now check if there
 1388|       |					// was a function before this bracket
 1389|  22.3k|					if (stOpt.size() &&
  ------------------
  |  Branch (1389:10): [True: 21.9k, False: 401]
  |  Branch (1389:10): [True: 15.2k, False: 7.09k]
  ------------------
 1390|  21.9k|						stOpt.top().GetCode() != cmOPRT_INFIX &&
  ------------------
  |  Branch (1390:7): [True: 21.5k, False: 347]
  ------------------
 1391|  21.5k|						stOpt.top().GetCode() != cmOPRT_BIN &&
  ------------------
  |  Branch (1391:7): [True: 21.5k, False: 0]
  ------------------
 1392|  21.5k|						stOpt.top().GetFuncAddr() != 0)
  ------------------
  |  Branch (1392:7): [True: 15.2k, False: 6.35k]
  ------------------
 1393|  15.2k|					{
 1394|  15.2k|						ApplyFunc(stOpt, stVal, iArgCount);
 1395|  15.2k|					}
 1396|  22.3k|				}
 1397|  87.8k|			} // if bracket content is evaluated
 1398|  87.8k|			break;
 1399|       |
 1400|       |			//
 1401|       |			// Next are the binary operator entries
 1402|       |			//
 1403|   116k|			case cmIF:
  ------------------
  |  Branch (1403:4): [True: 116k, False: 1.86M]
  ------------------
 1404|   116k|				ifElseCounter++;
 1405|   116k|				if (ifElseCounter > MaxNestingDepth)
  ------------------
  |  Branch (1405:9): [True: 2, False: 116k]
  ------------------
 1406|      2|					Error(ecNESTING_LIMIT, m_pTokenReader->GetPos());
 1407|       |
 1408|   116k|				stArgCount.push(1);
 1409|       |				// Falls through.
 1410|       |				// intentional (no break!)
 1411|       |
 1412|   119k|			case cmLAND:
  ------------------
  |  Branch (1412:4): [True: 3.55k, False: 1.97M]
  ------------------
 1413|   123k|			case cmLOR:
  ------------------
  |  Branch (1413:4): [True: 3.47k, False: 1.97M]
  ------------------
 1414|   130k|			case cmLT:
  ------------------
  |  Branch (1414:4): [True: 7.27k, False: 1.97M]
  ------------------
 1415|   134k|			case cmGT:
  ------------------
  |  Branch (1415:4): [True: 3.46k, False: 1.97M]
  ------------------
 1416|   135k|			case cmLE:
  ------------------
  |  Branch (1416:4): [True: 1.21k, False: 1.97M]
  ------------------
 1417|   136k|			case cmGE:
  ------------------
  |  Branch (1417:4): [True: 1.06k, False: 1.97M]
  ------------------
 1418|   137k|			case cmNEQ:
  ------------------
  |  Branch (1418:4): [True: 1.09k, False: 1.97M]
  ------------------
 1419|   139k|			case cmEQ:
  ------------------
  |  Branch (1419:4): [True: 1.99k, False: 1.97M]
  ------------------
 1420|   145k|			case cmADD:
  ------------------
  |  Branch (1420:4): [True: 5.56k, False: 1.97M]
  ------------------
 1421|   151k|			case cmSUB:
  ------------------
  |  Branch (1421:4): [True: 6.57k, False: 1.97M]
  ------------------
 1422|   155k|			case cmMUL:
  ------------------
  |  Branch (1422:4): [True: 3.88k, False: 1.97M]
  ------------------
 1423|   159k|			case cmDIV:
  ------------------
  |  Branch (1423:4): [True: 3.96k, False: 1.97M]
  ------------------
 1424|   300k|			case cmPOW:
  ------------------
  |  Branch (1424:4): [True: 141k, False: 1.83M]
  ------------------
 1425|   300k|			case cmASSIGN:
  ------------------
  |  Branch (1425:4): [True: 0, False: 1.97M]
  ------------------
 1426|   300k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1426:4): [True: 0, False: 1.97M]
  ------------------
 1427|       |
 1428|       |				// A binary operator (user defined or built in) has been found. 
 1429|   300k|				while (
 1430|   388k|					stOpt.size() &&
  ------------------
  |  Branch (1430:6): [True: 364k, False: 23.9k]
  ------------------
 1431|   364k|					stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1431:6): [True: 353k, False: 10.8k]
  ------------------
 1432|   353k|					stOpt.top().GetCode() != cmELSE &&
  ------------------
  |  Branch (1432:6): [True: 284k, False: 68.9k]
  ------------------
 1433|   284k|					stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1433:6): [True: 237k, False: 46.5k]
  ------------------
 1434|   237k|				{
 1435|   237k|					int nPrec1 = GetOprtPrecedence(stOpt.top()),
 1436|   237k|						nPrec2 = GetOprtPrecedence(opt);
 1437|       |
 1438|   237k|					if (stOpt.top().GetCode() == opt.GetCode())
  ------------------
  |  Branch (1438:10): [True: 136k, False: 101k]
  ------------------
 1439|   136k|					{
 1440|       |
 1441|       |						// Deal with operator associativity
 1442|   136k|						EOprtAssociativity eOprtAsct = GetOprtAssociativity(opt);
 1443|   136k|						if ((eOprtAsct == oaRIGHT && (nPrec1 <= nPrec2)) ||
  ------------------
  |  Branch (1443:12): [True: 111k, False: 25.7k]
  |  Branch (1443:36): [True: 111k, False: 0]
  ------------------
 1444|  25.7k|							(eOprtAsct == oaLEFT && (nPrec1 < nPrec2)))
  ------------------
  |  Branch (1444:9): [True: 25.7k, False: 0]
  |  Branch (1444:32): [True: 0, False: 25.7k]
  ------------------
 1445|   111k|						{
 1446|   111k|							break;
 1447|   111k|						}
 1448|   136k|					}
 1449|   101k|					else if (nPrec1 < nPrec2)
  ------------------
  |  Branch (1449:15): [True: 39.3k, False: 61.6k]
  ------------------
 1450|  39.3k|					{
 1451|       |						// In case the operators are not equal the precedence decides alone...
 1452|  39.3k|						break;
 1453|  39.3k|					}
 1454|       |
 1455|  87.4k|					if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1455:10): [True: 4.55k, False: 82.8k]
  ------------------
 1456|  4.55k|						ApplyFunc(stOpt, stVal, 1);
 1457|  82.8k|					else
 1458|  82.8k|						ApplyBinOprt(stOpt, stVal);
 1459|  87.4k|				} // while ( ... )
 1460|       |
 1461|   300k|				if (opt.GetCode() == cmIF)
  ------------------
  |  Branch (1461:9): [True: 116k, False: 184k]
  ------------------
 1462|   116k|					m_vRPN.AddIfElse(opt.GetCode());
 1463|       |
 1464|       |				// The operator can't be evaluated right now, push back to the operator stack
 1465|   300k|				stOpt.push(opt);
 1466|   300k|				break;
 1467|       |
 1468|       |				//
 1469|       |				// Last section contains functions and operators implicitly mapped to functions
 1470|       |				//
 1471|   197k|			case cmBO:
  ------------------
  |  Branch (1471:4): [True: 197k, False: 1.78M]
  ------------------
 1472|   197k|				stArgCount.push(1);
 1473|   197k|				stOpt.push(opt);
 1474|   197k|				break;
 1475|       |
 1476|  45.7k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1476:4): [True: 45.7k, False: 1.93M]
  ------------------
 1477|  62.4k|			case cmFUNC:
  ------------------
  |  Branch (1477:4): [True: 16.7k, False: 1.96M]
  ------------------
 1478|  62.4k|			case cmFUNC_BULK:
  ------------------
  |  Branch (1478:4): [True: 0, False: 1.97M]
  ------------------
 1479|  62.4k|			case cmFUNC_STR:
  ------------------
  |  Branch (1479:4): [True: 0, False: 1.97M]
  ------------------
 1480|  62.4k|				stOpt.push(opt);
 1481|  62.4k|				break;
 1482|       |
 1483|      0|			case cmOPRT_POSTFIX:
  ------------------
  |  Branch (1483:4): [True: 0, False: 1.97M]
  ------------------
 1484|      0|				stOpt.push(opt);
 1485|      0|				ApplyFunc(stOpt, stVal, 1);  // this is the postfix operator
 1486|      0|				break;
 1487|       |
 1488|      0|			default:  Error(ecINTERNAL_ERROR, 3);
  ------------------
  |  Branch (1488:4): [True: 0, False: 1.97M]
  ------------------
 1489|  1.97M|			} // end of switch operator-token
 1490|       |
 1491|  1.97M|			opta = opt;
 1492|       |
 1493|  1.97M|			if (opt.GetCode() == cmEND)
  ------------------
  |  Branch (1493:8): [True: 1.87k, False: 1.97M]
  ------------------
 1494|  1.87k|			{
 1495|  1.87k|				m_vRPN.Finalize();
 1496|  1.87k|				break;
 1497|  1.87k|			}
 1498|       |
 1499|  1.97M|			if (ParserBase::g_DbgDumpStack)
  ------------------
  |  Branch (1499:8): [True: 0, False: 1.97M]
  ------------------
 1500|      0|			{
 1501|      0|				StackDump(stVal, stOpt);
 1502|      0|				m_vRPN.AsciiDump();
 1503|      0|			}
 1504|       |
 1505|       |//			if (ParserBase::g_DbgDumpCmdCode)
 1506|       |				//m_vRPN.AsciiDump();
 1507|  1.97M|		} // while (true)
 1508|       |
 1509|  1.87k|		if (ParserBase::g_DbgDumpCmdCode)
  ------------------
  |  Branch (1509:7): [True: 0, False: 1.87k]
  ------------------
 1510|      0|			m_vRPN.AsciiDump();
 1511|       |
 1512|  1.87k|		if (ifElseCounter > 0)
  ------------------
  |  Branch (1512:7): [True: 137, False: 1.74k]
  ------------------
 1513|    137|			Error(ecMISSING_ELSE_CLAUSE);
 1514|       |
 1515|       |		// get the last value (= final result) from the stack
 1516|  1.87k|		MUP_ASSERT(stArgCount.size() == 1);
  ------------------
  |  |   78|  1.87k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 7, False: 1.87k]
  |  |  ------------------
  |  |   79|  1.87k|            {														\
  |  |   80|      7|              stringstream_type ss;									\
  |  |   81|      7|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |   82|      7|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |   83|      7|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |   84|      7|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      7|            }
  ------------------
 1517|  1.87k|		m_nFinalResultIdx = stArgCount.top();
 1518|  1.87k|		if (m_nFinalResultIdx == 0)
  ------------------
  |  Branch (1518:7): [True: 0, False: 1.87k]
  ------------------
 1519|      0|			Error(ecINTERNAL_ERROR, 9);
 1520|       |
 1521|  1.87k|		if (stVal.size() == 0)
  ------------------
  |  Branch (1521:7): [True: 18, False: 1.85k]
  ------------------
 1522|     18|			Error(ecEMPTY_EXPRESSION);
 1523|       |
 1524|       |		// 2020-09-17; fix for https://oss-fuzz.com/testcase-detail/5758791700971520
 1525|       |		// I don't need the value stack any more. Destructively check if all values in the value 
 1526|       |		// stack represent floating point values
 1527|  55.8k|		while (stVal.size())
  ------------------
  |  Branch (1527:10): [True: 54.0k, False: 1.87k]
  ------------------
 1528|  54.0k|		{
 1529|  54.0k|			if (stVal.top().GetType() != tpDBL)
  ------------------
  |  Branch (1529:8): [True: 2, False: 54.0k]
  ------------------
 1530|      2|				Error(ecSTR_RESULT);
 1531|       |
 1532|  54.0k|			stVal.pop();
 1533|  54.0k|		}
 1534|       |
 1535|  1.87k|		m_vStackBuffer.resize(m_vRPN.GetMaxStackSize() * s_MaxNumOpenMPThreads);
 1536|  1.87k|	}
_ZNK2mu10ParserBase11ParseStringEv:
 1548|  3.68k|	{
 1549|  3.68k|		try
 1550|  3.68k|		{
 1551|  3.68k|			CreateRPN();
 1552|       |
 1553|  3.68k|			if (m_vRPN.GetSize() == 2)
  ------------------
  |  Branch (1553:8): [True: 708, False: 2.97k]
  ------------------
 1554|    708|			{
 1555|    708|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1556|    708|				m_pParseFormula = &ParserBase::ParseCmdCodeShort;
 1557|    708|				m_vStackBuffer[1] = (this->*m_pParseFormula)();
 1558|    708|				return m_vStackBuffer[1];
 1559|    708|			}
 1560|  2.97k|			else
 1561|  2.97k|			{
 1562|  2.97k|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1563|  2.97k|				m_pParseFormula = &ParserBase::ParseCmdCode;
 1564|  2.97k|				return (this->*m_pParseFormula)();
 1565|  2.97k|			}
 1566|  3.68k|		}
 1567|  3.68k|		catch (ParserError& exc)
 1568|  3.68k|		{
 1569|  1.96k|			exc.SetFormula(m_pTokenReader->GetExpr());
 1570|  1.96k|			throw;
 1571|  1.96k|		}
 1572|  3.68k|	}
_ZNK2mu10ParserBase5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
 1586|  1.97k|	{
 1587|  1.97k|		throw exception_type(a_iErrc, a_sTok, m_pTokenReader->GetExpr(), a_iPos);
 1588|  1.97k|	}
_ZNK2mu10ParserBase14HasBuiltInOprtEv:
 1723|  5.17M|	{
 1724|  5.17M|		return m_bBuiltInOp;
 1725|  5.17M|	}
_ZNK2mu10ParserBase4EvalEv:
 1840|  3.68k|	{
 1841|  3.68k|		return (this->*m_pParseFormula)();
 1842|  3.68k|	}

_ZN2mu14ParserByteCodeC2Ev:
   52|  3.71k|		: m_iStackPos(0)
   53|  3.71k| 		, m_stringBuffer()
   54|  3.71k|		, m_expr()
   55|  3.71k|		, m_iMaxStackSize(0)
   56|  3.71k|		, m_vRPN()
   57|  3.71k|		, m_bEnableOptimizer(true)
   58|  3.71k|	{
   59|  3.71k|		m_vRPN.reserve(50);
   60|  3.71k|	}
_ZN2mu14ParserByteCode6AddValEd:
  141|   801k|	{
  142|   801k|		++m_iStackPos;
  143|   801k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  144|       |
  145|       |		// If optimization does not apply
  146|   801k|		SToken tok;
  147|   801k|		tok.Cmd = cmVAL;
  148|   801k|		tok.Val.ptr = nullptr;
  149|   801k|		tok.Val.data = 0;
  150|   801k|		tok.Val.data2 = a_fVal;
  151|   801k|		m_vRPN.push_back(tok);
  152|   801k|	}
_ZN2mu14ParserByteCode15ConstantFoldingENS_8ECmdCodeE:
  156|  43.3k|	{
  157|  43.3k|		std::size_t sz = m_vRPN.size();
  158|  43.3k|		value_type& x = m_vRPN[sz - 2].Val.data2;
  159|  43.3k|		value_type& y = m_vRPN[sz - 1].Val.data2;
  160|       |
  161|  43.3k|		switch (a_Oprt)
  162|  43.3k|		{
  163|  2.53k|		case cmLAND: x = (int)x && (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (163:3): [True: 2.53k, False: 40.8k]
  |  Branch (163:20): [True: 1.65k, False: 883]
  |  Branch (163:30): [True: 1.27k, False: 380]
  ------------------
  164|  1.59k|		case cmLOR:  x = (int)x || (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (164:3): [True: 1.59k, False: 41.7k]
  |  Branch (164:20): [True: 1.09k, False: 495]
  |  Branch (164:30): [True: 350, False: 145]
  ------------------
  165|  2.17k|		case cmLT:   x = x < y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (165:3): [True: 2.17k, False: 41.1k]
  ------------------
  166|  2.28k|		case cmGT:   x = x > y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (166:3): [True: 2.28k, False: 41.0k]
  ------------------
  167|    679|		case cmLE:   x = x <= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (167:3): [True: 679, False: 42.6k]
  ------------------
  168|    623|		case cmGE:   x = x >= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (168:3): [True: 623, False: 42.7k]
  ------------------
  169|    795|		case cmNEQ:  x = x != y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (169:3): [True: 795, False: 42.5k]
  ------------------
  170|  1.39k|		case cmEQ:   x = x == y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (170:3): [True: 1.39k, False: 41.9k]
  ------------------
  171|  3.62k|		case cmADD:  x = x + y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (171:3): [True: 3.62k, False: 39.7k]
  ------------------
  172|  5.30k|		case cmSUB:  x = x - y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (172:3): [True: 5.30k, False: 38.0k]
  ------------------
  173|  1.36k|		case cmMUL:  x = x * y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (173:3): [True: 1.36k, False: 42.0k]
  ------------------
  174|  2.20k|		case cmDIV:
  ------------------
  |  Branch (174:3): [True: 2.20k, False: 41.1k]
  ------------------
  175|  2.20k|			x = x / y;
  176|  2.20k|			m_vRPN.pop_back();
  177|  2.20k|			break;
  178|       |
  179|  18.7k|		case cmPOW: x = MathImpl<value_type>::Pow(x, y);
  ------------------
  |  Branch (179:3): [True: 18.7k, False: 24.5k]
  ------------------
  180|  18.7k|			m_vRPN.pop_back();
  181|  18.7k|			break;
  182|       |
  183|      0|		default:
  ------------------
  |  Branch (183:3): [True: 0, False: 43.3k]
  ------------------
  184|      0|			break;
  185|  43.3k|		} // switch opcode
  186|  43.3k|	}
_ZN2mu14ParserByteCode5AddOpENS_8ECmdCodeE:
  200|   148k|	{
  201|   148k|		bool bOptimized = false;
  202|       |
  203|   148k|		if (m_bEnableOptimizer)
  ------------------
  |  Branch (203:7): [True: 148k, False: 0]
  ------------------
  204|   148k|		{
  205|   148k|			std::size_t sz = m_vRPN.size();
  206|       |
  207|       |			// Check for foldable constants like:
  208|       |			//   cmVAL cmVAL cmADD 
  209|       |			// where cmADD can stand fopr any binary operator applied to
  210|       |			// two constant values.
  211|   148k|			if (sz >= 2 && m_vRPN[sz - 2].Cmd == cmVAL && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (211:8): [True: 148k, False: 0]
  |  Branch (211:19): [True: 46.8k, False: 102k]
  |  Branch (211:50): [True: 43.3k, False: 3.44k]
  ------------------
  212|  43.3k|			{
  213|  43.3k|				ConstantFolding(a_Oprt);
  214|  43.3k|				bOptimized = true;
  215|  43.3k|			}
  216|   105k|			else
  217|   105k|			{
  218|   105k|				switch (a_Oprt)
  219|   105k|				{
  220|  88.4k|				case  cmPOW:
  ------------------
  |  Branch (220:5): [True: 88.4k, False: 17.0k]
  ------------------
  221|       |					// Optimization for polynomials of low order
  222|  88.4k|					if (m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (222:10): [True: 0, False: 88.4k]
  |  Branch (222:41): [True: 0, False: 0]
  ------------------
  223|      0|					{
  224|      0|						if (m_vRPN[sz - 1].Val.data2 == 0)
  ------------------
  |  Branch (224:11): [True: 0, False: 0]
  ------------------
  225|      0|						{
  226|      0|							m_vRPN[sz - 2].Cmd = cmVAL;
  227|      0|							m_vRPN[sz - 2].Val.ptr = nullptr;
  228|      0|							m_vRPN[sz - 2].Val.data = 0;
  229|      0|							m_vRPN[sz - 2].Val.data2 = 1;
  230|      0|						}
  231|      0|						else if (m_vRPN[sz - 1].Val.data2 == 1)
  ------------------
  |  Branch (231:16): [True: 0, False: 0]
  ------------------
  232|      0|							m_vRPN[sz - 2].Cmd = cmVAR;
  233|      0|						else if (m_vRPN[sz - 1].Val.data2 == 2)
  ------------------
  |  Branch (233:16): [True: 0, False: 0]
  ------------------
  234|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW2;
  235|      0|						else if (m_vRPN[sz - 1].Val.data2 == 3)
  ------------------
  |  Branch (235:16): [True: 0, False: 0]
  ------------------
  236|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW3;
  237|      0|						else if (m_vRPN[sz - 1].Val.data2 == 4)
  ------------------
  |  Branch (237:16): [True: 0, False: 0]
  ------------------
  238|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW4;
  239|      0|						else
  240|      0|							break;
  241|       |
  242|      0|						m_vRPN.pop_back();
  243|      0|						bOptimized = true;
  244|      0|					}
  245|  88.4k|					break;
  246|       |
  247|  88.4k|				case  cmSUB:
  ------------------
  |  Branch (247:5): [True: 1.08k, False: 104k]
  ------------------
  248|  2.64k|				case  cmADD:
  ------------------
  |  Branch (248:5): [True: 1.56k, False: 103k]
  ------------------
  249|       |					// Simple optimization based on pattern recognition for a shitload of different
  250|       |					// bytecode combinations of addition/subtraction
  251|  2.64k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (251:11): [True: 0, False: 2.64k]
  |  Branch (251:42): [True: 0, False: 0]
  ------------------
  252|  2.64k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR) ||
  ------------------
  |  Branch (252:8): [True: 1.78k, False: 861]
  |  Branch (252:39): [True: 0, False: 1.78k]
  ------------------
  253|  2.64k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (253:8): [True: 1.78k, False: 861]
  |  Branch (253:39): [True: 0, False: 1.78k]
  ------------------
  254|  2.64k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (254:8): [True: 0, False: 2.64k]
  |  Branch (254:42): [True: 0, False: 0]
  ------------------
  255|  2.64k|						(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 (255:8): [True: 0, False: 2.64k]
  |  Branch (255:39): [True: 0, False: 0]
  |  Branch (255:70): [True: 0, False: 0]
  ------------------
  256|  2.64k|						(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 (256:8): [True: 0, False: 2.64k]
  |  Branch (256:39): [True: 0, False: 0]
  |  Branch (256:73): [True: 0, False: 0]
  ------------------
  257|  2.64k|						(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 (257:8): [True: 0, False: 2.64k]
  |  Branch (257:42): [True: 0, False: 0]
  |  Branch (257:73): [True: 0, False: 0]
  ------------------
  258|  2.64k|						(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 (258:8): [True: 0, False: 2.64k]
  |  Branch (258:42): [True: 0, False: 0]
  |  Branch (258:76): [True: 0, False: 0]
  ------------------
  259|      0|					{
  260|      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|            }
  ------------------
  261|      0|							(m_vRPN[sz - 2].Val.ptr == nullptr && m_vRPN[sz - 1].Val.ptr != nullptr) ||
  262|      0|							(m_vRPN[sz - 2].Val.ptr != nullptr && m_vRPN[sz - 1].Val.ptr == nullptr) ||
  263|      0|							(m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr));
  264|       |
  265|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  266|      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 (266:32): [True: 0, False: 0]
  ------------------
  267|      0|						m_vRPN[sz - 2].Val.data2 += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data2;  // offset
  ------------------
  |  Branch (267:36): [True: 0, False: 0]
  ------------------
  268|      0|						m_vRPN[sz - 2].Val.data += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data;   // multiplicand
  ------------------
  |  Branch (268:35): [True: 0, False: 0]
  ------------------
  269|      0|						m_vRPN.pop_back();
  270|      0|						bOptimized = true;
  271|      0|					}
  272|  2.64k|					break;
  273|       |
  274|  2.64k|				case  cmMUL:
  ------------------
  |  Branch (274:5): [True: 2.25k, False: 103k]
  ------------------
  275|  2.25k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (275:11): [True: 0, False: 2.25k]
  |  Branch (275:42): [True: 0, False: 0]
  ------------------
  276|  2.25k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR))
  ------------------
  |  Branch (276:8): [True: 830, False: 1.42k]
  |  Branch (276:39): [True: 0, False: 830]
  ------------------
  277|      0|					{
  278|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  279|      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 (279:32): [True: 0, False: 0]
  ------------------
  280|      0|						m_vRPN[sz - 2].Val.data = m_vRPN[sz - 2].Val.data2 + m_vRPN[sz - 1].Val.data2;
  281|      0|						m_vRPN[sz - 2].Val.data2 = 0;
  282|      0|						m_vRPN.pop_back();
  283|      0|						bOptimized = true;
  284|      0|					}
  285|  2.25k|					else if (
  286|  2.25k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (286:8): [True: 830, False: 1.42k]
  |  Branch (286:39): [True: 0, False: 830]
  ------------------
  287|  2.25k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL))
  ------------------
  |  Branch (287:8): [True: 0, False: 2.25k]
  |  Branch (287:42): [True: 0, False: 0]
  ------------------
  288|      0|					{
  289|       |						// Optimization: 2*(3*b+1) or (3*b+1)*2 -> 6*b+2
  290|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  291|      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 (291:32): [True: 0, False: 0]
  ------------------
  292|      0|						if (m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (292:11): [True: 0, False: 0]
  ------------------
  293|      0|						{
  294|      0|							m_vRPN[sz - 2].Val.data *= m_vRPN[sz - 1].Val.data2;
  295|      0|							m_vRPN[sz - 2].Val.data2 *= m_vRPN[sz - 1].Val.data2;
  296|      0|						}
  297|      0|						else
  298|      0|						{
  299|      0|							m_vRPN[sz - 2].Val.data = m_vRPN[sz - 1].Val.data * m_vRPN[sz - 2].Val.data2;
  300|      0|							m_vRPN[sz - 2].Val.data2 = m_vRPN[sz - 1].Val.data2 * m_vRPN[sz - 2].Val.data2;
  301|      0|						}
  302|      0|						m_vRPN.pop_back();
  303|      0|						bOptimized = true;
  304|      0|					}
  305|  2.25k|					else if (
  306|  2.25k|						m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR &&
  ------------------
  |  Branch (306:7): [True: 0, False: 2.25k]
  |  Branch (306:38): [True: 0, False: 0]
  ------------------
  307|      0|						m_vRPN[sz - 1].Val.ptr == m_vRPN[sz - 2].Val.ptr)
  ------------------
  |  Branch (307:7): [True: 0, False: 0]
  ------------------
  308|      0|					{
  309|       |						// Optimization: a*a -> a^2
  310|      0|						m_vRPN[sz - 2].Cmd = cmVARPOW2;
  311|      0|						m_vRPN.pop_back();
  312|      0|						bOptimized = true;
  313|      0|					}
  314|  2.25k|					break;
  315|       |
  316|  1.63k|				case cmDIV:
  ------------------
  |  Branch (316:5): [True: 1.63k, False: 103k]
  ------------------
  317|  1.63k|					if (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 1].Val.data2 != 0)
  ------------------
  |  Branch (317:10): [True: 913, False: 717]
  |  Branch (317:41): [True: 0, False: 913]
  |  Branch (317:75): [True: 0, False: 0]
  ------------------
  318|      0|					{
  319|       |						// Optimization: 4*a/2 -> 2*a
  320|      0|						m_vRPN[sz - 2].Val.data /= m_vRPN[sz - 1].Val.data2;
  321|      0|						m_vRPN[sz - 2].Val.data2 /= m_vRPN[sz - 1].Val.data2;
  322|      0|						m_vRPN.pop_back();
  323|      0|						bOptimized = true;
  324|      0|					}
  325|  1.63k|					break;
  326|       |
  327|       |					// no optimization for other opcodes
  328|  10.5k|				default:
  ------------------
  |  Branch (328:5): [True: 10.5k, False: 94.9k]
  ------------------
  329|  10.5k|					break;
  330|   105k|				} // switch a_Oprt
  331|   105k|			}
  332|   148k|		}
  333|       |
  334|       |		// If optimization can't be applied just write the value
  335|   148k|		if (!bOptimized)
  ------------------
  |  Branch (335:7): [True: 105k, False: 43.3k]
  ------------------
  336|   105k|		{
  337|   105k|			--m_iStackPos;
  338|   105k|			SToken tok;
  339|   105k|			tok.Cmd = a_Oprt;
  340|   105k|			m_vRPN.push_back(tok);
  341|   105k|		}
  342|   148k|	}
_ZN2mu14ParserByteCode9AddIfElseENS_8ECmdCodeE:
  346|   221k|	{
  347|   221k|		SToken tok;
  348|   221k|		tok.Cmd = a_Oprt;
  349|   221k|		m_vRPN.push_back(tok);
  350|   221k|	}
_ZN2mu14ParserByteCode6AddFunENS_21generic_callable_typeEib:
  380|  35.6k|	{
  381|  35.6k|		std::size_t sz = m_vRPN.size();
  382|  35.6k|		bool optimize = false;
  383|       |
  384|       |		// only optimize functions with fixed number of more than a single arguments
  385|  35.6k|		if (isFunctionOptimizable && m_bEnableOptimizer && a_iArgc > 0)
  ------------------
  |  Branch (385:7): [True: 34.1k, False: 1.53k]
  |  Branch (385:32): [True: 34.1k, False: 0]
  |  Branch (385:54): [True: 29.4k, False: 4.65k]
  ------------------
  386|  29.4k|		{
  387|       |			// <ibg 2020-06-10/> Unary Plus is a no-op, optimize it away
  388|  29.4k|			if (a_pFun == generic_callable_type{(erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr})
  ------------------
  |  Branch (388:8): [True: 2.94k, False: 26.5k]
  ------------------
  389|  2.94k|				return;
  390|       |
  391|  26.5k|			optimize = true;
  392|       |
  393|  37.4k|			for (int i = 0; i < std::abs(a_iArgc); ++i)
  ------------------
  |  Branch (393:20): [True: 26.9k, False: 10.4k]
  ------------------
  394|  26.9k|			{
  395|  26.9k|				if (m_vRPN[sz - i - 1].Cmd != cmVAL)
  ------------------
  |  Branch (395:9): [True: 16.0k, False: 10.9k]
  ------------------
  396|  16.0k|				{
  397|  16.0k|					optimize = false;
  398|  16.0k|					break;
  399|  16.0k|				}
  400|  26.9k|			}
  401|  26.5k|		}
  402|       |
  403|  32.7k|		if (optimize)
  ------------------
  |  Branch (403:7): [True: 10.4k, False: 22.2k]
  ------------------
  404|  10.4k|		{
  405|  10.4k|			value_type val = 0;
  406|  10.4k|			switch (a_iArgc)
  407|  10.4k|			{
  408|  10.1k|			case 1:  val = a_pFun.call_fun<1>(m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (408:4): [True: 10.1k, False: 340]
  ------------------
  409|    340|			case 2:  val = a_pFun.call_fun<2>(m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (409:4): [True: 340, False: 10.1k]
  ------------------
  410|      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 (410:4): [True: 0, False: 10.4k]
  ------------------
  411|      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 (411:4): [True: 0, False: 10.4k]
  ------------------
  412|      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 (412:4): [True: 0, False: 10.4k]
  ------------------
  413|      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 (413:4): [True: 0, False: 10.4k]
  ------------------
  414|      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 (414:4): [True: 0, False: 10.4k]
  ------------------
  415|      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 (415:4): [True: 0, False: 10.4k]
  ------------------
  416|      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 (416:4): [True: 0, False: 10.4k]
  ------------------
  417|      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 (417:4): [True: 0, False: 10.4k]
  ------------------
  418|      0|			default:
  ------------------
  |  Branch (418:4): [True: 0, False: 10.4k]
  ------------------
  419|       |				// For now functions with unlimited number of arguments are not optimized
  420|      0|				throw ParserError(ecINTERNAL_ERROR);
  421|  10.4k|			}
  422|       |
  423|       |			// remove the folded values
  424|  10.4k|			m_vRPN.erase(m_vRPN.end() - a_iArgc, m_vRPN.end());
  425|       |
  426|  10.4k|			SToken tok;
  427|  10.4k|			tok.Cmd = cmVAL;
  428|  10.4k|			tok.Val.data = 0;
  429|  10.4k|			tok.Val.data2 = val;
  430|  10.4k|			tok.Val.ptr = nullptr;
  431|  10.4k|			m_vRPN.push_back(tok);
  432|  10.4k|		}
  433|  22.2k|		else
  434|  22.2k|		{
  435|  22.2k|			SToken tok;
  436|  22.2k|			tok.Cmd = cmFUNC;
  437|  22.2k|			tok.Fun.argc = a_iArgc;
  438|  22.2k|			tok.Fun.cb = a_pFun;
  439|  22.2k|			m_vRPN.push_back(tok);
  440|  22.2k|		}
  441|       |
  442|  32.7k|		m_iStackPos = m_iStackPos - std::abs(a_iArgc) + 1;
  443|  32.7k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  444|       |
  445|  32.7k|	}
_ZN2mu14ParserByteCode8FinalizeEv:
  493|  1.87k|	{
  494|  1.87k|		SToken tok;
  495|  1.87k|		tok.Cmd = cmEND;
  496|  1.87k|		m_vRPN.push_back(tok);
  497|  1.87k|		rpn_type(m_vRPN).swap(m_vRPN);     // shrink bytecode vector to fit
  498|       |
  499|       |		// Determine the if-then-else jump offsets
  500|  1.87k|		std::stack<int> stIf, stElse;
  501|  1.87k|		int idx;
  502|   874k|		for (int i = 0; i < (int)m_vRPN.size(); ++i)
  ------------------
  |  Branch (502:19): [True: 872k, False: 1.87k]
  ------------------
  503|   872k|		{
  504|   872k|			switch (m_vRPN[i].Cmd)
  505|   872k|			{
  506|  74.6k|			case cmIF:
  ------------------
  |  Branch (506:4): [True: 74.6k, False: 797k]
  ------------------
  507|  74.6k|				stIf.push(i);
  508|  74.6k|				break;
  509|       |
  510|  60.5k|			case cmELSE:
  ------------------
  |  Branch (510:4): [True: 60.5k, False: 811k]
  ------------------
  511|  60.5k|				stElse.push(i);
  512|  60.5k|				idx = stIf.top();
  513|  60.5k|				stIf.pop();
  514|  60.5k|				m_vRPN[idx].Oprt.offset = i - idx;
  515|  60.5k|				break;
  516|       |
  517|  29.5k|			case cmENDIF:
  ------------------
  |  Branch (517:4): [True: 29.5k, False: 842k]
  ------------------
  518|  29.5k|				idx = stElse.top();
  519|  29.5k|				stElse.pop();
  520|  29.5k|				m_vRPN[idx].Oprt.offset = i - idx;
  521|  29.5k|				break;
  522|       |
  523|   707k|			default:
  ------------------
  |  Branch (523:4): [True: 707k, False: 164k]
  ------------------
  524|   707k|				break;
  525|   872k|			}
  526|   872k|		}
  527|  1.87k|	}
_ZNK2mu14ParserByteCode15GetMaxStackSizeEv:
  531|  1.71k|	{
  532|  1.71k|		return m_iMaxStackSize + 1;
  533|  1.71k|	}
_ZN2mu14ParserByteCode5clearEv:
  545|   129k|	{
  546|   129k|		m_vRPN.clear();
  547|   129k|		m_iStackPos = 0;
  548|   129k|		m_iMaxStackSize = 0;
  549|   129k|	}

_ZN2mu14ParserCallbackC2EPFdvEb:
   55|  3.71k|		:m_pFun((void*)a_pFun)
   56|  3.71k|		, m_iArgc(0)
   57|  3.71k|		, m_iPri(-1)
   58|  3.71k|		, m_eOprtAsct(oaNONE)
   59|  3.71k|		, m_iCode(cmFUNC)
   60|  3.71k|		, m_iType(tpDBL)
   61|  3.71k|		, m_bAllowOpti(a_bAllowOpti)
   62|  3.71k|	{}
_ZN2mu14ParserCallbackC2EPFddEbiNS_8ECmdCodeE:
   66|  92.7k|		:m_pFun((void*)a_pFun)
   67|  92.7k|		, m_iArgc(1)
   68|  92.7k|		, m_iPri(a_iPrec)
   69|  92.7k|		, m_eOprtAsct(oaNONE)
   70|  92.7k|		, m_iCode(a_iCode)
   71|  92.7k|		, m_iType(tpDBL)
   72|  92.7k|		, m_bAllowOpti(a_bAllowOpti)
   73|  92.7k|	{}
_ZN2mu14ParserCallbackC2EPFddEb:
   77|  85.3k|		: ParserCallback(a_pFun, a_bAllowOpti, -1, cmFUNC)
   78|  85.3k|	{}
_ZN2mu14ParserCallbackC2EPFdddEb:
   85|  3.71k|		:m_pFun((void*)a_pFun)
   86|  3.71k|		, m_iArgc(2)
   87|  3.71k|		, m_iPri(-1)
   88|  3.71k|		, m_eOprtAsct(oaNONE)
   89|  3.71k|		, m_iCode(cmFUNC)
   90|  3.71k|		, m_iType(tpDBL)
   91|  3.71k|		, m_bAllowOpti(a_bAllowOpti)
   92|  3.71k|	{}
_ZN2mu14ParserCallbackC2EPFdPKdiEb:
  571|  14.8k|		:m_pFun((void*)a_pFun)
  572|  14.8k|		, m_iArgc(CALLBACK_INTERNAL_VAR_ARGS)
  573|  14.8k|		, m_iPri(-1)
  574|  14.8k|		, m_eOprtAsct(oaNONE)
  575|  14.8k|		, m_iCode(cmFUNC)
  576|  14.8k|		, m_iType(tpDBL)
  577|  14.8k|		, m_bAllowOpti(a_bAllowOpti)
  578|  14.8k|	{}
_ZN2mu14ParserCallbackC2Ev:
  726|   541k|		:m_pFun(0)
  727|   541k|		, m_iArgc(0)
  728|   541k|		, m_iPri(-1)
  729|   541k|		, m_eOprtAsct(oaNONE)
  730|   541k|		, m_iCode(cmUNKNOWN)
  731|   541k|		, m_iType(tpVOID)
  732|   541k|		, m_bAllowOpti(0)
  733|   541k|	{}
_ZN2mu14ParserCallbackC2ERKS0_:
  740|   426k|		:ParserCallback()
  741|   426k|	{
  742|   426k|		Assign(ref);
  743|   426k|	}
_ZN2mu14ParserCallbackaSERKS0_:
  746|   115k|	{
  747|   115k|		Assign(ref);
  748|   115k|		return *this;
  749|   115k|	}
_ZN2mu14ParserCallbackD2Ev:
  753|   656k|	{
  754|   656k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (754:7): [True: 0, False: 656k]
  ------------------
  755|      0|			delete reinterpret_cast<CbWithUserData*>(m_pFun);
  756|   656k|	}
_ZN2mu14ParserCallback6AssignERKS0_:
  764|   541k|	{
  765|   541k|		if (this == &ref)
  ------------------
  |  Branch (765:7): [True: 0, False: 541k]
  ------------------
  766|      0|			return;
  767|       |
  768|   541k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA) {
  ------------------
  |  Branch (768:7): [True: 0, False: 541k]
  ------------------
  769|      0|			delete reinterpret_cast<CbWithUserData*>(m_pFun);
  770|      0|			m_pFun = nullptr;
  771|      0|		}
  772|       |
  773|   541k|		if (ref.m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (773:7): [True: 0, False: 541k]
  ------------------
  774|      0|			m_pFun = new CbWithUserData(*reinterpret_cast<CbWithUserData*>(ref.m_pFun));
  775|   541k|		else
  776|   541k|			m_pFun = ref.m_pFun;
  777|   541k|		m_iArgc = ref.m_iArgc;
  778|   541k|		m_bAllowOpti = ref.m_bAllowOpti;
  779|   541k|		m_iCode = ref.m_iCode;
  780|   541k|		m_iType = ref.m_iType;
  781|   541k|		m_iPri = ref.m_iPri;
  782|   541k|		m_eOprtAsct = ref.m_eOprtAsct;
  783|   541k|	}
_ZNK2mu14ParserCallback5CloneEv:
  788|   363k|	{
  789|   363k|		return new ParserCallback(*this);
  790|   363k|	}
_ZNK2mu14ParserCallback13IsOptimizableEv:
  799|  35.6k|	{
  800|  35.6k|		return m_bAllowOpti;
  801|  35.6k|	}
_ZNK2mu14ParserCallback7GetAddrEv:
  812|   481k|	{
  813|   481k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (813:7): [True: 0, False: 481k]
  ------------------
  814|      0|			return reinterpret_cast<CbWithUserData*>(m_pFun)->pFun;
  815|   481k|		else
  816|   481k|			return m_pFun;
  817|   481k|	}
_ZNK2mu14ParserCallback11GetUserDataEv:
  825|   125k|	{
  826|   125k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (826:7): [True: 0, False: 125k]
  ------------------
  827|      0|			return reinterpret_cast<CbWithUserData*>(m_pFun)->pUserData;
  828|   125k|		else
  829|   125k|			return nullptr;
  830|   125k|	}
_ZNK2mu14ParserCallback7IsValidEv:
  840|   355k|	{
  841|   355k|		return GetAddr() != nullptr
  ------------------
  |  Branch (841:10): [True: 355k, False: 0]
  ------------------
  842|   355k|			&& !((m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (842:9): [True: 0, False: 355k]
  ------------------
  843|      0|			     && GetUserData() == nullptr);
  ------------------
  |  Branch (843:12): [True: 0, False: 0]
  ------------------
  844|   355k|	}
_ZNK2mu14ParserCallback7GetCodeEv:
  849|   727k|	{
  850|   727k|		return m_iCode;
  851|   727k|	}
_ZNK2mu14ParserCallback7GetTypeEv:
  855|  71.3k|	{
  856|  71.3k|		return m_iType;
  857|  71.3k|	}
_ZNK2mu14ParserCallback6GetPriEv:
  866|  33.1k|	{
  867|  33.1k|		return m_iPri;
  868|  33.1k|	}
_ZNK2mu14ParserCallback7GetArgcEv:
  887|   142k|	{
  888|   142k|		return (m_iArgc & CALLBACK_INTERNAL_VAR_ARGS) ? -1 : (m_iArgc & CALLBACK_INTERNAL_FIXED_ARGS_MASK);
  ------------------
  |  Branch (888:10): [True: 18.6k, False: 124k]
  ------------------
  889|   142k|	}

_ZN2mu14ParserErrorMsg8InstanceEv:
   41|  1.99k|	{
   42|  1.99k|		static const ParserErrorMsg instance;
   43|  1.99k|		return instance;
   44|  1.99k|	}
_ZNK2mu14ParserErrorMsgixEj:
   48|  1.99k|	{
   49|  1.99k|		return (a_iIdx < m_vErrMsg.size()) ? m_vErrMsg[a_iIdx] : string_type();
  ------------------
  |  Branch (49:10): [True: 1.99k, False: 0]
  ------------------
   50|  1.99k|	}
_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|  1.97k|		:m_strMsg()
  167|  1.97k|		, m_strFormula(sExpr)
  168|  1.97k|		, m_strTok(sTok)
  169|  1.97k|		, m_iPos(iPos)
  170|  1.97k|		, m_iErrc(iErrc)
  171|  1.97k|		, m_ErrMsg(ParserErrorMsg::Instance())
  172|  1.97k|	{
  173|  1.97k|		m_strMsg = m_ErrMsg[m_iErrc];
  174|  1.97k|		stringstream_type stream;
  175|  1.97k|		stream << (int)m_iPos;
  176|  1.97k|		ReplaceSubString(m_strMsg, _T("$POS$"), stream.str());
  ------------------
  |  |   69|  1.97k|		#define _T(x) x
  ------------------
  177|  1.97k|		ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok);
  ------------------
  |  |   69|  1.97k|		#define _T(x) x
  ------------------
  178|  1.97k|	}
_ZN2mu11ParserErrorC2ENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
  187|     13|		:m_strMsg()
  188|     13|		, m_strFormula()
  189|     13|		, m_strTok(sTok)
  190|     13|		, m_iPos(iPos)
  191|     13|		, m_iErrc(iErrc)
  192|     13|		, m_ErrMsg(ParserErrorMsg::Instance())
  193|     13|	{
  194|     13|		m_strMsg = m_ErrMsg[m_iErrc];
  195|     13|		stringstream_type stream;
  196|     13|		stream << (int)m_iPos;
  197|     13|		ReplaceSubString(m_strMsg, _T("$POS$"), stream.str());
  ------------------
  |  |   69|     13|		#define _T(x) x
  ------------------
  198|     13|		ReplaceSubString(m_strMsg, _T("$TOK$"), m_strTok);
  ------------------
  |  |   69|     13|		#define _T(x) x
  ------------------
  199|     13|	}
_ZN2mu11ParserErrorD2Ev:
  250|  1.99k|	{}
_ZN2mu11ParserError16ReplaceSubStringERNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKS7_SA_:
  260|  3.99k|	{
  261|  3.99k|		string_type strResult;
  262|  3.99k|		string_type::size_type iPos(0), iNext(0);
  263|       |
  264|  3.99k|		for (;;)
  265|  6.37k|		{
  266|  6.37k|			iNext = strSource.find(strFind, iPos);
  267|  6.37k|			strResult.append(strSource, iPos, iNext - iPos);
  268|       |
  269|  6.37k|			if (iNext == string_type::npos)
  ------------------
  |  Branch (269:8): [True: 3.99k, False: 2.38k]
  ------------------
  270|  3.99k|				break;
  271|       |
  272|  2.38k|			strResult.append(strReplaceWith);
  273|  2.38k|			iPos = iNext + strFind.length();
  274|  2.38k|		}
  275|       |
  276|  3.99k|		strSource.swap(strResult);
  277|  3.99k|	}
_ZN2mu11ParserError10SetFormulaERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  293|  1.96k|	{
  294|  1.96k|		m_strFormula = a_strFormula;
  295|  1.96k|	}

_ZN2mu17ParserTokenReaderC2EPNS_10ParserBaseE:
  122|  3.71k|		:m_pParser(a_pParent)
  123|  3.71k|		, m_strFormula()
  124|  3.71k|		, m_iPos(0)
  125|  3.71k|		, m_iSynFlags(0)
  126|  3.71k|		, m_bIgnoreUndefVar(false)
  127|  3.71k|		, m_pFunDef(nullptr)
  128|  3.71k|		, m_pPostOprtDef(nullptr)
  129|  3.71k|		, m_pInfixOprtDef(nullptr)
  130|  3.71k|		, m_pOprtDef(nullptr)
  131|  3.71k|		, m_pConstDef(nullptr)
  132|  3.71k|		, m_pStrVarDef(nullptr)
  133|  3.71k|		, m_pVarDef(nullptr)
  134|  3.71k|		, m_pFactory(nullptr)
  135|  3.71k|		, m_pFactoryData(nullptr)
  136|  3.71k|		, m_vIdentFun()
  137|  3.71k|		, m_UsedVar()
  138|  3.71k|		, m_fZero(0)
  139|  3.71k|		, m_bracketStack()
  140|  3.71k|		, m_lastTok()
  141|  3.71k|		, m_cArgSep(',')
  142|  3.71k|	{
  143|  3.71k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  3.71k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.71k]
  |  |  ------------------
  |  |   79|  3.71k|            {														\
  |  |   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.71k|		SetParent(m_pParser);
  145|  3.71k|	}
_ZN2mu17ParserTokenReader16SaveBeforeReturnERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  165|  1.97M|	{
  166|  1.97M|		m_lastTok = tok;
  167|  1.97M|		return m_lastTok;
  168|  1.97M|	}
_ZN2mu17ParserTokenReader11AddValIdentEPFiPKcPiPdE:
  172|  3.71k|	{
  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.71k|		m_vIdentFun.push_front(a_pCallback);
  180|  3.71k|	}
_ZNK2mu17ParserTokenReader6GetPosEv:
  196|    210|	{
  197|    210|		return m_iPos;
  198|    210|	}
_ZNK2mu17ParserTokenReader7GetExprEv:
  207|  9.34k|	{
  208|  9.34k|		return m_strFormula;
  209|  9.34k|	}
_ZN2mu17ParserTokenReader10SetFormulaERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  225|  3.68k|	{
  226|  3.68k|		m_strFormula = a_strFormula;
  227|  3.68k|		ReInit();
  228|  3.68k|	}
_ZN2mu17ParserTokenReader6ReInitEv:
  254|   133k|	{
  255|   133k|		m_iPos = 0;
  256|   133k|		m_iSynFlags = sfSTART_OF_LINE;
  257|   133k|		m_bracketStack = std::stack<int>();
  258|   133k|		m_UsedVar.clear();
  259|   133k|		m_lastTok = token_type();
  260|   133k|	}
_ZN2mu17ParserTokenReader13ReadNextTokenEv:
  265|  1.97M|	{
  266|  1.97M|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  1.97M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.97M]
  |  |  ------------------
  |  |   79|  1.97M|            {														\
  |  |   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|  1.97M|		const char_type* szExpr = m_strFormula.c_str();
  269|  1.97M|		token_type tok;
  270|       |
  271|       |		// Ignore all non printable characters when reading the expression
  272|  1.98M|		while (szExpr[m_iPos] > 0 && szExpr[m_iPos] <= 0x20)
  ------------------
  |  Branch (272:10): [True: 1.98M, False: 2.68k]
  |  Branch (272:32): [True: 4.97k, False: 1.97M]
  ------------------
  273|  4.97k|		{
  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|  4.97k|			if (szExpr[m_iPos] >= 14 && szExpr[m_iPos] <= 31)
  ------------------
  |  Branch (276:8): [True: 2.80k, False: 2.17k]
  |  Branch (276:32): [True: 8, False: 2.79k]
  ------------------
  277|      8|				Error(ecINVALID_CHARACTERS_FOUND, m_iPos);
  278|       |
  279|  4.97k|			++m_iPos;
  280|  4.97k|		}
  281|       |
  282|       |		// Check for end of formula
  283|  1.97M|		if (IsEOF(tok))
  ------------------
  |  Branch (283:7): [True: 1.91k, False: 1.97M]
  ------------------
  284|  1.91k|			return SaveBeforeReturn(tok);
  285|       |
  286|       |		// Check for user defined binary operator
  287|  1.97M|		if (IsOprt(tok))
  ------------------
  |  Branch (287:7): [True: 0, False: 1.97M]
  ------------------
  288|      0|			return SaveBeforeReturn(tok);
  289|       |
  290|       |		// Check for function token
  291|  1.97M|		if (IsFunTok(tok))
  ------------------
  |  Branch (291:7): [True: 16.7k, False: 1.96M]
  ------------------
  292|  16.7k|			return SaveBeforeReturn(tok);
  293|       |
  294|       |		// Check built in operators / tokens
  295|  1.96M|		if (IsBuiltIn(tok))
  ------------------
  |  Branch (295:7): [True: 703k, False: 1.25M]
  ------------------
  296|   703k|			return SaveBeforeReturn(tok);
  297|       |
  298|       |		// Check for function argument separators
  299|  1.25M|		if (IsArgSep(tok))
  ------------------
  |  Branch (299:7): [True: 441k, False: 815k]
  ------------------
  300|   441k|			return SaveBeforeReturn(tok);
  301|       |
  302|       |		// Check for values / constant tokens
  303|   815k|		if (IsValTok(tok))
  ------------------
  |  Branch (303:7): [True: 801k, False: 13.4k]
  ------------------
  304|   801k|			return SaveBeforeReturn(tok);
  305|       |
  306|       |		// Check for variable tokens
  307|  13.4k|		if (IsVarTok(tok))
  ------------------
  |  Branch (307:7): [True: 0, False: 13.4k]
  ------------------
  308|      0|			return SaveBeforeReturn(tok);
  309|       |
  310|       |		// Check for string variables
  311|  13.4k|		if (IsStrVarTok(tok))
  ------------------
  |  Branch (311:7): [True: 0, False: 13.4k]
  ------------------
  312|      0|			return SaveBeforeReturn(tok);
  313|       |
  314|       |		// Check for String tokens
  315|  13.4k|		if (IsString(tok))
  ------------------
  |  Branch (315:7): [True: 11.8k, False: 1.58k]
  ------------------
  316|  11.8k|			return SaveBeforeReturn(tok);
  317|       |
  318|       |		// Check for unary operators
  319|  1.58k|		if (IsInfixOpTok(tok))
  ------------------
  |  Branch (319:7): [True: 0, False: 1.58k]
  ------------------
  320|      0|			return SaveBeforeReturn(tok);
  321|       |
  322|       |		// Check for unary operators
  323|  1.58k|		if (IsPostOpTok(tok))
  ------------------
  |  Branch (323:7): [True: 0, False: 1.58k]
  ------------------
  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.58k|		if ((m_bIgnoreUndefVar || m_pFactory) && IsUndefVarTok(tok))
  ------------------
  |  Branch (333:8): [True: 1.00k, False: 582]
  |  Branch (333:29): [True: 0, False: 582]
  |  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.58k|		string_type strTok;
  341|  1.58k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  342|  1.58k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (342:7): [True: 386, False: 1.19k]
  ------------------
  343|    386|			Error(ecUNASSIGNABLE_TOKEN, m_iPos, strTok);
  344|       |
  345|  1.58k|		Error(ecUNASSIGNABLE_TOKEN, m_iPos, m_strFormula.substr(m_iPos));
  346|  1.58k|		return token_type(); // never reached
  347|  1.58k|	}
_ZN2mu17ParserTokenReader9SetParentEPNS_10ParserBaseE:
  351|  3.71k|	{
  352|  3.71k|		m_pParser = a_pParent;
  353|  3.71k|		m_pFunDef = &a_pParent->m_FunDef;
  354|  3.71k|		m_pOprtDef = &a_pParent->m_OprtDef;
  355|  3.71k|		m_pInfixOprtDef = &a_pParent->m_InfixOprtDef;
  356|  3.71k|		m_pPostOprtDef = &a_pParent->m_PostOprtDef;
  357|  3.71k|		m_pVarDef = &a_pParent->m_VarDef;
  358|  3.71k|		m_pStrVarDef = &a_pParent->m_StrVarDef;
  359|  3.71k|		m_pConstDef = &a_pParent->m_ConstDef;
  360|  3.71k|	}
_ZNK2mu17ParserTokenReader12ExtractTokenEPKcRNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEm:
  372|  4.44M|	{
  373|  4.44M|		auto iEnd = m_strFormula.find_first_not_of(a_szCharSet, a_iPos);
  374|       |
  375|  4.44M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (375:7): [True: 0, False: 4.44M]
  ------------------
  376|      0|			iEnd = m_strFormula.length();
  377|       |
  378|       |		// Assign token string if there was something found
  379|  4.44M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (379:7): [True: 1.66M, False: 2.78M]
  ------------------
  380|  1.66M|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  381|       |
  382|  4.44M|		return static_cast<int>(iEnd);
  383|  4.44M|	}
_ZNK2mu17ParserTokenReader20ExtractOperatorTokenERNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEm:
  394|  1.97M|	{
  395|       |		// Changed as per Issue 6: https://code.google.com/p/muparser/issues/detail?id=6
  396|  1.97M|		auto iEnd = m_strFormula.find_first_not_of(m_pParser->ValidOprtChars(), a_iPos);
  397|  1.97M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (397:7): [True: 0, False: 1.97M]
  ------------------
  398|      0|			iEnd = m_strFormula.length();
  399|       |
  400|       |		// Assign token string if there was something found
  401|  1.97M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (401:7): [True: 366k, False: 1.60M]
  ------------------
  402|   366k|		{
  403|   366k|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  404|   366k|			return static_cast<int>(iEnd);
  405|   366k|		}
  406|  1.60M|		else
  407|  1.60M|		{
  408|       |			// There is still the chance of having to deal with an operator consisting exclusively
  409|       |			// of alphabetic characters.
  410|  1.60M|			return ExtractToken(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), a_sTok, (std::size_t)a_iPos);
  ------------------
  |  |   69|  1.60M|		#define _T(x) x
  ------------------
  411|  1.60M|		}
  412|  1.97M|	}
_ZN2mu17ParserTokenReader9IsBuiltInERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  420|  1.95M|	{
  421|  1.95M|		const char_type** const pOprtDef = m_pParser->GetOprtDef(),
  422|  1.95M|			* const szFormula = m_strFormula.c_str();
  423|       |
  424|       |		// Compare token with function and operator strings
  425|       |		// check string for operator/function
  426|  33.7M|		for (int i = 0; pOprtDef[i]; i++)
  ------------------
  |  Branch (426:19): [True: 32.4M, False: 1.25M]
  ------------------
  427|  32.4M|		{
  428|  32.4M|			std::size_t len(std::char_traits<char_type>::length(pOprtDef[i]));
  429|  32.4M|			if (string_type(pOprtDef[i]) == string_type(szFormula + m_iPos, szFormula + m_iPos + len))
  ------------------
  |  Branch (429:8): [True: 703k, False: 31.7M]
  ------------------
  430|   703k|			{
  431|   703k|				switch (i)
  432|   703k|				{
  433|  3.55k|				case cmLAND:
  ------------------
  |  Branch (433:5): [True: 3.55k, False: 700k]
  ------------------
  434|  7.04k|				case cmLOR:
  ------------------
  |  Branch (434:5): [True: 3.48k, False: 700k]
  ------------------
  435|  14.3k|				case cmLT:
  ------------------
  |  Branch (435:5): [True: 7.28k, False: 696k]
  ------------------
  436|  17.8k|				case cmGT:
  ------------------
  |  Branch (436:5): [True: 3.48k, False: 700k]
  ------------------
  437|  19.0k|				case cmLE:
  ------------------
  |  Branch (437:5): [True: 1.21k, False: 702k]
  ------------------
  438|  20.0k|				case cmGE:
  ------------------
  |  Branch (438:5): [True: 1.06k, False: 702k]
  ------------------
  439|  21.1k|				case cmNEQ:
  ------------------
  |  Branch (439:5): [True: 1.09k, False: 702k]
  ------------------
  440|  23.1k|				case cmEQ:
  ------------------
  |  Branch (440:5): [True: 1.99k, False: 701k]
  ------------------
  441|  39.7k|				case cmADD:
  ------------------
  |  Branch (441:5): [True: 16.5k, False: 687k]
  ------------------
  442|  81.0k|				case cmSUB:
  ------------------
  |  Branch (442:5): [True: 41.3k, False: 662k]
  ------------------
  443|  84.9k|				case cmMUL:
  ------------------
  |  Branch (443:5): [True: 3.88k, False: 699k]
  ------------------
  444|  88.9k|				case cmDIV:
  ------------------
  |  Branch (444:5): [True: 3.98k, False: 699k]
  ------------------
  445|   230k|				case cmPOW:
  ------------------
  |  Branch (445:5): [True: 141k, False: 562k]
  ------------------
  446|   230k|				case cmASSIGN:
  ------------------
  |  Branch (446:5): [True: 10, False: 703k]
  ------------------
  447|       |					// The assignment operator need special treatment
  448|   230k|					if (i == cmASSIGN && m_iSynFlags & noASSIGN)
  ------------------
  |  Branch (448:10): [True: 10, False: 230k]
  |  Branch (448:27): [True: 9, False: 1]
  ------------------
  449|      9|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  450|       |
  451|   230k|					if (!m_pParser->HasBuiltInOprt()) continue;
  ------------------
  |  Branch (451:10): [True: 0, False: 230k]
  ------------------
  452|   230k|					if (m_iSynFlags & noOPT)
  ------------------
  |  Branch (452:10): [True: 45.8k, False: 184k]
  ------------------
  453|  45.8k|					{
  454|       |						// Maybe its an infix operator not an operator
  455|       |						// Both operator types can share characters in 
  456|       |						// their identifiers
  457|  45.8k|						if (IsInfixOpTok(a_Tok))
  ------------------
  |  Branch (457:11): [True: 45.7k, False: 113]
  ------------------
  458|  45.7k|							return true;
  459|       |
  460|    113|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  461|    113|					}
  462|       |
  463|   184k|					m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE | noEND;
  464|   184k|					break;
  465|       |
  466|   197k|				case cmBO:
  ------------------
  |  Branch (466:5): [True: 197k, False: 506k]
  ------------------
  467|   197k|					if (m_iSynFlags & noBO)
  ------------------
  |  Branch (467:10): [True: 12, False: 197k]
  ------------------
  468|     12|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  469|       |
  470|   197k|					if (m_lastTok.GetCode() == cmFUNC)
  ------------------
  |  Branch (470:10): [True: 16.7k, False: 180k]
  ------------------
  471|  16.7k|						m_iSynFlags = noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  472|   180k|					else
  473|   180k|						m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  474|       |
  475|   197k|					if ((int)m_bracketStack.size() >= MaxNestingDepth)
  ------------------
  |  Branch (475:10): [True: 13, False: 197k]
  ------------------
  476|     13|						Error(ecNESTING_LIMIT, m_iPos, pOprtDef[i]);
  477|       |
  478|   197k|					m_bracketStack.push(cmBO);
  479|   197k|					break;
  480|       |
  481|  87.8k|				case cmBC:
  ------------------
  |  Branch (481:5): [True: 87.8k, False: 615k]
  ------------------
  482|  87.8k|					if (m_iSynFlags & noBC)
  ------------------
  |  Branch (482:10): [True: 4, False: 87.8k]
  ------------------
  483|      4|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  484|       |
  485|  87.8k|					m_iSynFlags = noBO | noVAR | noVAL | noFUN | noINFIXOP | noSTR | noASSIGN;
  486|       |
  487|  87.8k|					if (!m_bracketStack.empty())
  ------------------
  |  Branch (487:10): [True: 87.8k, False: 18]
  ------------------
  488|  87.8k|						m_bracketStack.pop();
  489|     18|					else
  490|     18|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  491|  87.8k|					break;
  492|       |
  493|  71.4k|				case cmELSE:
  ------------------
  |  Branch (493:5): [True: 71.4k, False: 632k]
  ------------------
  494|  71.4k|					if (m_iSynFlags & noELSE)
  ------------------
  |  Branch (494:10): [True: 4, False: 71.4k]
  ------------------
  495|      4|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  496|       |
  497|  71.4k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  498|  71.4k|					break;
  499|       |
  500|   116k|				case cmIF:
  ------------------
  |  Branch (500:5): [True: 116k, False: 587k]
  ------------------
  501|   116k|					if (m_iSynFlags & noIF)
  ------------------
  |  Branch (501:10): [True: 13, False: 116k]
  ------------------
  502|     13|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  503|       |
  504|   116k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  505|   116k|					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: 703k]
  ------------------
  508|      0|					Error(ecINTERNAL_ERROR);
  509|   703k|				} // switch operator id
  510|       |
  511|   657k|				m_iPos += (int)len;
  512|   657k|				a_Tok.Set((ECmdCode)i, pOprtDef[i]);
  513|   657k|				return true;
  514|   703k|			} // if operator string found
  515|  32.4M|		} // end of for all operator strings
  516|       |
  517|  1.25M|		return false;
  518|  1.95M|	}
_ZN2mu17ParserTokenReader8IsArgSepERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  522|  1.25M|	{
  523|  1.25M|		const char_type* szFormula = m_strFormula.c_str();
  524|       |
  525|  1.25M|		if (szFormula[m_iPos] == m_cArgSep)
  ------------------
  |  Branch (525:7): [True: 441k, False: 814k]
  ------------------
  526|   441k|		{
  527|       |			// copy the separator into null terminated string
  528|   441k|			char_type szSep[2];
  529|   441k|			szSep[0] = m_cArgSep;
  530|   441k|			szSep[1] = 0;
  531|       |
  532|   441k|			if (m_iSynFlags & noARG_SEP)
  ------------------
  |  Branch (532:8): [True: 4, False: 441k]
  ------------------
  533|      4|				Error(ecUNEXPECTED_ARG_SEP, m_iPos, szSep);
  534|       |
  535|   441k|			m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN;
  536|   441k|			m_iPos++;
  537|   441k|			a_Tok.Set(cmARG_SEP, szSep);
  538|   441k|			return true;
  539|   441k|		}
  540|       |
  541|   814k|		return false;
  542|  1.25M|	}
_ZN2mu17ParserTokenReader5IsEOFERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  553|  1.97M|	{
  554|  1.97M|		const char_type* szFormula = m_strFormula.c_str();
  555|       |
  556|       |		// check for EOF
  557|  1.97M|		if (!szFormula[m_iPos] /*|| szFormula[m_iPos] == '\n'*/)
  ------------------
  |  Branch (557:7): [True: 2.59k, False: 1.97M]
  ------------------
  558|  2.59k|		{
  559|  2.59k|			if (m_iSynFlags & noEND)
  ------------------
  |  Branch (559:8): [True: 546, False: 2.05k]
  ------------------
  560|    546|				Error(ecUNEXPECTED_EOF, m_iPos);
  561|       |
  562|  2.59k|			if (!m_bracketStack.empty())
  ------------------
  |  Branch (562:8): [True: 135, False: 2.46k]
  ------------------
  563|    135|				Error(ecMISSING_PARENS, m_iPos, _T(")"));
  ------------------
  |  |   69|    135|		#define _T(x) x
  ------------------
  564|       |
  565|  2.59k|			m_iSynFlags = 0;
  566|  2.59k|			a_Tok.Set(cmEND);
  567|  2.59k|			return true;
  568|  2.59k|		}
  569|       |
  570|  1.97M|		return false;
  571|  1.97M|	}
_ZN2mu17ParserTokenReader12IsInfixOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  578|  46.4k|	{
  579|  46.4k|		string_type sTok;
  580|  46.4k|		auto iEnd = ExtractToken(m_pParser->ValidInfixOprtChars(), sTok, (std::size_t)m_iPos);
  581|  46.4k|		if (iEnd == m_iPos)
  ------------------
  |  Branch (581:7): [True: 373, False: 46.0k]
  ------------------
  582|    373|			return false;
  583|       |
  584|       |		// iterate over all postfix operator strings
  585|  46.0k|		funmap_type::const_reverse_iterator it = m_pInfixOprtDef->rbegin();
  586|  57.6k|		for (; it != m_pInfixOprtDef->rend(); ++it)
  ------------------
  |  Branch (586:10): [True: 57.3k, False: 288]
  ------------------
  587|  57.3k|		{
  588|  57.3k|			if (sTok.find(it->first) != 0)
  ------------------
  |  Branch (588:8): [True: 11.5k, False: 45.7k]
  ------------------
  589|  11.5k|				continue;
  590|       |
  591|  45.7k|			a_Tok.Set(it->second, it->first);
  592|  45.7k|			m_iPos += (int)it->first.length();
  593|       |
  594|  45.7k|			if (m_iSynFlags & noINFIXOP)
  ------------------
  |  Branch (594:8): [True: 34, False: 45.7k]
  ------------------
  595|     34|				Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString());
  596|       |
  597|  45.7k|			m_iSynFlags |= noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN | noARG_SEP;
  598|  45.7k|			return true;
  599|  57.3k|		}
  600|       |
  601|    288|		return false;
  602|  46.0k|	}
_ZN2mu17ParserTokenReader8IsFunTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  612|  1.97M|	{
  613|  1.97M|		string_type strTok;
  614|  1.97M|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  615|  1.97M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (615:7): [True: 1.15M, False: 818k]
  ------------------
  616|  1.15M|			return false;
  617|       |
  618|   818k|		funmap_type::const_iterator item = m_pFunDef->find(strTok);
  619|   818k|		if (item == m_pFunDef->end())
  ------------------
  |  Branch (619:7): [True: 801k, False: 16.7k]
  ------------------
  620|   801k|			return false;
  621|       |
  622|       |		// Check if the next sign is an opening bracket
  623|  16.7k|		const char_type* szFormula = m_strFormula.c_str();
  624|  16.7k|		if (szFormula[iEnd] != '(')
  ------------------
  |  Branch (624:7): [True: 21, False: 16.7k]
  ------------------
  625|     21|			return false;
  626|       |
  627|       |		// fix for #164: https://github.com/beltoforion/muparser/issues/164
  628|  16.7k|		if (m_lastTok.GetFuncAddr() == generic_callable_type{ (erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr })
  ------------------
  |  Branch (628:7): [True: 2, False: 16.7k]
  ------------------
  629|      2|		{
  630|      2|			Error(ecUNARY_PLUS_IN_FRONT_OF_FUNCTION, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  631|      2|		}
  632|       |
  633|  16.7k|		a_Tok.Set(item->second, strTok);
  634|       |
  635|  16.7k|		m_iPos = (int)iEnd;
  636|  16.7k|		if (m_iSynFlags & noFUN)
  ------------------
  |  Branch (636:7): [True: 4, False: 16.7k]
  ------------------
  637|      4|			Error(ecUNEXPECTED_FUN, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  638|       |
  639|  16.7k|		m_iSynFlags = noANY ^ noBO;
  640|  16.7k|		return true;
  641|  16.7k|	}
_ZN2mu17ParserTokenReader6IsOprtERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  649|  1.97M|	{
  650|  1.97M|		const char_type* const szExpr = m_strFormula.c_str();
  651|  1.97M|		string_type strTok;
  652|       |
  653|  1.97M|		auto iEnd = ExtractOperatorToken(strTok, (std::size_t)m_iPos);
  654|  1.97M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (654:7): [True: 1.60M, False: 366k]
  ------------------
  655|  1.60M|			return false;
  656|       |
  657|       |		// Check if the operator is a built in operator, if so ignore it here
  658|   366k|		const char_type** const pOprtDef = m_pParser->GetOprtDef();
  659|  4.94M|		for (int i = 0; m_pParser->HasBuiltInOprt() && pOprtDef[i]; ++i)
  ------------------
  |  Branch (659:19): [True: 4.94M, False: 0]
  |  Branch (659:50): [True: 4.87M, False: 61.7k]
  ------------------
  660|  4.87M|		{
  661|  4.87M|			if (string_type(pOprtDef[i]) == strTok)
  ------------------
  |  Branch (661:8): [True: 304k, False: 4.57M]
  ------------------
  662|   304k|				return false;
  663|  4.87M|		}
  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|  61.7k|		funmap_type::const_reverse_iterator it = m_pOprtDef->rbegin();
  672|  61.7k|		for (; it != m_pOprtDef->rend(); ++it)
  ------------------
  |  Branch (672:10): [True: 0, False: 61.7k]
  ------------------
  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|  61.7k|		return false;
  704|  61.7k|	}
_ZN2mu17ParserTokenReader11IsPostOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  709|    582|	{
  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|    582|		if (m_iSynFlags & noPOSTOP)
  ------------------
  |  Branch (717:7): [True: 383, False: 199]
  ------------------
  718|    383|			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|    199|		string_type sTok;
  731|    199|		auto iEnd = ExtractToken(m_pParser->ValidOprtChars(), sTok, (std::size_t)m_iPos);
  732|    199|		if (iEnd == m_iPos)
  ------------------
  |  Branch (732:7): [True: 40, False: 159]
  ------------------
  733|     40|			return false;
  734|       |
  735|       |		// iterate over all postfix operator strings
  736|    159|		funmap_type::const_reverse_iterator it = m_pPostOprtDef->rbegin();
  737|    159|		for (; it != m_pPostOprtDef->rend(); ++it)
  ------------------
  |  Branch (737:10): [True: 0, False: 159]
  ------------------
  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|    159|		return false;
  750|    159|	}
_ZN2mu17ParserTokenReader8IsValTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  761|   814k|	{
  762|   814k|		MUP_ASSERT(m_pConstDef != nullptr);
  ------------------
  |  |   78|   814k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 814k]
  |  |  ------------------
  |  |   79|   814k|            {														\
  |  |   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|   814k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|   814k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 814k]
  |  |  ------------------
  |  |   79|   814k|            {														\
  |  |   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|   814k|		string_type strTok;
  766|   814k|		value_type fVal(0);
  767|       |
  768|       |		// 2.) Check for user defined constant
  769|       |		// Read everything that could be a constant name
  770|   814k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  771|   814k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (771:7): [True: 801k, False: 12.7k]
  ------------------
  772|   801k|		{
  773|   801k|			valmap_type::const_iterator item = m_pConstDef->find(strTok);
  774|   801k|			if (item != m_pConstDef->end())
  ------------------
  |  Branch (774:8): [True: 2.32k, False: 799k]
  ------------------
  775|  2.32k|			{
  776|  2.32k|				m_iPos = iEnd;
  777|  2.32k|				a_Tok.SetVal(item->second, strTok);
  778|       |
  779|  2.32k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (779:9): [True: 2, False: 2.32k]
  ------------------
  780|      2|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  781|       |
  782|  2.32k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  783|  2.32k|				return true;
  784|  2.32k|			}
  785|   801k|		}
  786|       |
  787|       |		// 3.call the value recognition functions provided by the user
  788|       |		// Call user defined value recognition functions
  789|   812k|		std::list<identfun_type>::const_iterator item = m_vIdentFun.begin();
  790|   824k|		for (item = m_vIdentFun.begin(); item != m_vIdentFun.end(); ++item)
  ------------------
  |  Branch (790:36): [True: 812k, False: 12.4k]
  ------------------
  791|   812k|		{
  792|   812k|			int iStart = m_iPos;
  793|   812k|			if ((*item)(m_strFormula.c_str() + m_iPos, &m_iPos, &fVal) == 1)
  ------------------
  |  Branch (793:8): [True: 799k, False: 12.4k]
  ------------------
  794|   799k|			{
  795|       |				// 2013-11-27 Issue 2:  https://code.google.com/p/muparser/issues/detail?id=2
  796|   799k|				strTok.assign(m_strFormula.c_str(), iStart, (std::size_t)m_iPos - iStart);
  797|       |
  798|   799k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (798:9): [True: 29, False: 799k]
  ------------------
  799|     29|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  800|       |
  801|   799k|				a_Tok.SetVal(fVal, strTok);
  802|   799k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  803|   799k|				return true;
  804|   799k|			}
  805|   812k|		}
  806|       |
  807|  12.4k|		return false;
  808|   812k|	}
_ZN2mu17ParserTokenReader8IsVarTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  816|  12.4k|	{
  817|  12.4k|		if (m_pVarDef->empty())
  ------------------
  |  Branch (817:7): [True: 12.4k, False: 0]
  ------------------
  818|  12.4k|			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.4k|	{
  848|  12.4k|		if (!m_pStrVarDef || m_pStrVarDef->empty())
  ------------------
  |  Branch (848:7): [True: 0, False: 12.4k]
  |  Branch (848:24): [True: 12.4k, False: 0]
  ------------------
  849|  12.4k|			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.4k|	{
  937|  12.4k|		if (m_strFormula[m_iPos] != '"')
  ------------------
  |  Branch (937:7): [True: 582, False: 11.9k]
  ------------------
  938|    582|			return false;
  939|       |
  940|  11.9k|		string_type strBuf(&m_strFormula[(std::size_t)m_iPos + 1]);
  941|  11.9k|		std::size_t iEnd(0), iSkip(0);
  942|       |
  943|       |		// parser over escaped '\"' end replace them with '"'
  944|  12.6k|		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|  11.9k|		#define _T(x) x
  ------------------
              		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|    753|		#define _T(x) x
  ------------------
  |  Branch (944:38): [True: 12.6k, False: 54]
  ------------------
  945|  12.6k|		{
  946|  12.6k|			if (iEnd==0 || strBuf[iEnd - 1] != '\\') 
  ------------------
  |  Branch (946:8): [True: 9.97k, False: 2.64k]
  |  Branch (946:19): [True: 1.88k, False: 753]
  ------------------
  947|  11.8k|				break;
  948|       |
  949|    753|			strBuf.replace(iEnd - 1, 2, _T("\""));
  ------------------
  |  |   69|    753|		#define _T(x) x
  ------------------
  950|    753|			iSkip++;
  951|    753|		}
  952|       |
  953|  11.9k|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (953:7): [True: 54, False: 11.8k]
  ------------------
  954|     54|			Error(ecUNTERMINATED_STRING, m_iPos, _T("\""));
  ------------------
  |  |   69|     54|		#define _T(x) x
  ------------------
  955|       |
  956|  11.9k|		string_type strTok(strBuf.begin(), strBuf.begin() + iEnd);
  957|       |
  958|  11.9k|		if (m_iSynFlags & noSTR)
  ------------------
  |  Branch (958:7): [True: 36, False: 11.8k]
  ------------------
  959|     36|			Error(ecUNEXPECTED_STR, m_iPos, strTok);
  960|       |
  961|  11.9k|		m_pParser->m_vStringBuf.push_back(strTok); // Store string in internal buffer
  962|  11.9k|		a_Tok.SetString(strTok, m_pParser->m_vStringBuf.size()-1);
  963|       |
  964|  11.9k|		m_iPos += (int)strTok.length() + 2 + (int)iSkip;  // +2 for quotes; +iSkip for escape characters 
  965|  11.9k|		m_iSynFlags = noANY ^ (noARG_SEP | noBC | noOPT | noEND);
  966|       |
  967|  11.9k|		return true;
  968|  12.4k|	}
_ZNK2mu17ParserTokenReader5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
  981|  1.58k|	{
  982|  1.58k|		m_pParser->Error(a_iErrc, a_iPos, a_sTok);
  983|  1.58k|	}
_ZNK2mu17ParserTokenReader9GetArgSepEv:
  993|  3.71k|	{
  994|  3.71k|		return m_cArgSep;
  995|  3.71k|	}

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

