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

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

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

_ZN2mu8TypeInfoIdE9IsIntegerEv:
   52|  3.76k|		static bool IsInteger() { return false; }
_ZN2mu8MathImplIdE3SinEd:
  118|    308|		static T Sin(T v) { return sin(v); }
_ZN2mu8MathImplIdE3CosEd:
  119|    196|		static T Cos(T v) { return cos(v); }
_ZN2mu8MathImplIdE3TanEd:
  120|    308|		static T Tan(T v) { return tan(v); }
_ZN2mu8MathImplIdE3CotEd:
  121|    205|		static T Cot(T v) { return 1.0 / tan(v); }
_ZN2mu8MathImplIdE4ASinEd:
  122|    196|		static T ASin(T v) { return asin(v); }
_ZN2mu8MathImplIdE4ACosEd:
  123|    198|		static T ACos(T v) { return acos(v); }
_ZN2mu8MathImplIdE4ATanEd:
  124|    209|		static T ATan(T v) { return atan(v); }
_ZN2mu8MathImplIdE5ATan2Edd:
  125|    581|		static T ATan2(T v1, T v2) { return atan2(v1, v2); }
_ZN2mu8MathImplIdE4SinhEd:
  126|    195|		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|    195|		static T Coth(T v) { return 1.0 / tanh(v); }
_ZN2mu8MathImplIdE5ASinhEd:
  130|    195|		static T ASinh(T v) { return log(v + sqrt(v * v + 1)); }
_ZN2mu8MathImplIdE5ACoshEd:
  131|    195|		static T ACosh(T v) { return log(v + sqrt(v * v - 1)); }
_ZN2mu8MathImplIdE5ATanhEd:
  132|    195|		static T ATanh(T v) { return ((T)0.5 * log((1 + v) / (1 - v))); }
_ZN2mu8MathImplIdE4Log2Ed:
  134|    195|		static T Log2(T v) { return log(v) / log((T)2); } // Logarithm base 2
_ZN2mu8MathImplIdE5Log10Ed:
  135|    310|		static T Log10(T v) { return log10(v); }         // Logarithm base 10
_ZN2mu8MathImplIdE3LogEd:
  133|    652|		static T Log(T v) { return log(v); }
_ZN2mu8MathImplIdE3ExpEd:
  136|    203|		static T Exp(T v) { return exp(v); }
_ZN2mu8MathImplIdE4SqrtEd:
  138|    195|		static T Sqrt(T v) { return sqrt(v); }
_ZN2mu8MathImplIdE4SignEd:
  140|    466|		static T Sign(T v) { return (T)((v < 0) ? -1 : (v > 0) ? 1 : 0); }
  ------------------
  |  Branch (140:35): [True: 194, False: 272]
  |  Branch (140:50): [True: 248, False: 24]
  ------------------
_ZN2mu8MathImplIdE4RintEd:
  139|    452|		static T Rint(T v) { return floor(v + (T)0.5); }
_ZN2mu8MathImplIdE3AbsEd:
  137|    429|		static T Abs(T v) { return (v >= 0) ? v : -v; }
  ------------------
  |  Branch (137:30): [True: 232, False: 197]
  ------------------
