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

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

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

_ZN2mu8TypeInfoIdE9IsIntegerEv:
   52|  3.90k|		static bool IsInteger() { return false; }
_ZN2mu8MathImplIdE3SinEd:
  118|    207|		static T Sin(T v) { return sin(v); }
_ZN2mu8MathImplIdE3CosEd:
  119|    196|		static T Cos(T v) { return cos(v); }
_ZN2mu8MathImplIdE3TanEd:
  120|    216|		static T Tan(T v) { return tan(v); }
_ZN2mu8MathImplIdE3CotEd:
  121|    197|		static T Cot(T v) { return 1.0 / tan(v); }
_ZN2mu8MathImplIdE4ASinEd:
  122|    198|		static T ASin(T v) { return asin(v); }
_ZN2mu8MathImplIdE4ACosEd:
  123|    198|		static T ACos(T v) { return acos(v); }
_ZN2mu8MathImplIdE4ATanEd:
  124|    195|		static T ATan(T v) { return atan(v); }
_ZN2mu8MathImplIdE5ATan2Edd:
  125|    419|		static T ATan2(T v1, T v2) { return atan2(v1, v2); }
_ZN2mu8MathImplIdE4SinhEd:
  126|    196|		static T Sinh(T v) { return sinh(v); }
_ZN2mu8MathImplIdE4CoshEd:
  127|    196|		static T Cosh(T v) { return cosh(v); }
_ZN2mu8MathImplIdE4TanhEd:
  128|    195|		static T Tanh(T v) { return tanh(v); }
_ZN2mu8MathImplIdE4CothEd:
  129|    195|		static T Coth(T v) { return 1.0 / tanh(v); }
_ZN2mu8MathImplIdE5ASinhEd:
  130|    197|		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|    211|		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|    255|		static T Log10(T v) { return log10(v); }         // Logarithm base 10
_ZN2mu8MathImplIdE3LogEd:
  133|    439|		static T Log(T v) { return log(v); }
_ZN2mu8MathImplIdE3ExpEd:
  136|    195|		static T Exp(T v) { return exp(v); }
_ZN2mu8MathImplIdE4SqrtEd:
  138|    195|		static T Sqrt(T v) { return sqrt(v); }
_ZN2mu8MathImplIdE4SignEd:
  140|    429|		static T Sign(T v) { return (T)((v < 0) ? -1 : (v > 0) ? 1 : 0); }
  ------------------
  |  Branch (140:35): [True: 210, False: 219]
  |  Branch (140:50): [True: 195, False: 24]
  ------------------
_ZN2mu8MathImplIdE4RintEd:
  139|    224|		static T Rint(T v) { return floor(v + (T)0.5); }
_ZN2mu8MathImplIdE3AbsEd:
  137|    389|		static T Abs(T v) { return (v >= 0) ? v : -v; }
  ------------------
  |  Branch (137:30): [True: 195, False: 194]
  ------------------
_ZN2mu8MathImplIdE3SumEPKdi:
  155|    803|		{
  156|    803|			if (!a_iArgc)
  ------------------
  |  Branch (156:8): [True: 0, False: 803]
  ------------------
  157|      0|				throw ParserError(_T("too few arguments for function sum."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  158|       |
  159|    803|			T fRes = 0;
  160|   118k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (160:20): [True: 117k, False: 803]
  ------------------
  161|    803|			return fRes;
  162|    803|		}
_ZN2mu8MathImplIdE3AvgEPKdi:
  165|    722|		{
  166|    722|			if (!a_iArgc)
  ------------------
  |  Branch (166:8): [True: 0, False: 722]
  ------------------
  167|      0|				throw ParserError(_T("too few arguments for function avg."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  168|       |
  169|    722|			T fRes = 0;
  170|  57.6k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (170:20): [True: 56.9k, False: 722]
  ------------------
  171|    722|			return fRes / (T)a_iArgc;
  172|    722|		}
_ZN2mu8MathImplIdE3MinEPKdi:
  175|  1.13k|		{
  176|  1.13k|			if (!a_iArgc)
  ------------------
  |  Branch (176:8): [True: 0, False: 1.13k]
  ------------------
  177|      0|				throw ParserError(_T("too few arguments for function min."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  178|       |
  179|  1.13k|			T fRes = a_afArg[0];
  180|  83.4k|			for (int i = 0; i < a_iArgc; ++i)
  ------------------
  |  Branch (180:20): [True: 82.3k, False: 1.13k]
  ------------------
  181|  82.3k|				fRes = std::min(fRes, a_afArg[i]);
  182|       |
  183|  1.13k|			return fRes;
  184|  1.13k|		}
_ZN2mu8MathImplIdE3MaxEPKdi:
  187|  1.53k|		{
  188|  1.53k|			if (!a_iArgc)
  ------------------
  |  Branch (188:8): [True: 0, False: 1.53k]
  ------------------
  189|      0|				throw ParserError(_T("too few arguments for function max."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  190|       |
  191|  1.53k|			T fRes = a_afArg[0];
  192|  88.6k|			for (int i = 0; i < a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]);
  ------------------
  |  Branch (192:20): [True: 87.1k, False: 1.53k]
  ------------------
  193|       |
  194|  1.53k|			return fRes;
  195|  1.53k|		}
_ZN2mu8MathImplIdE3RndEv:
  143|    947|		{
  144|    947|			static std::random_device rd;  
  145|    947|			static std::mt19937 gen(rd()); 
  146|    947|			static std::uniform_real_distribution<T> dis(0.0, 1.0); // Range [0, 1)
  147|       |
  148|    947|			return dis(gen);
  149|    947|		}
_ZN2mu8MathImplIdE10UnaryMinusEd:
  151|  9.94k|		static T UnaryMinus(T v) { return -v; }
_ZN2mu8MathImplIdE3PowEdd:
  141|   133k|		static T Pow(T v1, T v2) { return std::pow(v1, v2); }

_ZNK2mu21generic_callable_type12call_multfunEPKdi:
  104|  4.18k|		{
  105|  4.18k|			if (_pUserData == nullptr) {
  ------------------
  |  Branch (105:8): [True: 4.18k, False: 0]
  ------------------
  106|  4.18k|				auto multfun_typed_ptr = reinterpret_cast<multfun_type>(_pRawFun);
  107|  4.18k|				return (*multfun_typed_ptr)(a_afArg, a_iArgc);
  108|  4.18k|			} 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|  4.18k|		}
_ZNK2mu21generic_callable_typeeqES0_:
  131|  35.7k|		{
  132|  35.7k|			return _pRawFun == other._pRawFun && _pUserData == other._pUserData; 
  ------------------
  |  Branch (132:11): [True: 3.14k, False: 32.6k]
  |  Branch (132:41): [True: 3.14k, False: 0]
  ------------------
  133|  35.7k|		}
_ZNK2mu21generic_callable_typeeqEDn:
  141|  29.0k|		{
  142|  29.0k|			return _pRawFun == nullptr; 
  143|  29.0k|		}
_ZNK2mu21generic_callable_typeneEDn:
  146|  46.2k|		{
  147|  46.2k|			return _pRawFun != nullptr; 
  148|  46.2k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE7GetCodeEv:
  383|  10.9M|		{
  384|  10.9M|			if (m_pCallback.get())
  ------------------
  |  Branch (384:8): [True: 518k, False: 10.3M]
  ------------------
  385|   518k|			{
  386|   518k|				return m_pCallback->GetCode();
  387|   518k|			}
  388|  10.3M|			else
  389|  10.3M|			{
  390|  10.3M|				return m_iCode;
  391|  10.3M|			}
  392|  10.9M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6GetPriEv:
  409|  32.7k|		{
  410|  32.7k|			if (!m_pCallback.get())
  ------------------
  |  Branch (410:8): [True: 0, False: 32.7k]
  ------------------
  411|      0|				throw ParserError(ecINTERNAL_ERROR);
  412|       |
  413|  32.7k|			if (m_pCallback->GetCode() != cmOPRT_BIN && m_pCallback->GetCode() != cmOPRT_INFIX)
  ------------------
  |  Branch (413:8): [True: 32.7k, False: 0]
  |  Branch (413:48): [True: 0, False: 32.7k]
  ------------------
  414|      0|				throw ParserError(ecINTERNAL_ERROR);
  415|       |
  416|  32.7k|			return m_pCallback->GetPri();
  417|  32.7k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetAsStringEv:
  514|    190|		{
  515|    190|			return m_strTok;
  516|    190|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2Ev:
  192|  2.69M|			:m_iCode(cmUNKNOWN)
  193|  2.69M|			, m_iType(tpVOID)
  194|  2.69M|			, m_pTok(0)
  195|  2.69M|			, m_iIdx(-1)
  196|  2.69M|			, m_strTok()
  197|  2.69M|			, m_strVal()
  198|  2.69M|			, m_fVal(0)
  199|  2.69M|			, m_pCallback()
  200|  2.69M|		{}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetFuncAddrEv:
  444|   117k|		{
  445|   117k|			return (m_pCallback.get())
  ------------------
  |  Branch (445:11): [True: 99.7k, False: 17.7k]
  ------------------
  446|   117k|				? generic_callable_type{(erased_fun_type)m_pCallback->GetAddr(),
  447|  99.7k|				                        m_pCallback->GetUserData()}
  448|   117k|				: generic_callable_type{};
  449|   117k|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetArgCountEv:
  487|   116k|		{
  488|   116k|			MUP_ASSERT(m_pCallback.get());
  ------------------
  |  |   78|   116k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 116k]
  |  |  ------------------
  |  |   79|   116k|            {														\
  |  |   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|   116k|			if (!m_pCallback->IsValid())
  ------------------
  |  Branch (490:8): [True: 0, False: 116k]
  ------------------
  491|      0|				throw ParserError(ecINTERNAL_ERROR);
  492|       |
  493|   116k|			return m_pCallback->GetArgc();
  494|   116k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6SetValEdRKS7_:
  297|  1.13M|		{
  298|  1.13M|			m_iCode = cmVAL;
  299|  1.13M|			m_iType = tpDBL;
  300|  1.13M|			m_fVal = a_fVal;
  301|  1.13M|			m_strTok = a_strTok;
  302|  1.13M|			m_iIdx = -1;
  303|       |
  304|  1.13M|			m_pTok = 0;
  305|  1.13M|			m_pCallback.reset(0);
  306|       |
  307|  1.13M|			return *this;
  308|  1.13M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6GetValEv:
  458|   970k|		{
  459|   970k|			switch (m_iCode)
  460|   970k|			{
  461|   970k|			case cmVAL:  return m_fVal;
  ------------------
  |  Branch (461:4): [True: 970k, False: 3]
  ------------------
  462|      0|			case cmVAR:  return *((TBase*)m_pTok);
  ------------------
  |  Branch (462:4): [True: 0, False: 970k]
  ------------------
  463|      3|			default:     throw ParserError(ecVAL_EXPECTED);
  ------------------
  |  Branch (463:4): [True: 3, False: 970k]
  ------------------
  464|   970k|			}
  465|   970k|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2ERKS8_:
  211|  5.91M|		{
  212|  5.91M|			Assign(a_Tok);
  213|  5.91M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE6AssignERKS8_:
  234|  13.0M|		{
  235|  13.0M|			m_iCode = a_Tok.m_iCode;
  236|  13.0M|			m_pTok = a_Tok.m_pTok;
  237|  13.0M|			m_strTok = a_Tok.m_strTok;
  238|  13.0M|			m_iIdx = a_Tok.m_iIdx;
  239|  13.0M|			m_strVal = a_Tok.m_strVal;
  240|  13.0M|			m_iType = a_Tok.m_iType;
  241|  13.0M|			m_fVal = a_Tok.m_fVal;
  242|       |			// create new callback object if a_Tok has one 
  243|  13.0M|			m_pCallback.reset(a_Tok.m_pCallback.get() ? a_Tok.m_pCallback->Clone() : 0);
  ------------------
  |  Branch (243:22): [True: 314k, False: 12.7M]
  ------------------
  244|  13.0M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE7GetTypeEv:
  396|  1.08M|		{
  397|  1.08M|			if (m_pCallback.get())
  ------------------
  |  Branch (397:8): [True: 58.1k, False: 1.03M]
  ------------------
  398|  58.1k|			{
  399|  58.1k|				return m_pCallback->GetType();
  400|  58.1k|			}
  401|  1.03M|			else
  402|  1.03M|			{
  403|  1.03M|				return m_iType;
  404|  1.03M|			}
  405|  1.08M|		}
_ZNK2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE13IsOptimizableEv:
  500|  29.0k|		{
  501|  29.0k|			return m_pCallback->IsValid() && m_pCallback->IsOptimizable();
  ------------------
  |  Branch (501:11): [True: 29.0k, False: 0]
  |  Branch (501:37): [True: 27.3k, False: 1.71k]
  ------------------
  502|  29.0k|		}
_ZNK2mu21generic_callable_type8call_funILm0EJEEEdDpOT0_:
   76|    947|		{
   77|    947|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|    947|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 947, False: 0]
  ------------------
   79|    947|			{
   80|    947|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|    947|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|    947|			} 
   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|    947|		}
_ZNK2mu21generic_callable_type8call_funILm1EJRdEEEdDpOT0_:
   76|  15.0k|		{
   77|  15.0k|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|  15.0k|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 15.0k, False: 0]
  ------------------
   79|  15.0k|			{
   80|  15.0k|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|  15.0k|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|  15.0k|			} 
   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.0k|		}
_ZNK2mu21generic_callable_type8call_funILm2EJRdS2_EEEdDpOT0_:
   76|    419|		{
   77|    419|			static_assert(NbParams == sizeof...(Args), "mismatch between NbParams and Args");
   78|    419|			if (_pUserData == nullptr) 
  ------------------
  |  Branch (78:8): [True: 419, False: 0]
  ------------------
   79|    419|			{
   80|    419|				auto fun_typed_ptr = reinterpret_cast<typename TplCallType<NbParams>::fun_type>(_pRawFun);
   81|    419|				return (*fun_typed_ptr)(std::forward<Args>(args)...);
   82|    419|			} 
   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|    419|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEaSERKS8_:
  223|  7.11M|		{
  224|  7.11M|			Assign(a_Tok);
  225|  7.11M|			return *this;
  226|  7.11M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE3SetENS_8ECmdCodeERKS7_:
  258|  1.32M|		{
  259|       |			// The following types can't be set this way, they have special Set functions
  260|  1.32M|			MUP_ASSERT(a_iType != cmVAR);
  ------------------
  |  |   78|  1.32M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.32M]
  |  |  ------------------
  |  |   79|  1.32M|            {														\
  |  |   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.32M|			MUP_ASSERT(a_iType != cmVAL);
  ------------------
  |  |   78|  1.32M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.32M]
  |  |  ------------------
  |  |   79|  1.32M|            {														\
  |  |   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.32M|			MUP_ASSERT(a_iType != cmFUNC);
  ------------------
  |  |   78|  1.32M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.32M]
  |  |  ------------------
  |  |   79|  1.32M|            {														\
  |  |   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.32M|			m_iCode = a_iType;
  265|  1.32M|			m_iType = tpVOID;
  266|  1.32M|			m_pTok = 0;
  267|  1.32M|			m_strTok = a_strTok;
  268|  1.32M|			m_iIdx = -1;
  269|       |
  270|  1.32M|			return *this;
  271|  1.32M|		}
_ZN2mu11ParserTokenIdNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE3SetERKNS_14ParserCallbackERKS7_:
  276|  55.3k|		{
  277|  55.3k|			MUP_ASSERT(a_pCallback.IsValid());
  ------------------
  |  |   78|  55.3k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 55.3k]
  |  |  ------------------
  |  |   79|  55.3k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  278|       |
  279|  55.3k|			m_iCode = a_pCallback.GetCode();
  280|  55.3k|			m_iType = tpVOID;
  281|  55.3k|			m_strTok = a_sTok;
  282|  55.3k|			m_pCallback.reset(new ParserCallback(a_pCallback));
  283|       |
  284|  55.3k|			m_pTok = 0;
  285|  55.3k|			m_iIdx = -1;
  286|       |
  287|  55.3k|			return *this;
  288|  55.3k|		}
_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|   939k|	{
   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|   939k|		value_type fVal(0);
   87|       |
   88|   939k|		stringstream_type stream(a_szExpr);
   89|   939k|		stream.imbue(Parser::s_locale);
   90|   939k|		stream >> fVal;
   91|   939k|		stringstream_type::pos_type iEnd = stream.tellg(); // Position after reading
   92|       |
   93|   939k|		if (iEnd == (stringstream_type::pos_type) - 1)
  ------------------
  |  Branch (93:7): [True: 13.1k, False: 926k]
  ------------------
   94|  13.1k|			return 0;
   95|       |
   96|   926k|		*a_iPos += (int)iEnd;
   97|   926k|		*a_fVal = fVal;
   98|   926k|		return 1;
   99|   939k|#endif		
  100|   939k|	}
_ZN2mu6ParserC2Ev:
  109|  3.90k|		:ParserBase()
  110|  3.90k|	{
  111|  3.90k|		AddValIdent(IsVal);
  112|       |
  113|  3.90k|		InitCharSets();
  114|  3.90k|		InitFun();
  115|  3.90k|		InitConst();
  116|  3.90k|		InitOprt();
  117|  3.90k|	}
_ZN2mu6Parser12InitCharSetsEv:
  127|  3.90k|	{
  128|  3.90k|		DefineNameChars(_T("0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"));
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  129|  3.90k|		DefineOprtChars(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+-*^/?<>=#!$%&|~'_{}"));
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  130|  3.90k|		DefineInfixOprtChars(_T("/+-*^?<>=#!$%&|~'_"));
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  131|  3.90k|	}
_ZN2mu6Parser7InitFunEv:
  136|  3.90k|	{
  137|  3.90k|		if (mu::TypeInfo<mu::value_type>::IsInteger())
  ------------------
  |  Branch (137:7): [True: 0, False: 3.90k]
  ------------------
  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.90k|		else
  146|  3.90k|		{
  147|       |			// trigonometric functions
  148|  3.90k|			DefineFun(_T("sin"), MathImpl<value_type>::Sin);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  149|  3.90k|			DefineFun(_T("cos"), MathImpl<value_type>::Cos);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  150|  3.90k|			DefineFun(_T("tan"), MathImpl<value_type>::Tan);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  151|  3.90k|			DefineFun(_T("cot"), MathImpl<value_type>::Cot);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  152|       |			// arcus functions
  153|  3.90k|			DefineFun(_T("asin"), MathImpl<value_type>::ASin);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  154|  3.90k|			DefineFun(_T("acos"), MathImpl<value_type>::ACos);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  155|  3.90k|			DefineFun(_T("atan"), MathImpl<value_type>::ATan);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  156|  3.90k|			DefineFun(_T("atan2"), MathImpl<value_type>::ATan2);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  157|       |			// hyperbolic functions
  158|  3.90k|			DefineFun(_T("sinh"), MathImpl<value_type>::Sinh);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  159|  3.90k|			DefineFun(_T("cosh"), MathImpl<value_type>::Cosh);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  160|  3.90k|			DefineFun(_T("tanh"), MathImpl<value_type>::Tanh);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  161|  3.90k|			DefineFun(_T("coth"), MathImpl<value_type>::Coth);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  162|       |			// arcus hyperbolic functions
  163|  3.90k|			DefineFun(_T("asinh"), MathImpl<value_type>::ASinh);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  164|  3.90k|			DefineFun(_T("acosh"), MathImpl<value_type>::ACosh);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  165|  3.90k|			DefineFun(_T("atanh"), MathImpl<value_type>::ATanh);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  166|       |			// Logarithm functions
  167|  3.90k|			DefineFun(_T("log2"), MathImpl<value_type>::Log2);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  168|  3.90k|			DefineFun(_T("log10"), MathImpl<value_type>::Log10);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  169|  3.90k|			DefineFun(_T("log"), MathImpl<value_type>::Log);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  170|  3.90k|			DefineFun(_T("ln"), MathImpl<value_type>::Log);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  171|       |			// misc
  172|  3.90k|			DefineFun(_T("exp"), MathImpl<value_type>::Exp);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  173|  3.90k|			DefineFun(_T("sqrt"), MathImpl<value_type>::Sqrt);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  174|  3.90k|			DefineFun(_T("sign"), MathImpl<value_type>::Sign);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  175|  3.90k|			DefineFun(_T("rint"), MathImpl<value_type>::Rint);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  176|  3.90k|			DefineFun(_T("abs"), MathImpl<value_type>::Abs);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  177|       |			// Functions with variable number of arguments
  178|  3.90k|			DefineFun(_T("sum"), MathImpl<value_type>::Sum);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  179|  3.90k|			DefineFun(_T("avg"), MathImpl<value_type>::Avg);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  180|  3.90k|			DefineFun(_T("min"), MathImpl<value_type>::Min);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  181|  3.90k|			DefineFun(_T("max"), MathImpl<value_type>::Max);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  182|       |			// Random number
  183|  3.90k|			DefineFun(_T("rnd"), MathImpl<value_type>::Rnd, false);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  184|  3.90k|		}
  185|  3.90k|	}
_ZN2mu6Parser9InitConstEv:
  194|  3.90k|	{
  195|  3.90k|		DefineConst(_T("_pi"), MathImpl<value_type>::CONST_PI);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  196|  3.90k|		DefineConst(_T("_e"), MathImpl<value_type>::CONST_E);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  197|  3.90k|	}
_ZN2mu6Parser8InitOprtEv:
  205|  3.90k|	{
  206|  3.90k|		DefineInfixOprt(_T("-"), MathImpl<value_type>::UnaryMinus);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  207|  3.90k|		DefineInfixOprt(_T("+"), MathImpl<value_type>::UnaryPlus);
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  208|  3.90k|	}

_ZN2mu10ParserBaseC2Ev:
   91|  3.90k|		: m_pParseFormula(&ParserBase::ParseString)
   92|  3.90k|		, m_vRPN()
   93|  3.90k|		, m_vStringBuf()
   94|  3.90k|		, m_pTokenReader()
   95|  3.90k|		, m_FunDef()
   96|  3.90k|		, m_PostOprtDef()
   97|  3.90k|		, m_InfixOprtDef()
   98|  3.90k|		, m_OprtDef()
   99|  3.90k|		, m_ConstDef()
  100|  3.90k|		, m_StrVarDef()
  101|  3.90k|		, m_VarDef()
  102|  3.90k|		, m_bBuiltInOp(true)
  103|  3.90k|		, m_sNameChars()
  104|  3.90k|		, m_sOprtChars()
  105|  3.90k|		, m_sInfixOprtChars()
  106|  3.90k|		, m_vStackBuffer()
  107|  3.90k|		, m_nFinalResultIdx(0)
  108|  3.90k|	{
  109|  3.90k|		InitTokenReader();
  110|  3.90k|	}
_ZN2mu10ParserBaseD2Ev:
  141|  3.90k|	{}
_ZN2mu10ParserBase15InitTokenReaderEv:
  246|  3.90k|	{
  247|  3.90k|		m_pTokenReader.reset(new token_reader_type(this));
  248|  3.90k|	}
_ZNK2mu10ParserBase6ReInitEv:
  257|   136k|	{
  258|   136k|		m_pParseFormula = &ParserBase::ParseString;
  259|   136k|		m_vStringBuf.clear();
  260|   136k|		m_vRPN.clear();
  261|   136k|		m_pTokenReader->ReInit();
  262|   136k|	}
_ZN2mu10ParserBase11AddValIdentEPFiPKcPiPdE:
  353|  3.90k|	{
  354|  3.90k|		m_pTokenReader->AddValIdent(a_pCallback);
  355|  3.90k|	}
_ZN2mu10ParserBase11AddCallbackERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackERNS1_3mapIS7_SA_NS1_4lessIS7_EENS5_INS1_4pairIS8_SA_EEEEEEPKc:
  374|   121k|	{
  375|   121k|		if (!a_Callback.IsValid())
  ------------------
  |  Branch (375:7): [True: 0, False: 121k]
  ------------------
  376|      0|			Error(ecINVALID_FUN_PTR);
  377|       |
  378|   121k|		const funmap_type* pFunMap = &a_Storage;
  379|       |
  380|       |		// Check for conflicting operator or function names
  381|   121k|		if (pFunMap != &m_FunDef && m_FunDef.find(a_strName) != m_FunDef.end())
  ------------------
  |  Branch (381:7): [True: 7.81k, False: 113k]
  |  Branch (381:7): [True: 0, False: 121k]
  |  Branch (381:31): [True: 0, False: 7.81k]
  ------------------
  382|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  383|       |
  384|   121k|		if (pFunMap != &m_PostOprtDef && m_PostOprtDef.find(a_strName) != m_PostOprtDef.end())
  ------------------
  |  Branch (384:7): [True: 121k, False: 0]
  |  Branch (384:7): [True: 0, False: 121k]
  |  Branch (384:36): [True: 0, False: 121k]
  ------------------
  385|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  386|       |
  387|   121k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_InfixOprtDef.find(a_strName) != m_InfixOprtDef.end())
  ------------------
  |  Branch (387:7): [True: 113k, False: 7.81k]
  |  Branch (387:7): [True: 0, False: 121k]
  |  Branch (387:37): [True: 113k, False: 0]
  |  Branch (387:62): [True: 0, False: 113k]
  ------------------
  388|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  389|       |
  390|   121k|		if (pFunMap != &m_InfixOprtDef && pFunMap != &m_OprtDef && m_OprtDef.find(a_strName) != m_OprtDef.end())
  ------------------
  |  Branch (390:7): [True: 113k, False: 7.81k]
  |  Branch (390:7): [True: 0, False: 121k]
  |  Branch (390:37): [True: 113k, False: 0]
  |  Branch (390:62): [True: 0, False: 113k]
  ------------------
  391|      0|			Error(ecNAME_CONFLICT, -1, a_strName);
  392|       |
  393|   121k|		CheckOprt(a_strName, a_Callback, a_szCharSet);
  394|   121k|		a_Storage[a_strName] = a_Callback;
  395|   121k|		ReInit();
  396|   121k|	}
_ZNK2mu10ParserBase9CheckOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14ParserCallbackES9_:
  406|   121k|	{
  407|   121k|		if (!a_sName.length() ||
  ------------------
  |  Branch (407:7): [True: 0, False: 121k]
  ------------------
  408|   121k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (408:4): [True: 0, False: 121k]
  ------------------
  409|   121k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (409:5): [True: 113k, False: 7.81k]
  |  Branch (409:26): [True: 0, False: 113k]
  ------------------
  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|   121k|	}
_ZNK2mu10ParserBase9CheckNameERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_:
  425|  7.81k|	{
  426|  7.81k|		if (!a_sName.length() ||
  ------------------
  |  Branch (426:7): [True: 0, False: 7.81k]
  ------------------
  427|  7.81k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (427:4): [True: 0, False: 7.81k]
  ------------------
  428|  7.81k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (428:5): [True: 7.81k, False: 0]
  |  Branch (428:26): [True: 0, False: 7.81k]
  ------------------
  429|      0|		{
  430|      0|			Error(ecINVALID_NAME);
  431|      0|		}
  432|  7.81k|	}
_ZN2mu10ParserBase7SetExprERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  442|  3.90k|	{
  443|       |		// Check locale compatibility
  444|  3.90k|		if (m_pTokenReader->GetArgSep() == std::use_facet<numpunct<char_type> >(s_locale).decimal_point())
  ------------------
  |  Branch (444:7): [True: 0, False: 3.90k]
  ------------------
  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.90k|		if (a_sExpr.length() >= MaxLenExpression)
  ------------------
  |  Branch (448:7): [True: 30, False: 3.87k]
  ------------------
  449|     30|			Error(ecEXPRESSION_TOO_LONG, 0, a_sExpr);
  450|       |
  451|  3.90k|		m_pTokenReader->SetFormula(a_sExpr + _T(" "));
  ------------------
  |  |   69|  3.90k|		#define _T(x) x
  ------------------
  452|  3.90k|		ReInit();
  453|  3.90k|	}
_ZNK2mu10ParserBase10GetOprtDefEv:
  460|  2.73M|	{
  461|  2.73M|		return (const char_type**)(&c_DefaultOprt[0]);
  462|  2.73M|	}
_ZN2mu10ParserBase15DefineNameCharsEPKc:
  469|  3.90k|	{
  470|  3.90k|		m_sNameChars = a_szCharset;
  471|  3.90k|	}
_ZN2mu10ParserBase15DefineOprtCharsEPKc:
  478|  3.90k|	{
  479|  3.90k|		m_sOprtChars = a_szCharset;
  480|  3.90k|	}
_ZN2mu10ParserBase20DefineInfixOprtCharsEPKc:
  487|  3.90k|	{
  488|  3.90k|		m_sInfixOprtChars = a_szCharset;
  489|  3.90k|	}
_ZNK2mu10ParserBase14ValidNameCharsEv:
  496|  3.38M|	{
  497|  3.38M|		MUP_ASSERT(m_sNameChars.size());
  ------------------
  |  |   78|  3.38M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.38M]
  |  |  ------------------
  |  |   79|  3.38M|            {														\
  |  |   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.38M|		return m_sNameChars.c_str();
  499|  3.38M|	}
_ZNK2mu10ParserBase14ValidOprtCharsEv:
  506|  2.32M|	{
  507|  2.32M|		MUP_ASSERT(m_sOprtChars.size());
  ------------------
  |  |   78|  2.32M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.32M]
  |  |  ------------------
  |  |   79|  2.32M|            {														\
  |  |   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.32M|		return m_sOprtChars.c_str();
  509|  2.32M|	}
_ZNK2mu10ParserBase19ValidInfixOprtCharsEv:
  516|  50.7k|	{
  517|  50.7k|		MUP_ASSERT(m_sInfixOprtChars.size());
  ------------------
  |  |   78|  50.7k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 50.7k]
  |  |  ------------------
  |  |   79|  50.7k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  518|  50.7k|		return m_sInfixOprtChars.c_str();
  519|  50.7k|	}
_ZN2mu10ParserBase15DefineInfixOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEPFddEib:
  556|  7.81k|	{
  557|  7.81k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (557:7): [True: 0, False: 7.81k]
  ------------------
  558|      0|			Error(ecIDENTIFIER_TOO_LONG);
  559|       |
  560|  7.81k|		AddCallback(a_sName, ParserCallback(a_pFun, a_bAllowOpt, a_iPrec, cmOPRT_INFIX), m_InfixOprtDef, ValidInfixOprtChars());
  561|  7.81k|	}
_ZN2mu10ParserBase11DefineConstERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEd:
  648|  7.81k|	{
  649|  7.81k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (649:7): [True: 0, False: 7.81k]
  ------------------
  650|      0|			Error(ecIDENTIFIER_TOO_LONG);
  651|       |
  652|  7.81k|		CheckName(a_sName, ValidNameChars());
  653|  7.81k|		m_ConstDef[a_sName] = a_fVal;
  654|  7.81k|		ReInit();
  655|  7.81k|	}
_ZNK2mu10ParserBase17GetOprtPrecedenceERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  662|   619k|	{
  663|   619k|		switch (a_Tok.GetCode())
  664|   619k|		{
  665|       |			// built in operators
  666|      0|		case cmEND:      return -5;
  ------------------
  |  Branch (666:3): [True: 0, False: 619k]
  ------------------
  667|      0|		case cmARG_SEP:  return -4;
  ------------------
  |  Branch (667:3): [True: 0, False: 619k]
  ------------------
  668|      0|		case cmASSIGN:   return -1;
  ------------------
  |  Branch (668:3): [True: 0, False: 619k]
  ------------------
  669|      0|		case cmELSE:
  ------------------
  |  Branch (669:3): [True: 0, False: 619k]
  ------------------
  670|  2.62k|		case cmIF:       return  0;
  ------------------
  |  Branch (670:3): [True: 2.62k, False: 616k]
  ------------------
  671|  8.37k|		case cmLAND:     return  prLAND;
  ------------------
  |  Branch (671:3): [True: 8.37k, False: 610k]
  ------------------
  672|  9.98k|		case cmLOR:      return  prLOR;
  ------------------
  |  Branch (672:3): [True: 9.98k, False: 609k]
  ------------------
  673|  8.49k|		case cmLT:
  ------------------
  |  Branch (673:3): [True: 8.49k, False: 610k]
  ------------------
  674|  13.3k|		case cmGT:
  ------------------
  |  Branch (674:3): [True: 4.83k, False: 614k]
  ------------------
  675|  15.5k|		case cmLE:
  ------------------
  |  Branch (675:3): [True: 2.19k, False: 617k]
  ------------------
  676|  17.4k|		case cmGE:
  ------------------
  |  Branch (676:3): [True: 1.92k, False: 617k]
  ------------------
  677|  20.0k|		case cmNEQ:
  ------------------
  |  Branch (677:3): [True: 2.64k, False: 616k]
  ------------------
  678|  24.8k|		case cmEQ:       return  prCMP;
  ------------------
  |  Branch (678:3): [True: 4.75k, False: 614k]
  ------------------
  679|  11.6k|		case cmADD:
  ------------------
  |  Branch (679:3): [True: 11.6k, False: 607k]
  ------------------
  680|   110k|		case cmSUB:      return  prADD_SUB;
  ------------------
  |  Branch (680:3): [True: 99.0k, False: 520k]
  ------------------
  681|  6.43k|		case cmMUL:
  ------------------
  |  Branch (681:3): [True: 6.43k, False: 612k]
  ------------------
  682|  11.1k|		case cmDIV:      return  prMUL_DIV;
  ------------------
  |  Branch (682:3): [True: 4.69k, False: 614k]
  ------------------
  683|   418k|		case cmPOW:      return  prPOW;
  ------------------
  |  Branch (683:3): [True: 418k, False: 200k]
  ------------------
  684|       |
  685|       |		// user defined binary operators
  686|  32.7k|		case cmOPRT_INFIX:
  ------------------
  |  Branch (686:3): [True: 32.7k, False: 586k]
  ------------------
  687|  32.7k|		case cmOPRT_BIN: return a_Tok.GetPri();
  ------------------
  |  Branch (687:3): [True: 0, False: 619k]
  ------------------
  688|      0|		default:  
  ------------------
  |  Branch (688:3): [True: 0, False: 619k]
  ------------------
  689|      0|			throw exception_type(ecINTERNAL_ERROR, 5, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  690|   619k|		}
  691|   619k|	}
_ZNK2mu10ParserBase20GetOprtAssociativityERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  698|   174k|	{
  699|   174k|		switch (a_Tok.GetCode())
  700|   174k|		{
  701|      0|		case cmASSIGN:
  ------------------
  |  Branch (701:3): [True: 0, False: 174k]
  ------------------
  702|  1.74k|		case cmLAND:
  ------------------
  |  Branch (702:3): [True: 1.74k, False: 172k]
  ------------------
  703|  4.02k|		case cmLOR:
  ------------------
  |  Branch (703:3): [True: 2.28k, False: 172k]
  ------------------
  704|  7.19k|		case cmLT:
  ------------------
  |  Branch (704:3): [True: 3.16k, False: 171k]
  ------------------
  705|  8.32k|		case cmGT:
  ------------------
  |  Branch (705:3): [True: 1.12k, False: 173k]
  ------------------
  706|  9.09k|		case cmLE:
  ------------------
  |  Branch (706:3): [True: 776, False: 173k]
  ------------------
  707|  9.73k|		case cmGE:
  ------------------
  |  Branch (707:3): [True: 635, False: 173k]
  ------------------
  708|  10.5k|		case cmNEQ:
  ------------------
  |  Branch (708:3): [True: 781, False: 173k]
  ------------------
  709|  11.9k|		case cmEQ:
  ------------------
  |  Branch (709:3): [True: 1.39k, False: 172k]
  ------------------
  710|  14.2k|		case cmADD:
  ------------------
  |  Branch (710:3): [True: 2.37k, False: 171k]
  ------------------
  711|  17.7k|		case cmSUB:
  ------------------
  |  Branch (711:3): [True: 3.49k, False: 170k]
  ------------------
  712|  19.7k|		case cmMUL:
  ------------------
  |  Branch (712:3): [True: 1.99k, False: 172k]
  ------------------
  713|  21.0k|		case cmDIV:      return oaLEFT;
  ------------------
  |  Branch (713:3): [True: 1.22k, False: 173k]
  ------------------
  714|   153k|		case cmPOW:      return oaRIGHT;
  ------------------
  |  Branch (714:3): [True: 153k, False: 21.0k]
  ------------------
  715|      0|		case cmOPRT_BIN: return a_Tok.GetAssociativity();
  ------------------
  |  Branch (715:3): [True: 0, False: 174k]
  ------------------
  716|      0|		default:         return oaNONE;
  ------------------
  |  Branch (716:3): [True: 0, False: 174k]
  ------------------
  717|   174k|		}
  718|   174k|	}
_ZNK2mu10ParserBase9ApplyFuncERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_i:
  831|  29.0k|	{
  832|  29.0k|		MUP_ASSERT(m_pTokenReader.get());
  ------------------
  |  |   78|  29.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 29.0k]
  |  |  ------------------
  |  |   79|  29.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|            }
  ------------------
  833|       |
  834|       |		// Operator stack empty or does not contain tokens with callback functions
  835|  29.0k|		if (a_stOpt.empty() || a_stOpt.top().GetFuncAddr() == 0)
  ------------------
  |  Branch (835:7): [True: 0, False: 29.0k]
  |  Branch (835:7): [True: 0, False: 29.0k]
  |  Branch (835:26): [True: 0, False: 29.0k]
  ------------------
  836|      0|			return;
  837|       |
  838|  29.0k|		token_type funTok = a_stOpt.top();
  839|  29.0k|		a_stOpt.pop();
  840|  29.0k|		MUP_ASSERT(funTok.GetFuncAddr() != nullptr);
  ------------------
  |  |   78|  29.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 29.0k]
  |  |  ------------------
  |  |   79|  29.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|            }
  ------------------
  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|  29.0k|		int iArgCount = (funTok.GetCode() == cmOPRT_BIN) ? funTok.GetArgCount() : a_iArgCount;
  ------------------
  |  Branch (845:19): [True: 0, False: 29.0k]
  ------------------
  846|       |
  847|       |		// determine how many parameters the function needs. To remember iArgCount includes the 
  848|       |		// string parameter whilst GetArgCount() counts only numeric parameters.
  849|  29.0k|		int iArgRequired = funTok.GetArgCount() + ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (849:46): [True: 0, False: 29.0k]
  ------------------
  850|       |
  851|       |		// That's the number of numerical parameters
  852|  29.0k|		int iArgNumerical = iArgCount - ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (852:36): [True: 0, False: 29.0k]
  ------------------
  853|       |
  854|  29.0k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount - iArgNumerical > 1)
  ------------------
  |  Branch (854:7): [True: 0, False: 29.0k]
  |  Branch (854:41): [True: 0, False: 0]
  ------------------
  855|      0|			Error(ecINTERNAL_ERROR);
  856|       |
  857|  29.0k|		if (funTok.GetArgCount() >= 0 && iArgCount > iArgRequired)
  ------------------
  |  Branch (857:7): [True: 24.4k, False: 4.62k]
  |  Branch (857:36): [True: 26, False: 24.4k]
  ------------------
  858|     26|			Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  859|       |
  860|  29.0k|		if (funTok.GetCode() != cmOPRT_BIN && iArgCount < iArgRequired)
  ------------------
  |  Branch (860:7): [True: 29.0k, False: 26]
  |  Branch (860:41): [True: 4, False: 29.0k]
  ------------------
  861|      4|			Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  862|       |
  863|  29.0k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount > iArgRequired)
  ------------------
  |  Branch (863:7): [True: 0, False: 29.0k]
  |  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|  29.0k|		std::vector<token_type> stArg;
  869|   397k|		for (int i = 0; i < iArgNumerical; ++i)
  ------------------
  |  Branch (869:19): [True: 368k, False: 29.0k]
  ------------------
  870|   368k|		{
  871|   368k|			if (a_stVal.empty())
  ------------------
  |  Branch (871:8): [True: 2, False: 368k]
  ------------------
  872|      2|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), funTok.GetAsString());
  873|       |
  874|   368k|			stArg.push_back(a_stVal.top());
  875|   368k|			a_stVal.pop();
  876|       |
  877|   368k|			if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR)
  ------------------
  |  Branch (877:8): [True: 3, False: 368k]
  |  Branch (877:43): [True: 3, False: 0]
  ------------------
  878|      3|				Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString());
  879|   368k|		}
  880|       |
  881|  29.0k|		switch (funTok.GetCode())
  882|  29.0k|		{
  883|      0|		case  cmFUNC_STR:
  ------------------
  |  Branch (883:3): [True: 0, False: 29.0k]
  ------------------
  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: 29.0k]
  ------------------
  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: 29.0k]
  ------------------
  901|      0|		case  cmOPRT_POSTFIX:
  ------------------
  |  Branch (901:3): [True: 0, False: 29.0k]
  ------------------
  902|  17.1k|		case  cmOPRT_INFIX:
  ------------------
  |  Branch (902:3): [True: 17.1k, False: 11.9k]
  ------------------
  903|  29.0k|		case  cmFUNC:
  ------------------
  |  Branch (903:3): [True: 11.9k, False: 17.1k]
  ------------------
  904|  29.0k|			if (funTok.GetArgCount() == -1 && iArgCount == 0)
  ------------------
  |  Branch (904:8): [True: 4.62k, False: 24.3k]
  |  Branch (904:38): [True: 1, False: 4.62k]
  ------------------
  905|      1|				Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos(), funTok.GetAsString());
  906|       |
  907|  29.0k|			m_vRPN.AddFun(funTok.GetFuncAddr(), (funTok.GetArgCount() == -1) ? -iArgNumerical : iArgNumerical, funTok.IsOptimizable());
  ------------------
  |  Branch (907:40): [True: 4.62k, False: 24.3k]
  ------------------
  908|  29.0k|			break;
  909|      0|		default:
  ------------------
  |  Branch (909:3): [True: 0, False: 29.0k]
  ------------------
  910|      0|			break;
  911|  29.0k|		}
  912|       |
  913|       |		// Push dummy value representing the function result to the stack
  914|  29.0k|		token_type token;
  915|  29.0k|		token.SetVal(1);
  916|  29.0k|		a_stVal.push(token);
  917|  29.0k|	}
_ZNK2mu10ParserBase11ApplyIfElseERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  921|  3.59k|	{
  922|       |		// Check if there is an if Else clause to be calculated
  923|  46.0k|		while (a_stOpt.size() && a_stOpt.top().GetCode() == cmELSE)
  ------------------
  |  Branch (923:10): [True: 45.4k, False: 641]
  |  Branch (923:28): [True: 42.4k, False: 2.94k]
  ------------------
  924|  42.4k|		{
  925|  42.4k|			MUP_ASSERT(!a_stOpt.empty())
  ------------------
  |  |   78|  42.4k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 42.4k]
  |  |  ------------------
  |  |   79|  42.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|            }
  ------------------
  926|  42.4k|			token_type opElse = a_stOpt.top();
  927|  42.4k|			a_stOpt.pop();
  928|       |
  929|       |			// Take the value associated with the else branch from the value stack
  930|  42.4k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  42.4k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 42.4k]
  |  |  ------------------
  |  |   79|  42.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|            }
  ------------------
  931|  42.4k|			token_type vVal2 = a_stVal.top();
  932|  42.4k|			if (vVal2.GetType() != tpDBL)
  ------------------
  |  Branch (932:8): [True: 3, False: 42.4k]
  ------------------
  933|      3|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  934|       |			
  935|  42.4k|			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|  42.4k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  42.4k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 1, False: 42.4k]
  |  |  ------------------
  |  |   79|  42.4k|            {														\
  |  |   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|  42.4k|			token_type vVal1 = a_stVal.top();
  941|  42.4k|			if (vVal1.GetType() != tpDBL)
  ------------------
  |  Branch (941:8): [True: 1, False: 42.4k]
  ------------------
  942|      1|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  943|       |
  944|  42.4k|			a_stVal.pop();
  945|       |
  946|  42.4k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  42.4k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 7, False: 42.4k]
  |  |  ------------------
  |  |   79|  42.4k|            {														\
  |  |   80|      7|              stringstream_type ss;									\
  |  |   81|      7|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |   82|      7|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |   83|      7|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      7|		#define _T(x) x
  |  |  ------------------
  |  |   84|      7|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      7|            }
  ------------------
  947|  42.4k|			token_type vExpr = a_stVal.top();
  948|  42.4k|			a_stVal.pop();
  949|       |
  950|  42.4k|			a_stVal.push((vExpr.GetVal() != 0) ? vVal1 : vVal2);
  ------------------
  |  Branch (950:17): [True: 4.61k, False: 37.8k]
  ------------------
  951|       |
  952|  42.4k|			token_type opIf = a_stOpt.top();
  953|  42.4k|			a_stOpt.pop();
  954|       |
  955|  42.4k|			MUP_ASSERT(opElse.GetCode() == cmELSE);
  ------------------
  |  |   78|  42.4k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 42.4k]
  |  |  ------------------
  |  |   79|  42.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|            }
  ------------------
  956|       |
  957|  42.4k|			if (opIf.GetCode() != cmIF)
  ------------------
  |  Branch (957:8): [True: 1, False: 42.4k]
  ------------------
  958|      1|				Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
  959|       |
  960|  42.4k|			m_vRPN.AddIfElse(cmENDIF);
  961|  42.4k|		} // while pending if-else-clause found
  962|  3.59k|	}