_ZN2mu8MathImplIdE3SumEPKdi:
  155|    631|		{
  156|    631|			if (!a_iArgc)
  ------------------
  |  Branch (156:8): [True: 0, False: 631]
  ------------------
  157|      0|				throw ParserError(_T("too few arguments for function sum."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  158|       |
  159|    631|			T fRes = 0;
  160|  91.7k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (160:20): [True: 91.1k, False: 631]
  ------------------
  161|    631|			return fRes;
  162|    631|		}
_ZN2mu8MathImplIdE3AvgEPKdi:
  165|    686|		{
  166|    686|			if (!a_iArgc)
  ------------------
  |  Branch (166:8): [True: 0, False: 686]
  ------------------
  167|      0|				throw ParserError(_T("too few arguments for function avg."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  168|       |
  169|    686|			T fRes = 0;
  170|  67.1k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (170:20): [True: 66.5k, False: 686]
  ------------------
  171|    686|			return fRes / (T)a_iArgc;
  172|    686|		}
_ZN2mu8MathImplIdE3MinEPKdi:
  175|  1.14k|		{
  176|  1.14k|			if (!a_iArgc)
  ------------------
  |  Branch (176:8): [True: 0, False: 1.14k]
  ------------------
  177|      0|				throw ParserError(_T("too few arguments for function min."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  178|       |
  179|  1.14k|			T fRes = a_afArg[0];
  180|  94.5k|			for (int i = 0; i < a_iArgc; ++i)
  ------------------
  |  Branch (180:20): [True: 93.4k, False: 1.14k]
  ------------------
  181|  93.4k|				fRes = std::min(fRes, a_afArg[i]);
  182|       |
  183|  1.14k|			return fRes;
  184|  1.14k|		}
_ZN2mu8MathImplIdE3MaxEPKdi:
  187|  1.44k|		{
  188|  1.44k|			if (!a_iArgc)
  ------------------
  |  Branch (188:8): [True: 0, False: 1.44k]
  ------------------
  189|      0|				throw ParserError(_T("too few arguments for function max."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  190|       |
  191|  1.44k|			T fRes = a_afArg[0];
  192|  68.4k|			for (int i = 0; i < a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]);
  ------------------
  |  Branch (192:20): [True: 66.9k, False: 1.44k]
  ------------------
  193|       |
  194|  1.44k|			return fRes;
  195|  1.44k|		}
_ZN2mu8MathImplIdE3RndEv:
  143|    843|		{
  144|    843|			static std::random_device rd;  
  145|    843|			static std::mt19937 gen(rd()); 
  146|    843|			static std::uniform_real_distribution<T> dis(0.0, 1.0); // Range [0, 1)
  147|       |
  148|    843|			return dis(gen);
  149|    843|		}
_ZN2mu8MathImplIdE10UnaryMinusEd:
  151|  9.76k|		static T UnaryMinus(T v) { return -v; }
_ZN2mu8MathImplIdE3PowEdd:
  141|   134k|		static T Pow(T v1, T v2) { return std::pow(v1, v2); }

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

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

_ZN2mu10ParserBaseC2Ev:
   91|  3.76k|		: m_pParseFormula(&ParserBase::ParseString)
   92|  3.76k|		, m_vRPN()
   93|  3.76k|		, m_vStringBuf()
   94|  3.76k|		, m_pTokenReader()
   95|  3.76k|		, m_FunDef()
   96|  3.76k|		, m_PostOprtDef()
   97|  3.76k|		, m_InfixOprtDef()
   98|  3.76k|		, m_OprtDef()
   99|  3.76k|		, m_ConstDef()
  100|  3.76k|		, m_StrVarDef()
  101|  3.76k|		, m_VarDef()
  102|  3.76k|		, m_bBuiltInOp(true)
  103|  3.76k|		, m_sNameChars()
  104|  3.76k|		, m_sOprtChars()
  105|  3.76k|		, m_sInfixOprtChars()
  106|  3.76k|		, m_vStackBuffer()
  107|  3.76k|		, m_nFinalResultIdx(0)
  108|  3.76k|	{
  109|  3.76k|		InitTokenReader();
  110|  3.76k|	}
_ZN2mu10ParserBaseD2Ev:
  141|  3.76k|	{}
_ZN2mu10ParserBase15InitTokenReaderEv:
  246|  3.76k|	{
  247|  3.76k|		m_pTokenReader.reset(new token_reader_type(this));
  248|  3.76k|	}
_ZNK2mu10ParserBase6ReInitEv:
  257|   131k|	{
  258|   131k|		m_pParseFormula = &ParserBase::ParseString;
  259|   131k|		m_vStringBuf.clear();
  260|   131k|		m_vRPN.clear();
  261|   131k|		m_pTokenReader->ReInit();
  262|   131k|	}
_ZN2mu10ParserBase11AddValIdentEPFiPKcPiPdE:
  353|  3.76k|	{
  354|  3.76k|		m_pTokenReader->AddValIdent(a_pCallback);
  355|  3.76k|	}
_ZN2mu10ParserBase11AddCallbackERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackERNS1_3mapIS7_SA_NS1_4lessIS7_EENS5_INS1_4pairIS8_SA_EEEEEEPKc:
  374|   116k|	{
  375|   116k|		if (!a_Callback.IsValid())
  ------------------
  |  Branch (375:7): [True: 0, False: 116k]
  ------------------
  376|      0|			Error(ecINVALID_FUN_PTR);
  377|       |
  378|   116k|		const funmap_type* pFunMap = &a_Storage;
  379|       |
  380|       |		// Check for conflicting operator or function names
  381|   116k|		if (pFunMap != &m_FunDef && m_FunDef.find(a_strName) != m_FunDef.end())
  ------------------
  |  Branch (381:7): [True: 7.53k, False: 109k]
  |  Branch (381:7): [True: 0, False: 116k]
  |  Branch (381:31): [True: 0, False: 7.53k]
  ------------------
  382|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  383|       |
  384|   116k|		if (pFunMap != &m_PostOprtDef && m_PostOprtDef.find(a_strName) != m_PostOprtDef.end())
  ------------------
  |  Branch (384:7): [True: 116k, False: 0]
  |  Branch (384:7): [True: 0, False: 116k]
  |  Branch (384:36): [True: 0, False: 116k]
  ------------------
  385|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  386|       |
  387|   116k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_InfixOprtDef.find(a_strName) != m_InfixOprtDef.end())
  ------------------
  |  Branch (387:7): [True: 109k, False: 7.53k]
  |  Branch (387:7): [True: 0, False: 116k]
  |  Branch (387:37): [True: 109k, False: 0]
  |  Branch (387:62): [True: 0, False: 109k]
  ------------------
  388|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  389|       |
  390|   116k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_OprtDef.find(a_strName) != m_OprtDef.end())
  ------------------
  |  Branch (390:7): [True: 109k, False: 7.53k]
  |  Branch (390:7): [True: 0, False: 116k]
  |  Branch (390:37): [True: 109k, False: 0]
  |  Branch (390:62): [True: 0, False: 109k]
  ------------------
  391|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  392|       |
  393|   116k|		CheckOprt(a_strName, a_Callback, a_szCharSet);
  394|   116k|		a_Storage[a_strName] = a_Callback;
  395|   116k|		ReInit();
  396|   116k|	}
_ZNK2mu10ParserBase9CheckOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackES9_:
  406|   116k|	{
  407|   116k|		if (!a_sName.length() ||
  ------------------
  |  Branch (407:7): [True: 0, False: 116k]
  ------------------
  408|   116k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (408:4): [True: 0, False: 116k]
  ------------------
  409|   116k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (409:5): [True: 109k, False: 7.53k]
  |  Branch (409:26): [True: 0, False: 109k]
  ------------------
  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|   116k|	}
_ZNK2mu10ParserBase9CheckNameERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_:
  425|  7.53k|	{
  426|  7.53k|		if (!a_sName.length() ||
  ------------------
  |  Branch (426:7): [True: 0, False: 7.53k]
  ------------------
  427|  7.53k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (427:4): [True: 0, False: 7.53k]
  ------------------
  428|  7.53k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (428:5): [True: 7.53k, False: 0]
  |  Branch (428:26): [True: 0, False: 7.53k]
  ------------------
  429|      0|		{
  430|      0|			Error(ecINVALID_NAME);
  431|      0|		}
  432|  7.53k|	}
_ZN2mu10ParserBase7SetExprERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  442|  3.76k|	{
  443|       |		// Check locale compatibility
  444|  3.76k|		if (m_pTokenReader->GetArgSep() == std::use_facet<numpunct<char_type> >(s_locale).decimal_point())
  ------------------
  |  Branch (444:7): [True: 0, False: 3.76k]
  ------------------
  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.76k|		if (a_sExpr.length() >= MaxLenExpression)
  ------------------
  |  Branch (448:7): [True: 26, False: 3.74k]
  ------------------
  449|     26|			Error(ecEXPRESSION_TOO_LONG, 0, a_sExpr);
  450|       |
  451|  3.76k|		m_pTokenReader->SetFormula(a_sExpr + _T(" "));
  ------------------
  |  |   69|  3.76k|		#define _T(x) x
  ------------------
  452|  3.76k|		ReInit();
  453|  3.76k|	}
_ZNK2mu10ParserBase10GetOprtDefEv:
  460|  2.63M|	{
  461|  2.63M|		return (const char_type**)(&c_DefaultOprt[0]);
  462|  2.63M|	}
_ZN2mu10ParserBase15DefineNameCharsEPKc:
  469|  3.76k|	{
  470|  3.76k|		m_sNameChars = a_szCharset;
  471|  3.76k|	}
_ZN2mu10ParserBase15DefineOprtCharsEPKc:
  478|  3.76k|	{
  479|  3.76k|		m_sOprtChars = a_szCharset;
  480|  3.76k|	}
_ZN2mu10ParserBase20DefineInfixOprtCharsEPKc:
  487|  3.76k|	{
  488|  3.76k|		m_sInfixOprtChars = a_szCharset;
  489|  3.76k|	}
_ZNK2mu10ParserBase14ValidNameCharsEv:
  496|  3.24M|	{
  497|  3.24M|		MUP_ASSERT(m_sNameChars.size());
  ------------------
  |  |   78|  3.24M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.24M]
  |  |  ------------------
  |  |   79|  3.24M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  498|  3.24M|		return m_sNameChars.c_str();
  499|  3.24M|	}
_ZNK2mu10ParserBase14ValidOprtCharsEv:
  506|  2.23M|	{
  507|  2.23M|		MUP_ASSERT(m_sOprtChars.size());
  ------------------
  |  |   78|  2.23M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.23M]
  |  |  ------------------
  |  |   79|  2.23M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  508|  2.23M|		return m_sOprtChars.c_str();
  509|  2.23M|	}
_ZNK2mu10ParserBase19ValidInfixOprtCharsEv:
  516|  59.0k|	{
  517|  59.0k|		MUP_ASSERT(m_sInfixOprtChars.size());
  ------------------
  |  |   78|  59.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 59.0k]
  |  |  ------------------
  |  |   79|  59.0k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  518|  59.0k|		return m_sInfixOprtChars.c_str();
  519|  59.0k|	}
_ZN2mu10ParserBase15DefineInfixOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEPFddEib:
  556|  7.53k|	{
  557|  7.53k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (557:7): [True: 0, False: 7.53k]
  ------------------
  558|      0|			Error(ecIDENTIFIER_TOO_LONG);
  559|       |
  560|  7.53k|		AddCallback(a_sName, ParserCallback(a_pFun, a_bAllowOpt, a_iPrec, cmOPRT_INFIX), m_InfixOprtDef, ValidInfixOprtChars());
  561|  7.53k|	}
_ZN2mu10ParserBase11DefineConstERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEd:
  648|  7.53k|	{
  649|  7.53k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (649:7): [True: 0, False: 7.53k]
  ------------------
  650|      0|			Error(ecIDENTIFIER_TOO_LONG);
  651|       |
  652|  7.53k|		CheckName(a_sName, ValidNameChars());
  653|  7.53k|		m_ConstDef[a_sName] = a_fVal;
  654|  7.53k|		ReInit();
  655|  7.53k|	}
_ZNK2mu10ParserBase17GetOprtPrecedenceERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  662|   607k|	{
  663|   607k|		switch (a_Tok.GetCode())
  664|   607k|		{
  665|       |			// built in operators
  666|      0|		case cmEND:      return -5;
  ------------------
  |  Branch (666:3): [True: 0, False: 607k]
  ------------------
  667|      0|		case cmARG_SEP:  return -4;
  ------------------
  |  Branch (667:3): [True: 0, False: 607k]
  ------------------
  668|      0|		case cmASSIGN:   return -1;
  ------------------
  |  Branch (668:3): [True: 0, False: 607k]
  ------------------
  669|      0|		case cmELSE:
  ------------------
  |  Branch (669:3): [True: 0, False: 607k]
  ------------------
  670|  2.23k|		case cmIF:       return  0;
  ------------------
  |  Branch (670:3): [True: 2.23k, False: 605k]
  ------------------
  671|  11.9k|		case cmLAND:     return  prLAND;
  ------------------
  |  Branch (671:3): [True: 11.9k, False: 595k]
  ------------------
  672|  8.67k|		case cmLOR:      return  prLOR;
  ------------------
  |  Branch (672:3): [True: 8.67k, False: 599k]
  ------------------
  673|  13.5k|		case cmLT:
  ------------------
  |  Branch (673:3): [True: 13.5k, False: 594k]
  ------------------
  674|  18.4k|		case cmGT:
  ------------------
  |  Branch (674:3): [True: 4.93k, False: 602k]
  ------------------
  675|  20.0k|		case cmLE:
  ------------------
  |  Branch (675:3): [True: 1.64k, False: 606k]
  ------------------
  676|  21.4k|		case cmGE:
  ------------------
  |  Branch (676:3): [True: 1.32k, False: 606k]
  ------------------
  677|  24.9k|		case cmNEQ:
  ------------------
  |  Branch (677:3): [True: 3.51k, False: 604k]
  ------------------
  678|  29.3k|		case cmEQ:       return  prCMP;
  ------------------
  |  Branch (678:3): [True: 4.38k, False: 603k]
  ------------------
  679|  19.8k|		case cmADD:
  ------------------
  |  Branch (679:3): [True: 19.8k, False: 588k]
  ------------------
  680|   104k|		case cmSUB:      return  prADD_SUB;
  ------------------
  |  Branch (680:3): [True: 84.9k, False: 522k]
  ------------------
  681|  8.73k|		case cmMUL:
  ------------------
  |  Branch (681:3): [True: 8.73k, False: 599k]
  ------------------
  682|  13.6k|		case cmDIV:      return  prMUL_DIV;
  ------------------
  |  Branch (682:3): [True: 4.88k, False: 603k]
  ------------------
  683|   401k|		case cmPOW:      return  prPOW;
  ------------------
  |  Branch (683:3): [True: 401k, False: 206k]
  ------------------
  684|       |
  685|       |		// user defined binary operators
  686|  36.2k|		case cmOPRT_INFIX:
  ------------------
  |  Branch (686:3): [True: 36.2k, False: 571k]
  ------------------
  687|  36.2k|		case cmOPRT_BIN: return a_Tok.GetPri();
  ------------------
  |  Branch (687:3): [True: 0, False: 607k]
  ------------------
  688|      0|		default:  
  ------------------
  |  Branch (688:3): [True: 0, False: 607k]
  ------------------
  689|      0|			throw exception_type(ecINTERNAL_ERROR, 5, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  690|   607k|		}
  691|   607k|	}
_ZNK2mu10ParserBase20GetOprtAssociativityERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  698|   170k|	{
  699|   170k|		switch (a_Tok.GetCode())
  700|   170k|		{
  701|      0|		case cmASSIGN:
  ------------------
  |  Branch (701:3): [True: 0, False: 170k]
  ------------------
  702|  3.03k|		case cmLAND:
  ------------------
  |  Branch (702:3): [True: 3.03k, False: 167k]
  ------------------
  703|  4.92k|		case cmLOR:
  ------------------
  |  Branch (703:3): [True: 1.89k, False: 168k]
  ------------------
  704|  7.78k|		case cmLT:
  ------------------
  |  Branch (704:3): [True: 2.86k, False: 167k]
  ------------------
  705|  9.18k|		case cmGT:
  ------------------
  |  Branch (705:3): [True: 1.39k, False: 169k]
  ------------------
  706|  9.74k|		case cmLE:
  ------------------
  |  Branch (706:3): [True: 557, False: 169k]
  ------------------
  707|  10.2k|		case cmGE:
  ------------------
  |  Branch (707:3): [True: 549, False: 169k]
  ------------------
  708|  11.5k|		case cmNEQ:
  ------------------
  |  Branch (708:3): [True: 1.24k, False: 169k]
  ------------------
  709|  12.8k|		case cmEQ:
  ------------------
  |  Branch (709:3): [True: 1.26k, False: 169k]
  ------------------
  710|  17.5k|		case cmADD:
  ------------------
  |  Branch (710:3): [True: 4.75k, False: 165k]
  ------------------
  711|  20.7k|		case cmSUB:
  ------------------
  |  Branch (711:3): [True: 3.17k, False: 167k]
  ------------------
  712|  22.9k|		case cmMUL:
  ------------------
  |  Branch (712:3): [True: 2.26k, False: 168k]
  ------------------
  713|  24.2k|		case cmDIV:      return oaLEFT;
  ------------------
  |  Branch (713:3): [True: 1.28k, False: 169k]
  ------------------
  714|   146k|		case cmPOW:      return oaRIGHT;
  ------------------
  |  Branch (714:3): [True: 146k, False: 24.2k]
  ------------------
  715|      0|		case cmOPRT_BIN: return a_Tok.GetAssociativity();
  ------------------
  |  Branch (715:3): [True: 0, False: 170k]
  ------------------
  716|      0|		default:         return oaNONE;
  ------------------
  |  Branch (716:3): [True: 0, False: 170k]
  ------------------
  717|   170k|		}
  718|   170k|	}
_ZNK2mu10ParserBase9ApplyFuncERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_i:
  831|  31.5k|	{
  832|  31.5k|		MUP_ASSERT(m_pTokenReader.get());
  ------------------
  |  |   78|  31.5k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 31.5k]
  |  |  ------------------
  |  |   79|  31.5k|            {														\
  |  |   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|  31.5k|		if (a_stOpt.empty() || a_stOpt.top().GetFuncAddr() == 0)
  ------------------
  |  Branch (835:7): [True: 0, False: 31.5k]
  |  Branch (835:7): [True: 0, False: 31.5k]
  |  Branch (835:26): [True: 0, False: 31.5k]
  ------------------
  836|      0|			return;
  837|       |
  838|  31.5k|		token_type funTok = a_stOpt.top();
  839|  31.5k|		a_stOpt.pop();
  840|  31.5k|		MUP_ASSERT(funTok.GetFuncAddr() != nullptr);
  ------------------
  |  |   78|  31.5k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 31.5k]
  |  |  ------------------
  |  |   79|  31.5k|            {														\
  |  |   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|  31.5k|		int iArgCount = (funTok.GetCode() == cmOPRT_BIN) ? funTok.GetArgCount() : a_iArgCount;
  ------------------
  |  Branch (845:19): [True: 0, False: 31.5k]
  ------------------
  846|       |
  847|       |		// determine how many parameters the function needs. To remember iArgCount includes the 
  848|       |		// string parameter whilst GetArgCount() counts only numeric parameters.
  849|  31.5k|		int iArgRequired = funTok.GetArgCount() + ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (849:46): [True: 0, False: 31.5k]
  ------------------
  850|       |
  851|       |		// That's the number of numerical parameters
  852|  31.5k|		int iArgNumerical = iArgCount - ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (852:36): [True: 0, False: 31.5k]
  ------------------
  853|       |
  854|  31.5k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount - iArgNumerical > 1)
  ------------------
  |  Branch (854:7): [True: 0, False: 31.5k]
  |  Branch (854:41): [True: 0, False: 0]
  ------------------
  855|      0|			Error(ecINTERNAL_ERROR);
  856|       |
  857|  31.5k|		if (funTok.GetArgCount() >= 0 && iArgCount > iArgRequired)
  ------------------
  |  Branch (857:7): [True: 27.2k, False: 4.33k]
  |  Branch (857:36): [True: 26, False: 27.1k]
  ------------------
  858|     26|			Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  859|       |
  860|  31.5k|		if (funTok.GetCode() != cmOPRT_BIN && iArgCount < iArgRequired)
  ------------------
  |  Branch (860:7): [True: 31.5k, False: 26]
  |  Branch (860:41): [True: 3, False: 31.5k]
  ------------------
  861|      3|			Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  862|       |
  863|  31.5k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount > iArgRequired)
  ------------------
  |  Branch (863:7): [True: 0, False: 31.5k]
  |  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|  31.5k|		std::vector<token_type> stArg;
  869|   377k|		for (int i = 0; i < iArgNumerical; ++i)
  ------------------
  |  Branch (869:19): [True: 346k, False: 31.5k]
  ------------------
  870|   346k|		{
  871|   346k|			if (a_stVal.empty())
  ------------------
  |  Branch (871:8): [True: 2, False: 346k]
  ------------------
  872|      2|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), funTok.GetAsString());
  873|       |
  874|   346k|			stArg.push_back(a_stVal.top());
  875|   346k|			a_stVal.pop();
  876|       |
  877|   346k|			if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR)
  ------------------
  |  Branch (877:8): [True: 4, False: 346k]
  |  Branch (877:43): [True: 4, False: 0]
  ------------------
  878|      4|				Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString());
  879|   346k|		}
  880|       |
  881|  31.5k|		switch (funTok.GetCode())
  882|  31.5k|		{
  883|      0|		case  cmFUNC_STR:
  ------------------
  |  Branch (883:3): [True: 0, False: 31.5k]
  ------------------
  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: 31.5k]
  ------------------
  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: 31.5k]
  ------------------
  901|      0|		case  cmOPRT_POSTFIX:
  ------------------
  |  Branch (901:3): [True: 0, False: 31.5k]
  ------------------
  902|  19.1k|		case  cmOPRT_INFIX:
  ------------------
  |  Branch (902:3): [True: 19.1k, False: 12.3k]
  ------------------
  903|  31.5k|		case  cmFUNC:
  ------------------
  |  Branch (903:3): [True: 12.3k, False: 19.2k]
  ------------------
  904|  31.5k|			if (funTok.GetArgCount() == -1 && iArgCount == 0)
  ------------------
  |  Branch (904:8): [True: 4.33k, False: 27.1k]
  |  Branch (904:38): [True: 1, False: 4.32k]
  ------------------
  905|      1|				Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos(), funTok.GetAsString());
  906|       |
  907|  31.5k|			m_vRPN.AddFun(funTok.GetFuncAddr(), (funTok.GetArgCount() == -1) ? -iArgNumerical : iArgNumerical, funTok.IsOptimizable());
  ------------------
  |  Branch (907:40): [True: 4.32k, False: 27.1k]
  ------------------
  908|  31.5k|			break;
  909|      0|		default:
  ------------------
  |  Branch (909:3): [True: 0, False: 31.5k]
  ------------------
  910|      0|			break;
  911|  31.5k|		}
  912|       |
  913|       |		// Push dummy value representing the function result to the stack
  914|  31.5k|		token_type token;
  915|  31.5k|		token.SetVal(1);
  916|  31.5k|		a_stVal.push(token);
  917|  31.5k|	}
_ZNK2mu10ParserBase11ApplyIfElseERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  921|  5.53k|	{
  922|       |		// Check if there is an if Else clause to be calculated
  923|  47.1k|		while (a_stOpt.size() && a_stOpt.top().GetCode() == cmELSE)
  ------------------
  |  Branch (923:10): [True: 46.5k, False: 581]
  |  Branch (923:28): [True: 41.6k, False: 4.94k]
  ------------------
  924|  41.6k|		{
  925|  41.6k|			MUP_ASSERT(!a_stOpt.empty())
  ------------------
  |  |   78|  41.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 41.6k]
  |  |  ------------------
  |  |   79|  41.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|            }
  ------------------
  926|  41.6k|			token_type opElse = a_stOpt.top();
  927|  41.6k|			a_stOpt.pop();
  928|       |
  929|       |			// Take the value associated with the else branch from the value stack
  930|  41.6k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  41.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 41.6k]
  |  |  ------------------
  |  |   79|  41.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|            }
  ------------------
  931|  41.6k|			token_type vVal2 = a_stVal.top();
  932|  41.6k|			if (vVal2.GetType() != tpDBL)
  ------------------
  |  Branch (932:8): [True: 3, False: 41.6k]
  ------------------
  933|      3|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  934|       |			
  935|  41.6k|			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|  41.6k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  41.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 1, False: 41.6k]
  |  |  ------------------
  |  |   79|  41.6k|            {														\
  |  |   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|  41.6k|			token_type vVal1 = a_stVal.top();
  941|  41.6k|			if (vVal1.GetType() != tpDBL)
  ------------------
  |  Branch (941:8): [True: 1, False: 41.6k]
  ------------------
  942|      1|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  943|       |
  944|  41.6k|			a_stVal.pop();
  945|       |
  946|  41.6k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  41.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 10, False: 41.6k]
  |  |  ------------------
  |  |   79|  41.6k|            {														\
  |  |   80|     10|              stringstream_type ss;									\
  |  |   81|     10|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |   82|     10|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |   83|     10|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |   84|     10|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|     10|            }
  ------------------
  947|  41.6k|			token_type vExpr = a_stVal.top();
  948|  41.6k|			a_stVal.pop();
  949|       |
  950|  41.6k|			a_stVal.push((vExpr.GetVal() != 0) ? vVal1 : vVal2);
  ------------------
  |  Branch (950:17): [True: 4.72k, False: 36.8k]
  ------------------
  951|       |
  952|  41.6k|			token_type opIf = a_stOpt.top();
  953|  41.6k|			a_stOpt.pop();
  954|       |
  955|  41.6k|			MUP_ASSERT(opElse.GetCode() == cmELSE);
  ------------------
  |  |   78|  41.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 41.6k]
  |  |  ------------------
  |  |   79|  41.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|            }
  ------------------
  956|       |
  957|  41.6k|			if (opIf.GetCode() != cmIF)
  ------------------
  |  Branch (957:8): [True: 1, False: 41.6k]
  ------------------
  958|      1|				Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
  959|       |
  960|  41.6k|			m_vRPN.AddIfElse(cmENDIF);
  961|  41.6k|		} // while pending if-else-clause found
  962|  5.53k|	}