_ZNK2mu10ParserBase12ApplyBinOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  969|   176k|	{
  970|       |		// is it a user defined binary operator?
  971|   176k|		if (a_stOpt.top().GetCode() == cmOPRT_BIN)
  ------------------
  |  Branch (971:7): [True: 0, False: 176k]
  ------------------
  972|      0|		{
  973|      0|			ApplyFunc(a_stOpt, a_stVal, 2);
  974|      0|		}
  975|   176k|		else
  976|   176k|		{
  977|   176k|			if (a_stVal.size() < 2)
  ------------------
  |  Branch (977:8): [True: 1, False: 176k]
  ------------------
  978|      1|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), _T("ApplyBinOprt: not enough values in value stack!"));
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
  979|       |
  980|   176k|			token_type valTok1 = a_stVal.top();
  981|   176k|			a_stVal.pop();
  982|       |
  983|   176k|			token_type valTok2 = a_stVal.top();
  984|   176k|			a_stVal.pop();
  985|       |
  986|   176k|			token_type optTok = a_stOpt.top();
  987|   176k|			a_stOpt.pop();
  988|       |
  989|   176k|			token_type resTok;
  990|       |
  991|   176k|			if (valTok1.GetType() != valTok2.GetType() ||
  ------------------
  |  Branch (991:8): [True: 26, False: 176k]
  ------------------
  992|   176k|				(valTok1.GetType() == tpSTR && valTok2.GetType() == tpSTR))
  ------------------
  |  Branch (992:6): [True: 13, False: 176k]
  |  Branch (992:36): [True: 13, False: 0]
  ------------------
  993|     38|				Error(ecOPRT_TYPE_CONFLICT, m_pTokenReader->GetPos(), optTok.GetAsString());
  994|       |
  995|   176k|			if (optTok.GetCode() == cmASSIGN)
  ------------------
  |  Branch (995:8): [True: 0, False: 176k]
  ------------------
  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|   176k|			else
 1003|   176k|				m_vRPN.AddOp(optTok.GetCode());
 1004|       |
 1005|   176k|			resTok.SetVal(1);
 1006|   176k|			a_stVal.push(resTok);
 1007|   176k|		}
 1008|   176k|	}
_ZNK2mu10ParserBase18ApplyRemainingOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
 1016|   701k|	{
 1017|   776k|		while (stOpt.size() &&
  ------------------
  |  Branch (1017:10): [True: 713k, False: 62.8k]
  ------------------
 1018|   713k|			stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1018:4): [True: 279k, False: 433k]
  ------------------
 1019|   279k|			stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1019:4): [True: 74.8k, False: 204k]
  ------------------
 1020|  74.8k|		{
 1021|  74.8k|			token_type tok = stOpt.top();
 1022|  74.8k|			switch (tok.GetCode())
 1023|  74.8k|			{
 1024|  9.00k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1024:4): [True: 9.00k, False: 65.8k]
  ------------------
 1025|  9.00k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1025:4): [True: 0, False: 74.8k]
  ------------------
 1026|  9.29k|			case cmLE:
  ------------------
  |  Branch (1026:4): [True: 290, False: 74.5k]
  ------------------
 1027|  9.74k|			case cmGE:
  ------------------
  |  Branch (1027:4): [True: 458, False: 74.4k]
  ------------------
 1028|  10.0k|			case cmNEQ:
  ------------------
  |  Branch (1028:4): [True: 315, False: 74.5k]
  ------------------
 1029|  10.5k|			case cmEQ:
  ------------------
  |  Branch (1029:4): [True: 529, False: 74.3k]
  ------------------
 1030|  11.6k|			case cmLT:
  ------------------
  |  Branch (1030:4): [True: 1.03k, False: 73.8k]
  ------------------
 1031|  12.3k|			case cmGT:
  ------------------
  |  Branch (1031:4): [True: 705, False: 74.1k]
  ------------------
 1032|  13.2k|			case cmADD:
  ------------------
  |  Branch (1032:4): [True: 884, False: 73.9k]
  ------------------
 1033|  15.5k|			case cmSUB:
  ------------------
  |  Branch (1033:4): [True: 2.32k, False: 72.5k]
  ------------------
 1034|  16.5k|			case cmMUL:
  ------------------
  |  Branch (1034:4): [True: 978, False: 73.8k]
  ------------------
 1035|  17.5k|			case cmDIV:
  ------------------
  |  Branch (1035:4): [True: 1.00k, False: 73.8k]
  ------------------
 1036|  68.8k|			case cmPOW:
  ------------------
  |  Branch (1036:4): [True: 51.3k, False: 23.5k]
  ------------------
 1037|  69.7k|			case cmLAND:
  ------------------
  |  Branch (1037:4): [True: 924, False: 73.9k]
  ------------------
 1038|  71.2k|			case cmLOR:
  ------------------
  |  Branch (1038:4): [True: 1.51k, False: 73.3k]
  ------------------
 1039|  71.2k|			case cmASSIGN:
  ------------------
  |  Branch (1039:4): [True: 0, False: 74.8k]
  ------------------
 1040|  71.2k|				if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1040:9): [True: 9.00k, False: 62.2k]
  ------------------
 1041|  9.00k|					ApplyFunc(stOpt, stVal, 1);
 1042|  62.2k|				else
 1043|  62.2k|					ApplyBinOprt(stOpt, stVal);
 1044|  71.2k|				break;
 1045|       |
 1046|  3.59k|			case cmELSE:
  ------------------
  |  Branch (1046:4): [True: 3.59k, False: 71.2k]
  ------------------
 1047|  3.59k|				ApplyIfElse(stOpt, stVal);
 1048|  3.59k|				break;
 1049|       |
 1050|      0|			default:
  ------------------
  |  Branch (1050:4): [True: 0, False: 74.8k]
  ------------------
 1051|      0|				Error(ecINTERNAL_ERROR);
 1052|  74.8k|			}
 1053|  74.8k|		}
 1054|   701k|	}
_ZNK2mu10ParserBase12ParseCmdCodeEv:
 1065|  1.05k|	{
 1066|  1.05k|		return ParseCmdCodeBulk(0, 0);
 1067|  1.05k|	}
_ZNK2mu10ParserBase17ParseCmdCodeShortEv:
 1070|    772|	{
 1071|    772|		const SToken *const tok = m_vRPN.GetBase();
 1072|    772|		value_type buf;
 1073|       |
 1074|    772|		switch (tok->Cmd)
 1075|    772|		{
 1076|    769|		case cmVAL:		
  ------------------
  |  Branch (1076:3): [True: 769, False: 3]
  ------------------
 1077|    769|			return tok->Val.data2;
 1078|       |
 1079|      0|		case cmVAR:		
  ------------------
  |  Branch (1079:3): [True: 0, False: 772]
  ------------------
 1080|      0|			return *tok->Val.ptr;
 1081|       |
 1082|      0|		case cmVARMUL:	
  ------------------
  |  Branch (1082:3): [True: 0, False: 772]
  ------------------
 1083|      0|			return *tok->Val.ptr * tok->Val.data + tok->Val.data2;
 1084|       |
 1085|      0|		case cmVARPOW2: 
  ------------------
  |  Branch (1085:3): [True: 0, False: 772]
  ------------------
 1086|      0|			buf = *(tok->Val.ptr);
 1087|      0|			return buf * buf;
 1088|       |
 1089|      0|		case  cmVARPOW3: 				
  ------------------
  |  Branch (1089:3): [True: 0, False: 772]
  ------------------
 1090|      0|			buf = *(tok->Val.ptr);
 1091|      0|			return buf * buf * buf;
 1092|       |
 1093|      0|		case  cmVARPOW4: 				
  ------------------
  |  Branch (1093:3): [True: 0, False: 772]
  ------------------
 1094|      0|			buf = *(tok->Val.ptr);
 1095|      0|			return buf * buf * buf * buf;
 1096|       |
 1097|       |		// numerical function without any argument
 1098|      3|		case cmFUNC:
  ------------------
  |  Branch (1098:3): [True: 3, False: 769]
  ------------------
 1099|      3|			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: 772]
  ------------------
 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: 772]
  ------------------
 1109|      0|			throw ParserError(ecINTERNAL_ERROR);
 1110|    772|		}
 1111|    772|	}
_ZNK2mu10ParserBase16ParseCmdCodeBulkEii:
 1119|  1.05k|	{
 1120|  1.05k|		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.05k|		value_type *stack = ((nOffset == 0) && (nThreadID == 0)) ? &m_vStackBuffer[0] : &m_vStackBuffer[nThreadID * (m_vStackBuffer.size() / s_MaxNumOpenMPThreads)];
  ------------------
  |  Branch (1124:24): [True: 1.05k, False: 0]
  |  Branch (1124:42): [True: 1.05k, False: 0]
  ------------------
 1125|       |		
 1126|  1.05k|		const int iStackMaxSize = (int)(m_vStackBuffer.size() / s_MaxNumOpenMPThreads);
 1127|       |
 1128|  1.05k|		value_type buf;
 1129|  1.05k|		int sidx(0);
 1130|   657k|		for (const SToken* pTok = m_vRPN.GetBase(); pTok->Cmd != cmEND; ++pTok)
  ------------------
  |  Branch (1130:47): [True: 656k, False: 1.05k]
  ------------------
 1131|   656k|		{
 1132|   656k|			switch (pTok->Cmd)
 1133|   656k|			{
 1134|       |			// built in binary operators
 1135|    383|			case  cmLE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] <= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    383|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 383]
  |  |  ------------------
  |  |   79|    383|            {														\
  |  |   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: 383, False: 655k]
  ------------------
 1136|    417|			case  cmGE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] >= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    417|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 417]
  |  |  ------------------
  |  |   79|    417|            {														\
  |  |   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: 417, False: 655k]
  ------------------
 1137|    385|			case  cmNEQ:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] != stack[sidx + 1]; continue;
  ------------------
  |  |   78|    385|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 385]
  |  |  ------------------
  |  |   79|    385|            {														\
  |  |   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: 385, False: 655k]
  ------------------
 1138|    455|			case  cmEQ:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] == stack[sidx + 1]; continue;
  ------------------
  |  |   78|    455|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 455]
  |  |  ------------------
  |  |   79|    455|            {														\
  |  |   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: 455, False: 655k]
  ------------------
 1139|    985|			case  cmLT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] < stack[sidx + 1];  continue;
  ------------------
  |  |   78|    985|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 985]
  |  |  ------------------
  |  |   79|    985|            {														\
  |  |   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: 985, False: 655k]
  ------------------
 1140|    354|			case  cmGT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] > stack[sidx + 1];  continue;
  ------------------
  |  |   78|    354|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 354]
  |  |  ------------------
  |  |   79|    354|            {														\
  |  |   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: 354, False: 655k]
  ------------------
 1141|  1.26k|			case  cmADD:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] += stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.26k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |   79|  1.26k|            {														\
  |  |   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.26k, False: 654k]
  ------------------
 1142|  1.33k|			case  cmSUB:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] -= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.33k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.33k]
  |  |  ------------------
  |  |   79|  1.33k|            {														\
  |  |   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: 1.33k, False: 654k]
  ------------------
 1143|  1.61k|			case  cmMUL:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] *= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.61k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.61k]
  |  |  ------------------
  |  |   79|  1.61k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1143:4): [True: 1.61k, False: 654k]
  ------------------
 1144|  1.07k|			case  cmDIV:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] /= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.07k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.07k]
  |  |  ------------------
  |  |   79|  1.07k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1144:4): [True: 1.07k, False: 655k]
  ------------------
 1145|   113k|			case  cmPOW:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = MathImpl<value_type>::Pow(stack[sidx], stack[1 + sidx]); continue;
  ------------------
  |  |   78|   113k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 113k]
  |  |  ------------------
  |  |   79|   113k|            {														\
  |  |   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: 113k, False: 542k]
  ------------------
 1146|    565|			case  cmLAND:   --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] && stack[sidx + 1]; continue;
  ------------------
  |  |   78|    565|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 565]
  |  |  ------------------
  |  |   79|    565|            {														\
  |  |   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: 565, False: 655k]
  |  Branch (1146:65): [True: 353, False: 212]
  |  Branch (1146:80): [True: 315, False: 38]
  ------------------
 1147|    830|			case  cmLOR:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] || stack[sidx + 1]; continue;
  ------------------
  |  |   78|    830|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 830]
  |  |  ------------------
  |  |   79|    830|            {														\
  |  |   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: 830, False: 655k]
  |  Branch (1147:65): [True: 441, False: 389]
  |  Branch (1147:80): [True: 135, False: 254]
  ------------------
 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: 656k]
  ------------------
 1149|       |
 1150|  3.52k|			case  cmIF:
  ------------------
  |  Branch (1150:4): [True: 3.52k, False: 652k]
  ------------------
 1151|  3.52k|				if (stack[sidx--] == 0)
  ------------------
  |  Branch (1151:9): [True: 2.74k, False: 781]
  ------------------
 1152|  2.74k|					pTok += pTok->Oprt.offset;
 1153|       |
 1154|  3.52k|				MUP_ASSERT(sidx >= 0);
  ------------------
  |  |   78|  3.52k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.52k]
  |  |  ------------------
  |  |   79|  3.52k|            {														\
  |  |   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.52k|				continue;
 1156|       |
 1157|    781|			case  cmELSE:
  ------------------
  |  Branch (1157:4): [True: 781, False: 655k]
  ------------------
 1158|    781|				pTok += pTok->Oprt.offset;
 1159|    781|				continue;
 1160|       |
 1161|  2.74k|			case  cmENDIF:
  ------------------
  |  Branch (1161:4): [True: 2.74k, False: 653k]
  ------------------
 1162|  2.74k|				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: 656k]
  ------------------
 1166|   514k|			case  cmVAL:    MUP_ASSERT(sidx < iStackMaxSize); stack[++sidx] = pTok->Val.data2;  continue;
  ------------------
  |  |   78|   514k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 514k]
  |  |  ------------------
  |  |   79|   514k|            {														\
  |  |   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: 514k, False: 141k]
  ------------------
 1167|       |
 1168|      0|			case  cmVARPOW2: 
  ------------------
  |  Branch (1168:4): [True: 0, False: 656k]
  ------------------
 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: 656k]
  ------------------
 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: 656k]
  ------------------
 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: 656k]
  ------------------
 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.2k|			case  cmFUNC:
  ------------------
  |  Branch (1192:4): [True: 11.2k, False: 644k]
  ------------------
 1193|  11.2k|			{
 1194|  11.2k|				int iArgCount = pTok->Fun.argc;
 1195|       |
 1196|       |				// switch according to argument count
 1197|  11.2k|				switch (iArgCount)
 1198|  11.2k|				{
 1199|    944|				case 0: sidx += 1; MUP_ASSERT(sidx < iStackMaxSize); stack[sidx] = pTok->Fun.cb.call_fun<0 >(); continue;
  ------------------
  |  |   78|    944|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 944]
  |  |  ------------------
  |  |   79|    944|            {														\
  |  |   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: 944, False: 10.3k]
  ------------------
 1200|  5.93k|				case 1:                                              stack[sidx] = pTok->Fun.cb.call_fun<1 >(stack[sidx]); continue;
  ------------------
  |  Branch (1200:5): [True: 5.93k, False: 5.35k]
  ------------------
 1201|    221|				case 2: sidx -= 1; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<2 >(stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  |   78|    221|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 221]
  |  |  ------------------
  |  |   79|    221|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1201:5): [True: 221, False: 11.0k]
  ------------------
 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.2k]
  ------------------
 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.2k]
  ------------------
 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.2k]
  ------------------
 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.2k]
  ------------------
 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.2k]
  ------------------
 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.2k]
  ------------------
 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.2k]
  ------------------
 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.2k]
  ------------------
 1210|  4.18k|				default:
  ------------------
  |  Branch (1210:5): [True: 4.18k, False: 7.09k]
  ------------------
 1211|       |					// function with variable arguments store the number as a negative value
 1212|  4.18k|					if (iArgCount > 0)
  ------------------
  |  Branch (1212:10): [True: 0, False: 4.18k]
  ------------------
 1213|      0|						Error(ecINTERNAL_ERROR, -1);
 1214|       |
 1215|  4.18k|					sidx -= -iArgCount - 1;
 1216|  4.18k|					MUP_ASSERT(sidx>=0 && sidx < iStackMaxSize);
  ------------------
  |  |   78|  8.37k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 4.18k, False: 0]
  |  |  |  Branch (78:19): [True: 4.18k, False: 0]
  |  |  ------------------
  |  |   79|  4.18k|            {														\
  |  |   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|  4.18k|					stack[sidx] = pTok->Fun.cb.call_multfun(&stack[sidx], -iArgCount);
 1219|  4.18k|					continue;
 1220|  11.2k|				}
 1221|  11.2k|			}
 1222|       |
 1223|       |			// Next is treatment of string functions
 1224|      0|			case  cmFUNC_STR:
  ------------------
  |  Branch (1224:4): [True: 0, False: 656k]
  ------------------
 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: 656k]
  ------------------
 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: 656k]
  ------------------
 1271|      0|				throw exception_type(ecINTERNAL_ERROR, 3, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1272|   656k|			} // switch CmdCode
 1273|   656k|		} // for all bytecode tokens
 1274|       |
 1275|  1.05k|		return stack[m_nFinalResultIdx];
 1276|  1.05k|	}