_ZNK2mu10ParserBase12ApplyBinOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  969|   179k|	{
  970|       |		// is it a user defined binary operator?
  971|   179k|		if (a_stOpt.top().GetCode() == cmOPRT_BIN)
  ------------------
  |  Branch (971:7): [True: 0, False: 179k]
  ------------------
  972|      0|		{
  973|      0|			ApplyFunc(a_stOpt, a_stVal, 2);
  974|      0|		}
  975|   179k|		else
  976|   179k|		{
  977|   179k|			if (a_stVal.size() < 2)
  ------------------
  |  Branch (977:8): [True: 1, False: 179k]
  ------------------
  978|      1|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), _T("ApplyBinOprt: not enough values in value stack!"));
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
  979|       |
  980|   179k|			token_type valTok1 = a_stVal.top();
  981|   179k|			a_stVal.pop();
  982|       |
  983|   179k|			token_type valTok2 = a_stVal.top();
  984|   179k|			a_stVal.pop();
  985|       |
  986|   179k|			token_type optTok = a_stOpt.top();
  987|   179k|			a_stOpt.pop();
  988|       |
  989|   179k|			token_type resTok;
  990|       |
  991|   179k|			if (valTok1.GetType() != valTok2.GetType() ||
  ------------------
  |  Branch (991:8): [True: 20, False: 179k]
  ------------------
  992|   179k|				(valTok1.GetType() == tpSTR && valTok2.GetType() == tpSTR))
  ------------------
  |  Branch (992:6): [True: 17, False: 179k]
  |  Branch (992:36): [True: 17, False: 0]
  ------------------
  993|     36|				Error(ecOPRT_TYPE_CONFLICT, m_pTokenReader->GetPos(), optTok.GetAsString());
  994|       |
  995|   179k|			if (optTok.GetCode() == cmASSIGN)
  ------------------
  |  Branch (995:8): [True: 0, False: 179k]
  ------------------
  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|   179k|			else
 1003|   179k|				m_vRPN.AddOp(optTok.GetCode());
 1004|       |
 1005|   179k|			resTok.SetVal(1);
 1006|   179k|			a_stVal.push(resTok);
 1007|   179k|		}
 1008|   179k|	}
_ZNK2mu10ParserBase18ApplyRemainingOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
 1016|   665k|	{
 1017|   750k|		while (stOpt.size() &&
  ------------------
  |  Branch (1017:10): [True: 682k, False: 68.2k]
  ------------------
 1018|   682k|			stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1018:4): [True: 271k, False: 410k]
  ------------------
 1019|   271k|			stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1019:4): [True: 84.6k, False: 187k]
  ------------------
 1020|  84.6k|		{
 1021|  84.6k|			token_type tok = stOpt.top();
 1022|  84.6k|			switch (tok.GetCode())
 1023|  84.6k|			{
 1024|  10.9k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1024:4): [True: 10.9k, False: 73.6k]
  ------------------
 1025|  10.9k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1025:4): [True: 0, False: 84.6k]
  ------------------
 1026|  11.2k|			case cmLE:
  ------------------
  |  Branch (1026:4): [True: 271, False: 84.3k]
  ------------------
 1027|  11.6k|			case cmGE:
  ------------------
  |  Branch (1027:4): [True: 429, False: 84.1k]
  ------------------
 1028|  11.9k|			case cmNEQ:
  ------------------
  |  Branch (1028:4): [True: 320, False: 84.3k]
  ------------------
 1029|  12.4k|			case cmEQ:
  ------------------
  |  Branch (1029:4): [True: 508, False: 84.1k]
  ------------------
 1030|  13.1k|			case cmLT:
  ------------------
  |  Branch (1030:4): [True: 690, False: 83.9k]
  ------------------
 1031|  13.6k|			case cmGT:
  ------------------
  |  Branch (1031:4): [True: 517, False: 84.1k]
  ------------------
 1032|  14.8k|			case cmADD:
  ------------------
  |  Branch (1032:4): [True: 1.17k, False: 83.4k]
  ------------------
 1033|  16.8k|			case cmSUB:
  ------------------
  |  Branch (1033:4): [True: 1.96k, False: 82.6k]
  ------------------
 1034|  17.8k|			case cmMUL:
  ------------------
  |  Branch (1034:4): [True: 1.00k, False: 83.6k]
  ------------------
 1035|  18.7k|			case cmDIV:
  ------------------
  |  Branch (1035:4): [True: 930, False: 83.6k]
  ------------------
 1036|  77.0k|			case cmPOW:
  ------------------
  |  Branch (1036:4): [True: 58.2k, False: 26.3k]
  ------------------
 1037|  78.0k|			case cmLAND:
  ------------------
  |  Branch (1037:4): [True: 1.02k, False: 83.5k]
  ------------------
 1038|  79.0k|			case cmLOR:
  ------------------
  |  Branch (1038:4): [True: 1.01k, False: 83.6k]
  ------------------
 1039|  79.0k|			case cmASSIGN:
  ------------------
  |  Branch (1039:4): [True: 0, False: 84.6k]
  ------------------
 1040|  79.0k|				if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1040:9): [True: 10.9k, False: 68.1k]
  ------------------
 1041|  10.9k|					ApplyFunc(stOpt, stVal, 1);
 1042|  68.1k|				else
 1043|  68.1k|					ApplyBinOprt(stOpt, stVal);
 1044|  79.0k|				break;
 1045|       |
 1046|  5.53k|			case cmELSE:
  ------------------
  |  Branch (1046:4): [True: 5.53k, False: 79.0k]
  ------------------
 1047|  5.53k|				ApplyIfElse(stOpt, stVal);
 1048|  5.53k|				break;
 1049|       |
 1050|      0|			default:
  ------------------
  |  Branch (1050:4): [True: 0, False: 84.6k]
  ------------------
 1051|      0|				Error(ecINTERNAL_ERROR);
 1052|  84.6k|			}
 1053|  84.6k|		}
 1054|   665k|	}
_ZNK2mu10ParserBase12ParseCmdCodeEv:
 1065|  1.04k|	{
 1066|  1.04k|		return ParseCmdCodeBulk(0, 0);
 1067|  1.04k|	}
_ZNK2mu10ParserBase17ParseCmdCodeShortEv:
 1070|    709|	{
 1071|    709|		const SToken *const tok = m_vRPN.GetBase();
 1072|    709|		value_type buf;
 1073|       |
 1074|    709|		switch (tok->Cmd)
 1075|    709|		{
 1076|    705|		case cmVAL:		
  ------------------
  |  Branch (1076:3): [True: 705, False: 4]
  ------------------
 1077|    705|			return tok->Val.data2;
 1078|       |
 1079|      0|		case cmVAR:		
  ------------------
  |  Branch (1079:3): [True: 0, False: 709]
  ------------------
 1080|      0|			return *tok->Val.ptr;
 1081|       |
 1082|      0|		case cmVARMUL:	
  ------------------
  |  Branch (1082:3): [True: 0, False: 709]
  ------------------
 1083|      0|			return *tok->Val.ptr * tok->Val.data + tok->Val.data2;
 1084|       |
 1085|      0|		case cmVARPOW2: 
  ------------------
  |  Branch (1085:3): [True: 0, False: 709]
  ------------------
 1086|      0|			buf = *(tok->Val.ptr);
 1087|      0|			return buf * buf;
 1088|       |
 1089|      0|		case  cmVARPOW3: 				
  ------------------
  |  Branch (1089:3): [True: 0, False: 709]
  ------------------
 1090|      0|			buf = *(tok->Val.ptr);
 1091|      0|			return buf * buf * buf;
 1092|       |
 1093|      0|		case  cmVARPOW4: 				
  ------------------
  |  Branch (1093:3): [True: 0, False: 709]
  ------------------
 1094|      0|			buf = *(tok->Val.ptr);
 1095|      0|			return buf * buf * buf * buf;
 1096|       |
 1097|       |		// numerical function without any argument
 1098|      4|		case cmFUNC:
  ------------------
  |  Branch (1098:3): [True: 4, False: 705]
  ------------------
 1099|      4|			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: 709]
  ------------------
 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: 709]
  ------------------
 1109|      0|			throw ParserError(ecINTERNAL_ERROR);
 1110|    709|		}
 1111|    709|	}
_ZNK2mu10ParserBase16ParseCmdCodeBulkEii:
 1119|  1.04k|	{
 1120|  1.04k|		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.04k|		value_type *stack = ((nOffset == 0) && (nThreadID == 0)) ? &m_vStackBuffer[0] : &m_vStackBuffer[nThreadID * (m_vStackBuffer.size() / s_MaxNumOpenMPThreads)];
  ------------------
  |  Branch (1124:24): [True: 1.04k, False: 0]
  |  Branch (1124:42): [True: 1.04k, False: 0]
  ------------------
 1125|       |		
 1126|  1.04k|		const int iStackMaxSize = (int)(m_vStackBuffer.size() / s_MaxNumOpenMPThreads);
 1127|       |
 1128|  1.04k|		value_type buf;
 1129|  1.04k|		int sidx(0);
 1130|   619k|		for (const SToken* pTok = m_vRPN.GetBase(); pTok->Cmd != cmEND; ++pTok)
  ------------------
  |  Branch (1130:47): [True: 618k, False: 1.04k]
  ------------------
 1131|   618k|		{
 1132|   618k|			switch (pTok->Cmd)
 1133|   618k|			{
 1134|       |			// built in binary operators
 1135|    246|			case  cmLE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = 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 (1135:4): [True: 246, False: 617k]
  ------------------
 1136|    291|			case  cmGE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] >= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    291|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 291]
  |  |  ------------------
  |  |   79|    291|            {														\
  |  |   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: 291, False: 617k]
  ------------------
 1137|    465|			case  cmNEQ:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] != stack[sidx + 1]; continue;
  ------------------
  |  |   78|    465|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 465]
  |  |  ------------------
  |  |   79|    465|            {														\
  |  |   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: 465, False: 617k]
  ------------------
 1138|    299|			case  cmEQ:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] == stack[sidx + 1]; continue;
  ------------------
  |  |   78|    299|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 299]
  |  |  ------------------
  |  |   79|    299|            {														\
  |  |   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: 299, False: 617k]
  ------------------
 1139|    479|			case  cmLT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] < stack[sidx + 1];  continue;
  ------------------
  |  |   78|    479|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 479]
  |  |  ------------------
  |  |   79|    479|            {														\
  |  |   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: 479, False: 617k]
  ------------------
 1140|    294|			case  cmGT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] > stack[sidx + 1];  continue;
  ------------------
  |  |   78|    294|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 294]
  |  |  ------------------
  |  |   79|    294|            {														\
  |  |   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: 294, False: 617k]
  ------------------
 1141|  1.27k|			case  cmADD:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] += stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.27k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.27k]
  |  |  ------------------
  |  |   79|  1.27k|            {														\
  |  |   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.27k, False: 616k]
  ------------------
 1142|    935|			case  cmSUB:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] -= stack[1 + sidx]; continue;
  ------------------
  |  |   78|    935|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 935]
  |  |  ------------------
  |  |   79|    935|            {														\
  |  |   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: 935, False: 617k]
  ------------------
 1143|  1.67k|			case  cmMUL:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] *= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.67k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.67k]
  |  |  ------------------
  |  |   79|  1.67k|            {														\
  |  |   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.67k, False: 616k]
  ------------------
 1144|    868|			case  cmDIV:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] /= stack[1 + sidx]; continue;
  ------------------
  |  |   78|    868|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 868]
  |  |  ------------------
  |  |   79|    868|            {														\
  |  |   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: 868, False: 617k]
  ------------------
 1145|   105k|			case  cmPOW:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = MathImpl<value_type>::Pow(stack[sidx], stack[1 + sidx]); continue;
  ------------------
  |  |   78|   105k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 105k]
  |  |  ------------------
  |  |   79|   105k|            {														\
  |  |   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: 105k, False: 512k]
  ------------------
 1146|    516|			case  cmLAND:   --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] && stack[sidx + 1]; continue;
  ------------------
  |  |   78|    516|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 516]
  |  |  ------------------
  |  |   79|    516|            {														\
  |  |   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: 516, False: 617k]
  |  Branch (1146:65): [True: 309, False: 207]
  |  Branch (1146:80): [True: 283, False: 26]
  ------------------
 1147|    647|			case  cmLOR:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] || stack[sidx + 1]; continue;
  ------------------
  |  |   78|    647|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 647]
  |  |  ------------------
  |  |   79|    647|            {														\
  |  |   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: 647, False: 617k]
  |  Branch (1147:65): [True: 346, False: 301]
  |  Branch (1147:80): [True: 69, False: 232]
  ------------------
 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: 618k]
  ------------------
 1149|       |
 1150|  3.62k|			case  cmIF:
  ------------------
  |  Branch (1150:4): [True: 3.62k, False: 614k]
  ------------------
 1151|  3.62k|				if (stack[sidx--] == 0)
  ------------------
  |  Branch (1151:9): [True: 2.89k, False: 727]
  ------------------
 1152|  2.89k|					pTok += pTok->Oprt.offset;
 1153|       |
 1154|  3.62k|				MUP_ASSERT(sidx >= 0);
  ------------------
  |  |   78|  3.62k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.62k]
  |  |  ------------------
  |  |   79|  3.62k|            {														\
  |  |   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.62k|				continue;
 1156|       |
 1157|    727|			case  cmELSE:
  ------------------
  |  Branch (1157:4): [True: 727, False: 617k]
  ------------------
 1158|    727|				pTok += pTok->Oprt.offset;
 1159|    727|				continue;
 1160|       |
 1161|  2.89k|			case  cmENDIF:
  ------------------
  |  Branch (1161:4): [True: 2.89k, False: 615k]
  ------------------
 1162|  2.89k|				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: 618k]
  ------------------
 1166|   486k|			case  cmVAL:    MUP_ASSERT(sidx < iStackMaxSize); stack[++sidx] = pTok->Val.data2;  continue;
  ------------------
  |  |   78|   486k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 486k]
  |  |  ------------------
  |  |   79|   486k|            {														\
  |  |   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: 486k, False: 131k]
  ------------------
 1167|       |
 1168|      0|			case  cmVARPOW2: 
  ------------------
  |  Branch (1168:4): [True: 0, False: 618k]
  ------------------
 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: 618k]
  ------------------
 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: 618k]
  ------------------
 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: 618k]
  ------------------
 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|  11.0k|			case  cmFUNC:
  ------------------
  |  Branch (1192:4): [True: 11.0k, False: 607k]
  ------------------
 1193|  11.0k|			{
 1194|  11.0k|				int iArgCount = pTok->Fun.argc;
 1195|       |
 1196|       |				// switch according to argument count
 1197|  11.0k|				switch (iArgCount)
 1198|  11.0k|				{
 1199|    839|				case 0: sidx += 1; MUP_ASSERT(sidx < iStackMaxSize); stack[sidx] = pTok->Fun.cb.call_fun<0 >(); continue;
  ------------------
  |  |   78|    839|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 839]
  |  |  ------------------
  |  |   79|    839|            {														\
  |  |   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: 839, False: 10.1k]
  ------------------
 1200|  6.02k|				case 1:                                              stack[sidx] = pTok->Fun.cb.call_fun<1 >(stack[sidx]); continue;
  ------------------
  |  Branch (1200:5): [True: 6.02k, False: 4.99k]
  ------------------
 1201|    242|				case 2: sidx -= 1; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<2 >(stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  |   78|    242|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 242]
  |  |  ------------------
  |  |   79|    242|            {														\
  |  |   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: 242, False: 10.7k]
  ------------------
 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: 11.0k]
  ------------------
 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: 11.0k]
  ------------------
 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: 11.0k]
  ------------------
 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: 11.0k]
  ------------------
 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: 11.0k]
  ------------------
 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: 11.0k]
  ------------------
 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: 11.0k]
  ------------------
 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: 11.0k]
  ------------------
 1210|  3.90k|				default:
  ------------------
  |  Branch (1210:5): [True: 3.90k, False: 7.11k]
  ------------------
 1211|       |					// function with variable arguments store the number as a negative value
 1212|  3.90k|					if (iArgCount > 0)
  ------------------
  |  Branch (1212:10): [True: 0, False: 3.90k]
  ------------------
 1213|      0|						Error(ecINTERNAL_ERROR, -1);
 1214|       |
 1215|  3.90k|					sidx -= -iArgCount - 1;
 1216|  3.90k|					MUP_ASSERT(sidx>=0 && sidx < iStackMaxSize);
  ------------------
  |  |   78|  7.81k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 3.90k, False: 0]
  |  |  |  Branch (78:19): [True: 3.90k, False: 0]
  |  |  ------------------
  |  |   79|  3.90k|            {														\
  |  |   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.90k|					stack[sidx] = pTok->Fun.cb.call_multfun(&stack[sidx], -iArgCount);
 1219|  3.90k|					continue;
 1220|  11.0k|				}
 1221|  11.0k|			}
 1222|       |
 1223|       |			// Next is treatment of string functions
 1224|      0|			case  cmFUNC_STR:
  ------------------
  |  Branch (1224:4): [True: 0, False: 618k]
  ------------------
 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: 618k]
  ------------------
 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: 618k]
  ------------------
 1271|      0|				throw exception_type(ecINTERNAL_ERROR, 3, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1272|   618k|			} // switch CmdCode
 1273|   618k|		} // for all bytecode tokens
 1274|       |
 1275|  1.04k|		return stack[m_nFinalResultIdx];
 1276|  1.04k|	}
_ZNK2mu10ParserBase9CreateRPNEv:
 1280|  3.74k|	{
 1281|  3.74k|		if (!m_pTokenReader->GetExpr().length())
  ------------------
  |  Branch (1281:7): [True: 0, False: 3.74k]
  ------------------
 1282|      0|			Error(ecUNEXPECTED_EOF, 0);
 1283|       |
 1284|  3.74k|		std::stack<token_type> stOpt, stVal;
 1285|  3.74k|		std::stack<int> stArgCount;
 1286|  3.74k|		token_type opta, opt;  // for storing operators
 1287|  3.74k|		token_type val, tval;  // for storing value
 1288|  3.74k|		int ifElseCounter = 0;
 1289|       |
 1290|  3.74k|		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.74k|		stArgCount.push(1);
 1295|       |
 1296|  3.74k|		for (;;)
 1297|  2.23M|		{
 1298|  2.23M|			opt = m_pTokenReader->ReadNextToken();
 1299|       |
 1300|  2.23M|			switch (opt.GetCode())
 1301|  2.23M|			{
 1302|       |			//
 1303|       |			// Next three are different kind of value entries
 1304|       |			//
 1305|  12.4k|			case cmSTRING:
  ------------------
  |  Branch (1305:4): [True: 12.4k, False: 2.22M]
  ------------------
 1306|  12.4k|				if (stOpt.empty())
  ------------------
  |  Branch (1306:9): [True: 73, False: 12.4k]
  ------------------
 1307|     73|					Error(ecSTR_RESULT, m_pTokenReader->GetPos(), opt.GetAsString());
 1308|       |
 1309|  12.4k|				stVal.push(opt);
 1310|  12.4k|				break;
 1311|       |
 1312|      0|			case cmVAR:
  ------------------
  |  Branch (1312:4): [True: 0, False: 2.23M]
  ------------------
 1313|      0|				stVal.push(opt);
 1314|      0|				m_vRPN.AddVar(static_cast<value_type*>(opt.GetVar()));
 1315|      0|				break;
 1316|       |
 1317|   886k|			case cmVAL:
  ------------------
  |  Branch (1317:4): [True: 886k, False: 1.34M]
  ------------------
 1318|   886k|				stVal.push(opt);
 1319|   886k|				m_vRPN.AddVal(opt.GetVal());
 1320|   886k|				break;
 1321|       |
 1322|  83.3k|			case cmELSE:
  ------------------
  |  Branch (1322:4): [True: 83.3k, False: 2.14M]
  ------------------
 1323|  83.3k|				if (stArgCount.empty())
  ------------------
  |  Branch (1323:9): [True: 0, False: 83.3k]
  ------------------
 1324|      0|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1325|       |
 1326|  83.3k|				if (stArgCount.top() > 1)
  ------------------
  |  Branch (1326:9): [True: 12, False: 83.3k]
  ------------------
 1327|     12|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1328|       |
 1329|  83.3k|				stArgCount.pop();
 1330|       |
 1331|  83.3k|				ifElseCounter--;
 1332|  83.3k|				if (ifElseCounter < 0)
  ------------------
  |  Branch (1332:9): [True: 12, False: 83.3k]
  ------------------
 1333|     12|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1334|       |
 1335|  83.3k|				ApplyRemainingOprt(stOpt, stVal);
 1336|  83.3k|				m_vRPN.AddIfElse(cmELSE);
 1337|  83.3k|				stOpt.push(opt);
 1338|  83.3k|				break;
 1339|       |
 1340|   460k|			case cmARG_SEP:
  ------------------
  |  Branch (1340:4): [True: 460k, False: 1.77M]
  ------------------
 1341|   460k|				if (!stOpt.empty() && stOpt.top().GetCode() == cmIF)
  ------------------
  |  Branch (1341:9): [True: 398k, False: 61.2k]
  |  Branch (1341:27): [True: 6, False: 398k]
  ------------------
 1342|      6|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1343|       |
 1344|   460k|				if (stArgCount.empty())
  ------------------
  |  Branch (1344:9): [True: 0, False: 460k]
  ------------------
 1345|      0|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1346|       |
 1347|   460k|				++stArgCount.top();
 1348|       |				// Falls through.
 1349|       |				// intentional (no break!)
 1350|       |
 1351|   462k|			case cmEND:
  ------------------
  |  Branch (1351:4): [True: 1.95k, False: 2.23M]
  ------------------
 1352|   462k|				ApplyRemainingOprt(stOpt, stVal);
 1353|   462k|				break;
 1354|       |
 1355|   120k|			case cmBC:
  ------------------
  |  Branch (1355:4): [True: 120k, False: 2.11M]
  ------------------
 1356|   120k|			{
 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|   120k|				if (opta.GetCode() == cmBO)
  ------------------
  |  Branch (1361:9): [True: 1.40k, False: 118k]
  ------------------
 1362|  1.40k|					--stArgCount.top();
 1363|       |
 1364|   120k|				ApplyRemainingOprt(stOpt, stVal);
 1365|       |
 1366|       |				// Check if the bracket content has been evaluated completely
 1367|   120k|				if (stOpt.size() && stOpt.top().GetCode() == cmBO)
  ------------------
  |  Branch (1367:9): [True: 120k, False: 1]
  |  Branch (1367:25): [True: 17.0k, False: 103k]
  ------------------
 1368|  17.0k|				{
 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|  17.0k|					MUP_ASSERT(stArgCount.size());
  ------------------
  |  |   78|  17.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 17.0k]
  |  |  ------------------
  |  |   79|  17.0k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1376|  17.0k|					int iArgCount = stArgCount.top();
 1377|  17.0k|					stArgCount.pop();
 1378|       |
 1379|  17.0k|					stOpt.pop(); // Take opening bracket from stack
 1380|       |
 1381|  17.0k|					if (iArgCount > 1 && (stOpt.size() == 0 ||
  ------------------
  |  Branch (1381:10): [True: 3.60k, False: 13.4k]
  |  Branch (1381:28): [True: 4, False: 3.60k]
  ------------------
 1382|  3.60k|						(stOpt.top().GetCode() != cmFUNC &&
  ------------------
  |  Branch (1382:8): [True: 17, False: 3.58k]
  ------------------
 1383|     17|							stOpt.top().GetCode() != cmFUNC_BULK &&
  ------------------
  |  Branch (1383:8): [True: 17, False: 0]
  ------------------
 1384|     17|							stOpt.top().GetCode() != cmFUNC_STR)))
  ------------------
  |  Branch (1384:8): [True: 17, False: 0]
  ------------------
 1385|     21|						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|  17.0k|					if (stOpt.size() &&
  ------------------
  |  Branch (1389:10): [True: 16.6k, False: 380]
  |  Branch (1389:10): [True: 12.3k, False: 4.67k]
  ------------------
 1390|  16.6k|						stOpt.top().GetCode() != cmOPRT_INFIX &&
  ------------------
  |  Branch (1390:7): [True: 16.2k, False: 470]
  ------------------
 1391|  16.2k|						stOpt.top().GetCode() != cmOPRT_BIN &&
  ------------------
  |  Branch (1391:7): [True: 16.2k, False: 0]
  ------------------
 1392|  16.2k|						stOpt.top().GetFuncAddr() != 0)
  ------------------
  |  Branch (1392:7): [True: 12.3k, False: 3.82k]
  ------------------
 1393|  12.3k|					{
 1394|  12.3k|						ApplyFunc(stOpt, stVal, iArgCount);
 1395|  12.3k|					}
 1396|  17.0k|				}
 1397|   120k|			} // if bracket content is evaluated
 1398|   120k|			break;
 1399|       |
 1400|       |			//
 1401|       |			// Next are the binary operator entries
 1402|       |			//
 1403|   134k|			case cmIF:
  ------------------
  |  Branch (1403:4): [True: 134k, False: 2.09M]
  ------------------
 1404|   134k|				ifElseCounter++;
 1405|   134k|				if (ifElseCounter > MaxNestingDepth)
  ------------------
  |  Branch (1405:9): [True: 1, False: 134k]
  ------------------
 1406|      1|					Error(ecNESTING_LIMIT, m_pTokenReader->GetPos());
 1407|       |
 1408|   134k|				stArgCount.push(1);
 1409|       |				// Falls through.
 1410|       |				// intentional (no break!)
 1411|       |
 1412|   139k|			case cmLAND:
  ------------------
  |  Branch (1412:4): [True: 4.67k, False: 2.22M]
  ------------------
 1413|   142k|			case cmLOR:
  ------------------
  |  Branch (1413:4): [True: 3.01k, False: 2.23M]
  ------------------
 1414|   146k|			case cmLT:
  ------------------
  |  Branch (1414:4): [True: 3.98k, False: 2.22M]
  ------------------
 1415|   148k|			case cmGT:
  ------------------
  |  Branch (1415:4): [True: 2.60k, False: 2.23M]
  ------------------
 1416|   149k|			case cmLE:
  ------------------
  |  Branch (1416:4): [True: 938, False: 2.23M]
  ------------------
 1417|   150k|			case cmGE:
  ------------------
  |  Branch (1417:4): [True: 1.03k, False: 2.23M]
  ------------------
 1418|   152k|			case cmNEQ:
  ------------------
  |  Branch (1418:4): [True: 1.64k, False: 2.23M]
  ------------------
 1419|   154k|			case cmEQ:
  ------------------
  |  Branch (1419:4): [True: 1.96k, False: 2.23M]
  ------------------
 1420|   163k|			case cmADD:
  ------------------
  |  Branch (1420:4): [True: 8.53k, False: 2.22M]
  ------------------
 1421|   168k|			case cmSUB:
  ------------------
  |  Branch (1421:4): [True: 5.90k, False: 2.22M]
  ------------------
 1422|   173k|			case cmMUL:
  ------------------
  |  Branch (1422:4): [True: 4.60k, False: 2.22M]
  ------------------
 1423|   179k|			case cmDIV:
  ------------------
  |  Branch (1423:4): [True: 5.87k, False: 2.22M]
  ------------------
 1424|   355k|			case cmPOW:
  ------------------
  |  Branch (1424:4): [True: 175k, False: 2.05M]
  ------------------
 1425|   355k|			case cmASSIGN:
  ------------------
  |  Branch (1425:4): [True: 0, False: 2.23M]
  ------------------
 1426|   355k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1426:4): [True: 0, False: 2.23M]
  ------------------
 1427|       |
 1428|       |				// A binary operator (user defined or built in) has been found. 
 1429|   355k|				while (
 1430|   474k|					stOpt.size() &&
  ------------------
  |  Branch (1430:6): [True: 453k, False: 21.1k]
  ------------------
 1431|   453k|					stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1431:6): [True: 436k, False: 16.7k]
  ------------------
 1432|   436k|					stOpt.top().GetCode() != cmELSE &&
  ------------------
  |  Branch (1432:6): [True: 357k, False: 79.0k]
  ------------------
 1433|   357k|					stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1433:6): [True: 303k, False: 53.3k]
  ------------------
 1434|   303k|				{
 1435|   303k|					int nPrec1 = GetOprtPrecedence(stOpt.top()),
 1436|   303k|						nPrec2 = GetOprtPrecedence(opt);
 1437|       |
 1438|   303k|					if (stOpt.top().GetCode() == opt.GetCode())
  ------------------
  |  Branch (1438:10): [True: 170k, False: 133k]
  ------------------
 1439|   170k|					{
 1440|       |
 1441|       |						// Deal with operator associativity
 1442|   170k|						EOprtAssociativity eOprtAsct = GetOprtAssociativity(opt);
 1443|   170k|						if ((eOprtAsct == oaRIGHT && (nPrec1 <= nPrec2)) ||
  ------------------
  |  Branch (1443:12): [True: 146k, False: 24.2k]
  |  Branch (1443:36): [True: 146k, False: 0]
  ------------------
 1444|  24.2k|							(eOprtAsct == oaLEFT && (nPrec1 < nPrec2)))
  ------------------
  |  Branch (1444:9): [True: 24.2k, False: 0]
  |  Branch (1444:32): [True: 0, False: 24.2k]
  ------------------
 1445|   146k|						{
 1446|   146k|							break;
 1447|   146k|						}
 1448|   170k|					}
 1449|   133k|					else if (nPrec1 < nPrec2)
  ------------------
  |  Branch (1449:15): [True: 38.4k, False: 94.9k]
  ------------------
 1450|  38.4k|					{
 1451|       |						// In case the operators are not equal the precedence decides alone...
 1452|  38.4k|						break;
 1453|  38.4k|					}
 1454|       |
 1455|   119k|					if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1455:10): [True: 8.23k, False: 110k]
  ------------------
 1456|  8.23k|						ApplyFunc(stOpt, stVal, 1);
 1457|   110k|					else
 1458|   110k|						ApplyBinOprt(stOpt, stVal);
 1459|   119k|				} // while ( ... )
 1460|       |
 1461|   355k|				if (opt.GetCode() == cmIF)
  ------------------
  |  Branch (1461:9): [True: 134k, False: 220k]
  ------------------
 1462|   134k|					m_vRPN.AddIfElse(opt.GetCode());
 1463|       |
 1464|       |				// The operator can't be evaluated right now, push back to the operator stack
 1465|   355k|				stOpt.push(opt);
 1466|   355k|				break;
 1467|       |
 1468|       |				//
 1469|       |				// Last section contains functions and operators implicitly mapped to functions
 1470|       |				//
 1471|   247k|			case cmBO:
  ------------------
  |  Branch (1471:4): [True: 247k, False: 1.98M]
  ------------------
 1472|   247k|				stArgCount.push(1);
 1473|   247k|				stOpt.push(opt);
 1474|   247k|				break;
 1475|       |
 1476|  50.7k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1476:4): [True: 50.7k, False: 2.18M]
  ------------------
 1477|  64.4k|			case cmFUNC:
  ------------------
  |  Branch (1477:4): [True: 13.6k, False: 2.21M]
  ------------------
 1478|  64.4k|			case cmFUNC_BULK:
  ------------------
  |  Branch (1478:4): [True: 0, False: 2.23M]
  ------------------
 1479|  64.4k|			case cmFUNC_STR:
  ------------------
  |  Branch (1479:4): [True: 0, False: 2.23M]
  ------------------
 1480|  64.4k|				stOpt.push(opt);
 1481|  64.4k|				break;
 1482|       |
 1483|      0|			case cmOPRT_POSTFIX:
  ------------------
  |  Branch (1483:4): [True: 0, False: 2.23M]
  ------------------
 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: 2.23M]
  ------------------
 1489|  2.23M|			} // end of switch operator-token
 1490|       |
 1491|  2.23M|			opta = opt;
 1492|       |
 1493|  2.23M|			if (opt.GetCode() == cmEND)
  ------------------
  |  Branch (1493:8): [True: 1.92k, False: 2.22M]
  ------------------
 1494|  1.92k|			{
 1495|  1.92k|				m_vRPN.Finalize();
 1496|  1.92k|				break;
 1497|  1.92k|			}
 1498|       |
 1499|  2.22M|			if (ParserBase::g_DbgDumpStack)
  ------------------
  |  Branch (1499:8): [True: 0, False: 2.22M]
  ------------------
 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|  2.22M|		} // while (true)
 1508|       |
 1509|  1.92k|		if (ParserBase::g_DbgDumpCmdCode)
  ------------------
  |  Branch (1509:7): [True: 0, False: 1.92k]
  ------------------
 1510|      0|			m_vRPN.AsciiDump();
 1511|       |
 1512|  1.92k|		if (ifElseCounter > 0)
  ------------------
  |  Branch (1512:7): [True: 142, False: 1.78k]
  ------------------
 1513|    142|			Error(ecMISSING_ELSE_CLAUSE);
 1514|       |
 1515|       |		// get the last value (= final result) from the stack
 1516|  1.92k|		MUP_ASSERT(stArgCount.size() == 1);
  ------------------
  |  |   78|  1.92k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 8, False: 1.91k]
  |  |  ------------------
  |  |   79|  1.92k|            {														\
  |  |   80|      8|              stringstream_type ss;									\
  |  |   81|      8|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |   82|      8|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |   83|      8|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      8|		#define _T(x) x
  |  |  ------------------
  |  |   84|      8|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      8|            }
  ------------------
 1517|  1.91k|		m_nFinalResultIdx = stArgCount.top();
 1518|  1.91k|		if (m_nFinalResultIdx == 0)
  ------------------
  |  Branch (1518:7): [True: 0, False: 1.91k]
  ------------------
 1519|      0|			Error(ecINTERNAL_ERROR, 9);
 1520|       |
 1521|  1.91k|		if (stVal.size() == 0)
  ------------------
  |  Branch (1521:7): [True: 19, False: 1.89k]
  ------------------
 1522|     19|			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|  57.9k|		while (stVal.size())
  ------------------
  |  Branch (1527:10): [True: 55.9k, False: 1.91k]
  ------------------
 1528|  55.9k|		{
 1529|  55.9k|			if (stVal.top().GetType() != tpDBL)
  ------------------
  |  Branch (1529:8): [True: 2, False: 55.9k]
  ------------------
 1530|      2|				Error(ecSTR_RESULT);
 1531|       |
 1532|  55.9k|			stVal.pop();
 1533|  55.9k|		}
 1534|       |
 1535|  1.91k|		m_vStackBuffer.resize(m_vRPN.GetMaxStackSize() * s_MaxNumOpenMPThreads);
 1536|  1.91k|	}