_ZNK2mu10ParserBase9CreateRPNEv:
 1280|  3.87k|	{
 1281|  3.87k|		if (!m_pTokenReader->GetExpr().length())
  ------------------
  |  Branch (1281:7): [True: 0, False: 3.87k]
  ------------------
 1282|      0|			Error(ecUNEXPECTED_EOF, 0);
 1283|       |
 1284|  3.87k|		std::stack<token_type> stOpt, stVal;
 1285|  3.87k|		std::stack<int> stArgCount;
 1286|  3.87k|		token_type opta, opt;  // for storing operators
 1287|  3.87k|		token_type val, tval;  // for storing value
 1288|  3.87k|		int ifElseCounter = 0;
 1289|       |
 1290|  3.87k|		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.87k|		stArgCount.push(1);
 1295|       |
 1296|  3.87k|		for (;;)
 1297|  2.32M|		{
 1298|  2.32M|			opt = m_pTokenReader->ReadNextToken();
 1299|       |
 1300|  2.32M|			switch (opt.GetCode())
 1301|  2.32M|			{
 1302|       |			//
 1303|       |			// Next three are different kind of value entries
 1304|       |			//
 1305|  12.4k|			case cmSTRING:
  ------------------
  |  Branch (1305:4): [True: 12.4k, False: 2.31M]
  ------------------
 1306|  12.4k|				if (stOpt.empty())
  ------------------
  |  Branch (1306:9): [True: 75, False: 12.3k]
  ------------------
 1307|     75|					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.32M]
  ------------------
 1313|      0|				stVal.push(opt);
 1314|      0|				m_vRPN.AddVar(static_cast<value_type*>(opt.GetVar()));
 1315|      0|				break;
 1316|       |
 1317|   928k|			case cmVAL:
  ------------------
  |  Branch (1317:4): [True: 928k, False: 1.39M]
  ------------------
 1318|   928k|				stVal.push(opt);
 1319|   928k|				m_vRPN.AddVal(opt.GetVal());
 1320|   928k|				break;
 1321|       |
 1322|  95.1k|			case cmELSE:
  ------------------
  |  Branch (1322:4): [True: 95.1k, False: 2.23M]
  ------------------
 1323|  95.1k|				if (stArgCount.empty())
  ------------------
  |  Branch (1323:9): [True: 0, False: 95.1k]
  ------------------
 1324|      0|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1325|       |
 1326|  95.1k|				if (stArgCount.top() > 1)
  ------------------
  |  Branch (1326:9): [True: 16, False: 95.0k]
  ------------------
 1327|     16|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1328|       |
 1329|  95.1k|				stArgCount.pop();
 1330|       |
 1331|  95.1k|				ifElseCounter--;
 1332|  95.1k|				if (ifElseCounter < 0)
  ------------------
  |  Branch (1332:9): [True: 13, False: 95.0k]
  ------------------
 1333|     13|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1334|       |
 1335|  95.1k|				ApplyRemainingOprt(stOpt, stVal);
 1336|  95.1k|				m_vRPN.AddIfElse(cmELSE);
 1337|  95.1k|				stOpt.push(opt);
 1338|  95.1k|				break;
 1339|       |
 1340|   477k|			case cmARG_SEP:
  ------------------
  |  Branch (1340:4): [True: 477k, False: 1.84M]
  ------------------
 1341|   477k|				if (!stOpt.empty() && stOpt.top().GetCode() == cmIF)
  ------------------
  |  Branch (1341:9): [True: 422k, False: 55.0k]
  |  Branch (1341:27): [True: 9, False: 422k]
  ------------------
 1342|      9|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1343|       |
 1344|   477k|				if (stArgCount.empty())
  ------------------
  |  Branch (1344:9): [True: 0, False: 477k]
  ------------------
 1345|      0|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1346|       |
 1347|   477k|				++stArgCount.top();
 1348|       |				// Falls through.
 1349|       |				// intentional (no break!)
 1350|       |
 1351|   479k|			case cmEND:
  ------------------
  |  Branch (1351:4): [True: 2.03k, False: 2.32M]
  ------------------
 1352|   479k|				ApplyRemainingOprt(stOpt, stVal);
 1353|   479k|				break;
 1354|       |
 1355|   127k|			case cmBC:
  ------------------
  |  Branch (1355:4): [True: 127k, False: 2.19M]
  ------------------
 1356|   127k|			{
 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|   127k|				if (opta.GetCode() == cmBO)
  ------------------
  |  Branch (1361:9): [True: 1.71k, False: 125k]
  ------------------
 1362|  1.71k|					--stArgCount.top();
 1363|       |
 1364|   127k|				ApplyRemainingOprt(stOpt, stVal);
 1365|       |
 1366|       |				// Check if the bracket content has been evaluated completely
 1367|   127k|				if (stOpt.size() && stOpt.top().GetCode() == cmBO)
  ------------------
  |  Branch (1367:9): [True: 127k, False: 0]
  |  Branch (1367:25): [True: 18.0k, False: 109k]
  ------------------
 1368|  18.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|  18.0k|					MUP_ASSERT(stArgCount.size());
  ------------------
  |  |   78|  18.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 18.0k]
  |  |  ------------------
  |  |   79|  18.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|  18.0k|					int iArgCount = stArgCount.top();
 1377|  18.0k|					stArgCount.pop();
 1378|       |
 1379|  18.0k|					stOpt.pop(); // Take opening bracket from stack
 1380|       |
 1381|  18.0k|					if (iArgCount > 1 && (stOpt.size() == 0 ||
  ------------------
  |  Branch (1381:10): [True: 3.62k, False: 14.3k]
  |  Branch (1381:28): [True: 3, False: 3.62k]
  ------------------
 1382|  3.62k|						(stOpt.top().GetCode() != cmFUNC &&
  ------------------
  |  Branch (1382:8): [True: 17, False: 3.60k]
  ------------------
 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|     20|						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|  18.0k|					if (stOpt.size() &&
  ------------------
  |  Branch (1389:10): [True: 17.6k, False: 367]
  |  Branch (1389:10): [True: 11.9k, False: 6.06k]
  ------------------
 1390|  17.6k|						stOpt.top().GetCode() != cmOPRT_INFIX &&
  ------------------
  |  Branch (1390:7): [True: 17.2k, False: 405]
  ------------------
 1391|  17.2k|						stOpt.top().GetCode() != cmOPRT_BIN &&
  ------------------
  |  Branch (1391:7): [True: 17.2k, False: 0]
  ------------------
 1392|  17.2k|						stOpt.top().GetFuncAddr() != 0)
  ------------------
  |  Branch (1392:7): [True: 11.9k, False: 5.29k]
  ------------------
 1393|  11.9k|					{
 1394|  11.9k|						ApplyFunc(stOpt, stVal, iArgCount);
 1395|  11.9k|					}
 1396|  18.0k|				}
 1397|   127k|			} // if bracket content is evaluated
 1398|   127k|			break;
 1399|       |
 1400|       |			//
 1401|       |			// Next are the binary operator entries
 1402|       |			//
 1403|   150k|			case cmIF:
  ------------------
  |  Branch (1403:4): [True: 150k, False: 2.17M]
  ------------------
 1404|   150k|				ifElseCounter++;
 1405|   150k|				if (ifElseCounter > MaxNestingDepth)
  ------------------
  |  Branch (1405:9): [True: 2, False: 150k]
  ------------------
 1406|      2|					Error(ecNESTING_LIMIT, m_pTokenReader->GetPos());
 1407|       |
 1408|   150k|				stArgCount.push(1);
 1409|       |				// Falls through.
 1410|       |				// intentional (no break!)
 1411|       |
 1412|   153k|			case cmLAND:
  ------------------
  |  Branch (1412:4): [True: 3.07k, False: 2.32M]
  ------------------
 1413|   157k|			case cmLOR:
  ------------------
  |  Branch (1413:4): [True: 3.87k, False: 2.32M]
  ------------------
 1414|   161k|			case cmLT:
  ------------------
  |  Branch (1414:4): [True: 4.53k, False: 2.32M]
  ------------------
 1415|   164k|			case cmGT:
  ------------------
  |  Branch (1415:4): [True: 2.57k, False: 2.32M]
  ------------------
 1416|   165k|			case cmLE:
  ------------------
  |  Branch (1416:4): [True: 1.21k, False: 2.32M]
  ------------------
 1417|   166k|			case cmGE:
  ------------------
  |  Branch (1417:4): [True: 1.22k, False: 2.32M]
  ------------------
 1418|   167k|			case cmNEQ:
  ------------------
  |  Branch (1418:4): [True: 1.14k, False: 2.32M]
  ------------------
 1419|   170k|			case cmEQ:
  ------------------
  |  Branch (1419:4): [True: 2.11k, False: 2.32M]
  ------------------
 1420|   175k|			case cmADD:
  ------------------
  |  Branch (1420:4): [True: 5.08k, False: 2.32M]
  ------------------
 1421|   181k|			case cmSUB:
  ------------------
  |  Branch (1421:4): [True: 6.66k, False: 2.31M]
  ------------------
 1422|   185k|			case cmMUL:
  ------------------
  |  Branch (1422:4): [True: 3.85k, False: 2.32M]
  ------------------
 1423|   189k|			case cmDIV:
  ------------------
  |  Branch (1423:4): [True: 3.98k, False: 2.32M]
  ------------------
 1424|   368k|			case cmPOW:
  ------------------
  |  Branch (1424:4): [True: 179k, False: 2.14M]
  ------------------
 1425|   368k|			case cmASSIGN:
  ------------------
  |  Branch (1425:4): [True: 0, False: 2.32M]
  ------------------
 1426|   368k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1426:4): [True: 0, False: 2.32M]
  ------------------
 1427|       |
 1428|       |				// A binary operator (user defined or built in) has been found. 
 1429|   368k|				while (
 1430|   490k|					stOpt.size() &&
  ------------------
  |  Branch (1430:6): [True: 468k, False: 22.4k]
  ------------------
 1431|   468k|					stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1431:6): [True: 458k, False: 10.0k]
  ------------------
 1432|   458k|					stOpt.top().GetCode() != cmELSE &&
  ------------------
  |  Branch (1432:6): [True: 366k, False: 91.8k]
  ------------------
 1433|   366k|					stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1433:6): [True: 309k, False: 56.5k]
  ------------------
 1434|   309k|				{
 1435|   309k|					int nPrec1 = GetOprtPrecedence(stOpt.top()),
 1436|   309k|						nPrec2 = GetOprtPrecedence(opt);
 1437|       |
 1438|   309k|					if (stOpt.top().GetCode() == opt.GetCode())
  ------------------
  |  Branch (1438:10): [True: 174k, False: 135k]
  ------------------
 1439|   174k|					{
 1440|       |
 1441|       |						// Deal with operator associativity
 1442|   174k|						EOprtAssociativity eOprtAsct = GetOprtAssociativity(opt);
 1443|   174k|						if ((eOprtAsct == oaRIGHT && (nPrec1 <= nPrec2)) ||
  ------------------
  |  Branch (1443:12): [True: 153k, False: 21.0k]
  |  Branch (1443:36): [True: 153k, False: 0]
  ------------------
 1444|  21.0k|							(eOprtAsct == oaLEFT && (nPrec1 < nPrec2)))
  ------------------
  |  Branch (1444:9): [True: 21.0k, False: 0]
  |  Branch (1444:32): [True: 0, False: 21.0k]
  ------------------
 1445|   153k|						{
 1446|   153k|							break;
 1447|   153k|						}
 1448|   174k|					}
 1449|   135k|					else if (nPrec1 < nPrec2)
  ------------------
  |  Branch (1449:15): [True: 34.4k, False: 100k]
  ------------------
 1450|  34.4k|					{
 1451|       |						// In case the operators are not equal the precedence decides alone...
 1452|  34.4k|						break;
 1453|  34.4k|					}
 1454|       |
 1455|   121k|					if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1455:10): [True: 8.10k, False: 113k]
  ------------------
 1456|  8.10k|						ApplyFunc(stOpt, stVal, 1);
 1457|   113k|					else
 1458|   113k|						ApplyBinOprt(stOpt, stVal);
 1459|   121k|				} // while ( ... )
 1460|       |
 1461|   368k|				if (opt.GetCode() == cmIF)
  ------------------
  |  Branch (1461:9): [True: 150k, False: 218k]
  ------------------
 1462|   150k|					m_vRPN.AddIfElse(opt.GetCode());
 1463|       |
 1464|       |				// The operator can't be evaluated right now, push back to the operator stack
 1465|   368k|				stOpt.push(opt);
 1466|   368k|				break;
 1467|       |
 1468|       |				//
 1469|       |				// Last section contains functions and operators implicitly mapped to functions
 1470|       |				//
 1471|   257k|			case cmBO:
  ------------------
  |  Branch (1471:4): [True: 257k, False: 2.06M]
  ------------------
 1472|   257k|				stArgCount.push(1);
 1473|   257k|				stOpt.push(opt);
 1474|   257k|				break;
 1475|       |
 1476|  42.2k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1476:4): [True: 42.2k, False: 2.28M]
  ------------------
 1477|  55.3k|			case cmFUNC:
  ------------------
  |  Branch (1477:4): [True: 13.1k, False: 2.31M]
  ------------------
 1478|  55.3k|			case cmFUNC_BULK:
  ------------------
  |  Branch (1478:4): [True: 0, False: 2.32M]
  ------------------
 1479|  55.3k|			case cmFUNC_STR:
  ------------------
  |  Branch (1479:4): [True: 0, False: 2.32M]
  ------------------
 1480|  55.3k|				stOpt.push(opt);
 1481|  55.3k|				break;
 1482|       |
 1483|      0|			case cmOPRT_POSTFIX:
  ------------------
  |  Branch (1483:4): [True: 0, False: 2.32M]
  ------------------
 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.32M]
  ------------------
 1489|  2.32M|			} // end of switch operator-token
 1490|       |
 1491|  2.32M|			opta = opt;
 1492|       |
 1493|  2.32M|			if (opt.GetCode() == cmEND)
  ------------------
  |  Branch (1493:8): [True: 1.99k, False: 2.32M]
  ------------------
 1494|  1.99k|			{
 1495|  1.99k|				m_vRPN.Finalize();
 1496|  1.99k|				break;
 1497|  1.99k|			}
 1498|       |
 1499|  2.32M|			if (ParserBase::g_DbgDumpStack)
  ------------------
  |  Branch (1499:8): [True: 0, False: 2.32M]
  ------------------
 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.32M|		} // while (true)
 1508|       |
 1509|  1.99k|		if (ParserBase::g_DbgDumpCmdCode)
  ------------------
  |  Branch (1509:7): [True: 0, False: 1.99k]
  ------------------
 1510|      0|			m_vRPN.AsciiDump();
 1511|       |
 1512|  1.99k|		if (ifElseCounter > 0)
  ------------------
  |  Branch (1512:7): [True: 143, False: 1.85k]
  ------------------
 1513|    143|			Error(ecMISSING_ELSE_CLAUSE);
 1514|       |
 1515|       |		// get the last value (= final result) from the stack
 1516|  1.99k|		MUP_ASSERT(stArgCount.size() == 1);
  ------------------
  |  |   78|  1.99k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 10, False: 1.98k]
  |  |  ------------------
  |  |   79|  1.99k|            {														\
  |  |   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|            }
  ------------------
 1517|  1.98k|		m_nFinalResultIdx = stArgCount.top();
 1518|  1.98k|		if (m_nFinalResultIdx == 0)
  ------------------
  |  Branch (1518:7): [True: 0, False: 1.98k]
  ------------------
 1519|      0|			Error(ecINTERNAL_ERROR, 9);
 1520|       |
 1521|  1.98k|		if (stVal.size() == 0)
  ------------------
  |  Branch (1521:7): [True: 19, False: 1.96k]
  ------------------
 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|  51.7k|		while (stVal.size())
  ------------------
  |  Branch (1527:10): [True: 49.7k, False: 1.98k]
  ------------------
 1528|  49.7k|		{
 1529|  49.7k|			if (stVal.top().GetType() != tpDBL)
  ------------------
  |  Branch (1529:8): [True: 2, False: 49.7k]
  ------------------
 1530|      2|				Error(ecSTR_RESULT);
 1531|       |
 1532|  49.7k|			stVal.pop();
 1533|  49.7k|		}
 1534|       |
 1535|  1.98k|		m_vStackBuffer.resize(m_vRPN.GetMaxStackSize() * s_MaxNumOpenMPThreads);
 1536|  1.98k|	}
_ZNK2mu10ParserBase11ParseStringEv:
 1548|  3.87k|	{
 1549|  3.87k|		try
 1550|  3.87k|		{
 1551|  3.87k|			CreateRPN();
 1552|       |
 1553|  3.87k|			if (m_vRPN.GetSize() == 2)
  ------------------
  |  Branch (1553:8): [True: 772, False: 3.10k]
  ------------------
 1554|    772|			{
 1555|    772|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1556|    772|				m_pParseFormula = &ParserBase::ParseCmdCodeShort;
 1557|    772|				m_vStackBuffer[1] = (this->*m_pParseFormula)();
 1558|    772|				return m_vStackBuffer[1];
 1559|    772|			}
 1560|  3.10k|			else
 1561|  3.10k|			{
 1562|  3.10k|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1563|  3.10k|				m_pParseFormula = &ParserBase::ParseCmdCode;
 1564|  3.10k|				return (this->*m_pParseFormula)();
 1565|  3.10k|			}
 1566|  3.87k|		}
 1567|  3.87k|		catch (ParserError& exc)
 1568|  3.87k|		{
 1569|  2.05k|			exc.SetFormula(m_pTokenReader->GetExpr());
 1570|  2.05k|			throw;
 1571|  2.05k|		}
 1572|  3.87k|	}