_ZNK2mu10ParserBase11ParseStringEv:
 1548|  3.74k|	{
 1549|  3.74k|		try
 1550|  3.74k|		{
 1551|  3.74k|			CreateRPN();
 1552|       |
 1553|  3.74k|			if (m_vRPN.GetSize() == 2)
  ------------------
  |  Branch (1553:8): [True: 709, False: 3.03k]
  ------------------
 1554|    709|			{
 1555|    709|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1556|    709|				m_pParseFormula = &ParserBase::ParseCmdCodeShort;
 1557|    709|				m_vStackBuffer[1] = (this->*m_pParseFormula)();
 1558|    709|				return m_vStackBuffer[1];
 1559|    709|			}
 1560|  3.03k|			else
 1561|  3.03k|			{
 1562|  3.03k|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1563|  3.03k|				m_pParseFormula = &ParserBase::ParseCmdCode;
 1564|  3.03k|				return (this->*m_pParseFormula)();
 1565|  3.03k|			}
 1566|  3.74k|		}
 1567|  3.74k|		catch (ParserError& exc)
 1568|  3.74k|		{
 1569|  1.98k|			exc.SetFormula(m_pTokenReader->GetExpr());
 1570|  1.98k|			throw;
 1571|  1.98k|		}
 1572|  3.74k|	}
_ZNK2mu10ParserBase5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
 1586|  1.99k|	{
 1587|  1.99k|		throw exception_type(a_iErrc, a_sTok, m_pTokenReader->GetExpr(), a_iPos);
 1588|  1.99k|	}
_ZNK2mu10ParserBase14HasBuiltInOprtEv:
 1723|  5.86M|	{
 1724|  5.86M|		return m_bBuiltInOp;
 1725|  5.86M|	}
_ZNK2mu10ParserBase4EvalEv:
 1840|  3.74k|	{
 1841|  3.74k|		return (this->*m_pParseFormula)();
 1842|  3.74k|	}

_ZN2mu14ParserByteCodeC2Ev:
   52|  3.76k|		: m_iStackPos(0)
   53|  3.76k| 		, m_stringBuffer()
   54|  3.76k|		, m_expr()
   55|  3.76k|		, m_iMaxStackSize(0)
   56|  3.76k|		, m_vRPN()
   57|  3.76k|		, m_bEnableOptimizer(true)
   58|  3.76k|	{
   59|  3.76k|		m_vRPN.reserve(50);
   60|  3.76k|	}
_ZN2mu14ParserByteCode6AddValEd:
  141|   886k|	{
  142|   886k|		++m_iStackPos;
  143|   886k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  144|       |
  145|       |		// If optimization does not apply
  146|   886k|		SToken tok;
  147|   886k|		tok.Cmd = cmVAL;
  148|   886k|		tok.Val.ptr = nullptr;
  149|   886k|		tok.Val.data = 0;
  150|   886k|		tok.Val.data2 = a_fVal;
  151|   886k|		m_vRPN.push_back(tok);
  152|   886k|	}