_ZNK2mu10ParserBase5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
 1586|  2.06k|	{
 1587|  2.06k|		throw exception_type(a_iErrc, a_sTok, m_pTokenReader->GetExpr(), a_iPos);
 1588|  2.06k|	}
_ZNK2mu10ParserBase14HasBuiltInOprtEv:
 1723|  5.99M|	{
 1724|  5.99M|		return m_bBuiltInOp;
 1725|  5.99M|	}
_ZNK2mu10ParserBase4EvalEv:
 1840|  3.87k|	{
 1841|  3.87k|		return (this->*m_pParseFormula)();
 1842|  3.87k|	}

_ZN2mu14ParserByteCodeC2Ev:
   52|  3.90k|		: m_iStackPos(0)
   53|  3.90k| 		, m_stringBuffer()
   54|  3.90k|		, m_expr()
   55|  3.90k|		, m_iMaxStackSize(0)
   56|  3.90k|		, m_vRPN()
   57|  3.90k|		, m_bEnableOptimizer(true)
   58|  3.90k|	{
   59|  3.90k|		m_vRPN.reserve(50);
   60|  3.90k|	}
_ZN2mu14ParserByteCode6AddValEd:
  141|   928k|	{
  142|   928k|		++m_iStackPos;
  143|   928k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  144|       |
  145|       |		// If optimization does not apply
  146|   928k|		SToken tok;
  147|   928k|		tok.Cmd = cmVAL;
  148|   928k|		tok.Val.ptr = nullptr;
  149|   928k|		tok.Val.data = 0;
  150|   928k|		tok.Val.data2 = a_fVal;
  151|   928k|		m_vRPN.push_back(tok);
  152|   928k|	}
_ZN2mu14ParserByteCode15ConstantFoldingENS_8ECmdCodeE:
  156|  43.8k|	{
  157|  43.8k|		std::size_t sz = m_vRPN.size();
  158|  43.8k|		value_type& x = m_vRPN[sz - 2].Val.data2;
  159|  43.8k|		value_type& y = m_vRPN[sz - 1].Val.data2;
  160|       |
  161|  43.8k|		switch (a_Oprt)
  162|  43.8k|		{
  163|  2.13k|		case cmLAND: x = (int)x && (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (163:3): [True: 2.13k, False: 41.7k]
  |  Branch (163:20): [True: 1.43k, False: 706]
  |  Branch (163:30): [True: 1.07k, False: 357]
  ------------------
  164|  2.04k|		case cmLOR:  x = (int)x || (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (164:3): [True: 2.04k, False: 41.7k]
  |  Branch (164:20): [True: 1.25k, False: 781]
  |  Branch (164:30): [True: 520, False: 261]
  ------------------
  165|  2.23k|		case cmLT:   x = x < y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (165:3): [True: 2.23k, False: 41.5k]
  ------------------
  166|  2.12k|		case cmGT:   x = x > y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (166:3): [True: 2.12k, False: 41.7k]
  ------------------
  167|    743|		case cmLE:   x = x <= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (167:3): [True: 743, False: 43.0k]
  ------------------
  168|    777|		case cmGE:   x = x >= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (168:3): [True: 777, False: 43.0k]
  ------------------
  169|    721|		case cmNEQ:  x = x != y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (169:3): [True: 721, False: 43.1k]
  ------------------
  170|  1.56k|		case cmEQ:   x = x == y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (170:3): [True: 1.56k, False: 42.2k]
  ------------------
  171|  3.29k|		case cmADD:  x = x + y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (171:3): [True: 3.29k, False: 40.5k]
  ------------------
  172|  4.70k|		case cmSUB:  x = x - y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (172:3): [True: 4.70k, False: 39.1k]
  ------------------
  173|  1.65k|		case cmMUL:  x = x * y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (173:3): [True: 1.65k, False: 42.1k]
  ------------------
  174|  1.94k|		case cmDIV:
  ------------------
  |  Branch (174:3): [True: 1.94k, False: 41.8k]
  ------------------
  175|  1.94k|			x = x / y;
  176|  1.94k|			m_vRPN.pop_back();
  177|  1.94k|			break;
  178|       |
  179|  19.8k|		case cmPOW: x = MathImpl<value_type>::Pow(x, y);
  ------------------
  |  Branch (179:3): [True: 19.8k, False: 23.9k]
  ------------------
  180|  19.8k|			m_vRPN.pop_back();
  181|  19.8k|			break;
  182|       |
  183|      0|		default:
  ------------------
  |  Branch (183:3): [True: 0, False: 43.8k]
  ------------------
  184|      0|			break;
  185|  43.8k|		} // switch opcode
  186|  43.8k|	}
_ZN2mu14ParserByteCode5AddOpENS_8ECmdCodeE:
  200|   176k|	{
  201|   176k|		bool bOptimized = false;
  202|       |
  203|   176k|		if (m_bEnableOptimizer)
  ------------------
  |  Branch (203:7): [True: 176k, False: 0]
  ------------------
  204|   176k|		{
  205|   176k|			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|   176k|			if (sz >= 2 && m_vRPN[sz - 2].Cmd == cmVAL && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (211:8): [True: 176k, False: 0]
  |  Branch (211:19): [True: 47.1k, False: 128k]
  |  Branch (211:50): [True: 43.8k, False: 3.30k]
  ------------------
  212|  43.8k|			{
  213|  43.8k|				ConstantFolding(a_Oprt);
  214|  43.8k|				bOptimized = true;
  215|  43.8k|			}
  216|   132k|			else
  217|   132k|			{
  218|   132k|				switch (a_Oprt)
  219|   132k|				{
  220|   118k|				case  cmPOW:
  ------------------
  |  Branch (220:5): [True: 118k, False: 13.7k]
  ------------------
  221|       |					// Optimization for polynomials of low order
  222|   118k|					if (m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (222:10): [True: 0, False: 118k]
  |  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|   118k|					break;
  246|       |
  247|   118k|				case  cmSUB:
  ------------------
  |  Branch (247:5): [True: 1.70k, False: 130k]
  ------------------
  248|  3.14k|				case  cmADD:
  ------------------
  |  Branch (248:5): [True: 1.43k, False: 130k]
  ------------------
  249|       |					// Simple optimization based on pattern recognition for a shitload of different
  250|       |					// bytecode combinations of addition/subtraction
  251|  3.14k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (251:11): [True: 0, False: 3.14k]
  |  Branch (251:42): [True: 0, False: 0]
  ------------------
  252|  3.14k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR) ||
  ------------------
  |  Branch (252:8): [True: 2.28k, False: 857]
  |  Branch (252:39): [True: 0, False: 2.28k]
  ------------------
  253|  3.14k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (253:8): [True: 2.28k, False: 857]
  |  Branch (253:39): [True: 0, False: 2.28k]
  ------------------
  254|  3.14k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (254:8): [True: 0, False: 3.14k]
  |  Branch (254:42): [True: 0, False: 0]
  ------------------
  255|  3.14k|						(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: 3.14k]
  |  Branch (255:39): [True: 0, False: 0]
  |  Branch (255:70): [True: 0, False: 0]
  ------------------
  256|  3.14k|						(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: 3.14k]
  |  Branch (256:39): [True: 0, False: 0]
  |  Branch (256:73): [True: 0, False: 0]
  ------------------
  257|  3.14k|						(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: 3.14k]
  |  Branch (257:42): [True: 0, False: 0]
  |  Branch (257:73): [True: 0, False: 0]
  ------------------
  258|  3.14k|						(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: 3.14k]
  |  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|  3.14k|					break;
  273|       |
  274|  3.14k|				case  cmMUL:
  ------------------
  |  Branch (274:5): [True: 2.03k, False: 130k]
  ------------------
  275|  2.03k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (275:11): [True: 0, False: 2.03k]
  |  Branch (275:42): [True: 0, False: 0]
  ------------------
  276|  2.03k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR))
  ------------------
  |  Branch (276:8): [True: 993, False: 1.04k]
  |  Branch (276:39): [True: 0, False: 993]
  ------------------
  277|      0|					{
  278|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  279|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;
  ------------------
  |  Branch (279:32): [True: 0, False: 0]
  ------------------
  280|      0|						m_vRPN[sz - 2].Val.data = m_vRPN[sz - 2].Val.data2 + m_vRPN[sz - 1].Val.data2;
  281|      0|						m_vRPN[sz - 2].Val.data2 = 0;
  282|      0|						m_vRPN.pop_back();
  283|      0|						bOptimized = true;
  284|      0|					}
  285|  2.03k|					else if (
  286|  2.03k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (286:8): [True: 993, False: 1.04k]
  |  Branch (286:39): [True: 0, False: 993]
  ------------------
  287|  2.03k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL))
  ------------------
  |  Branch (287:8): [True: 0, False: 2.03k]
  |  Branch (287:42): [True: 0, False: 0]
  ------------------
  288|      0|					{
  289|       |						// Optimization: 2*(3*b+1) or (3*b+1)*2 -> 6*b+2
  290|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  291|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;
  ------------------
  |  Branch (291:32): [True: 0, False: 0]
  ------------------
  292|      0|						if (m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (292:11): [True: 0, False: 0]
  ------------------
  293|      0|						{
  294|      0|							m_vRPN[sz - 2].Val.data *= m_vRPN[sz - 1].Val.data2;
  295|      0|							m_vRPN[sz - 2].Val.data2 *= m_vRPN[sz - 1].Val.data2;
  296|      0|						}
  297|      0|						else
  298|      0|						{
  299|      0|							m_vRPN[sz - 2].Val.data = m_vRPN[sz - 1].Val.data * m_vRPN[sz - 2].Val.data2;
  300|      0|							m_vRPN[sz - 2].Val.data2 = m_vRPN[sz - 1].Val.data2 * m_vRPN[sz - 2].Val.data2;
  301|      0|						}
  302|      0|						m_vRPN.pop_back();
  303|      0|						bOptimized = true;
  304|      0|					}
  305|  2.03k|					else if (
  306|  2.03k|						m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR &&
  ------------------
  |  Branch (306:7): [True: 0, False: 2.03k]
  |  Branch (306:38): [True: 0, False: 0]
  ------------------
  307|      0|						m_vRPN[sz - 1].Val.ptr == m_vRPN[sz - 2].Val.ptr)
  ------------------
  |  Branch (307:7): [True: 0, False: 0]
  ------------------
  308|      0|					{
  309|       |						// Optimization: a*a -> a^2
  310|      0|						m_vRPN[sz - 2].Cmd = cmVARPOW2;
  311|      0|						m_vRPN.pop_back();
  312|      0|						bOptimized = true;
  313|      0|					}
  314|  2.03k|					break;
  315|       |
  316|  1.50k|				case cmDIV:
  ------------------
  |  Branch (316:5): [True: 1.50k, False: 130k]
  ------------------
  317|  1.50k|					if (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 1].Val.data2 != 0)
  ------------------
  |  Branch (317:10): [True: 658, False: 842]
  |  Branch (317:41): [True: 0, False: 658]
  |  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.50k|					break;
  326|       |
  327|       |					// no optimization for other opcodes
  328|  7.02k|				default:
  ------------------
  |  Branch (328:5): [True: 7.02k, False: 125k]
  ------------------
  329|  7.02k|					break;
  330|   132k|				} // switch a_Oprt
  331|   132k|			}
  332|   176k|		}
  333|       |
  334|       |		// If optimization can't be applied just write the value
  335|   176k|		if (!bOptimized)
  ------------------
  |  Branch (335:7): [True: 132k, False: 43.8k]
  ------------------
  336|   132k|		{
  337|   132k|			--m_iStackPos;
  338|   132k|			SToken tok;
  339|   132k|			tok.Cmd = a_Oprt;
  340|   132k|			m_vRPN.push_back(tok);
  341|   132k|		}
  342|   176k|	}
_ZN2mu14ParserByteCode9AddIfElseENS_8ECmdCodeE:
  346|   287k|	{
  347|   287k|		SToken tok;
  348|   287k|		tok.Cmd = a_Oprt;
  349|   287k|		m_vRPN.push_back(tok);
  350|   287k|	}
_ZN2mu14ParserByteCode6AddFunENS_21generic_callable_typeEib:
  380|  29.0k|	{
  381|  29.0k|		std::size_t sz = m_vRPN.size();
  382|  29.0k|		bool optimize = false;
  383|       |
  384|       |		// only optimize functions with fixed number of more than a single arguments
  385|  29.0k|		if (isFunctionOptimizable && m_bEnableOptimizer && a_iArgc > 0)
  ------------------
  |  Branch (385:7): [True: 27.3k, False: 1.71k]
  |  Branch (385:32): [True: 27.3k, False: 0]
  |  Branch (385:54): [True: 22.6k, False: 4.62k]
  ------------------
  386|  22.6k|		{
  387|       |			// <ibg 2020-06-10/> Unary Plus is a no-op, optimize it away
  388|  22.6k|			if (a_pFun == generic_callable_type{(erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr})
  ------------------
  |  Branch (388:8): [True: 3.14k, False: 19.5k]
  ------------------
  389|  3.14k|				return;
  390|       |
  391|  19.5k|			optimize = true;
  392|       |
  393|  29.0k|			for (int i = 0; i < std::abs(a_iArgc); ++i)
  ------------------
  |  Branch (393:20): [True: 19.7k, False: 9.32k]
  ------------------
  394|  19.7k|			{
  395|  19.7k|				if (m_vRPN[sz - i - 1].Cmd != cmVAL)
  ------------------
  |  Branch (395:9): [True: 10.2k, False: 9.53k]
  ------------------
  396|  10.2k|				{
  397|  10.2k|					optimize = false;
  398|  10.2k|					break;
  399|  10.2k|				}
  400|  19.7k|			}
  401|  19.5k|		}
  402|       |
  403|  25.8k|		if (optimize)
  ------------------
  |  Branch (403:7): [True: 9.32k, False: 16.5k]
  ------------------
  404|  9.32k|		{
  405|  9.32k|			value_type val = 0;
  406|  9.32k|			switch (a_iArgc)
  407|  9.32k|			{
  408|  9.12k|			case 1:  val = a_pFun.call_fun<1>(m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (408:4): [True: 9.12k, False: 198]
  ------------------
  409|    198|			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: 198, False: 9.12k]
  ------------------
  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.32k]
  ------------------
  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.32k]
  ------------------
  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.32k]
  ------------------
  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.32k]
  ------------------
  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.32k]
  ------------------
  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.32k]
  ------------------
  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.32k]
  ------------------
  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.32k]
  ------------------
  418|      0|			default:
  ------------------
  |  Branch (418:4): [True: 0, False: 9.32k]
  ------------------
  419|       |				// For now functions with unlimited number of arguments are not optimized
  420|      0|				throw ParserError(ecINTERNAL_ERROR);
  421|  9.32k|			}
  422|       |
  423|       |			// remove the folded values
  424|  9.32k|			m_vRPN.erase(m_vRPN.end() - a_iArgc, m_vRPN.end());
  425|       |
  426|  9.32k|			SToken tok;
  427|  9.32k|			tok.Cmd = cmVAL;
  428|  9.32k|			tok.Val.data = 0;
  429|  9.32k|			tok.Val.data2 = val;
  430|  9.32k|			tok.Val.ptr = nullptr;
  431|  9.32k|			m_vRPN.push_back(tok);
  432|  9.32k|		}
  433|  16.5k|		else
  434|  16.5k|		{
  435|  16.5k|			SToken tok;
  436|  16.5k|			tok.Cmd = cmFUNC;
  437|  16.5k|			tok.Fun.argc = a_iArgc;
  438|  16.5k|			tok.Fun.cb = a_pFun;
  439|  16.5k|			m_vRPN.push_back(tok);
  440|  16.5k|		}
  441|       |
  442|  25.8k|		m_iStackPos = m_iStackPos - std::abs(a_iArgc) + 1;
  443|  25.8k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  444|       |
  445|  25.8k|	}