_ZN2mu14ParserByteCode15ConstantFoldingENS_8ECmdCodeE:
  156|  56.3k|	{
  157|  56.3k|		std::size_t sz = m_vRPN.size();
  158|  56.3k|		value_type& x = m_vRPN[sz - 2].Val.data2;
  159|  56.3k|		value_type& y = m_vRPN[sz - 1].Val.data2;
  160|       |
  161|  56.3k|		switch (a_Oprt)
  162|  56.3k|		{
  163|  3.30k|		case cmLAND: x = (int)x && (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (163:3): [True: 3.30k, False: 53.0k]
  |  Branch (163:20): [True: 2.13k, False: 1.17k]
  |  Branch (163:30): [True: 1.60k, False: 529]
  ------------------
  164|  1.51k|		case cmLOR:  x = (int)x || (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (164:3): [True: 1.51k, False: 54.8k]
  |  Branch (164:20): [True: 990, False: 520]
  |  Branch (164:30): [True: 260, False: 260]
  ------------------
  165|  1.82k|		case cmLT:   x = x < y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (165:3): [True: 1.82k, False: 54.5k]
  ------------------
  166|  2.17k|		case cmGT:   x = x > y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (166:3): [True: 2.17k, False: 54.1k]
  ------------------
  167|    527|		case cmLE:   x = x <= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (167:3): [True: 527, False: 55.8k]
  ------------------
  168|    672|		case cmGE:   x = x >= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (168:3): [True: 672, False: 55.6k]
  ------------------
  169|    866|		case cmNEQ:  x = x != y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (169:3): [True: 866, False: 55.4k]
  ------------------
  170|  1.56k|		case cmEQ:   x = x == y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (170:3): [True: 1.56k, False: 54.7k]
  ------------------
  171|  6.41k|		case cmADD:  x = x + y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (171:3): [True: 6.41k, False: 49.9k]
  ------------------
  172|  4.64k|		case cmSUB:  x = x - y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (172:3): [True: 4.64k, False: 51.7k]
  ------------------
  173|  2.43k|		case cmMUL:  x = x * y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (173:3): [True: 2.43k, False: 53.9k]
  ------------------
  174|  1.94k|		case cmDIV:
  ------------------
  |  Branch (174:3): [True: 1.94k, False: 54.4k]
  ------------------
  175|  1.94k|			x = x / y;
  176|  1.94k|			m_vRPN.pop_back();
  177|  1.94k|			break;
  178|       |
  179|  28.4k|		case cmPOW: x = MathImpl<value_type>::Pow(x, y);
  ------------------
  |  Branch (179:3): [True: 28.4k, False: 27.8k]
  ------------------
  180|  28.4k|			m_vRPN.pop_back();
  181|  28.4k|			break;
  182|       |
  183|      0|		default:
  ------------------
  |  Branch (183:3): [True: 0, False: 56.3k]
  ------------------
  184|      0|			break;
  185|  56.3k|		} // switch opcode
  186|  56.3k|	}
_ZN2mu14ParserByteCode5AddOpENS_8ECmdCodeE:
  200|   179k|	{
  201|   179k|		bool bOptimized = false;
  202|       |
  203|   179k|		if (m_bEnableOptimizer)
  ------------------
  |  Branch (203:7): [True: 179k, False: 0]
  ------------------
  204|   179k|		{
  205|   179k|			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|   179k|			if (sz >= 2 && m_vRPN[sz - 2].Cmd == cmVAL && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (211:8): [True: 179k, False: 0]
  |  Branch (211:19): [True: 59.5k, False: 119k]
  |  Branch (211:50): [True: 56.3k, False: 3.17k]
  ------------------
  212|  56.3k|			{
  213|  56.3k|				ConstantFolding(a_Oprt);
  214|  56.3k|				bOptimized = true;
  215|  56.3k|			}
  216|   122k|			else
  217|   122k|			{
  218|   122k|				switch (a_Oprt)
  219|   122k|				{
  220|   109k|				case  cmPOW:
  ------------------
  |  Branch (220:5): [True: 109k, False: 12.9k]
  ------------------
  221|       |					// Optimization for polynomials of low order
  222|   109k|					if (m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (222:10): [True: 0, False: 109k]
  |  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|   109k|					break;
  246|       |
  247|   109k|				case  cmSUB:
  ------------------
  |  Branch (247:5): [True: 1.10k, False: 121k]
  ------------------
  248|  2.65k|				case  cmADD:
  ------------------
  |  Branch (248:5): [True: 1.55k, False: 121k]
  ------------------
  249|       |					// Simple optimization based on pattern recognition for a shitload of different
  250|       |					// bytecode combinations of addition/subtraction
  251|  2.65k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (251:11): [True: 0, False: 2.65k]
  |  Branch (251:42): [True: 0, False: 0]
  ------------------
  252|  2.65k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR) ||
  ------------------
  |  Branch (252:8): [True: 1.62k, False: 1.03k]
  |  Branch (252:39): [True: 0, False: 1.62k]
  ------------------
  253|  2.65k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (253:8): [True: 1.62k, False: 1.03k]
  |  Branch (253:39): [True: 0, False: 1.62k]
  ------------------
  254|  2.65k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (254:8): [True: 0, False: 2.65k]
  |  Branch (254:42): [True: 0, False: 0]
  ------------------
  255|  2.65k|						(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.65k]
  |  Branch (255:39): [True: 0, False: 0]
  |  Branch (255:70): [True: 0, False: 0]
  ------------------
  256|  2.65k|						(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.65k]
  |  Branch (256:39): [True: 0, False: 0]
  |  Branch (256:73): [True: 0, False: 0]
  ------------------
  257|  2.65k|						(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.65k]
  |  Branch (257:42): [True: 0, False: 0]
  |  Branch (257:73): [True: 0, False: 0]
  ------------------
  258|  2.65k|						(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.65k]
  |  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.65k|					break;
  273|       |
  274|  2.65k|				case  cmMUL:
  ------------------
  |  Branch (274:5): [True: 1.96k, False: 120k]
  ------------------
  275|  1.96k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (275:11): [True: 0, False: 1.96k]
  |  Branch (275:42): [True: 0, False: 0]
  ------------------
  276|  1.96k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR))
  ------------------
  |  Branch (276:8): [True: 851, False: 1.11k]
  |  Branch (276:39): [True: 0, False: 851]
  ------------------
  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|  1.96k|					else if (
  286|  1.96k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (286:8): [True: 851, False: 1.11k]
  |  Branch (286:39): [True: 0, False: 851]
  ------------------
  287|  1.96k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL))
  ------------------
  |  Branch (287:8): [True: 0, False: 1.96k]
  |  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|  1.96k|					else if (
  306|  1.96k|						m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR &&
  ------------------
  |  Branch (306:7): [True: 0, False: 1.96k]
  |  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|  1.96k|					break;
  315|       |
  316|  1.40k|				case cmDIV:
  ------------------
  |  Branch (316:5): [True: 1.40k, False: 121k]
  ------------------
  317|  1.40k|					if (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 1].Val.data2 != 0)
  ------------------
  |  Branch (317:10): [True: 529, False: 871]
  |  Branch (317:41): [True: 0, False: 529]
  |  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.40k|					break;
  326|       |
  327|       |					// no optimization for other opcodes
  328|  6.94k|				default:
  ------------------
  |  Branch (328:5): [True: 6.94k, False: 115k]
  ------------------
  329|  6.94k|					break;
  330|   122k|				} // switch a_Oprt
  331|   122k|			}
  332|   179k|		}
  333|       |
  334|       |		// If optimization can't be applied just write the value
  335|   179k|		if (!bOptimized)
  ------------------
  |  Branch (335:7): [True: 122k, False: 56.3k]
  ------------------
  336|   122k|		{
  337|   122k|			--m_iStackPos;
  338|   122k|			SToken tok;
  339|   122k|			tok.Cmd = a_Oprt;
  340|   122k|			m_vRPN.push_back(tok);
  341|   122k|		}
  342|   179k|	}
_ZN2mu14ParserByteCode9AddIfElseENS_8ECmdCodeE:
  346|   259k|	{
  347|   259k|		SToken tok;
  348|   259k|		tok.Cmd = a_Oprt;
  349|   259k|		m_vRPN.push_back(tok);
  350|   259k|	}
_ZN2mu14ParserByteCode6AddFunENS_21generic_callable_typeEib:
  380|  31.5k|	{
  381|  31.5k|		std::size_t sz = m_vRPN.size();
  382|  31.5k|		bool optimize = false;
  383|       |
  384|       |		// only optimize functions with fixed number of more than a single arguments
  385|  31.5k|		if (isFunctionOptimizable && m_bEnableOptimizer && a_iArgc > 0)
  ------------------
  |  Branch (385:7): [True: 30.1k, False: 1.40k]
  |  Branch (385:32): [True: 30.1k, False: 0]
  |  Branch (385:54): [True: 25.7k, False: 4.32k]
  ------------------
  386|  25.7k|		{
  387|       |			// <ibg 2020-06-10/> Unary Plus is a no-op, optimize it away
  388|  25.7k|			if (a_pFun == generic_callable_type{(erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr})
  ------------------
  |  Branch (388:8): [True: 7.01k, False: 18.7k]
  ------------------
  389|  7.01k|				return;
  390|       |
  391|  18.7k|			optimize = true;
  392|       |
  393|  29.1k|			for (int i = 0; i < std::abs(a_iArgc); ++i)
  ------------------
  |  Branch (393:20): [True: 19.2k, False: 9.96k]
  ------------------
  394|  19.2k|			{
  395|  19.2k|				if (m_vRPN[sz - i - 1].Cmd != cmVAL)
  ------------------
  |  Branch (395:9): [True: 8.80k, False: 10.3k]
  ------------------
  396|  8.80k|				{
  397|  8.80k|					optimize = false;
  398|  8.80k|					break;
  399|  8.80k|				}
  400|  19.2k|			}
  401|  18.7k|		}
  402|       |
  403|  24.5k|		if (optimize)
  ------------------
  |  Branch (403:7): [True: 9.96k, False: 14.5k]
  ------------------
  404|  9.96k|		{
  405|  9.96k|			value_type val = 0;
  406|  9.96k|			switch (a_iArgc)
  407|  9.96k|			{
  408|  9.62k|			case 1:  val = a_pFun.call_fun<1>(m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (408:4): [True: 9.62k, False: 339]
  ------------------
  409|    339|			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: 339, False: 9.62k]
  ------------------
  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: 9.96k]
  ------------------
  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: 9.96k]
  ------------------
  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: 9.96k]
  ------------------
  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: 9.96k]
  ------------------
  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: 9.96k]
  ------------------
  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: 9.96k]
  ------------------
  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: 9.96k]
  ------------------
  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: 9.96k]
  ------------------
  418|      0|			default:
  ------------------
  |  Branch (418:4): [True: 0, False: 9.96k]
  ------------------
  419|       |				// For now functions with unlimited number of arguments are not optimized
  420|      0|				throw ParserError(ecINTERNAL_ERROR);
  421|  9.96k|			}
  422|       |
  423|       |			// remove the folded values
  424|  9.96k|			m_vRPN.erase(m_vRPN.end() - a_iArgc, m_vRPN.end());
  425|       |
  426|  9.96k|			SToken tok;
  427|  9.96k|			tok.Cmd = cmVAL;
  428|  9.96k|			tok.Val.data = 0;
  429|  9.96k|			tok.Val.data2 = val;
  430|  9.96k|			tok.Val.ptr = nullptr;
  431|  9.96k|			m_vRPN.push_back(tok);
  432|  9.96k|		}
  433|  14.5k|		else
  434|  14.5k|		{
  435|  14.5k|			SToken tok;
  436|  14.5k|			tok.Cmd = cmFUNC;
  437|  14.5k|			tok.Fun.argc = a_iArgc;
  438|  14.5k|			tok.Fun.cb = a_pFun;
  439|  14.5k|			m_vRPN.push_back(tok);
  440|  14.5k|		}
  441|       |
  442|  24.5k|		m_iStackPos = m_iStackPos - std::abs(a_iArgc) + 1;
  443|  24.5k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  444|       |
  445|  24.5k|	}
_ZN2mu14ParserByteCode8FinalizeEv:
  493|  1.92k|	{
  494|  1.92k|		SToken tok;
  495|  1.92k|		tok.Cmd = cmEND;
  496|  1.92k|		m_vRPN.push_back(tok);
  497|  1.92k|		rpn_type(m_vRPN).swap(m_vRPN);     // shrink bytecode vector to fit
  498|       |
  499|       |		// Determine the if-then-else jump offsets
  500|  1.92k|		std::stack<int> stIf, stElse;
  501|  1.92k|		int idx;
  502|   968k|		for (int i = 0; i < (int)m_vRPN.size(); ++i)
  ------------------
  |  Branch (502:19): [True: 966k, False: 1.92k]
  ------------------
  503|   966k|		{
  504|   966k|			switch (m_vRPN[i].Cmd)
  505|   966k|			{
  506|  86.0k|			case cmIF:
  ------------------
  |  Branch (506:4): [True: 86.0k, False: 880k]
  ------------------
  507|  86.0k|				stIf.push(i);
  508|  86.0k|				break;
  509|       |
  510|  70.7k|			case cmELSE:
  ------------------
  |  Branch (510:4): [True: 70.7k, False: 895k]
  ------------------
  511|  70.7k|				stElse.push(i);
  512|  70.7k|				idx = stIf.top();
  513|  70.7k|				stIf.pop();
  514|  70.7k|				m_vRPN[idx].Oprt.offset = i - idx;
  515|  70.7k|				break;
  516|       |
  517|  35.0k|			case cmENDIF:
  ------------------
  |  Branch (517:4): [True: 35.0k, False: 931k]
  ------------------
  518|  35.0k|				idx = stElse.top();
  519|  35.0k|				stElse.pop();
  520|  35.0k|				m_vRPN[idx].Oprt.offset = i - idx;
  521|  35.0k|				break;
  522|       |
  523|   774k|			default:
  ------------------
  |  Branch (523:4): [True: 774k, False: 191k]
  ------------------
  524|   774k|				break;
  525|   966k|			}
  526|   966k|		}
  527|  1.92k|	}
_ZNK2mu14ParserByteCode15GetMaxStackSizeEv:
  531|  1.75k|	{
  532|  1.75k|		return m_iMaxStackSize + 1;
  533|  1.75k|	}
_ZN2mu14ParserByteCode5clearEv:
  545|   131k|	{
  546|   131k|		m_vRPN.clear();
  547|   131k|		m_iStackPos = 0;
  548|   131k|		m_iMaxStackSize = 0;
  549|   131k|	}

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

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

_ZN2mu17ParserTokenReaderC2EPNS_10ParserBaseE:
  122|  3.76k|		:m_pParser(a_pParent)
  123|  3.76k|		, m_strFormula()
  124|  3.76k|		, m_iPos(0)
  125|  3.76k|		, m_iSynFlags(0)
  126|  3.76k|		, m_bIgnoreUndefVar(false)
  127|  3.76k|		, m_pFunDef(nullptr)
  128|  3.76k|		, m_pPostOprtDef(nullptr)
  129|  3.76k|		, m_pInfixOprtDef(nullptr)
  130|  3.76k|		, m_pOprtDef(nullptr)
  131|  3.76k|		, m_pConstDef(nullptr)
  132|  3.76k|		, m_pStrVarDef(nullptr)
  133|  3.76k|		, m_pVarDef(nullptr)
  134|  3.76k|		, m_pFactory(nullptr)
  135|  3.76k|		, m_pFactoryData(nullptr)
  136|  3.76k|		, m_vIdentFun()
  137|  3.76k|		, m_UsedVar()
  138|  3.76k|		, m_fZero(0)
  139|  3.76k|		, m_bracketStack()
  140|  3.76k|		, m_lastTok()
  141|  3.76k|		, m_cArgSep(',')
  142|  3.76k|	{
  143|  3.76k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  3.76k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.76k]
  |  |  ------------------
  |  |   79|  3.76k|            {														\
  |  |   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.76k|		SetParent(m_pParser);
  145|  3.76k|	}
_ZN2mu17ParserTokenReader16SaveBeforeReturnERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  165|  2.23M|	{
  166|  2.23M|		m_lastTok = tok;
  167|  2.23M|		return m_lastTok;
  168|  2.23M|	}
_ZN2mu17ParserTokenReader11AddValIdentEPFiPKcPiPdE:
  172|  3.76k|	{
  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.76k|		m_vIdentFun.push_front(a_pCallback);
  180|  3.76k|	}
_ZNK2mu17ParserTokenReader6GetPosEv:
  196|    203|	{
  197|    203|		return m_iPos;
  198|    203|	}
_ZNK2mu17ParserTokenReader7GetExprEv:
  207|  9.47k|	{
  208|  9.47k|		return m_strFormula;
  209|  9.47k|	}
_ZN2mu17ParserTokenReader10SetFormulaERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  225|  3.74k|	{
  226|  3.74k|		m_strFormula = a_strFormula;
  227|  3.74k|		ReInit();
  228|  3.74k|	}
_ZN2mu17ParserTokenReader6ReInitEv:
  254|   135k|	{
  255|   135k|		m_iPos = 0;
  256|   135k|		m_iSynFlags = sfSTART_OF_LINE;
  257|   135k|		m_bracketStack = std::stack<int>();
  258|   135k|		m_UsedVar.clear();
  259|   135k|		m_lastTok = token_type();
  260|   135k|	}