_ZN2mu14ParserByteCode8FinalizeEv:
  493|  1.99k|	{
  494|  1.99k|		SToken tok;
  495|  1.99k|		tok.Cmd = cmEND;
  496|  1.99k|		m_vRPN.push_back(tok);
  497|  1.99k|		rpn_type(m_vRPN).swap(m_vRPN);     // shrink bytecode vector to fit
  498|       |
  499|       |		// Determine the if-then-else jump offsets
  500|  1.99k|		std::stack<int> stIf, stElse;
  501|  1.99k|		int idx;
  502|  1.01M|		for (int i = 0; i < (int)m_vRPN.size(); ++i)
  ------------------
  |  Branch (502:19): [True: 1.01M, False: 1.99k]
  ------------------
  503|  1.01M|		{
  504|  1.01M|			switch (m_vRPN[i].Cmd)
  505|  1.01M|			{
  506|  90.3k|			case cmIF:
  ------------------
  |  Branch (506:4): [True: 90.3k, False: 919k]
  ------------------
  507|  90.3k|				stIf.push(i);
  508|  90.3k|				break;
  509|       |
  510|  74.0k|			case cmELSE:
  ------------------
  |  Branch (510:4): [True: 74.0k, False: 936k]
  ------------------
  511|  74.0k|				stElse.push(i);
  512|  74.0k|				idx = stIf.top();
  513|  74.0k|				stIf.pop();
  514|  74.0k|				m_vRPN[idx].Oprt.offset = i - idx;
  515|  74.0k|				break;
  516|       |
  517|  31.3k|			case cmENDIF:
  ------------------
  |  Branch (517:4): [True: 31.3k, False: 978k]
  ------------------
  518|  31.3k|				idx = stElse.top();
  519|  31.3k|				stElse.pop();
  520|  31.3k|				m_vRPN[idx].Oprt.offset = i - idx;
  521|  31.3k|				break;
  522|       |
  523|   814k|			default:
  ------------------
  |  Branch (523:4): [True: 814k, False: 195k]
  ------------------
  524|   814k|				break;
  525|  1.01M|			}
  526|  1.01M|		}
  527|  1.99k|	}
_ZNK2mu14ParserByteCode15GetMaxStackSizeEv:
  531|  1.82k|	{
  532|  1.82k|		return m_iMaxStackSize + 1;
  533|  1.82k|	}
_ZN2mu14ParserByteCode5clearEv:
  545|   136k|	{
  546|   136k|		m_vRPN.clear();
  547|   136k|		m_iStackPos = 0;
  548|   136k|		m_iMaxStackSize = 0;
  549|   136k|	}

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

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

_ZN2mu17ParserTokenReaderC2EPNS_10ParserBaseE:
  122|  3.90k|		:m_pParser(a_pParent)
  123|  3.90k|		, m_strFormula()
  124|  3.90k|		, m_iPos(0)
  125|  3.90k|		, m_iSynFlags(0)
  126|  3.90k|		, m_bIgnoreUndefVar(false)
  127|  3.90k|		, m_pFunDef(nullptr)
  128|  3.90k|		, m_pPostOprtDef(nullptr)
  129|  3.90k|		, m_pInfixOprtDef(nullptr)
  130|  3.90k|		, m_pOprtDef(nullptr)
  131|  3.90k|		, m_pConstDef(nullptr)
  132|  3.90k|		, m_pStrVarDef(nullptr)
  133|  3.90k|		, m_pVarDef(nullptr)
  134|  3.90k|		, m_pFactory(nullptr)
  135|  3.90k|		, m_pFactoryData(nullptr)
  136|  3.90k|		, m_vIdentFun()
  137|  3.90k|		, m_UsedVar()
  138|  3.90k|		, m_fZero(0)
  139|  3.90k|		, m_bracketStack()
  140|  3.90k|		, m_lastTok()
  141|  3.90k|		, m_cArgSep(',')
  142|  3.90k|	{
  143|  3.90k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  3.90k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.90k]
  |  |  ------------------
  |  |   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|            }
  ------------------
  144|  3.90k|		SetParent(m_pParser);
  145|  3.90k|	}
_ZN2mu17ParserTokenReader16SaveBeforeReturnERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  165|  2.32M|	{
  166|  2.32M|		m_lastTok = tok;
  167|  2.32M|		return m_lastTok;
  168|  2.32M|	}
_ZN2mu17ParserTokenReader11AddValIdentEPFiPKcPiPdE:
  172|  3.90k|	{
  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.90k|		m_vIdentFun.push_front(a_pCallback);
  180|  3.90k|	}
_ZNK2mu17ParserTokenReader6GetPosEv:
  196|    215|	{
  197|    215|		return m_iPos;
  198|    215|	}
_ZNK2mu17ParserTokenReader7GetExprEv:
  207|  9.81k|	{
  208|  9.81k|		return m_strFormula;
  209|  9.81k|	}
_ZN2mu17ParserTokenReader10SetFormulaERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  225|  3.87k|	{
  226|  3.87k|		m_strFormula = a_strFormula;
  227|  3.87k|		ReInit();
  228|  3.87k|	}
_ZN2mu17ParserTokenReader6ReInitEv:
  254|   140k|	{
  255|   140k|		m_iPos = 0;
  256|   140k|		m_iSynFlags = sfSTART_OF_LINE;
  257|   140k|		m_bracketStack = std::stack<int>();
  258|   140k|		m_UsedVar.clear();
  259|   140k|		m_lastTok = token_type();
  260|   140k|	}
_ZN2mu17ParserTokenReader13ReadNextTokenEv:
  265|  2.32M|	{
  266|  2.32M|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  2.32M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.32M]
  |  |  ------------------
  |  |   79|  2.32M|            {														\
  |  |   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.32M|		const char_type* szExpr = m_strFormula.c_str();
  269|  2.32M|		token_type tok;
  270|       |
  271|       |		// Ignore all non printable characters when reading the expression
  272|  2.33M|		while (szExpr[m_iPos] > 0 && szExpr[m_iPos] <= 0x20)
  ------------------
  |  Branch (272:10): [True: 2.32M, False: 2.88k]
  |  Branch (272:32): [True: 5.23k, False: 2.32M]
  ------------------
  273|  5.23k|		{
  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.23k|			if (szExpr[m_iPos] >= 14 && szExpr[m_iPos] <= 31)
  ------------------
  |  Branch (276:8): [True: 3.04k, False: 2.18k]
  |  Branch (276:32): [True: 18, False: 3.02k]
  ------------------
  277|     18|				Error(ecINVALID_CHARACTERS_FOUND, m_iPos);
  278|       |
  279|  5.23k|			++m_iPos;
  280|  5.23k|		}
  281|       |
  282|       |		// Check for end of formula
  283|  2.32M|		if (IsEOF(tok))
  ------------------
  |  Branch (283:7): [True: 2.03k, False: 2.32M]
  ------------------
  284|  2.03k|			return SaveBeforeReturn(tok);
  285|       |
  286|       |		// Check for user defined binary operator
  287|  2.32M|		if (IsOprt(tok))
  ------------------
  |  Branch (287:7): [True: 0, False: 2.32M]
  ------------------
  288|      0|			return SaveBeforeReturn(tok);
  289|       |
  290|       |		// Check for function token
  291|  2.32M|		if (IsFunTok(tok))
  ------------------
  |  Branch (291:7): [True: 13.1k, False: 2.31M]
  ------------------
  292|  13.1k|			return SaveBeforeReturn(tok);
  293|       |
  294|       |		// Check built in operators / tokens
  295|  2.31M|		if (IsBuiltIn(tok))
  ------------------
  |  Branch (295:7): [True: 890k, False: 1.41M]
  ------------------
  296|   890k|			return SaveBeforeReturn(tok);
  297|       |
  298|       |		// Check for function argument separators
  299|  1.41M|		if (IsArgSep(tok))
  ------------------
  |  Branch (299:7): [True: 477k, False: 942k]
  ------------------
  300|   477k|			return SaveBeforeReturn(tok);
  301|       |
  302|       |		// Check for values / constant tokens
  303|   942k|		if (IsValTok(tok))
  ------------------
  |  Branch (303:7): [True: 928k, False: 14.1k]
  ------------------
  304|   928k|			return SaveBeforeReturn(tok);
  305|       |
  306|       |		// Check for variable tokens
  307|  14.1k|		if (IsVarTok(tok))
  ------------------
  |  Branch (307:7): [True: 0, False: 14.1k]
  ------------------
  308|      0|			return SaveBeforeReturn(tok);
  309|       |
  310|       |		// Check for string variables
  311|  14.1k|		if (IsStrVarTok(tok))
  ------------------
  |  Branch (311:7): [True: 0, False: 14.1k]
  ------------------
  312|      0|			return SaveBeforeReturn(tok);
  313|       |
  314|       |		// Check for String tokens
  315|  14.1k|		if (IsString(tok))
  ------------------
  |  Branch (315:7): [True: 12.4k, False: 1.65k]
  ------------------
  316|  12.4k|			return SaveBeforeReturn(tok);
  317|       |
  318|       |		// Check for unary operators
  319|  1.65k|		if (IsInfixOpTok(tok))
  ------------------
  |  Branch (319:7): [True: 0, False: 1.65k]
  ------------------
  320|      0|			return SaveBeforeReturn(tok);
  321|       |
  322|       |		// Check for unary operators
  323|  1.65k|		if (IsPostOpTok(tok))
  ------------------
  |  Branch (323:7): [True: 0, False: 1.65k]
  ------------------
  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.65k|		if ((m_bIgnoreUndefVar || m_pFactory) && IsUndefVarTok(tok))
  ------------------
  |  Branch (333:8): [True: 1.07k, False: 576]
  |  Branch (333:29): [True: 0, False: 576]
  |  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.65k|		string_type strTok;
  341|  1.65k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  342|  1.65k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (342:7): [True: 380, False: 1.27k]
  ------------------
  343|    380|			Error(ecUNASSIGNABLE_TOKEN, m_iPos, strTok);
  344|       |
  345|  1.65k|		Error(ecUNASSIGNABLE_TOKEN, m_iPos, m_strFormula.substr(m_iPos));
  346|  1.65k|		return token_type(); // never reached
  347|  1.65k|	}
_ZN2mu17ParserTokenReader9SetParentEPNS_10ParserBaseE:
  351|  3.90k|	{
  352|  3.90k|		m_pParser = a_pParent;
  353|  3.90k|		m_pFunDef = &a_pParent->m_FunDef;
  354|  3.90k|		m_pOprtDef = &a_pParent->m_OprtDef;
  355|  3.90k|		m_pInfixOprtDef = &a_pParent->m_InfixOprtDef;
  356|  3.90k|		m_pPostOprtDef = &a_pParent->m_PostOprtDef;
  357|  3.90k|		m_pVarDef = &a_pParent->m_VarDef;
  358|  3.90k|		m_pStrVarDef = &a_pParent->m_StrVarDef;
  359|  3.90k|		m_pConstDef = &a_pParent->m_ConstDef;
  360|  3.90k|	}
_ZNK2mu17ParserTokenReader12ExtractTokenEPKcRNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEm:
  372|  5.20M|	{
  373|  5.20M|		auto iEnd = m_strFormula.find_first_not_of(a_szCharSet, a_iPos);
  374|       |
  375|  5.20M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (375:7): [True: 0, False: 5.20M]
  ------------------
  376|      0|			iEnd = m_strFormula.length();
  377|       |
  378|       |		// Assign token string if there was something found
  379|  5.20M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (379:7): [True: 1.91M, False: 3.29M]
  ------------------
  380|  1.91M|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  381|       |
  382|  5.20M|		return static_cast<int>(iEnd);
  383|  5.20M|	}
_ZNK2mu17ParserTokenReader20ExtractOperatorTokenERNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEm:
  394|  2.32M|	{
  395|       |		// Changed as per Issue 6: https://code.google.com/p/muparser/issues/detail?id=6
  396|  2.32M|		auto iEnd = m_strFormula.find_first_not_of(m_pParser->ValidOprtChars(), a_iPos);
  397|  2.32M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (397:7): [True: 0, False: 2.32M]
  ------------------
  398|      0|			iEnd = m_strFormula.length();
  399|       |
  400|       |		// Assign token string if there was something found
  401|  2.32M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (401:7): [True: 426k, False: 1.89M]
  ------------------
  402|   426k|		{
  403|   426k|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  404|   426k|			return static_cast<int>(iEnd);
  405|   426k|		}
  406|  1.89M|		else
  407|  1.89M|		{
  408|       |			// There is still the chance of having to deal with an operator consisting exclusively
  409|       |			// of alphabetic characters.
  410|  1.89M|			return ExtractToken(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), a_sTok, (std::size_t)a_iPos);
  ------------------
  |  |   69|  1.89M|		#define _T(x) x
  ------------------
  411|  1.89M|		}
  412|  2.32M|	}