_ZN2mu17ParserTokenReader13ReadNextTokenEv:
  265|  2.23M|	{
  266|  2.23M|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  2.23M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.23M]
  |  |  ------------------
  |  |   79|  2.23M|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  267|       |
  268|  2.23M|		const char_type* szExpr = m_strFormula.c_str();
  269|  2.23M|		token_type tok;
  270|       |
  271|       |		// Ignore all non printable characters when reading the expression
  272|  2.23M|		while (szExpr[m_iPos] > 0 && szExpr[m_iPos] <= 0x20)
  ------------------
  |  Branch (272:10): [True: 2.23M, False: 2.75k]
  |  Branch (272:32): [True: 5.74k, False: 2.23M]
  ------------------
  273|  5.74k|		{
  274|       |			// 14-31 are control characters. I don't want to have to deal with such strings at all!
  275|       |			// (see https://en.cppreference.com/w/cpp/string/byte/isprint)
  276|  5.74k|			if (szExpr[m_iPos] >= 14 && szExpr[m_iPos] <= 31)
  ------------------
  |  Branch (276:8): [True: 2.97k, False: 2.77k]
  |  Branch (276:32): [True: 11, False: 2.96k]
  ------------------
  277|     11|				Error(ecINVALID_CHARACTERS_FOUND, m_iPos);
  278|       |
  279|  5.74k|			++m_iPos;
  280|  5.74k|		}
  281|       |
  282|       |		// Check for end of formula
  283|  2.23M|		if (IsEOF(tok))
  ------------------
  |  Branch (283:7): [True: 1.95k, False: 2.23M]
  ------------------
  284|  1.95k|			return SaveBeforeReturn(tok);
  285|       |
  286|       |		// Check for user defined binary operator
  287|  2.23M|		if (IsOprt(tok))
  ------------------
  |  Branch (287:7): [True: 0, False: 2.23M]
  ------------------
  288|      0|			return SaveBeforeReturn(tok);
  289|       |
  290|       |		// Check for function token
  291|  2.23M|		if (IsFunTok(tok))
  ------------------
  |  Branch (291:7): [True: 13.6k, False: 2.21M]
  ------------------
  292|  13.6k|			return SaveBeforeReturn(tok);
  293|       |
  294|       |		// Check built in operators / tokens
  295|  2.21M|		if (IsBuiltIn(tok))
  ------------------
  |  Branch (295:7): [True: 856k, False: 1.36M]
  ------------------
  296|   856k|			return SaveBeforeReturn(tok);
  297|       |
  298|       |		// Check for function argument separators
  299|  1.36M|		if (IsArgSep(tok))
  ------------------
  |  Branch (299:7): [True: 460k, False: 900k]
  ------------------
  300|   460k|			return SaveBeforeReturn(tok);
  301|       |
  302|       |		// Check for values / constant tokens
  303|   900k|		if (IsValTok(tok))
  ------------------
  |  Branch (303:7): [True: 886k, False: 14.0k]
  ------------------
  304|   886k|			return SaveBeforeReturn(tok);
  305|       |
  306|       |		// Check for variable tokens
  307|  14.0k|		if (IsVarTok(tok))
  ------------------
  |  Branch (307:7): [True: 0, False: 14.0k]
  ------------------
  308|      0|			return SaveBeforeReturn(tok);
  309|       |
  310|       |		// Check for string variables
  311|  14.0k|		if (IsStrVarTok(tok))
  ------------------
  |  Branch (311:7): [True: 0, False: 14.0k]
  ------------------
  312|      0|			return SaveBeforeReturn(tok);
  313|       |
  314|       |		// Check for String tokens
  315|  14.0k|		if (IsString(tok))
  ------------------
  |  Branch (315:7): [True: 12.4k, False: 1.60k]
  ------------------
  316|  12.4k|			return SaveBeforeReturn(tok);
  317|       |
  318|       |		// Check for unary operators
  319|  1.60k|		if (IsInfixOpTok(tok))
  ------------------
  |  Branch (319:7): [True: 0, False: 1.60k]
  ------------------
  320|      0|			return SaveBeforeReturn(tok);
  321|       |
  322|       |		// Check for unary operators
  323|  1.60k|		if (IsPostOpTok(tok))
  ------------------
  |  Branch (323:7): [True: 0, False: 1.60k]
  ------------------
  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.60k|		if ((m_bIgnoreUndefVar || m_pFactory) && IsUndefVarTok(tok))
  ------------------
  |  Branch (333:8): [True: 1.03k, False: 570]
  |  Branch (333:29): [True: 0, False: 570]
  |  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.60k|		string_type strTok;
  341|  1.60k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  342|  1.60k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (342:7): [True: 360, False: 1.24k]
  ------------------
  343|    360|			Error(ecUNASSIGNABLE_TOKEN, m_iPos, strTok);
  344|       |
  345|  1.60k|		Error(ecUNASSIGNABLE_TOKEN, m_iPos, m_strFormula.substr(m_iPos));
  346|  1.60k|		return token_type(); // never reached
  347|  1.60k|	}
_ZN2mu17ParserTokenReader9SetParentEPNS_10ParserBaseE:
  351|  3.76k|	{
  352|  3.76k|		m_pParser = a_pParent;
  353|  3.76k|		m_pFunDef = &a_pParent->m_FunDef;
  354|  3.76k|		m_pOprtDef = &a_pParent->m_OprtDef;
  355|  3.76k|		m_pInfixOprtDef = &a_pParent->m_InfixOprtDef;
  356|  3.76k|		m_pPostOprtDef = &a_pParent->m_PostOprtDef;
  357|  3.76k|		m_pVarDef = &a_pParent->m_VarDef;
  358|  3.76k|		m_pStrVarDef = &a_pParent->m_StrVarDef;
  359|  3.76k|		m_pConstDef = &a_pParent->m_ConstDef;
  360|  3.76k|	}
_ZNK2mu17ParserTokenReader12ExtractTokenEPKcRNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEm:
  372|  4.99M|	{
  373|  4.99M|		auto iEnd = m_strFormula.find_first_not_of(a_szCharSet, a_iPos);
  374|       |
  375|  4.99M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (375:7): [True: 0, False: 4.99M]
  ------------------
  376|      0|			iEnd = m_strFormula.length();
  377|       |
  378|       |		// Assign token string if there was something found
  379|  4.99M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (379:7): [True: 1.83M, False: 3.15M]
  ------------------
  380|  1.83M|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  381|       |
  382|  4.99M|		return static_cast<int>(iEnd);
  383|  4.99M|	}
_ZNK2mu17ParserTokenReader20ExtractOperatorTokenERNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEm:
  394|  2.23M|	{
  395|       |		// Changed as per Issue 6: https://code.google.com/p/muparser/issues/detail?id=6
  396|  2.23M|		auto iEnd = m_strFormula.find_first_not_of(m_pParser->ValidOprtChars(), a_iPos);
  397|  2.23M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (397:7): [True: 0, False: 2.23M]
  ------------------
  398|      0|			iEnd = m_strFormula.length();
  399|       |
  400|       |		// Assign token string if there was something found
  401|  2.23M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (401:7): [True: 422k, False: 1.80M]
  ------------------
  402|   422k|		{
  403|   422k|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  404|   422k|			return static_cast<int>(iEnd);
  405|   422k|		}
  406|  1.80M|		else
  407|  1.80M|		{
  408|       |			// There is still the chance of having to deal with an operator consisting exclusively
  409|       |			// of alphabetic characters.
  410|  1.80M|			return ExtractToken(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), a_sTok, (std::size_t)a_iPos);
  ------------------
  |  |   69|  1.80M|		#define _T(x) x
  ------------------
  411|  1.80M|		}
  412|  2.23M|	}
_ZN2mu17ParserTokenReader9IsBuiltInERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  420|  2.21M|	{
  421|  2.21M|		const char_type** const pOprtDef = m_pParser->GetOprtDef(),
  422|  2.21M|			* const szFormula = m_strFormula.c_str();
  423|       |
  424|       |		// Compare token with function and operator strings
  425|       |		// check string for operator/function
  426|  37.9M|		for (int i = 0; pOprtDef[i]; i++)
  ------------------
  |  Branch (426:19): [True: 36.5M, False: 1.35M]
  ------------------
  427|  36.5M|		{
  428|  36.5M|			std::size_t len(std::char_traits<char_type>::length(pOprtDef[i]));
  429|  36.5M|			if (string_type(pOprtDef[i]) == string_type(szFormula + m_iPos, szFormula + m_iPos + len))
  ------------------
  |  Branch (429:8): [True: 857k, False: 35.7M]
  ------------------
  430|   857k|			{
  431|   857k|				switch (i)
  432|   857k|				{
  433|  4.68k|				case cmLAND:
  ------------------
  |  Branch (433:5): [True: 4.68k, False: 852k]
  ------------------
  434|  7.70k|				case cmLOR:
  ------------------
  |  Branch (434:5): [True: 3.02k, False: 854k]
  ------------------
  435|  11.6k|				case cmLT:
  ------------------
  |  Branch (435:5): [True: 3.99k, False: 853k]
  ------------------
  436|  14.3k|				case cmGT:
  ------------------
  |  Branch (436:5): [True: 2.62k, False: 854k]
  ------------------
  437|  15.2k|				case cmLE:
  ------------------
  |  Branch (437:5): [True: 942, False: 856k]
  ------------------
  438|  16.3k|				case cmGE:
  ------------------
  |  Branch (438:5): [True: 1.04k, False: 855k]
  ------------------
  439|  17.9k|				case cmNEQ:
  ------------------
  |  Branch (439:5): [True: 1.64k, False: 855k]
  ------------------
  440|  19.9k|				case cmEQ:
  ------------------
  |  Branch (440:5): [True: 1.96k, False: 855k]
  ------------------
  441|  48.0k|				case cmADD:
  ------------------
  |  Branch (441:5): [True: 28.1k, False: 828k]
  ------------------
  442|  85.1k|				case cmSUB:
  ------------------
  |  Branch (442:5): [True: 37.1k, False: 819k]
  ------------------
  443|  89.7k|				case cmMUL:
  ------------------
  |  Branch (443:5): [True: 4.61k, False: 852k]
  ------------------
  444|  95.6k|				case cmDIV:
  ------------------
  |  Branch (444:5): [True: 5.89k, False: 851k]
  ------------------
  445|   271k|				case cmPOW:
  ------------------
  |  Branch (445:5): [True: 175k, False: 681k]
  ------------------
  446|   271k|				case cmASSIGN:
  ------------------
  |  Branch (446:5): [True: 12, False: 857k]
  ------------------
  447|       |					// The assignment operator need special treatment
  448|   271k|					if (i == cmASSIGN && m_iSynFlags & noASSIGN)
  ------------------
  |  Branch (448:10): [True: 12, False: 271k]
  |  Branch (448:27): [True: 11, False: 1]
  ------------------
  449|     11|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  450|       |
  451|   271k|					if (!m_pParser->HasBuiltInOprt()) continue;
  ------------------
  |  Branch (451:10): [True: 0, False: 271k]
  ------------------
  452|   271k|					if (m_iSynFlags & noOPT)
  ------------------
  |  Branch (452:10): [True: 50.9k, False: 220k]
  ------------------
  453|  50.9k|					{
  454|       |						// Maybe its an infix operator not an operator
  455|       |						// Both operator types can share characters in 
  456|       |						// their identifiers
  457|  50.9k|						if (IsInfixOpTok(a_Tok))
  ------------------
  |  Branch (457:11): [True: 50.7k, False: 120]
  ------------------
  458|  50.7k|							return true;
  459|       |
  460|    120|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  461|    120|					}
  462|       |
  463|   220k|					m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE | noEND;
  464|   220k|					break;
  465|       |
  466|   247k|				case cmBO:
  ------------------
  |  Branch (466:5): [True: 247k, False: 609k]
  ------------------
  467|   247k|					if (m_iSynFlags & noBO)
  ------------------
  |  Branch (467:10): [True: 9, False: 247k]
  ------------------
  468|      9|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  469|       |
  470|   247k|					if (m_lastTok.GetCode() == cmFUNC)
  ------------------
  |  Branch (470:10): [True: 13.6k, False: 233k]
  ------------------
  471|  13.6k|						m_iSynFlags = noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  472|   233k|					else
  473|   233k|						m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  474|       |
  475|   247k|					if ((int)m_bracketStack.size() >= MaxNestingDepth)
  ------------------
  |  Branch (475:10): [True: 12, False: 247k]
  ------------------
  476|     12|						Error(ecNESTING_LIMIT, m_iPos, pOprtDef[i]);
  477|       |
  478|   247k|					m_bracketStack.push(cmBO);
  479|   247k|					break;
  480|       |
  481|   120k|				case cmBC:
  ------------------
  |  Branch (481:5): [True: 120k, False: 736k]
  ------------------
  482|   120k|					if (m_iSynFlags & noBC)
  ------------------
  |  Branch (482:10): [True: 5, False: 120k]
  ------------------
  483|      5|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  484|       |
  485|   120k|					m_iSynFlags = noBO | noVAR | noVAL | noFUN | noINFIXOP | noSTR | noASSIGN;
  486|       |
  487|   120k|					if (!m_bracketStack.empty())
  ------------------
  |  Branch (487:10): [True: 120k, False: 17]
  ------------------
  488|   120k|						m_bracketStack.pop();
  489|     17|					else
  490|     17|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  491|   120k|					break;
  492|       |
  493|  83.3k|				case cmELSE:
  ------------------
  |  Branch (493:5): [True: 83.3k, False: 773k]
  ------------------
  494|  83.3k|					if (m_iSynFlags & noELSE)
  ------------------
  |  Branch (494:10): [True: 7, False: 83.3k]
  ------------------
  495|      7|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  496|       |
  497|  83.3k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  498|  83.3k|					break;
  499|       |
  500|   134k|				case cmIF:
  ------------------
  |  Branch (500:5): [True: 134k, False: 722k]
  ------------------
  501|   134k|					if (m_iSynFlags & noIF)
  ------------------
  |  Branch (501:10): [True: 21, False: 134k]
  ------------------
  502|     21|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  503|       |
  504|   134k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  505|   134k|					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: 857k]
  ------------------
  508|      0|					Error(ecINTERNAL_ERROR);
  509|   857k|				} // switch operator id
  510|       |
  511|   806k|				m_iPos += (int)len;
  512|   806k|				a_Tok.Set((ECmdCode)i, pOprtDef[i]);
  513|   806k|				return true;
  514|   857k|			} // if operator string found
  515|  36.5M|		} // end of for all operator strings
  516|       |
  517|  1.35M|		return false;
  518|  2.21M|	}