_ZN2mu17ParserTokenReader9IsBuiltInERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  420|  2.30M|	{
  421|  2.30M|		const char_type** const pOprtDef = m_pParser->GetOprtDef(),
  422|  2.30M|			* const szFormula = m_strFormula.c_str();
  423|       |
  424|       |		// Compare token with function and operator strings
  425|       |		// check string for operator/function
  426|  39.7M|		for (int i = 0; pOprtDef[i]; i++)
  ------------------
  |  Branch (426:19): [True: 38.2M, False: 1.41M]
  ------------------
  427|  38.2M|		{
  428|  38.2M|			std::size_t len(std::char_traits<char_type>::length(pOprtDef[i]));
  429|  38.2M|			if (string_type(pOprtDef[i]) == string_type(szFormula + m_iPos, szFormula + m_iPos + len))
  ------------------
  |  Branch (429:8): [True: 890k, False: 37.4M]
  ------------------
  430|   890k|			{
  431|   890k|				switch (i)
  432|   890k|				{
  433|  3.07k|				case cmLAND:
  ------------------
  |  Branch (433:5): [True: 3.07k, False: 887k]
  ------------------
  434|  6.96k|				case cmLOR:
  ------------------
  |  Branch (434:5): [True: 3.88k, False: 886k]
  ------------------
  435|  11.5k|				case cmLT:
  ------------------
  |  Branch (435:5): [True: 4.54k, False: 885k]
  ------------------
  436|  14.0k|				case cmGT:
  ------------------
  |  Branch (436:5): [True: 2.58k, False: 887k]
  ------------------
  437|  15.3k|				case cmLE:
  ------------------
  |  Branch (437:5): [True: 1.22k, False: 889k]
  ------------------
  438|  16.5k|				case cmGE:
  ------------------
  |  Branch (438:5): [True: 1.22k, False: 889k]
  ------------------
  439|  17.6k|				case cmNEQ:
  ------------------
  |  Branch (439:5): [True: 1.14k, False: 889k]
  ------------------
  440|  19.8k|				case cmEQ:
  ------------------
  |  Branch (440:5): [True: 2.12k, False: 888k]
  ------------------
  441|  39.3k|				case cmADD:
  ------------------
  |  Branch (441:5): [True: 19.5k, False: 870k]
  ------------------
  442|  73.8k|				case cmSUB:
  ------------------
  |  Branch (442:5): [True: 34.4k, False: 856k]
  ------------------
  443|  77.6k|				case cmMUL:
  ------------------
  |  Branch (443:5): [True: 3.86k, False: 886k]
  ------------------
  444|  81.6k|				case cmDIV:
  ------------------
  |  Branch (444:5): [True: 4.00k, False: 886k]
  ------------------
  445|   260k|				case cmPOW:
  ------------------
  |  Branch (445:5): [True: 179k, False: 711k]
  ------------------
  446|   260k|				case cmASSIGN:
  ------------------
  |  Branch (446:5): [True: 7, False: 890k]
  ------------------
  447|       |					// The assignment operator need special treatment
  448|   260k|					if (i == cmASSIGN && m_iSynFlags & noASSIGN)
  ------------------
  |  Branch (448:10): [True: 7, False: 260k]
  |  Branch (448:27): [True: 6, False: 1]
  ------------------
  449|      6|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  450|       |
  451|   260k|					if (!m_pParser->HasBuiltInOprt()) continue;
  ------------------
  |  Branch (451:10): [True: 0, False: 260k]
  ------------------
  452|   260k|					if (m_iSynFlags & noOPT)
  ------------------
  |  Branch (452:10): [True: 42.3k, False: 218k]
  ------------------
  453|  42.3k|					{
  454|       |						// Maybe its an infix operator not an operator
  455|       |						// Both operator types can share characters in 
  456|       |						// their identifiers
  457|  42.3k|						if (IsInfixOpTok(a_Tok))
  ------------------
  |  Branch (457:11): [True: 42.2k, False: 123]
  ------------------
  458|  42.2k|							return true;
  459|       |
  460|    123|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  461|    123|					}
  462|       |
  463|   218k|					m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE | noEND;
  464|   218k|					break;
  465|       |
  466|   257k|				case cmBO:
  ------------------
  |  Branch (466:5): [True: 257k, False: 633k]
  ------------------
  467|   257k|					if (m_iSynFlags & noBO)
  ------------------
  |  Branch (467:10): [True: 12, False: 257k]
  ------------------
  468|     12|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  469|       |
  470|   257k|					if (m_lastTok.GetCode() == cmFUNC)
  ------------------
  |  Branch (470:10): [True: 13.1k, False: 244k]
  ------------------
  471|  13.1k|						m_iSynFlags = noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  472|   244k|					else
  473|   244k|						m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  474|       |
  475|   257k|					if ((int)m_bracketStack.size() >= MaxNestingDepth)
  ------------------
  |  Branch (475:10): [True: 19, False: 257k]
  ------------------
  476|     19|						Error(ecNESTING_LIMIT, m_iPos, pOprtDef[i]);
  477|       |
  478|   257k|					m_bracketStack.push(cmBO);
  479|   257k|					break;
  480|       |
  481|   127k|				case cmBC:
  ------------------
  |  Branch (481:5): [True: 127k, False: 763k]
  ------------------
  482|   127k|					if (m_iSynFlags & noBC)
  ------------------
  |  Branch (482:10): [True: 6, False: 127k]
  ------------------
  483|      6|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  484|       |
  485|   127k|					m_iSynFlags = noBO | noVAR | noVAL | noFUN | noINFIXOP | noSTR | noASSIGN;
  486|       |
  487|   127k|					if (!m_bracketStack.empty())
  ------------------
  |  Branch (487:10): [True: 127k, False: 17]
  ------------------
  488|   127k|						m_bracketStack.pop();
  489|     17|					else
  490|     17|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  491|   127k|					break;
  492|       |
  493|  95.1k|				case cmELSE:
  ------------------
  |  Branch (493:5): [True: 95.1k, False: 795k]
  ------------------
  494|  95.1k|					if (m_iSynFlags & noELSE)
  ------------------
  |  Branch (494:10): [True: 7, False: 95.1k]
  ------------------
  495|      7|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  496|       |
  497|  95.1k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  498|  95.1k|					break;
  499|       |
  500|   150k|				case cmIF:
  ------------------
  |  Branch (500:5): [True: 150k, False: 740k]
  ------------------
  501|   150k|					if (m_iSynFlags & noIF)
  ------------------
  |  Branch (501:10): [True: 10, False: 150k]
  ------------------
  502|     10|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  503|       |
  504|   150k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  505|   150k|					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: 890k]
  ------------------
  508|      0|					Error(ecINTERNAL_ERROR);
  509|   890k|				} // switch operator id
  510|       |
  511|   848k|				m_iPos += (int)len;
  512|   848k|				a_Tok.Set((ECmdCode)i, pOprtDef[i]);
  513|   848k|				return true;
  514|   890k|			} // if operator string found
  515|  38.2M|		} // end of for all operator strings
  516|       |
  517|  1.41M|		return false;
  518|  2.30M|	}
_ZN2mu17ParserTokenReader8IsArgSepERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  522|  1.41M|	{
  523|  1.41M|		const char_type* szFormula = m_strFormula.c_str();
  524|       |
  525|  1.41M|		if (szFormula[m_iPos] == m_cArgSep)
  ------------------
  |  Branch (525:7): [True: 477k, False: 941k]
  ------------------
  526|   477k|		{
  527|       |			// copy the separator into null terminated string
  528|   477k|			char_type szSep[2];
  529|   477k|			szSep[0] = m_cArgSep;
  530|   477k|			szSep[1] = 0;
  531|       |
  532|   477k|			if (m_iSynFlags & noARG_SEP)
  ------------------
  |  Branch (532:8): [True: 8, False: 477k]
  ------------------
  533|      8|				Error(ecUNEXPECTED_ARG_SEP, m_iPos, szSep);
  534|       |
  535|   477k|			m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN;
  536|   477k|			m_iPos++;
  537|   477k|			a_Tok.Set(cmARG_SEP, szSep);
  538|   477k|			return true;
  539|   477k|		}
  540|       |
  541|   941k|		return false;
  542|  1.41M|	}
_ZN2mu17ParserTokenReader5IsEOFERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  553|  2.32M|	{
  554|  2.32M|		const char_type* szFormula = m_strFormula.c_str();
  555|       |
  556|       |		// check for EOF
  557|  2.32M|		if (!szFormula[m_iPos] /*|| szFormula[m_iPos] == '\n'*/)
  ------------------
  |  Branch (557:7): [True: 2.77k, False: 2.32M]
  ------------------
  558|  2.77k|		{
  559|  2.77k|			if (m_iSynFlags & noEND)
  ------------------
  |  Branch (559:8): [True: 599, False: 2.17k]
  ------------------
  560|    599|				Error(ecUNEXPECTED_EOF, m_iPos);
  561|       |
  562|  2.77k|			if (!m_bracketStack.empty())
  ------------------
  |  Branch (562:8): [True: 141, False: 2.63k]
  ------------------
  563|    141|				Error(ecMISSING_PARENS, m_iPos, _T(")"));
  ------------------
  |  |   69|    141|		#define _T(x) x
  ------------------
  564|       |
  565|  2.77k|			m_iSynFlags = 0;
  566|  2.77k|			a_Tok.Set(cmEND);
  567|  2.77k|			return true;
  568|  2.77k|		}
  569|       |
  570|  2.32M|		return false;
  571|  2.32M|	}
_ZN2mu17ParserTokenReader12IsInfixOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  578|  42.9k|	{
  579|  42.9k|		string_type sTok;
  580|  42.9k|		auto iEnd = ExtractToken(m_pParser->ValidInfixOprtChars(), sTok, (std::size_t)m_iPos);
  581|  42.9k|		if (iEnd == m_iPos)
  ------------------
  |  Branch (581:7): [True: 363, False: 42.5k]
  ------------------
  582|    363|			return false;
  583|       |
  584|       |		// iterate over all postfix operator strings
  585|  42.5k|		funmap_type::const_reverse_iterator it = m_pInfixOprtDef->rbegin();
  586|  57.6k|		for (; it != m_pInfixOprtDef->rend(); ++it)
  ------------------
  |  Branch (586:10): [True: 57.3k, False: 301]
  ------------------
  587|  57.3k|		{
  588|  57.3k|			if (sTok.find(it->first) != 0)
  ------------------
  |  Branch (588:8): [True: 15.0k, False: 42.2k]
  ------------------
  589|  15.0k|				continue;
  590|       |
  591|  42.2k|			a_Tok.Set(it->second, it->first);
  592|  42.2k|			m_iPos += (int)it->first.length();
  593|       |
  594|  42.2k|			if (m_iSynFlags & noINFIXOP)
  ------------------
  |  Branch (594:8): [True: 35, False: 42.2k]
  ------------------
  595|     35|				Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString());
  596|       |
  597|  42.2k|			m_iSynFlags |= noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN | noARG_SEP;
  598|  42.2k|			return true;
  599|  57.3k|		}
  600|       |
  601|    301|		return false;
  602|  42.5k|	}
_ZN2mu17ParserTokenReader8IsFunTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  612|  2.32M|	{
  613|  2.32M|		string_type strTok;
  614|  2.32M|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  615|  2.32M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (615:7): [True: 1.38M, False: 940k]
  ------------------
  616|  1.38M|			return false;
  617|       |
  618|   940k|		funmap_type::const_iterator item = m_pFunDef->find(strTok);
  619|   940k|		if (item == m_pFunDef->end())
  ------------------
  |  Branch (619:7): [True: 927k, False: 13.1k]
  ------------------
  620|   927k|			return false;
  621|       |
  622|       |		// Check if the next sign is an opening bracket
  623|  13.1k|		const char_type* szFormula = m_strFormula.c_str();
  624|  13.1k|		if (szFormula[iEnd] != '(')
  ------------------
  |  Branch (624:7): [True: 23, False: 13.1k]
  ------------------
  625|     23|			return false;
  626|       |
  627|       |		// fix for #164: https://github.com/beltoforion/muparser/issues/164
  628|  13.1k|		if (m_lastTok.GetFuncAddr() == generic_callable_type{ (erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr })
  ------------------
  |  Branch (628:7): [True: 1, False: 13.1k]
  ------------------
  629|      1|		{
  630|      1|			Error(ecUNARY_PLUS_IN_FRONT_OF_FUNCTION, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  631|      1|		}
  632|       |
  633|  13.1k|		a_Tok.Set(item->second, strTok);
  634|       |
  635|  13.1k|		m_iPos = (int)iEnd;
  636|  13.1k|		if (m_iSynFlags & noFUN)
  ------------------
  |  Branch (636:7): [True: 2, False: 13.1k]
  ------------------
  637|      2|			Error(ecUNEXPECTED_FUN, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  638|       |
  639|  13.1k|		m_iSynFlags = noANY ^ noBO;
  640|  13.1k|		return true;
  641|  13.1k|	}
_ZN2mu17ParserTokenReader6IsOprtERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  649|  2.32M|	{
  650|  2.32M|		const char_type* const szExpr = m_strFormula.c_str();
  651|  2.32M|		string_type strTok;
  652|       |
  653|  2.32M|		auto iEnd = ExtractOperatorToken(strTok, (std::size_t)m_iPos);
  654|  2.32M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (654:7): [True: 1.89M, False: 426k]
  ------------------
  655|  1.89M|			return false;
  656|       |
  657|       |		// Check if the operator is a built in operator, if so ignore it here
  658|   426k|		const char_type** const pOprtDef = m_pParser->GetOprtDef();
  659|  5.73M|		for (int i = 0; m_pParser->HasBuiltInOprt() && pOprtDef[i]; ++i)
  ------------------
  |  Branch (659:19): [True: 5.73M, False: 0]
  |  Branch (659:50): [True: 5.68M, False: 50.0k]
  ------------------
  660|  5.68M|		{
  661|  5.68M|			if (string_type(pOprtDef[i]) == strTok)
  ------------------
  |  Branch (661:8): [True: 376k, False: 5.30M]
  ------------------
  662|   376k|				return false;
  663|  5.68M|		}
  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|  50.0k|		funmap_type::const_reverse_iterator it = m_pOprtDef->rbegin();
  672|  50.0k|		for (; it != m_pOprtDef->rend(); ++it)
  ------------------
  |  Branch (672:10): [True: 0, False: 50.0k]
  ------------------
  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|  50.0k|		return false;
  704|  50.0k|	}
_ZN2mu17ParserTokenReader11IsPostOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  709|    576|	{
  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|    576|		if (m_iSynFlags & noPOSTOP)
  ------------------
  |  Branch (717:7): [True: 386, False: 190]
  ------------------
  718|    386|			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|    190|		string_type sTok;
  731|    190|		auto iEnd = ExtractToken(m_pParser->ValidOprtChars(), sTok, (std::size_t)m_iPos);
  732|    190|		if (iEnd == m_iPos)
  ------------------
  |  Branch (732:7): [True: 35, False: 155]
  ------------------
  733|     35|			return false;
  734|       |
  735|       |		// iterate over all postfix operator strings
  736|    155|		funmap_type::const_reverse_iterator it = m_pPostOprtDef->rbegin();
  737|    155|		for (; it != m_pPostOprtDef->rend(); ++it)
  ------------------
  |  Branch (737:10): [True: 0, False: 155]
  ------------------
  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|    155|		return false;
  750|    155|	}
_ZN2mu17ParserTokenReader8IsValTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  761|   941k|	{
  762|   941k|		MUP_ASSERT(m_pConstDef != nullptr);
  ------------------
  |  |   78|   941k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 941k]
  |  |  ------------------
  |  |   79|   941k|            {														\
  |  |   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|   941k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|   941k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 941k]
  |  |  ------------------
  |  |   79|   941k|            {														\
  |  |   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|   941k|		string_type strTok;
  766|   941k|		value_type fVal(0);
  767|       |
  768|       |		// 2.) Check for user defined constant
  769|       |		// Read everything that could be a constant name
  770|   941k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  771|   941k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (771:7): [True: 927k, False: 13.8k]
  ------------------
  772|   927k|		{
  773|   927k|			valmap_type::const_iterator item = m_pConstDef->find(strTok);
  774|   927k|			if (item != m_pConstDef->end())
  ------------------
  |  Branch (774:8): [True: 2.23k, False: 925k]
  ------------------
  775|  2.23k|			{
  776|  2.23k|				m_iPos = iEnd;
  777|  2.23k|				a_Tok.SetVal(item->second, strTok);
  778|       |
  779|  2.23k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (779:9): [True: 2, False: 2.23k]
  ------------------
  780|      2|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  781|       |
  782|  2.23k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  783|  2.23k|				return true;
  784|  2.23k|			}
  785|   927k|		}
  786|       |
  787|       |		// 3.call the value recognition functions provided by the user
  788|       |		// Call user defined value recognition functions
  789|   939k|		std::list<identfun_type>::const_iterator item = m_vIdentFun.begin();
  790|   952k|		for (item = m_vIdentFun.begin(); item != m_vIdentFun.end(); ++item)
  ------------------
  |  Branch (790:36): [True: 939k, False: 13.1k]
  ------------------
  791|   939k|		{
  792|   939k|			int iStart = m_iPos;
  793|   939k|			if ((*item)(m_strFormula.c_str() + m_iPos, &m_iPos, &fVal) == 1)
  ------------------
  |  Branch (793:8): [True: 926k, False: 13.1k]
  ------------------
  794|   926k|			{
  795|       |				// 2013-11-27 Issue 2:  https://code.google.com/p/muparser/issues/detail?id=2
  796|   926k|				strTok.assign(m_strFormula.c_str(), iStart, (std::size_t)m_iPos - iStart);
  797|       |
  798|   926k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (798:9): [True: 18, False: 926k]
  ------------------
  799|     18|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  800|       |
  801|   926k|				a_Tok.SetVal(fVal, strTok);
  802|   926k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  803|   926k|				return true;
  804|   926k|			}
  805|   939k|		}
  806|       |
  807|  13.1k|		return false;
  808|   939k|	}
_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: 576, False: 12.5k]
  ------------------
  938|    576|			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|    584|		#define _T(x) x
  ------------------
  |  Branch (944:38): [True: 13.0k, False: 51]
  ------------------
  945|  13.0k|		{
  946|  13.0k|			if (iEnd==0 || strBuf[iEnd - 1] != '\\') 
  ------------------
  |  Branch (946:8): [True: 10.5k, False: 2.52k]
  |  Branch (946:19): [True: 1.93k, False: 584]
  ------------------
  947|  12.5k|				break;
  948|       |
  949|    584|			strBuf.replace(iEnd - 1, 2, _T("\""));
  ------------------
  |  |   69|    584|		#define _T(x) x
  ------------------
  950|    584|			iSkip++;
  951|    584|		}
  952|       |
  953|  12.5k|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (953:7): [True: 51, False: 12.5k]
  ------------------
  954|     51|			Error(ecUNTERMINATED_STRING, m_iPos, _T("\""));
  ------------------
  |  |   69|     51|		#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: 44, False: 12.5k]
  ------------------
  959|     44|			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.65k|	{
  982|  1.65k|		m_pParser->Error(a_iErrc, a_iPos, a_sTok);
  983|  1.65k|	}
_ZNK2mu17ParserTokenReader9GetArgSepEv:
  993|  3.90k|	{
  994|  3.90k|		return m_cArgSep;
  995|  3.90k|	}

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