_ZN2mu17ParserTokenReader8IsArgSepERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  522|  1.35M|	{
  523|  1.35M|		const char_type* szFormula = m_strFormula.c_str();
  524|       |
  525|  1.35M|		if (szFormula[m_iPos] == m_cArgSep)
  ------------------
  |  Branch (525:7): [True: 460k, False: 899k]
  ------------------
  526|   460k|		{
  527|       |			// copy the separator into null terminated string
  528|   460k|			char_type szSep[2];
  529|   460k|			szSep[0] = m_cArgSep;
  530|   460k|			szSep[1] = 0;
  531|       |
  532|   460k|			if (m_iSynFlags & noARG_SEP)
  ------------------
  |  Branch (532:8): [True: 5, False: 460k]
  ------------------
  533|      5|				Error(ecUNEXPECTED_ARG_SEP, m_iPos, szSep);
  534|       |
  535|   460k|			m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN;
  536|   460k|			m_iPos++;
  537|   460k|			a_Tok.Set(cmARG_SEP, szSep);
  538|   460k|			return true;
  539|   460k|		}
  540|       |
  541|   899k|		return false;
  542|  1.35M|	}
_ZN2mu17ParserTokenReader5IsEOFERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  553|  2.23M|	{
  554|  2.23M|		const char_type* szFormula = m_strFormula.c_str();
  555|       |
  556|       |		// check for EOF
  557|  2.23M|		if (!szFormula[m_iPos] /*|| szFormula[m_iPos] == '\n'*/)
  ------------------
  |  Branch (557:7): [True: 2.64k, False: 2.23M]
  ------------------
  558|  2.64k|		{
  559|  2.64k|			if (m_iSynFlags & noEND)
  ------------------
  |  Branch (559:8): [True: 561, False: 2.08k]
  ------------------
  560|    561|				Error(ecUNEXPECTED_EOF, m_iPos);
  561|       |
  562|  2.64k|			if (!m_bracketStack.empty())
  ------------------
  |  Branch (562:8): [True: 124, False: 2.52k]
  ------------------
  563|    124|				Error(ecMISSING_PARENS, m_iPos, _T(")"));
  ------------------
  |  |   69|    124|		#define _T(x) x
  ------------------
  564|       |
  565|  2.64k|			m_iSynFlags = 0;
  566|  2.64k|			a_Tok.Set(cmEND);
  567|  2.64k|			return true;
  568|  2.64k|		}
  569|       |
  570|  2.23M|		return false;
  571|  2.23M|	}
_ZN2mu17ParserTokenReader12IsInfixOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  578|  51.4k|	{
  579|  51.4k|		string_type sTok;
  580|  51.4k|		auto iEnd = ExtractToken(m_pParser->ValidInfixOprtChars(), sTok, (std::size_t)m_iPos);
  581|  51.4k|		if (iEnd == m_iPos)
  ------------------
  |  Branch (581:7): [True: 368, False: 51.1k]
  ------------------
  582|    368|			return false;
  583|       |
  584|       |		// iterate over all postfix operator strings
  585|  51.1k|		funmap_type::const_reverse_iterator it = m_pInfixOprtDef->rbegin();
  586|  71.3k|		for (; it != m_pInfixOprtDef->rend(); ++it)
  ------------------
  |  Branch (586:10): [True: 71.0k, False: 292]
  ------------------
  587|  71.0k|		{
  588|  71.0k|			if (sTok.find(it->first) != 0)
  ------------------
  |  Branch (588:8): [True: 20.1k, False: 50.8k]
  ------------------
  589|  20.1k|				continue;
  590|       |
  591|  50.8k|			a_Tok.Set(it->second, it->first);
  592|  50.8k|			m_iPos += (int)it->first.length();
  593|       |
  594|  50.8k|			if (m_iSynFlags & noINFIXOP)
  ------------------
  |  Branch (594:8): [True: 30, False: 50.7k]
  ------------------
  595|     30|				Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString());
  596|       |
  597|  50.8k|			m_iSynFlags |= noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN | noARG_SEP;
  598|  50.8k|			return true;
  599|  71.0k|		}
  600|       |
  601|    292|		return false;
  602|  51.1k|	}
_ZN2mu17ParserTokenReader8IsFunTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  612|  2.23M|	{
  613|  2.23M|		string_type strTok;
  614|  2.23M|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  615|  2.23M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (615:7): [True: 1.33M, False: 899k]
  ------------------
  616|  1.33M|			return false;
  617|       |
  618|   899k|		funmap_type::const_iterator item = m_pFunDef->find(strTok);
  619|   899k|		if (item == m_pFunDef->end())
  ------------------
  |  Branch (619:7): [True: 885k, False: 13.6k]
  ------------------
  620|   885k|			return false;
  621|       |
  622|       |		// Check if the next sign is an opening bracket
  623|  13.6k|		const char_type* szFormula = m_strFormula.c_str();
  624|  13.6k|		if (szFormula[iEnd] != '(')
  ------------------
  |  Branch (624:7): [True: 20, False: 13.6k]
  ------------------
  625|     20|			return false;
  626|       |
  627|       |		// fix for #164: https://github.com/beltoforion/muparser/issues/164
  628|  13.6k|		if (m_lastTok.GetFuncAddr() == generic_callable_type{ (erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr })
  ------------------
  |  Branch (628:7): [True: 4, False: 13.6k]
  ------------------
  629|      4|		{
  630|      4|			Error(ecUNARY_PLUS_IN_FRONT_OF_FUNCTION, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  631|      4|		}
  632|       |
  633|  13.6k|		a_Tok.Set(item->second, strTok);
  634|       |
  635|  13.6k|		m_iPos = (int)iEnd;
  636|  13.6k|		if (m_iSynFlags & noFUN)
  ------------------
  |  Branch (636:7): [True: 3, False: 13.6k]
  ------------------
  637|      3|			Error(ecUNEXPECTED_FUN, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  638|       |
  639|  13.6k|		m_iSynFlags = noANY ^ noBO;
  640|  13.6k|		return true;
  641|  13.6k|	}
_ZN2mu17ParserTokenReader6IsOprtERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  649|  2.23M|	{
  650|  2.23M|		const char_type* const szExpr = m_strFormula.c_str();
  651|  2.23M|		string_type strTok;
  652|       |
  653|  2.23M|		auto iEnd = ExtractOperatorToken(strTok, (std::size_t)m_iPos);
  654|  2.23M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (654:7): [True: 1.80M, False: 422k]
  ------------------
  655|  1.80M|			return false;
  656|       |
  657|       |		// Check if the operator is a built in operator, if so ignore it here
  658|   422k|		const char_type** const pOprtDef = m_pParser->GetOprtDef();
  659|  5.59M|		for (int i = 0; m_pParser->HasBuiltInOprt() && pOprtDef[i]; ++i)
  ------------------
  |  Branch (659:19): [True: 5.59M, False: 0]
  |  Branch (659:50): [True: 5.54M, False: 55.6k]
  ------------------
  660|  5.54M|		{
  661|  5.54M|			if (string_type(pOprtDef[i]) == strTok)
  ------------------
  |  Branch (661:8): [True: 366k, False: 5.17M]
  ------------------
  662|   366k|				return false;
  663|  5.54M|		}
  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|  55.6k|		funmap_type::const_reverse_iterator it = m_pOprtDef->rbegin();
  672|  55.6k|		for (; it != m_pOprtDef->rend(); ++it)
  ------------------
  |  Branch (672:10): [True: 0, False: 55.6k]
  ------------------
  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|  55.6k|		return false;
  704|  55.6k|	}
_ZN2mu17ParserTokenReader11IsPostOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  709|    570|	{
  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|    570|		if (m_iSynFlags & noPOSTOP)
  ------------------
  |  Branch (717:7): [True: 364, False: 206]
  ------------------
  718|    364|			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|    206|		string_type sTok;
  731|    206|		auto iEnd = ExtractToken(m_pParser->ValidOprtChars(), sTok, (std::size_t)m_iPos);
  732|    206|		if (iEnd == m_iPos)
  ------------------
  |  Branch (732:7): [True: 49, False: 157]
  ------------------
  733|     49|			return false;
  734|       |
  735|       |		// iterate over all postfix operator strings
  736|    157|		funmap_type::const_reverse_iterator it = m_pPostOprtDef->rbegin();
  737|    157|		for (; it != m_pPostOprtDef->rend(); ++it)
  ------------------
  |  Branch (737:10): [True: 0, False: 157]
  ------------------
  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|    157|		return false;
  750|    157|	}
_ZN2mu17ParserTokenReader8IsValTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  761|   899k|	{
  762|   899k|		MUP_ASSERT(m_pConstDef != nullptr);
  ------------------
  |  |   78|   899k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 899k]
  |  |  ------------------
  |  |   79|   899k|            {														\
  |  |   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|   899k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|   899k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 899k]
  |  |  ------------------
  |  |   79|   899k|            {														\
  |  |   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|   899k|		string_type strTok;
  766|   899k|		value_type fVal(0);
  767|       |
  768|       |		// 2.) Check for user defined constant
  769|       |		// Read everything that could be a constant name
  770|   899k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  771|   899k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (771:7): [True: 885k, False: 13.5k]
  ------------------
  772|   885k|		{
  773|   885k|			valmap_type::const_iterator item = m_pConstDef->find(strTok);
  774|   885k|			if (item != m_pConstDef->end())
  ------------------
  |  Branch (774:8): [True: 2.05k, False: 883k]
  ------------------
  775|  2.05k|			{
  776|  2.05k|				m_iPos = iEnd;
  777|  2.05k|				a_Tok.SetVal(item->second, strTok);
  778|       |
  779|  2.05k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (779:9): [True: 2, False: 2.05k]
  ------------------
  780|      2|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  781|       |
  782|  2.05k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  783|  2.05k|				return true;
  784|  2.05k|			}
  785|   885k|		}
  786|       |
  787|       |		// 3.call the value recognition functions provided by the user
  788|       |		// Call user defined value recognition functions
  789|   897k|		std::list<identfun_type>::const_iterator item = m_vIdentFun.begin();
  790|   910k|		for (item = m_vIdentFun.begin(); item != m_vIdentFun.end(); ++item)
  ------------------
  |  Branch (790:36): [True: 897k, False: 13.1k]
  ------------------
  791|   897k|		{
  792|   897k|			int iStart = m_iPos;
  793|   897k|			if ((*item)(m_strFormula.c_str() + m_iPos, &m_iPos, &fVal) == 1)
  ------------------
  |  Branch (793:8): [True: 884k, False: 13.1k]
  ------------------
  794|   884k|			{
  795|       |				// 2013-11-27 Issue 2:  https://code.google.com/p/muparser/issues/detail?id=2
  796|   884k|				strTok.assign(m_strFormula.c_str(), iStart, (std::size_t)m_iPos - iStart);
  797|       |
  798|   884k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (798:9): [True: 27, False: 884k]
  ------------------
  799|     27|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  800|       |
  801|   884k|				a_Tok.SetVal(fVal, strTok);
  802|   884k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  803|   884k|				return true;
  804|   884k|			}
  805|   897k|		}
  806|       |
  807|  13.1k|		return false;
  808|   897k|	}
_ZN2mu17ParserTokenReader8IsVarTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  816|  13.1k|	{
  817|  13.1k|		if (m_pVarDef->empty())
  ------------------
  |  Branch (817:7): [True: 13.1k, False: 0]
  ------------------
  818|  13.1k|			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|  13.1k|	{
  848|  13.1k|		if (!m_pStrVarDef || m_pStrVarDef->empty())
  ------------------
  |  Branch (848:7): [True: 0, False: 13.1k]
  |  Branch (848:24): [True: 13.1k, False: 0]
  ------------------
  849|  13.1k|			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|  13.1k|	{
  937|  13.1k|		if (m_strFormula[m_iPos] != '"')
  ------------------
  |  Branch (937:7): [True: 570, False: 12.5k]
  ------------------
  938|    570|			return false;
  939|       |
  940|  12.5k|		string_type strBuf(&m_strFormula[(std::size_t)m_iPos + 1]);
  941|  12.5k|		std::size_t iEnd(0), iSkip(0);
  942|       |
  943|       |		// parser over escaped '\"' end replace them with '"'
  944|  13.1k|		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|  12.5k|		#define _T(x) x
  ------------------
              		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|    615|		#define _T(x) x
  ------------------
  |  Branch (944:38): [True: 13.1k, False: 57]
  ------------------
  945|  13.1k|		{
  946|  13.1k|			if (iEnd==0 || strBuf[iEnd - 1] != '\\') 
  ------------------
  |  Branch (946:8): [True: 10.5k, False: 2.56k]
  |  Branch (946:19): [True: 1.95k, False: 615]
  ------------------
  947|  12.5k|				break;
  948|       |
  949|    615|			strBuf.replace(iEnd - 1, 2, _T("\""));
  ------------------
  |  |   69|    615|		#define _T(x) x
  ------------------
  950|    615|			iSkip++;
  951|    615|		}
  952|       |
  953|  12.5k|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (953:7): [True: 57, False: 12.5k]
  ------------------
  954|     57|			Error(ecUNTERMINATED_STRING, m_iPos, _T("\""));
  ------------------
  |  |   69|     57|		#define _T(x) x
  ------------------
  955|       |
  956|  12.5k|		string_type strTok(strBuf.begin(), strBuf.begin() + iEnd);
  957|       |
  958|  12.5k|		if (m_iSynFlags & noSTR)
  ------------------
  |  Branch (958:7): [True: 39, False: 12.5k]
  ------------------
  959|     39|			Error(ecUNEXPECTED_STR, m_iPos, strTok);
  960|       |
  961|  12.5k|		m_pParser->m_vStringBuf.push_back(strTok); // Store string in internal buffer
  962|  12.5k|		a_Tok.SetString(strTok, m_pParser->m_vStringBuf.size()-1);
  963|       |
  964|  12.5k|		m_iPos += (int)strTok.length() + 2 + (int)iSkip;  // +2 for quotes; +iSkip for escape characters 
  965|  12.5k|		m_iSynFlags = noANY ^ (noARG_SEP | noBC | noOPT | noEND);
  966|       |
  967|  12.5k|		return true;
  968|  13.1k|	}
_ZNK2mu17ParserTokenReader5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
  981|  1.60k|	{
  982|  1.60k|		m_pParser->Error(a_iErrc, a_iPos, a_sTok);
  983|  1.60k|	}
_ZNK2mu17ParserTokenReader9GetArgSepEv:
  993|  3.76k|	{
  994|  3.76k|		return m_cArgSep;
  995|  3.76k|	}

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

