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

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

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

_ZN2mu8TypeInfoIdE9IsIntegerEv:
   52|  3.91k|		static bool IsInteger() { return false; }
_ZN2mu8MathImplIdE3SinEd:
  118|    312|		static T Sin(T v) { return sin(v); }
_ZN2mu8MathImplIdE3CosEd:
  119|    199|		static T Cos(T v) { return cos(v); }
_ZN2mu8MathImplIdE3TanEd:
  120|    276|		static T Tan(T v) { return tan(v); }
_ZN2mu8MathImplIdE3CotEd:
  121|    201|		static T Cot(T v) { return 1.0 / tan(v); }
_ZN2mu8MathImplIdE4ASinEd:
  122|    195|		static T ASin(T v) { return asin(v); }
_ZN2mu8MathImplIdE4ACosEd:
  123|    197|		static T ACos(T v) { return acos(v); }
_ZN2mu8MathImplIdE4ATanEd:
  124|    197|		static T ATan(T v) { return atan(v); }
_ZN2mu8MathImplIdE5ATan2Edd:
  125|    614|		static T ATan2(T v1, T v2) { return atan2(v1, v2); }
_ZN2mu8MathImplIdE4SinhEd:
  126|    195|		static T Sinh(T v) { return sinh(v); }
_ZN2mu8MathImplIdE4CoshEd:
  127|    196|		static T Cosh(T v) { return cosh(v); }
_ZN2mu8MathImplIdE4TanhEd:
  128|    195|		static T Tanh(T v) { return tanh(v); }
_ZN2mu8MathImplIdE4CothEd:
  129|    195|		static T Coth(T v) { return 1.0 / tanh(v); }
_ZN2mu8MathImplIdE5ASinhEd:
  130|    195|		static T ASinh(T v) { return log(v + sqrt(v * v + 1)); }
_ZN2mu8MathImplIdE5ACoshEd:
  131|    195|		static T ACosh(T v) { return log(v + sqrt(v * v - 1)); }
_ZN2mu8MathImplIdE5ATanhEd:
  132|    195|		static T ATanh(T v) { return ((T)0.5 * log((1 + v) / (1 - v))); }
_ZN2mu8MathImplIdE4Log2Ed:
  134|    195|		static T Log2(T v) { return log(v) / log((T)2); } // Logarithm base 2
_ZN2mu8MathImplIdE5Log10Ed:
  135|    236|		static T Log10(T v) { return log10(v); }         // Logarithm base 10
_ZN2mu8MathImplIdE3LogEd:
  133|    583|		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|    474|		static T Sign(T v) { return (T)((v < 0) ? -1 : (v > 0) ? 1 : 0); }
  ------------------
  |  Branch (140:35): [True: 194, False: 280]
  |  Branch (140:50): [True: 244, False: 36]
  ------------------
_ZN2mu8MathImplIdE4RintEd:
  139|    492|		static T Rint(T v) { return floor(v + (T)0.5); }
_ZN2mu8MathImplIdE3AbsEd:
  137|    392|		static T Abs(T v) { return (v >= 0) ? v : -v; }
  ------------------
  |  Branch (137:30): [True: 195, False: 197]
  ------------------
_ZN2mu8MathImplIdE3SumEPKdi:
  155|    742|		{
  156|    742|			if (!a_iArgc)
  ------------------
  |  Branch (156:8): [True: 0, False: 742]
  ------------------
  157|      0|				throw ParserError(_T("too few arguments for function sum."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  158|       |
  159|    742|			T fRes = 0;
  160|   110k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (160:20): [True: 109k, False: 742]
  ------------------
  161|    742|			return fRes;
  162|    742|		}
_ZN2mu8MathImplIdE3AvgEPKdi:
  165|    537|		{
  166|    537|			if (!a_iArgc)
  ------------------
  |  Branch (166:8): [True: 0, False: 537]
  ------------------
  167|      0|				throw ParserError(_T("too few arguments for function avg."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  168|       |
  169|    537|			T fRes = 0;
  170|  77.9k|			for (int i = 0; i < a_iArgc; ++i) fRes += a_afArg[i];
  ------------------
  |  Branch (170:20): [True: 77.4k, False: 537]
  ------------------
  171|    537|			return fRes / (T)a_iArgc;
  172|    537|		}
_ZN2mu8MathImplIdE3MinEPKdi:
  175|  1.11k|		{
  176|  1.11k|			if (!a_iArgc)
  ------------------
  |  Branch (176:8): [True: 0, False: 1.11k]
  ------------------
  177|      0|				throw ParserError(_T("too few arguments for function min."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  178|       |
  179|  1.11k|			T fRes = a_afArg[0];
  180|  68.9k|			for (int i = 0; i < a_iArgc; ++i)
  ------------------
  |  Branch (180:20): [True: 67.8k, False: 1.11k]
  ------------------
  181|  67.8k|				fRes = std::min(fRes, a_afArg[i]);
  182|       |
  183|  1.11k|			return fRes;
  184|  1.11k|		}
_ZN2mu8MathImplIdE3MaxEPKdi:
  187|  1.20k|		{
  188|  1.20k|			if (!a_iArgc)
  ------------------
  |  Branch (188:8): [True: 0, False: 1.20k]
  ------------------
  189|      0|				throw ParserError(_T("too few arguments for function max."));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  190|       |
  191|  1.20k|			T fRes = a_afArg[0];
  192|  64.4k|			for (int i = 0; i < a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]);
  ------------------
  |  Branch (192:20): [True: 63.2k, False: 1.20k]
  ------------------
  193|       |
  194|  1.20k|			return fRes;
  195|  1.20k|		}
_ZN2mu8MathImplIdE3RndEv:
  143|  1.01k|		{
  144|  1.01k|			static std::random_device rd;  
  145|  1.01k|			static std::mt19937 gen(rd()); 
  146|  1.01k|			static std::uniform_real_distribution<T> dis(0.0, 1.0); // Range [0, 1)
  147|       |
  148|  1.01k|			return dis(gen);
  149|  1.01k|		}
_ZN2mu8MathImplIdE10UnaryMinusEd:
  151|  5.02k|		static T UnaryMinus(T v) { return -v; }
_ZN2mu8MathImplIdE3PowEdd:
  141|   114k|		static T Pow(T v1, T v2) { return std::pow(v1, v2); }

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

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

_ZN2mu10ParserBaseC2Ev:
   91|  3.91k|		: m_pParseFormula(&ParserBase::ParseString)
   92|  3.91k|		, m_vRPN()
   93|  3.91k|		, m_vStringBuf()
   94|  3.91k|		, m_pTokenReader()
   95|  3.91k|		, m_FunDef()
   96|  3.91k|		, m_PostOprtDef()
   97|  3.91k|		, m_InfixOprtDef()
   98|  3.91k|		, m_OprtDef()
   99|  3.91k|		, m_ConstDef()
  100|  3.91k|		, m_StrVarDef()
  101|  3.91k|		, m_VarDef()
  102|  3.91k|		, m_bBuiltInOp(true)
  103|  3.91k|		, m_sNameChars()
  104|  3.91k|		, m_sOprtChars()
  105|  3.91k|		, m_sInfixOprtChars()
  106|  3.91k|		, m_vStackBuffer()
  107|  3.91k|		, m_nFinalResultIdx(0)
  108|  3.91k|	{
  109|  3.91k|		InitTokenReader();
  110|  3.91k|	}
_ZN2mu10ParserBaseD2Ev:
  141|  3.91k|	{}
_ZN2mu10ParserBase15InitTokenReaderEv:
  246|  3.91k|	{
  247|  3.91k|		m_pTokenReader.reset(new token_reader_type(this));
  248|  3.91k|	}
_ZNK2mu10ParserBase6ReInitEv:
  257|   137k|	{
  258|   137k|		m_pParseFormula = &ParserBase::ParseString;
  259|   137k|		m_vStringBuf.clear();
  260|   137k|		m_vRPN.clear();
  261|   137k|		m_pTokenReader->ReInit();
  262|   137k|	}
_ZN2mu10ParserBase11AddValIdentEPFiPKcPiPdE:
  353|  3.91k|	{
  354|  3.91k|		m_pTokenReader->AddValIdent(a_pCallback);
  355|  3.91k|	}
_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.83k, False: 113k]
  |  Branch (381:7): [True: 0, False: 121k]
  |  Branch (381:31): [True: 0, False: 7.83k]
  ------------------
  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.83k]
  |  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.83k]
  |  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.83k]
  |  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.83k|	{
  426|  7.83k|		if (!a_sName.length() ||
  ------------------
  |  Branch (426:7): [True: 0, False: 7.83k]
  ------------------
  427|  7.83k|			(a_sName.find_first_not_of(a_szCharSet) != string_type::npos) ||
  ------------------
  |  Branch (427:4): [True: 0, False: 7.83k]
  ------------------
  428|  7.83k|			(a_sName[0] >= '0' && a_sName[0] <= '9'))
  ------------------
  |  Branch (428:5): [True: 7.83k, False: 0]
  |  Branch (428:26): [True: 0, False: 7.83k]
  ------------------
  429|      0|		{
  430|      0|			Error(ecINVALID_NAME);
  431|      0|		}
  432|  7.83k|	}
_ZN2mu10ParserBase7SetExprERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  442|  3.91k|	{
  443|       |		// Check locale compatibility
  444|  3.91k|		if (m_pTokenReader->GetArgSep() == std::use_facet<numpunct<char_type> >(s_locale).decimal_point())
  ------------------
  |  Branch (444:7): [True: 0, False: 3.91k]
  ------------------
  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.91k|		if (a_sExpr.length() >= MaxLenExpression)
  ------------------
  |  Branch (448:7): [True: 29, False: 3.88k]
  ------------------
  449|     29|			Error(ecEXPRESSION_TOO_LONG, 0, a_sExpr);
  450|       |
  451|  3.91k|		m_pTokenReader->SetFormula(a_sExpr + _T(" "));
  ------------------
  |  |   69|  3.91k|		#define _T(x) x
  ------------------
  452|  3.91k|		ReInit();
  453|  3.91k|	}
_ZNK2mu10ParserBase10GetOprtDefEv:
  460|  2.67M|	{
  461|  2.67M|		return (const char_type**)(&c_DefaultOprt[0]);
  462|  2.67M|	}
_ZN2mu10ParserBase15DefineNameCharsEPKc:
  469|  3.91k|	{
  470|  3.91k|		m_sNameChars = a_szCharset;
  471|  3.91k|	}
_ZN2mu10ParserBase15DefineOprtCharsEPKc:
  478|  3.91k|	{
  479|  3.91k|		m_sOprtChars = a_szCharset;
  480|  3.91k|	}
_ZN2mu10ParserBase20DefineInfixOprtCharsEPKc:
  487|  3.91k|	{
  488|  3.91k|		m_sInfixOprtChars = a_szCharset;
  489|  3.91k|	}
_ZNK2mu10ParserBase14ValidNameCharsEv:
  496|  3.25M|	{
  497|  3.25M|		MUP_ASSERT(m_sNameChars.size());
  ------------------
  |  |   78|  3.25M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.25M]
  |  |  ------------------
  |  |   79|  3.25M|            {														\
  |  |   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.25M|		return m_sNameChars.c_str();
  499|  3.25M|	}
_ZNK2mu10ParserBase14ValidOprtCharsEv:
  506|  2.25M|	{
  507|  2.25M|		MUP_ASSERT(m_sOprtChars.size());
  ------------------
  |  |   78|  2.25M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.25M]
  |  |  ------------------
  |  |   79|  2.25M|            {														\
  |  |   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.25M|		return m_sOprtChars.c_str();
  509|  2.25M|	}
_ZNK2mu10ParserBase19ValidInfixOprtCharsEv:
  516|  67.0k|	{
  517|  67.0k|		MUP_ASSERT(m_sInfixOprtChars.size());
  ------------------
  |  |   78|  67.0k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 67.0k]
  |  |  ------------------
  |  |   79|  67.0k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  518|  67.0k|		return m_sInfixOprtChars.c_str();
  519|  67.0k|	}
_ZN2mu10ParserBase15DefineInfixOprtERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEPFddEib:
  556|  7.83k|	{
  557|  7.83k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (557:7): [True: 0, False: 7.83k]
  ------------------
  558|      0|			Error(ecIDENTIFIER_TOO_LONG);
  559|       |
  560|  7.83k|		AddCallback(a_sName, ParserCallback(a_pFun, a_bAllowOpt, a_iPrec, cmOPRT_INFIX), m_InfixOprtDef, ValidInfixOprtChars());
  561|  7.83k|	}
_ZN2mu10ParserBase11DefineConstERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEd:
  648|  7.83k|	{
  649|  7.83k|		if (a_sName.length() > MaxLenIdentifier)
  ------------------
  |  Branch (649:7): [True: 0, False: 7.83k]
  ------------------
  650|      0|			Error(ecIDENTIFIER_TOO_LONG);
  651|       |
  652|  7.83k|		CheckName(a_sName, ValidNameChars());
  653|  7.83k|		m_ConstDef[a_sName] = a_fVal;
  654|  7.83k|		ReInit();
  655|  7.83k|	}
_ZNK2mu10ParserBase17GetOprtPrecedenceERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  662|   597k|	{
  663|   597k|		switch (a_Tok.GetCode())
  664|   597k|		{
  665|       |			// built in operators
  666|      0|		case cmEND:      return -5;
  ------------------
  |  Branch (666:3): [True: 0, False: 597k]
  ------------------
  667|      0|		case cmARG_SEP:  return -4;
  ------------------
  |  Branch (667:3): [True: 0, False: 597k]
  ------------------
  668|      0|		case cmASSIGN:   return -1;
  ------------------
  |  Branch (668:3): [True: 0, False: 597k]
  ------------------
  669|      0|		case cmELSE:
  ------------------
  |  Branch (669:3): [True: 0, False: 597k]
  ------------------
  670|  3.95k|		case cmIF:       return  0;
  ------------------
  |  Branch (670:3): [True: 3.95k, False: 593k]
  ------------------
  671|  9.87k|		case cmLAND:     return  prLAND;
  ------------------
  |  Branch (671:3): [True: 9.87k, False: 588k]
  ------------------
  672|  8.13k|		case cmLOR:      return  prLOR;
  ------------------
  |  Branch (672:3): [True: 8.13k, False: 589k]
  ------------------
  673|  15.2k|		case cmLT:
  ------------------
  |  Branch (673:3): [True: 15.2k, False: 582k]
  ------------------
  674|  20.6k|		case cmGT:
  ------------------
  |  Branch (674:3): [True: 5.40k, False: 592k]
  ------------------
  675|  22.5k|		case cmLE:
  ------------------
  |  Branch (675:3): [True: 1.85k, False: 596k]
  ------------------
  676|  24.0k|		case cmGE:
  ------------------
  |  Branch (676:3): [True: 1.47k, False: 596k]
  ------------------
  677|  26.0k|		case cmNEQ:
  ------------------
  |  Branch (677:3): [True: 2.04k, False: 595k]
  ------------------
  678|  30.5k|		case cmEQ:       return  prCMP;
  ------------------
  |  Branch (678:3): [True: 4.51k, False: 593k]
  ------------------
  679|  17.1k|		case cmADD:
  ------------------
  |  Branch (679:3): [True: 17.1k, False: 580k]
  ------------------
  680|  94.1k|		case cmSUB:      return  prADD_SUB;
  ------------------
  |  Branch (680:3): [True: 76.9k, False: 520k]
  ------------------
  681|  7.90k|		case cmMUL:
  ------------------
  |  Branch (681:3): [True: 7.90k, False: 590k]
  ------------------
  682|  19.5k|		case cmDIV:      return  prMUL_DIV;
  ------------------
  |  Branch (682:3): [True: 11.6k, False: 586k]
  ------------------
  683|   390k|		case cmPOW:      return  prPOW;
  ------------------
  |  Branch (683:3): [True: 390k, False: 207k]
  ------------------
  684|       |
  685|       |		// user defined binary operators
  686|  41.2k|		case cmOPRT_INFIX:
  ------------------
  |  Branch (686:3): [True: 41.2k, False: 556k]
  ------------------
  687|  41.2k|		case cmOPRT_BIN: return a_Tok.GetPri();
  ------------------
  |  Branch (687:3): [True: 0, False: 597k]
  ------------------
  688|      0|		default:  
  ------------------
  |  Branch (688:3): [True: 0, False: 597k]
  ------------------
  689|      0|			throw exception_type(ecINTERNAL_ERROR, 5, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
  690|   597k|		}
  691|   597k|	}
_ZNK2mu10ParserBase20GetOprtAssociativityERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  698|   165k|	{
  699|   165k|		switch (a_Tok.GetCode())
  700|   165k|		{
  701|      0|		case cmASSIGN:
  ------------------
  |  Branch (701:3): [True: 0, False: 165k]
  ------------------
  702|  2.46k|		case cmLAND:
  ------------------
  |  Branch (702:3): [True: 2.46k, False: 162k]
  ------------------
  703|  4.46k|		case cmLOR:
  ------------------
  |  Branch (703:3): [True: 2.00k, False: 163k]
  ------------------
  704|  11.2k|		case cmLT:
  ------------------
  |  Branch (704:3): [True: 6.80k, False: 158k]
  ------------------
  705|  12.9k|		case cmGT:
  ------------------
  |  Branch (705:3): [True: 1.64k, False: 163k]
  ------------------
  706|  13.5k|		case cmLE:
  ------------------
  |  Branch (706:3): [True: 686, False: 164k]
  ------------------
  707|  14.1k|		case cmGE:
  ------------------
  |  Branch (707:3): [True: 595, False: 164k]
  ------------------
  708|  14.9k|		case cmNEQ:
  ------------------
  |  Branch (708:3): [True: 739, False: 164k]
  ------------------
  709|  16.2k|		case cmEQ:
  ------------------
  |  Branch (709:3): [True: 1.33k, False: 164k]
  ------------------
  710|  20.6k|		case cmADD:
  ------------------
  |  Branch (710:3): [True: 4.39k, False: 161k]
  ------------------
  711|  23.6k|		case cmSUB:
  ------------------
  |  Branch (711:3): [True: 2.94k, False: 162k]
  ------------------
  712|  25.8k|		case cmMUL:
  ------------------
  |  Branch (712:3): [True: 2.27k, False: 163k]
  ------------------
  713|  27.2k|		case cmDIV:      return oaLEFT;
  ------------------
  |  Branch (713:3): [True: 1.33k, False: 164k]
  ------------------
  714|   138k|		case cmPOW:      return oaRIGHT;
  ------------------
  |  Branch (714:3): [True: 138k, False: 27.2k]
  ------------------
  715|      0|		case cmOPRT_BIN: return a_Tok.GetAssociativity();
  ------------------
  |  Branch (715:3): [True: 0, False: 165k]
  ------------------
  716|      0|		default:         return oaNONE;
  ------------------
  |  Branch (716:3): [True: 0, False: 165k]
  ------------------
  717|   165k|		}
  718|   165k|	}
_ZNK2mu10ParserBase9ApplyFuncERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_i:
  831|  25.6k|	{
  832|  25.6k|		MUP_ASSERT(m_pTokenReader.get());
  ------------------
  |  |   78|  25.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 25.6k]
  |  |  ------------------
  |  |   79|  25.6k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  833|       |
  834|       |		// Operator stack empty or does not contain tokens with callback functions
  835|  25.6k|		if (a_stOpt.empty() || a_stOpt.top().GetFuncAddr() == 0)
  ------------------
  |  Branch (835:7): [True: 0, False: 25.6k]
  |  Branch (835:7): [True: 0, False: 25.6k]
  |  Branch (835:26): [True: 0, False: 25.6k]
  ------------------
  836|      0|			return;
  837|       |
  838|  25.6k|		token_type funTok = a_stOpt.top();
  839|  25.6k|		a_stOpt.pop();
  840|  25.6k|		MUP_ASSERT(funTok.GetFuncAddr() != nullptr);
  ------------------
  |  |   78|  25.6k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 25.6k]
  |  |  ------------------
  |  |   79|  25.6k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  841|       |
  842|       |		// Binary operators must rely on their internal operator number
  843|       |		// since counting of operators relies on commas for function arguments
  844|       |		// binary operators do not have commas in their expression
  845|  25.6k|		int iArgCount = (funTok.GetCode() == cmOPRT_BIN) ? funTok.GetArgCount() : a_iArgCount;
  ------------------
  |  Branch (845:19): [True: 0, False: 25.6k]
  ------------------
  846|       |
  847|       |		// determine how many parameters the function needs. To remember iArgCount includes the 
  848|       |		// string parameter whilst GetArgCount() counts only numeric parameters.
  849|  25.6k|		int iArgRequired = funTok.GetArgCount() + ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (849:46): [True: 0, False: 25.6k]
  ------------------
  850|       |
  851|       |		// That's the number of numerical parameters
  852|  25.6k|		int iArgNumerical = iArgCount - ((funTok.GetType() == tpSTR) ? 1 : 0);
  ------------------
  |  Branch (852:36): [True: 0, False: 25.6k]
  ------------------
  853|       |
  854|  25.6k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount - iArgNumerical > 1)
  ------------------
  |  Branch (854:7): [True: 0, False: 25.6k]
  |  Branch (854:41): [True: 0, False: 0]
  ------------------
  855|      0|			Error(ecINTERNAL_ERROR);
  856|       |
  857|  25.6k|		if (funTok.GetArgCount() >= 0 && iArgCount > iArgRequired)
  ------------------
  |  Branch (857:7): [True: 21.5k, False: 4.07k]
  |  Branch (857:36): [True: 31, False: 21.5k]
  ------------------
  858|     31|			Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  859|       |
  860|  25.6k|		if (funTok.GetCode() != cmOPRT_BIN && iArgCount < iArgRequired)
  ------------------
  |  Branch (860:7): [True: 25.5k, False: 31]
  |  Branch (860:41): [True: 2, False: 25.5k]
  ------------------
  861|      2|			Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  862|       |
  863|  25.6k|		if (funTok.GetCode() == cmFUNC_STR && iArgCount > iArgRequired)
  ------------------
  |  Branch (863:7): [True: 0, False: 25.6k]
  |  Branch (863:41): [True: 0, False: 0]
  ------------------
  864|      0|			Error(ecTOO_MANY_PARAMS, m_pTokenReader->GetPos() - 1, funTok.GetAsString());
  865|       |
  866|       |		// Collect the numeric function arguments from the value stack and store them
  867|       |		// in a vector
  868|  25.6k|		std::vector<token_type> stArg;
  869|   365k|		for (int i = 0; i < iArgNumerical; ++i)
  ------------------
  |  Branch (869:19): [True: 340k, False: 25.6k]
  ------------------
  870|   340k|		{
  871|   340k|			if (a_stVal.empty())
  ------------------
  |  Branch (871:8): [True: 2, False: 340k]
  ------------------
  872|      2|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), funTok.GetAsString());
  873|       |
  874|   340k|			stArg.push_back(a_stVal.top());
  875|   340k|			a_stVal.pop();
  876|       |
  877|   340k|			if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR)
  ------------------
  |  Branch (877:8): [True: 3, False: 340k]
  |  Branch (877:43): [True: 3, False: 0]
  ------------------
  878|      3|				Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString());
  879|   340k|		}
  880|       |
  881|  25.6k|		switch (funTok.GetCode())
  882|  25.6k|		{
  883|      0|		case  cmFUNC_STR:
  ------------------
  |  Branch (883:3): [True: 0, False: 25.6k]
  ------------------
  884|      0|			if (a_stVal.empty())
  ------------------
  |  Branch (884:8): [True: 0, False: 0]
  ------------------
  885|      0|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), funTok.GetAsString());
  886|       |
  887|      0|			stArg.push_back(a_stVal.top());
  888|      0|			a_stVal.pop();
  889|       |
  890|      0|			if (stArg.back().GetType() == tpSTR && funTok.GetType() != tpSTR)
  ------------------
  |  Branch (890:8): [True: 0, False: 0]
  |  Branch (890:43): [True: 0, False: 0]
  ------------------
  891|      0|				Error(ecVAL_EXPECTED, m_pTokenReader->GetPos(), funTok.GetAsString());
  892|       |
  893|      0|			ApplyStrFunc(funTok, stArg);
  894|      0|			break;
  895|       |
  896|      0|		case  cmFUNC_BULK:
  ------------------
  |  Branch (896:3): [True: 0, False: 25.6k]
  ------------------
  897|      0|			m_vRPN.AddBulkFun(funTok.GetFuncAddr(), (int)stArg.size());
  898|      0|			break;
  899|       |
  900|      0|		case  cmOPRT_BIN:
  ------------------
  |  Branch (900:3): [True: 0, False: 25.6k]
  ------------------
  901|      0|		case  cmOPRT_POSTFIX:
  ------------------
  |  Branch (901:3): [True: 0, False: 25.6k]
  ------------------
  902|  12.8k|		case  cmOPRT_INFIX:
  ------------------
  |  Branch (902:3): [True: 12.8k, False: 12.8k]
  ------------------
  903|  25.5k|		case  cmFUNC:
  ------------------
  |  Branch (903:3): [True: 12.7k, False: 12.8k]
  ------------------
  904|  25.5k|			if (funTok.GetArgCount() == -1 && iArgCount == 0)
  ------------------
  |  Branch (904:8): [True: 4.07k, False: 21.5k]
  |  Branch (904:38): [True: 1, False: 4.06k]
  ------------------
  905|      1|				Error(ecTOO_FEW_PARAMS, m_pTokenReader->GetPos(), funTok.GetAsString());
  906|       |
  907|  25.5k|			m_vRPN.AddFun(funTok.GetFuncAddr(), (funTok.GetArgCount() == -1) ? -iArgNumerical : iArgNumerical, funTok.IsOptimizable());
  ------------------
  |  Branch (907:40): [True: 4.06k, False: 21.5k]
  ------------------
  908|  25.5k|			break;
  909|      0|		default:
  ------------------
  |  Branch (909:3): [True: 0, False: 25.6k]
  ------------------
  910|      0|			break;
  911|  25.6k|		}
  912|       |
  913|       |		// Push dummy value representing the function result to the stack
  914|  25.5k|		token_type token;
  915|  25.5k|		token.SetVal(1);
  916|  25.5k|		a_stVal.push(token);
  917|  25.5k|	}
_ZNK2mu10ParserBase11ApplyIfElseERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  921|  4.93k|	{
  922|       |		// Check if there is an if Else clause to be calculated
  923|  54.1k|		while (a_stOpt.size() && a_stOpt.top().GetCode() == cmELSE)
  ------------------
  |  Branch (923:10): [True: 53.5k, False: 567]
  |  Branch (923:28): [True: 49.2k, False: 4.35k]
  ------------------
  924|  49.2k|		{
  925|  49.2k|			MUP_ASSERT(!a_stOpt.empty())
  ------------------
  |  |   78|  49.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 49.2k]
  |  |  ------------------
  |  |   79|  49.2k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  926|  49.2k|			token_type opElse = a_stOpt.top();
  927|  49.2k|			a_stOpt.pop();
  928|       |
  929|       |			// Take the value associated with the else branch from the value stack
  930|  49.2k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  49.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 49.2k]
  |  |  ------------------
  |  |   79|  49.2k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  931|  49.2k|			token_type vVal2 = a_stVal.top();
  932|  49.2k|			if (vVal2.GetType() != tpDBL)
  ------------------
  |  Branch (932:8): [True: 3, False: 49.1k]
  ------------------
  933|      3|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  934|       |			
  935|  49.2k|			a_stVal.pop();
  936|       |
  937|       |			// it then else is a ternary operator Pop all three values from the value s
  938|       |			// tack and just return the right value
  939|  49.2k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  49.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 1, False: 49.2k]
  |  |  ------------------
  |  |   79|  49.2k|            {														\
  |  |   80|      1|              stringstream_type ss;									\
  |  |   81|      1|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |   82|      1|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |   83|      1|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      1|		#define _T(x) x
  |  |  ------------------
  |  |   84|      1|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      1|            }
  ------------------
  940|  49.2k|			token_type vVal1 = a_stVal.top();
  941|  49.2k|			if (vVal1.GetType() != tpDBL)
  ------------------
  |  Branch (941:8): [True: 1, False: 49.2k]
  ------------------
  942|      1|				Error(ecUNEXPECTED_STR, m_pTokenReader->GetPos());
  943|       |
  944|  49.2k|			a_stVal.pop();
  945|       |
  946|  49.2k|			MUP_ASSERT(!a_stVal.empty());
  ------------------
  |  |   78|  49.2k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 10, False: 49.1k]
  |  |  ------------------
  |  |   79|  49.2k|            {														\
  |  |   80|     10|              stringstream_type ss;									\
  |  |   81|     10|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |   82|     10|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |   83|     10|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|     10|		#define _T(x) x
  |  |  ------------------
  |  |   84|     10|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|     10|            }
  ------------------
  947|  49.1k|			token_type vExpr = a_stVal.top();
  948|  49.1k|			a_stVal.pop();
  949|       |
  950|  49.1k|			a_stVal.push((vExpr.GetVal() != 0) ? vVal1 : vVal2);
  ------------------
  |  Branch (950:17): [True: 3.37k, False: 45.8k]
  ------------------
  951|       |
  952|  49.1k|			token_type opIf = a_stOpt.top();
  953|  49.1k|			a_stOpt.pop();
  954|       |
  955|  49.1k|			MUP_ASSERT(opElse.GetCode() == cmELSE);
  ------------------
  |  |   78|  49.1k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 49.1k]
  |  |  ------------------
  |  |   79|  49.1k|            {														\
  |  |   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|  49.1k|			if (opIf.GetCode() != cmIF)
  ------------------
  |  Branch (957:8): [True: 1, False: 49.1k]
  ------------------
  958|      1|				Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
  959|       |
  960|  49.1k|			m_vRPN.AddIfElse(cmENDIF);
  961|  49.1k|		} // while pending if-else-clause found
  962|  4.93k|	}
_ZNK2mu10ParserBase12ApplyBinOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
  969|   157k|	{
  970|       |		// is it a user defined binary operator?
  971|   157k|		if (a_stOpt.top().GetCode() == cmOPRT_BIN)
  ------------------
  |  Branch (971:7): [True: 0, False: 157k]
  ------------------
  972|      0|		{
  973|      0|			ApplyFunc(a_stOpt, a_stVal, 2);
  974|      0|		}
  975|   157k|		else
  976|   157k|		{
  977|   157k|			if (a_stVal.size() < 2)
  ------------------
  |  Branch (977:8): [True: 1, False: 157k]
  ------------------
  978|      1|				Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos(), _T("ApplyBinOprt: not enough values in value stack!"));
  ------------------
  |  |   69|      1|		#define _T(x) x
  ------------------
  979|       |
  980|   157k|			token_type valTok1 = a_stVal.top();
  981|   157k|			a_stVal.pop();
  982|       |
  983|   157k|			token_type valTok2 = a_stVal.top();
  984|   157k|			a_stVal.pop();
  985|       |
  986|   157k|			token_type optTok = a_stOpt.top();
  987|   157k|			a_stOpt.pop();
  988|       |
  989|   157k|			token_type resTok;
  990|       |
  991|   157k|			if (valTok1.GetType() != valTok2.GetType() ||
  ------------------
  |  Branch (991:8): [True: 25, False: 157k]
  ------------------
  992|   157k|				(valTok1.GetType() == tpSTR && valTok2.GetType() == tpSTR))
  ------------------
  |  Branch (992:6): [True: 18, False: 157k]
  |  Branch (992:36): [True: 18, False: 0]
  ------------------
  993|     42|				Error(ecOPRT_TYPE_CONFLICT, m_pTokenReader->GetPos(), optTok.GetAsString());
  994|       |
  995|   157k|			if (optTok.GetCode() == cmASSIGN)
  ------------------
  |  Branch (995:8): [True: 0, False: 157k]
  ------------------
  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|   157k|			else
 1003|   157k|				m_vRPN.AddOp(optTok.GetCode());
 1004|       |
 1005|   157k|			resTok.SetVal(1);
 1006|   157k|			a_stVal.push(resTok);
 1007|   157k|		}
 1008|   157k|	}
_ZNK2mu10ParserBase18ApplyRemainingOprtERNSt3__15stackINS_11ParserTokenIdNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_5dequeISA_NS7_ISA_EEEEEESF_:
 1016|   659k|	{
 1017|   717k|		while (stOpt.size() &&
  ------------------
  |  Branch (1017:10): [True: 671k, False: 45.6k]
  ------------------
 1018|   671k|			stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1018:4): [True: 266k, False: 404k]
  ------------------
 1019|   266k|			stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1019:4): [True: 57.4k, False: 209k]
  ------------------
 1020|  57.4k|		{
 1021|  57.4k|			token_type tok = stOpt.top();
 1022|  57.4k|			switch (tok.GetCode())
 1023|  57.4k|			{
 1024|  6.63k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1024:4): [True: 6.63k, False: 50.8k]
  ------------------
 1025|  6.63k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1025:4): [True: 0, False: 57.4k]
  ------------------
 1026|  6.96k|			case cmLE:
  ------------------
  |  Branch (1026:4): [True: 327, False: 57.1k]
  ------------------
 1027|  7.32k|			case cmGE:
  ------------------
  |  Branch (1027:4): [True: 366, False: 57.0k]
  ------------------
 1028|  7.65k|			case cmNEQ:
  ------------------
  |  Branch (1028:4): [True: 333, False: 57.1k]
  ------------------
 1029|  8.11k|			case cmEQ:
  ------------------
  |  Branch (1029:4): [True: 458, False: 56.9k]
  ------------------
 1030|  8.73k|			case cmLT:
  ------------------
  |  Branch (1030:4): [True: 613, False: 56.8k]
  ------------------
 1031|  9.28k|			case cmGT:
  ------------------
  |  Branch (1031:4): [True: 554, False: 56.8k]
  ------------------
 1032|  9.97k|			case cmADD:
  ------------------
  |  Branch (1032:4): [True: 691, False: 56.7k]
  ------------------
 1033|  12.0k|			case cmSUB:
  ------------------
  |  Branch (1033:4): [True: 2.10k, False: 55.3k]
  ------------------
 1034|  12.6k|			case cmMUL:
  ------------------
  |  Branch (1034:4): [True: 583, False: 56.8k]
  ------------------
 1035|  13.5k|			case cmDIV:
  ------------------
  |  Branch (1035:4): [True: 932, False: 56.5k]
  ------------------
 1036|  50.2k|			case cmPOW:
  ------------------
  |  Branch (1036:4): [True: 36.6k, False: 20.7k]
  ------------------
 1037|  51.2k|			case cmLAND:
  ------------------
  |  Branch (1037:4): [True: 969, False: 56.4k]
  ------------------
 1038|  52.5k|			case cmLOR:
  ------------------
  |  Branch (1038:4): [True: 1.27k, False: 56.1k]
  ------------------
 1039|  52.5k|			case cmASSIGN:
  ------------------
  |  Branch (1039:4): [True: 0, False: 57.4k]
  ------------------
 1040|  52.5k|				if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1040:9): [True: 6.63k, False: 45.8k]
  ------------------
 1041|  6.63k|					ApplyFunc(stOpt, stVal, 1);
 1042|  45.8k|				else
 1043|  45.8k|					ApplyBinOprt(stOpt, stVal);
 1044|  52.5k|				break;
 1045|       |
 1046|  4.93k|			case cmELSE:
  ------------------
  |  Branch (1046:4): [True: 4.93k, False: 52.5k]
  ------------------
 1047|  4.93k|				ApplyIfElse(stOpt, stVal);
 1048|  4.93k|				break;
 1049|       |
 1050|      0|			default:
  ------------------
  |  Branch (1050:4): [True: 0, False: 57.4k]
  ------------------
 1051|      0|				Error(ecINTERNAL_ERROR);
 1052|  57.4k|			}
 1053|  57.4k|		}
 1054|   659k|	}
_ZNK2mu10ParserBase12ParseCmdCodeEv:
 1065|  1.03k|	{
 1066|  1.03k|		return ParseCmdCodeBulk(0, 0);
 1067|  1.03k|	}
_ZNK2mu10ParserBase17ParseCmdCodeShortEv:
 1070|    737|	{
 1071|    737|		const SToken *const tok = m_vRPN.GetBase();
 1072|    737|		value_type buf;
 1073|       |
 1074|    737|		switch (tok->Cmd)
 1075|    737|		{
 1076|    735|		case cmVAL:		
  ------------------
  |  Branch (1076:3): [True: 735, False: 2]
  ------------------
 1077|    735|			return tok->Val.data2;
 1078|       |
 1079|      0|		case cmVAR:
  ------------------
  |  Branch (1079:3): [True: 0, False: 737]
  ------------------
 1080|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1080:8): [True: 0, False: 0]
  ------------------
 1081|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1082|      0|			return *tok->Val.ptr;
 1083|       |
 1084|      0|		case cmVARMUL:
  ------------------
  |  Branch (1084:3): [True: 0, False: 737]
  ------------------
 1085|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1085:8): [True: 0, False: 0]
  ------------------
 1086|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1087|      0|			return *tok->Val.ptr * tok->Val.data + tok->Val.data2;
 1088|       |
 1089|      0|		case cmVARPOW2:
  ------------------
  |  Branch (1089:3): [True: 0, False: 737]
  ------------------
 1090|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1090:8): [True: 0, False: 0]
  ------------------
 1091|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1092|      0|			buf = *(tok->Val.ptr);
 1093|      0|			return buf * buf;
 1094|       |
 1095|      0|		case  cmVARPOW3:
  ------------------
  |  Branch (1095:3): [True: 0, False: 737]
  ------------------
 1096|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1096:8): [True: 0, False: 0]
  ------------------
 1097|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1098|      0|			buf = *(tok->Val.ptr);
 1099|      0|			return buf * buf * buf;
 1100|       |
 1101|      0|		case  cmVARPOW4:
  ------------------
  |  Branch (1101:3): [True: 0, False: 737]
  ------------------
 1102|      0|			if (!tok->Val.ptr)
  ------------------
  |  Branch (1102:8): [True: 0, False: 0]
  ------------------
 1103|      0|				throw ParserError(ecINVALID_VAR_PTR);
 1104|      0|			buf = *(tok->Val.ptr);
 1105|      0|			return buf * buf * buf * buf;
 1106|       |
 1107|       |		// numerical function without any argument
 1108|      2|		case cmFUNC:
  ------------------
  |  Branch (1108:3): [True: 2, False: 735]
  ------------------
 1109|      2|			return tok->Fun.cb.call_fun<0>();
 1110|       |
 1111|       |		// String function without a numerical argument
 1112|      0|		case cmFUNC_STR:
  ------------------
  |  Branch (1112:3): [True: 0, False: 737]
  ------------------
 1113|      0|			if (m_vStringBuf.empty())
  ------------------
  |  Branch (1113:8): [True: 0, False: 0]
  ------------------
 1114|      0|				throw ParserError(ecINTERNAL_ERROR);
 1115|       |
 1116|      0|			return tok->Fun.cb.call_strfun<1>(m_vStringBuf[0].c_str());
 1117|       |
 1118|      0|		default:
  ------------------
  |  Branch (1118:3): [True: 0, False: 737]
  ------------------
 1119|      0|			throw ParserError(ecINTERNAL_ERROR);
 1120|    737|		}
 1121|    737|	}
_ZNK2mu10ParserBase16ParseCmdCodeBulkEii:
 1129|  1.03k|	{
 1130|  1.03k|		assert(nThreadID <= s_MaxNumOpenMPThreads);
 1131|       |
 1132|       |		// Note: The check for nOffset==0 and nThreadID here is not necessary but 
 1133|       |		//       brings a minor performance gain when not in bulk mode.
 1134|  1.03k|		value_type *stack = ((nOffset == 0) && (nThreadID == 0)) ? &m_vStackBuffer[0] : &m_vStackBuffer[nThreadID * (m_vStackBuffer.size() / s_MaxNumOpenMPThreads)];
  ------------------
  |  Branch (1134:24): [True: 1.03k, False: 0]
  |  Branch (1134:42): [True: 1.03k, False: 0]
  ------------------
 1135|       |		
 1136|  1.03k|		const int iStackMaxSize = (int)(m_vStackBuffer.size() / s_MaxNumOpenMPThreads);
 1137|       |
 1138|  1.03k|		value_type buf;
 1139|  1.03k|		int sidx(0);
 1140|   564k|		for (const SToken* pTok = m_vRPN.GetBase(); pTok->Cmd != cmEND; ++pTok)
  ------------------
  |  Branch (1140:47): [True: 563k, False: 1.03k]
  ------------------
 1141|   563k|		{
 1142|   563k|			switch (pTok->Cmd)
 1143|   563k|			{
 1144|       |			// built in binary operators
 1145|    257|			case  cmLE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] <= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    257|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 257]
  |  |  ------------------
  |  |   79|    257|            {														\
  |  |   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: 257, False: 563k]
  ------------------
 1146|    261|			case  cmGE:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] >= stack[sidx + 1]; continue;
  ------------------
  |  |   78|    261|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 261]
  |  |  ------------------
  |  |   79|    261|            {														\
  |  |   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: 261, False: 563k]
  ------------------
 1147|    228|			case  cmNEQ:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] != stack[sidx + 1]; continue;
  ------------------
  |  |   78|    228|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 228]
  |  |  ------------------
  |  |   79|    228|            {														\
  |  |   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: 228, False: 563k]
  ------------------
 1148|    334|			case  cmEQ:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] == stack[sidx + 1]; continue;
  ------------------
  |  |   78|    334|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 334]
  |  |  ------------------
  |  |   79|    334|            {														\
  |  |   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: 334, False: 563k]
  ------------------
 1149|  4.73k|			case  cmLT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] < stack[sidx + 1];  continue;
  ------------------
  |  |   78|  4.73k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 4.73k]
  |  |  ------------------
  |  |   79|  4.73k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1149:4): [True: 4.73k, False: 559k]
  ------------------
 1150|    426|			case  cmGT:     --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] > stack[sidx + 1];  continue;
  ------------------
  |  |   78|    426|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 426]
  |  |  ------------------
  |  |   79|    426|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1150:4): [True: 426, False: 563k]
  ------------------
 1151|    591|			case  cmADD:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] += stack[1 + sidx]; continue;
  ------------------
  |  |   78|    591|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 591]
  |  |  ------------------
  |  |   79|    591|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1151:4): [True: 591, False: 563k]
  ------------------
 1152|    712|			case  cmSUB:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] -= stack[1 + sidx]; continue;
  ------------------
  |  |   78|    712|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 712]
  |  |  ------------------
  |  |   79|    712|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1152:4): [True: 712, False: 563k]
  ------------------
 1153|  1.45k|			case  cmMUL:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] *= stack[1 + sidx]; continue;
  ------------------
  |  |   78|  1.45k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.45k]
  |  |  ------------------
  |  |   79|  1.45k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1153:4): [True: 1.45k, False: 562k]
  ------------------
 1154|    857|			case  cmDIV:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] /= stack[1 + sidx]; continue;
  ------------------
  |  |   78|    857|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 857]
  |  |  ------------------
  |  |   79|    857|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1154:4): [True: 857, False: 563k]
  ------------------
 1155|  83.9k|			case  cmPOW:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = MathImpl<value_type>::Pow(stack[sidx], stack[1 + sidx]); continue;
  ------------------
  |  |   78|  83.9k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 83.9k]
  |  |  ------------------
  |  |   79|  83.9k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1155:4): [True: 83.9k, False: 480k]
  ------------------
 1156|    509|			case  cmLAND:   --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] && stack[sidx + 1]; continue;
  ------------------
  |  |   78|    509|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 509]
  |  |  ------------------
  |  |   79|    509|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1156:4): [True: 509, False: 563k]
  |  Branch (1156:65): [True: 267, False: 242]
  |  Branch (1156:80): [True: 240, False: 27]
  ------------------
 1157|    747|			case  cmLOR:    --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = stack[sidx] || stack[sidx + 1]; continue;
  ------------------
  |  |   78|    747|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 747]
  |  |  ------------------
  |  |   79|    747|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1157:4): [True: 747, False: 563k]
  |  Branch (1157:65): [True: 386, False: 361]
  |  Branch (1157:80): [True: 120, False: 241]
  ------------------
 1158|      0|			case  cmASSIGN: --sidx; MUP_ASSERT(sidx >= 0); stack[sidx] = *(pTok->Oprt.ptr + nOffset) = stack[sidx + 1]; continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1158:4): [True: 0, False: 563k]
  ------------------
 1159|       |
 1160|  4.39k|			case  cmIF:
  ------------------
  |  Branch (1160:4): [True: 4.39k, False: 559k]
  ------------------
 1161|  4.39k|				if (stack[sidx--] == 0)
  ------------------
  |  Branch (1161:9): [True: 3.49k, False: 907]
  ------------------
 1162|  3.49k|					pTok += pTok->Oprt.offset;
 1163|       |
 1164|  4.39k|				MUP_ASSERT(sidx >= 0);
  ------------------
  |  |   78|  4.39k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 4.39k]
  |  |  ------------------
  |  |   79|  4.39k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1165|  4.39k|				continue;
 1166|       |
 1167|    907|			case  cmELSE:
  ------------------
  |  Branch (1167:4): [True: 907, False: 563k]
  ------------------
 1168|    907|				pTok += pTok->Oprt.offset;
 1169|    907|				continue;
 1170|       |
 1171|  3.49k|			case  cmENDIF:
  ------------------
  |  Branch (1171:4): [True: 3.49k, False: 560k]
  ------------------
 1172|  3.49k|				continue;
 1173|       |
 1174|       |				// value and variable tokens
 1175|      0|			case  cmVAR:    MUP_ASSERT(sidx < iStackMaxSize); stack[++sidx] = *(pTok->Val.ptr + nOffset);  continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1175:4): [True: 0, False: 563k]
  ------------------
 1176|   454k|			case  cmVAL:    MUP_ASSERT(sidx < iStackMaxSize); stack[++sidx] = pTok->Val.data2;  continue;
  ------------------
  |  |   78|   454k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 454k]
  |  |  ------------------
  |  |   79|   454k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1176:4): [True: 454k, False: 109k]
  ------------------
 1177|       |
 1178|      0|			case  cmVARPOW2: 
  ------------------
  |  Branch (1178:4): [True: 0, False: 563k]
  ------------------
 1179|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1180|      0|				buf = *(pTok->Val.ptr + nOffset);
 1181|      0|				stack[++sidx] = buf * buf;
 1182|      0|				continue;
 1183|       |
 1184|      0|			case  cmVARPOW3: 
  ------------------
  |  Branch (1184:4): [True: 0, False: 563k]
  ------------------
 1185|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1186|      0|				buf = *(pTok->Val.ptr + nOffset);
 1187|      0|				stack[++sidx] = buf * buf * buf;
 1188|      0|				continue;
 1189|       |
 1190|      0|			case  cmVARPOW4: 
  ------------------
  |  Branch (1190:4): [True: 0, False: 563k]
  ------------------
 1191|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1192|      0|				buf = *(pTok->Val.ptr + nOffset);
 1193|      0|				stack[++sidx] = buf * buf * buf * buf;
 1194|      0|				continue;
 1195|       |
 1196|      0|			case  cmVARMUL:  
  ------------------
  |  Branch (1196:4): [True: 0, False: 563k]
  ------------------
 1197|      0|				MUP_ASSERT(sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1198|      0|				stack[++sidx] = *(pTok->Val.ptr + nOffset) * pTok->Val.data + pTok->Val.data2;
 1199|      0|				continue;
 1200|       |
 1201|       |				// Next is treatment of numeric functions
 1202|  5.60k|			case  cmFUNC:
  ------------------
  |  Branch (1202:4): [True: 5.60k, False: 558k]
  ------------------
 1203|  5.60k|			{
 1204|  5.60k|				int iArgCount = pTok->Fun.argc;
 1205|       |
 1206|       |				// switch according to argument count
 1207|  5.60k|				switch (iArgCount)
 1208|  5.60k|				{
 1209|  1.01k|				case 0: sidx += 1; MUP_ASSERT(sidx < iStackMaxSize); stack[sidx] = pTok->Fun.cb.call_fun<0 >(); continue;
  ------------------
  |  |   78|  1.01k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 1.01k]
  |  |  ------------------
  |  |   79|  1.01k|            {														\
  |  |   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: 1.01k, False: 4.59k]
  ------------------
 1210|    766|				case 1:                                              stack[sidx] = pTok->Fun.cb.call_fun<1 >(stack[sidx]); continue;
  ------------------
  |  Branch (1210:5): [True: 766, False: 4.84k]
  ------------------
 1211|    234|				case 2: sidx -= 1; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<2 >(stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  |   78|    234|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 234]
  |  |  ------------------
  |  |   79|    234|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1211:5): [True: 234, False: 5.37k]
  ------------------
 1212|      0|				case 3: sidx -= 2; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<3 >(stack[sidx], stack[sidx + 1], stack[sidx + 2]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1212:5): [True: 0, False: 5.60k]
  ------------------
 1213|      0|				case 4: sidx -= 3; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<4 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1213:5): [True: 0, False: 5.60k]
  ------------------
 1214|      0|				case 5: sidx -= 4; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<5 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1214:5): [True: 0, False: 5.60k]
  ------------------
 1215|      0|				case 6: sidx -= 5; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<6 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1215:5): [True: 0, False: 5.60k]
  ------------------
 1216|      0|				case 7: sidx -= 6; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<7 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1216:5): [True: 0, False: 5.60k]
  ------------------
 1217|      0|				case 8: sidx -= 7; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<8 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1217:5): [True: 0, False: 5.60k]
  ------------------
 1218|      0|				case 9: sidx -= 8; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<9 >(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1218:5): [True: 0, False: 5.60k]
  ------------------
 1219|      0|				case 10:sidx -= 9; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_fun<10>(stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8], stack[sidx + 9]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1219:5): [True: 0, False: 5.60k]
  ------------------
 1220|  3.59k|				default:
  ------------------
  |  Branch (1220:5): [True: 3.59k, False: 2.01k]
  ------------------
 1221|       |					// function with variable arguments store the number as a negative value
 1222|  3.59k|					if (iArgCount > 0)
  ------------------
  |  Branch (1222:10): [True: 0, False: 3.59k]
  ------------------
 1223|      0|						Error(ecINTERNAL_ERROR, -1);
 1224|       |
 1225|  3.59k|					sidx -= -iArgCount - 1;
 1226|  3.59k|					MUP_ASSERT(sidx>=0 && sidx < iStackMaxSize);
  ------------------
  |  |   78|  7.18k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 3.59k, False: 0]
  |  |  |  Branch (78:19): [True: 3.59k, False: 0]
  |  |  ------------------
  |  |   79|  3.59k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1227|       |
 1228|  3.59k|					stack[sidx] = pTok->Fun.cb.call_multfun(&stack[sidx], -iArgCount);
 1229|  3.59k|					continue;
 1230|  5.60k|				}
 1231|  5.60k|			}
 1232|       |
 1233|       |			// Next is treatment of string functions
 1234|      0|			case  cmFUNC_STR:
  ------------------
  |  Branch (1234:4): [True: 0, False: 563k]
  ------------------
 1235|      0|			{
 1236|      0|				sidx -= pTok->Fun.argc - 1;
 1237|      0|				MUP_ASSERT(sidx >= 0 && sidx < iStackMaxSize);
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
 1238|       |
 1239|       |				// The index of the string argument in the string table
 1240|      0|				int iIdxStack = pTok->Fun.idx;
 1241|      0|				if (iIdxStack < 0 || iIdxStack >= (int)m_vStringBuf.size())
  ------------------
  |  Branch (1241:9): [True: 0, False: 0]
  |  Branch (1241:26): [True: 0, False: 0]
  ------------------
 1242|      0|					Error(ecINTERNAL_ERROR, m_pTokenReader->GetPos());
 1243|       |
 1244|      0|				switch (pTok->Fun.argc)  // switch according to argument count
  ------------------
  |  Branch (1244:13): [True: 0, False: 0]
  ------------------
 1245|      0|				{
 1246|      0|				case 0: stack[sidx] = pTok->Fun.cb.call_strfun<1>(m_vStringBuf[iIdxStack].c_str()); continue;
  ------------------
  |  Branch (1246:5): [True: 0, False: 0]
  ------------------
 1247|      0|				case 1: stack[sidx] = pTok->Fun.cb.call_strfun<2>(m_vStringBuf[iIdxStack].c_str(), stack[sidx]); continue;
  ------------------
  |  Branch (1247:5): [True: 0, False: 0]
  ------------------
 1248|      0|				case 2: stack[sidx] = pTok->Fun.cb.call_strfun<3>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  Branch (1248:5): [True: 0, False: 0]
  ------------------
 1249|      0|				case 3: stack[sidx] = pTok->Fun.cb.call_strfun<4>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1], stack[sidx + 2]); continue;
  ------------------
  |  Branch (1249:5): [True: 0, False: 0]
  ------------------
 1250|      0|				case 4: stack[sidx] = pTok->Fun.cb.call_strfun<5>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3]); continue;
  ------------------
  |  Branch (1250:5): [True: 0, False: 0]
  ------------------
 1251|      0|				case 5: stack[sidx] = pTok->Fun.cb.call_strfun<6>(m_vStringBuf[iIdxStack].c_str(), stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4]); continue;
  ------------------
  |  Branch (1251:5): [True: 0, False: 0]
  ------------------
 1252|      0|				}
 1253|       |
 1254|      0|				continue;
 1255|      0|			}
 1256|       |
 1257|      0|			case  cmFUNC_BULK:
  ------------------
  |  Branch (1257:4): [True: 0, False: 563k]
  ------------------
 1258|      0|			{
 1259|      0|				int iArgCount = pTok->Fun.argc;
 1260|       |
 1261|       |				// switch according to argument count
 1262|      0|				switch (iArgCount)
 1263|      0|				{
 1264|      0|				case 0: sidx += 1;  MUP_ASSERT(sidx < iStackMaxSize); stack[sidx] = pTok->Fun.cb.call_bulkfun<0 >(nOffset, nThreadID); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1264:5): [True: 0, False: 0]
  ------------------
 1265|      0|				case 1:            stack[sidx] = pTok->Fun.cb.call_bulkfun<1 >(nOffset, nThreadID, stack[sidx]); continue;
  ------------------
  |  Branch (1265:5): [True: 0, False: 0]
  ------------------
 1266|      0|				case 2: sidx -= 1; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<2 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1266:5): [True: 0, False: 0]
  ------------------
 1267|      0|				case 3: sidx -= 2; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<3 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1267:5): [True: 0, False: 0]
  ------------------
 1268|      0|				case 4: sidx -= 3; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<4 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1268:5): [True: 0, False: 0]
  ------------------
 1269|      0|				case 5: sidx -= 4; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<5 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1269:5): [True: 0, False: 0]
  ------------------
 1270|      0|				case 6: sidx -= 5; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<6 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1270:5): [True: 0, False: 0]
  ------------------
 1271|      0|				case 7: sidx -= 6; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<7 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1271:5): [True: 0, False: 0]
  ------------------
 1272|      0|				case 8: sidx -= 7; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<8 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1272:5): [True: 0, False: 0]
  ------------------
 1273|      0|				case 9: sidx -= 8; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<9 >(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1273:5): [True: 0, False: 0]
  ------------------
 1274|      0|				case 10:sidx -= 9; MUP_ASSERT(sidx >= 0); stack[sidx] = pTok->Fun.cb.call_bulkfun<10>(nOffset, nThreadID, stack[sidx], stack[sidx + 1], stack[sidx + 2], stack[sidx + 3], stack[sidx + 4], stack[sidx + 5], stack[sidx + 6], stack[sidx + 7], stack[sidx + 8], stack[sidx + 9]); continue;
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  |  Branch (1274:5): [True: 0, False: 0]
  ------------------
 1275|      0|				default:
  ------------------
  |  Branch (1275:5): [True: 0, False: 0]
  ------------------
 1276|      0|					throw exception_type(ecINTERNAL_ERROR, 2, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1277|      0|				}
 1278|      0|			}
 1279|       |
 1280|      0|			default:
  ------------------
  |  Branch (1280:4): [True: 0, False: 563k]
  ------------------
 1281|      0|				throw exception_type(ecINTERNAL_ERROR, 3, _T(""));
  ------------------
  |  |   69|      0|		#define _T(x) x
  ------------------
 1282|   563k|			} // switch CmdCode
 1283|   563k|		} // for all bytecode tokens
 1284|       |
 1285|  1.03k|		return stack[m_nFinalResultIdx];
 1286|  1.03k|	}
_ZNK2mu10ParserBase9CreateRPNEv:
 1290|  3.88k|	{
 1291|  3.88k|		if (!m_pTokenReader->GetExpr().length())
  ------------------
  |  Branch (1291:7): [True: 0, False: 3.88k]
  ------------------
 1292|      0|			Error(ecUNEXPECTED_EOF, 0);
 1293|       |
 1294|  3.88k|		std::stack<token_type> stOpt, stVal;
 1295|  3.88k|		std::stack<int> stArgCount;
 1296|  3.88k|		token_type opta, opt;  // for storing operators
 1297|  3.88k|		token_type val, tval;  // for storing value
 1298|  3.88k|		int ifElseCounter = 0;
 1299|       |
 1300|  3.88k|		ReInit();
 1301|       |
 1302|       |		// The outermost counter counts the number of separated items
 1303|       |		// such as in "a=10,b=20,c=c+a"
 1304|  3.88k|		stArgCount.push(1);
 1305|       |
 1306|  3.88k|		for (;;)
 1307|  2.25M|		{
 1308|  2.25M|			opt = m_pTokenReader->ReadNextToken();
 1309|       |
 1310|  2.25M|			switch (opt.GetCode())
 1311|  2.25M|			{
 1312|       |			//
 1313|       |			// Next three are different kind of value entries
 1314|       |			//
 1315|  12.9k|			case cmSTRING:
  ------------------
  |  Branch (1315:4): [True: 12.9k, False: 2.24M]
  ------------------
 1316|  12.9k|				if (stOpt.empty())
  ------------------
  |  Branch (1316:9): [True: 92, False: 12.8k]
  ------------------
 1317|     92|					Error(ecSTR_RESULT, m_pTokenReader->GetPos(), opt.GetAsString());
 1318|       |
 1319|  12.9k|				stVal.push(opt);
 1320|  12.9k|				break;
 1321|       |
 1322|      0|			case cmVAR:
  ------------------
  |  Branch (1322:4): [True: 0, False: 2.25M]
  ------------------
 1323|      0|				stVal.push(opt);
 1324|      0|				m_vRPN.AddVar(static_cast<value_type*>(opt.GetVar()));
 1325|      0|				break;
 1326|       |
 1327|   863k|			case cmVAL:
  ------------------
  |  Branch (1327:4): [True: 863k, False: 1.39M]
  ------------------
 1328|   863k|				stVal.push(opt);
 1329|   863k|				m_vRPN.AddVal(opt.GetVal());
 1330|   863k|				break;
 1331|       |
 1332|  82.1k|			case cmELSE:
  ------------------
  |  Branch (1332:4): [True: 82.1k, False: 2.17M]
  ------------------
 1333|  82.1k|				if (stArgCount.empty())
  ------------------
  |  Branch (1333:9): [True: 0, False: 82.1k]
  ------------------
 1334|      0|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1335|       |
 1336|  82.1k|				if (stArgCount.top() > 1)
  ------------------
  |  Branch (1336:9): [True: 15, False: 82.1k]
  ------------------
 1337|     15|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1338|       |
 1339|  82.1k|				stArgCount.pop();
 1340|       |
 1341|  82.1k|				ifElseCounter--;
 1342|  82.1k|				if (ifElseCounter < 0)
  ------------------
  |  Branch (1342:9): [True: 15, False: 82.1k]
  ------------------
 1343|     15|					Error(ecMISPLACED_COLON, m_pTokenReader->GetPos());
 1344|       |
 1345|  82.1k|				ApplyRemainingOprt(stOpt, stVal);
 1346|  82.1k|				m_vRPN.AddIfElse(cmELSE);
 1347|  82.1k|				stOpt.push(opt);
 1348|  82.1k|				break;
 1349|       |
 1350|   432k|			case cmARG_SEP:
  ------------------
  |  Branch (1350:4): [True: 432k, False: 1.82M]
  ------------------
 1351|   432k|				if (!stOpt.empty() && stOpt.top().GetCode() == cmIF)
  ------------------
  |  Branch (1351:9): [True: 393k, False: 38.4k]
  |  Branch (1351:27): [True: 6, False: 393k]
  ------------------
 1352|      6|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1353|       |
 1354|   432k|				if (stArgCount.empty())
  ------------------
  |  Branch (1354:9): [True: 0, False: 432k]
  ------------------
 1355|      0|					Error(ecUNEXPECTED_ARG_SEP, m_pTokenReader->GetPos());
 1356|       |
 1357|   432k|				++stArgCount.top();
 1358|       |				// Falls through.
 1359|       |				// intentional (no break!)
 1360|       |
 1361|   434k|			case cmEND:
  ------------------
  |  Branch (1361:4): [True: 1.99k, False: 2.25M]
  ------------------
 1362|   434k|				ApplyRemainingOprt(stOpt, stVal);
 1363|   434k|				break;
 1364|       |
 1365|   143k|			case cmBC:
  ------------------
  |  Branch (1365:4): [True: 143k, False: 2.11M]
  ------------------
 1366|   143k|			{
 1367|       |				// The argument count for parameterless functions is zero
 1368|       |				// by default an opening bracket sets parameter count to 1
 1369|       |				// in preparation of arguments to come. If the last token
 1370|       |				// was an opening bracket we know better...
 1371|   143k|				if (opta.GetCode() == cmBO)
  ------------------
  |  Branch (1371:9): [True: 1.41k, False: 141k]
  ------------------
 1372|  1.41k|					--stArgCount.top();
 1373|       |
 1374|   143k|				ApplyRemainingOprt(stOpt, stVal);
 1375|       |
 1376|       |				// Check if the bracket content has been evaluated completely
 1377|   143k|				if (stOpt.size() && stOpt.top().GetCode() == cmBO)
  ------------------
  |  Branch (1377:9): [True: 143k, False: 2]
  |  Branch (1377:25): [True: 16.7k, False: 126k]
  ------------------
 1378|  16.7k|				{
 1379|       |					// if opt is ")" and opta is "(" the bracket has been evaluated, now its time to check
 1380|       |					// if there is either a function or a sign pending
 1381|       |					// neither the opening nor the closing bracket will be pushed back to
 1382|       |					// the operator stack
 1383|       |					// Check if a function is standing in front of the opening bracket, 
 1384|       |					// if yes evaluate it afterwards check for infix operators
 1385|  16.7k|					MUP_ASSERT(stArgCount.size());
  ------------------
  |  |   78|  16.7k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 16.7k]
  |  |  ------------------
  |  |   79|  16.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|            }
  ------------------
 1386|  16.7k|					int iArgCount = stArgCount.top();
 1387|  16.7k|					stArgCount.pop();
 1388|       |
 1389|  16.7k|					stOpt.pop(); // Take opening bracket from stack
 1390|       |
 1391|  16.7k|					if (iArgCount > 1 && (stOpt.size() == 0 ||
  ------------------
  |  Branch (1391:10): [True: 3.51k, False: 13.2k]
  |  Branch (1391:28): [True: 2, False: 3.50k]
  ------------------
 1392|  3.50k|						(stOpt.top().GetCode() != cmFUNC &&
  ------------------
  |  Branch (1392:8): [True: 20, False: 3.48k]
  ------------------
 1393|     20|							stOpt.top().GetCode() != cmFUNC_BULK &&
  ------------------
  |  Branch (1393:8): [True: 20, False: 0]
  ------------------
 1394|     20|							stOpt.top().GetCode() != cmFUNC_STR)))
  ------------------
  |  Branch (1394:8): [True: 20, False: 0]
  ------------------
 1395|     22|						Error(ecUNEXPECTED_ARG, m_pTokenReader->GetPos());
 1396|       |
 1397|       |					// The opening bracket was popped from the stack now check if there
 1398|       |					// was a function before this bracket
 1399|  16.7k|					if (stOpt.size() &&
  ------------------
  |  Branch (1399:10): [True: 16.4k, False: 320]
  |  Branch (1399:10): [True: 12.8k, False: 3.96k]
  ------------------
 1400|  16.4k|						stOpt.top().GetCode() != cmOPRT_INFIX &&
  ------------------
  |  Branch (1400:7): [True: 16.1k, False: 333]
  ------------------
 1401|  16.1k|						stOpt.top().GetCode() != cmOPRT_BIN &&
  ------------------
  |  Branch (1401:7): [True: 16.1k, False: 0]
  ------------------
 1402|  16.1k|						stOpt.top().GetFuncAddr() != 0)
  ------------------
  |  Branch (1402:7): [True: 12.8k, False: 3.31k]
  ------------------
 1403|  12.8k|					{
 1404|  12.8k|						ApplyFunc(stOpt, stVal, iArgCount);
 1405|  12.8k|					}
 1406|  16.7k|				}
 1407|   143k|			} // if bracket content is evaluated
 1408|   143k|			break;
 1409|       |
 1410|       |			//
 1411|       |			// Next are the binary operator entries
 1412|       |			//
 1413|   143k|			case cmIF:
  ------------------
  |  Branch (1413:4): [True: 141k, False: 2.11M]
  ------------------
 1414|   141k|				ifElseCounter++;
 1415|   141k|				if (ifElseCounter > MaxNestingDepth)
  ------------------
  |  Branch (1415:9): [True: 1, False: 141k]
  ------------------
 1416|      1|					Error(ecNESTING_LIMIT, m_pTokenReader->GetPos());
 1417|       |
 1418|   141k|				stArgCount.push(1);
 1419|       |				// Falls through.
 1420|       |				// intentional (no break!)
 1421|       |
 1422|   145k|			case cmLAND:
  ------------------
  |  Branch (1422:4): [True: 3.91k, False: 2.25M]
  ------------------
 1423|   149k|			case cmLOR:
  ------------------
  |  Branch (1423:4): [True: 3.34k, False: 2.25M]
  ------------------
 1424|   156k|			case cmLT:
  ------------------
  |  Branch (1424:4): [True: 7.72k, False: 2.25M]
  ------------------
 1425|   159k|			case cmGT:
  ------------------
  |  Branch (1425:4): [True: 2.77k, False: 2.25M]
  ------------------
 1426|   160k|			case cmLE:
  ------------------
  |  Branch (1426:4): [True: 1.12k, False: 2.25M]
  ------------------
 1427|   161k|			case cmGE:
  ------------------
  |  Branch (1427:4): [True: 1.03k, False: 2.25M]
  ------------------
 1428|   162k|			case cmNEQ:
  ------------------
  |  Branch (1428:4): [True: 1.12k, False: 2.25M]
  ------------------
 1429|   164k|			case cmEQ:
  ------------------
  |  Branch (1429:4): [True: 1.97k, False: 2.25M]
  ------------------
 1430|   171k|			case cmADD:
  ------------------
  |  Branch (1430:4): [True: 7.19k, False: 2.25M]
  ------------------
 1431|   177k|			case cmSUB:
  ------------------
  |  Branch (1431:4): [True: 5.70k, False: 2.25M]
  ------------------
 1432|   181k|			case cmMUL:
  ------------------
  |  Branch (1432:4): [True: 4.00k, False: 2.25M]
  ------------------
 1433|   187k|			case cmDIV:
  ------------------
  |  Branch (1433:4): [True: 5.48k, False: 2.25M]
  ------------------
 1434|   361k|			case cmPOW:
  ------------------
  |  Branch (1434:4): [True: 174k, False: 2.08M]
  ------------------
 1435|   361k|			case cmASSIGN:
  ------------------
  |  Branch (1435:4): [True: 0, False: 2.25M]
  ------------------
 1436|   361k|			case cmOPRT_BIN:
  ------------------
  |  Branch (1436:4): [True: 0, False: 2.25M]
  ------------------
 1437|       |
 1438|       |				// A binary operator (user defined or built in) has been found. 
 1439|   361k|				while (
 1440|   479k|					stOpt.size() &&
  ------------------
  |  Branch (1440:6): [True: 453k, False: 26.1k]
  ------------------
 1441|   453k|					stOpt.top().GetCode() != cmBO &&
  ------------------
  |  Branch (1441:6): [True: 438k, False: 14.9k]
  ------------------
 1442|   438k|					stOpt.top().GetCode() != cmELSE &&
  ------------------
  |  Branch (1442:6): [True: 360k, False: 78.0k]
  ------------------
 1443|   360k|					stOpt.top().GetCode() != cmIF)
  ------------------
  |  Branch (1443:6): [True: 298k, False: 61.2k]
  ------------------
 1444|   298k|				{
 1445|   298k|					int nPrec1 = GetOprtPrecedence(stOpt.top()),
 1446|   298k|						nPrec2 = GetOprtPrecedence(opt);
 1447|       |
 1448|   298k|					if (stOpt.top().GetCode() == opt.GetCode())
  ------------------
  |  Branch (1448:10): [True: 165k, False: 133k]
  ------------------
 1449|   165k|					{
 1450|       |
 1451|       |						// Deal with operator associativity
 1452|   165k|						EOprtAssociativity eOprtAsct = GetOprtAssociativity(opt);
 1453|   165k|						if ((eOprtAsct == oaRIGHT && (nPrec1 <= nPrec2)) ||
  ------------------
  |  Branch (1453:12): [True: 138k, False: 27.2k]
  |  Branch (1453:36): [True: 138k, False: 0]
  ------------------
 1454|  27.2k|							(eOprtAsct == oaLEFT && (nPrec1 < nPrec2)))
  ------------------
  |  Branch (1454:9): [True: 27.2k, False: 0]
  |  Branch (1454:32): [True: 0, False: 27.2k]
  ------------------
 1455|   138k|						{
 1456|   138k|							break;
 1457|   138k|						}
 1458|   165k|					}
 1459|   133k|					else if (nPrec1 < nPrec2)
  ------------------
  |  Branch (1459:15): [True: 43.2k, False: 90.2k]
  ------------------
 1460|  43.2k|					{
 1461|       |						// In case the operators are not equal the precedence decides alone...
 1462|  43.2k|						break;
 1463|  43.2k|					}
 1464|       |
 1465|   117k|					if (stOpt.top().GetCode() == cmOPRT_INFIX)
  ------------------
  |  Branch (1465:10): [True: 6.17k, False: 111k]
  ------------------
 1466|  6.17k|						ApplyFunc(stOpt, stVal, 1);
 1467|   111k|					else
 1468|   111k|						ApplyBinOprt(stOpt, stVal);
 1469|   117k|				} // while ( ... )
 1470|       |
 1471|   361k|				if (opt.GetCode() == cmIF)
  ------------------
  |  Branch (1471:9): [True: 141k, False: 220k]
  ------------------
 1472|   141k|					m_vRPN.AddIfElse(opt.GetCode());
 1473|       |
 1474|       |				// The operator can't be evaluated right now, push back to the operator stack
 1475|   361k|				stOpt.push(opt);
 1476|   361k|				break;
 1477|       |
 1478|       |				//
 1479|       |				// Last section contains functions and operators implicitly mapped to functions
 1480|       |				//
 1481|   286k|			case cmBO:
  ------------------
  |  Branch (1481:4): [True: 286k, False: 1.97M]
  ------------------
 1482|   286k|				stArgCount.push(1);
 1483|   286k|				stOpt.push(opt);
 1484|   286k|				break;
 1485|       |
 1486|  58.5k|			case cmOPRT_INFIX:
  ------------------
  |  Branch (1486:4): [True: 58.5k, False: 2.20M]
  ------------------
 1487|  72.8k|			case cmFUNC:
  ------------------
  |  Branch (1487:4): [True: 14.3k, False: 2.24M]
  ------------------
 1488|  72.8k|			case cmFUNC_BULK:
  ------------------
  |  Branch (1488:4): [True: 0, False: 2.25M]
  ------------------
 1489|  72.8k|			case cmFUNC_STR:
  ------------------
  |  Branch (1489:4): [True: 0, False: 2.25M]
  ------------------
 1490|  72.8k|				stOpt.push(opt);
 1491|  72.8k|				break;
 1492|       |
 1493|      0|			case cmOPRT_POSTFIX:
  ------------------
  |  Branch (1493:4): [True: 0, False: 2.25M]
  ------------------
 1494|      0|				stOpt.push(opt);
 1495|      0|				ApplyFunc(stOpt, stVal, 1);  // this is the postfix operator
 1496|      0|				break;
 1497|       |
 1498|      0|			default:  Error(ecINTERNAL_ERROR, 3);
  ------------------
  |  Branch (1498:4): [True: 0, False: 2.25M]
  ------------------
 1499|  2.25M|			} // end of switch operator-token
 1500|       |
 1501|  2.25M|			opta = opt;
 1502|       |
 1503|  2.25M|			if (opt.GetCode() == cmEND)
  ------------------
  |  Branch (1503:8): [True: 1.95k, False: 2.25M]
  ------------------
 1504|  1.95k|			{
 1505|  1.95k|				m_vRPN.Finalize();
 1506|  1.95k|				break;
 1507|  1.95k|			}
 1508|       |
 1509|  2.25M|			if (ParserBase::g_DbgDumpStack)
  ------------------
  |  Branch (1509:8): [True: 0, False: 2.25M]
  ------------------
 1510|      0|			{
 1511|      0|				StackDump(stVal, stOpt);
 1512|      0|				m_vRPN.AsciiDump();
 1513|      0|			}
 1514|       |
 1515|       |//			if (ParserBase::g_DbgDumpCmdCode)
 1516|       |				//m_vRPN.AsciiDump();
 1517|  2.25M|		} // while (true)
 1518|       |
 1519|  1.95k|		if (ParserBase::g_DbgDumpCmdCode)
  ------------------
  |  Branch (1519:7): [True: 0, False: 1.95k]
  ------------------
 1520|      0|			m_vRPN.AsciiDump();
 1521|       |
 1522|  1.95k|		if (ifElseCounter > 0)
  ------------------
  |  Branch (1522:7): [True: 153, False: 1.80k]
  ------------------
 1523|    153|			Error(ecMISSING_ELSE_CLAUSE);
 1524|       |
 1525|       |		// get the last value (= final result) from the stack
 1526|  1.95k|		MUP_ASSERT(stArgCount.size() == 1);
  ------------------
  |  |   78|  1.95k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 10, False: 1.94k]
  |  |  ------------------
  |  |   79|  1.95k|            {														\
  |  |   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|            }
  ------------------
 1527|  1.94k|		m_nFinalResultIdx = stArgCount.top();
 1528|  1.94k|		if (m_nFinalResultIdx == 0)
  ------------------
  |  Branch (1528:7): [True: 0, False: 1.94k]
  ------------------
 1529|      0|			Error(ecINTERNAL_ERROR, 9);
 1530|       |
 1531|  1.94k|		if (stVal.size() == 0)
  ------------------
  |  Branch (1531:7): [True: 18, False: 1.93k]
  ------------------
 1532|     18|			Error(ecEMPTY_EXPRESSION);
 1533|       |
 1534|       |		// 2020-09-17; fix for https://oss-fuzz.com/testcase-detail/5758791700971520
 1535|       |		// I don't need the value stack any more. Destructively check if all values in the value 
 1536|       |		// stack represent floating point values
 1537|  43.5k|		while (stVal.size())
  ------------------
  |  Branch (1537:10): [True: 41.5k, False: 1.94k]
  ------------------
 1538|  41.5k|		{
 1539|  41.5k|			if (stVal.top().GetType() != tpDBL)
  ------------------
  |  Branch (1539:8): [True: 2, False: 41.5k]
  ------------------
 1540|      2|				Error(ecSTR_RESULT);
 1541|       |
 1542|  41.5k|			stVal.pop();
 1543|  41.5k|		}
 1544|       |
 1545|  1.94k|		m_vStackBuffer.resize(m_vRPN.GetMaxStackSize() * s_MaxNumOpenMPThreads);
 1546|  1.94k|	}
_ZNK2mu10ParserBase11ParseStringEv:
 1558|  3.88k|	{
 1559|  3.88k|		try
 1560|  3.88k|		{
 1561|  3.88k|			CreateRPN();
 1562|       |
 1563|  3.88k|			if (m_vRPN.GetSize() == 2)
  ------------------
  |  Branch (1563:8): [True: 737, False: 3.15k]
  ------------------
 1564|    737|			{
 1565|    737|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1566|    737|				m_pParseFormula = &ParserBase::ParseCmdCodeShort;
 1567|    737|				m_vStackBuffer[1] = (this->*m_pParseFormula)();
 1568|    737|				return m_vStackBuffer[1];
 1569|    737|			}
 1570|  3.15k|			else
 1571|  3.15k|			{
 1572|  3.15k|				m_vRPN.StoreEnvironment(m_pTokenReader->GetExpr(), m_vStringBuf);
 1573|  3.15k|				m_pParseFormula = &ParserBase::ParseCmdCode;
 1574|  3.15k|				return (this->*m_pParseFormula)();
 1575|  3.15k|			}
 1576|  3.88k|		}
 1577|  3.88k|		catch (ParserError& exc)
 1578|  3.88k|		{
 1579|  2.11k|			exc.SetFormula(m_pTokenReader->GetExpr());
 1580|  2.11k|			throw;
 1581|  2.11k|		}
 1582|  3.88k|	}
_ZNK2mu10ParserBase5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
 1596|  2.11k|	{
 1597|  2.11k|		throw exception_type(a_iErrc, a_sTok, m_pTokenReader->GetExpr(), a_iPos);
 1598|  2.11k|	}
_ZNK2mu10ParserBase14HasBuiltInOprtEv:
 1733|  6.09M|	{
 1734|  6.09M|		return m_bBuiltInOp;
 1735|  6.09M|	}
_ZNK2mu10ParserBase4EvalEv:
 1850|  3.88k|	{
 1851|  3.88k|		return (this->*m_pParseFormula)();
 1852|  3.88k|	}

_ZN2mu14ParserByteCodeC2Ev:
   52|  3.91k|		: m_iStackPos(0)
   53|  3.91k| 		, m_stringBuffer()
   54|  3.91k|		, m_expr()
   55|  3.91k|		, m_iMaxStackSize(0)
   56|  3.91k|		, m_vRPN()
   57|  3.91k|		, m_bEnableOptimizer(true)
   58|  3.91k|	{
   59|  3.91k|		m_vRPN.reserve(50);
   60|  3.91k|	}
_ZN2mu14ParserByteCode6AddValEd:
  141|   863k|	{
  142|   863k|		++m_iStackPos;
  143|   863k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  144|       |
  145|       |		// If optimization does not apply
  146|   863k|		SToken tok;
  147|   863k|		tok.Cmd = cmVAL;
  148|   863k|		tok.Val.ptr = nullptr;
  149|   863k|		tok.Val.data = 0;
  150|   863k|		tok.Val.data2 = a_fVal;
  151|   863k|		m_vRPN.push_back(tok);
  152|   863k|	}
_ZN2mu14ParserByteCode15ConstantFoldingENS_8ECmdCodeE:
  156|  58.1k|	{
  157|  58.1k|		std::size_t sz = m_vRPN.size();
  158|  58.1k|		value_type& x = m_vRPN[sz - 2].Val.data2;
  159|  58.1k|		value_type& y = m_vRPN[sz - 1].Val.data2;
  160|       |
  161|  58.1k|		switch (a_Oprt)
  162|  58.1k|		{
  163|  2.91k|		case cmLAND: x = (int)x && (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (163:3): [True: 2.91k, False: 55.2k]
  |  Branch (163:20): [True: 1.78k, False: 1.12k]
  |  Branch (163:30): [True: 1.32k, False: 469]
  ------------------
  164|  1.94k|		case cmLOR:  x = (int)x || (int)y; m_vRPN.pop_back(); break;
  ------------------
  |  Branch (164:3): [True: 1.94k, False: 56.2k]
  |  Branch (164:20): [True: 1.13k, False: 806]
  |  Branch (164:30): [True: 465, False: 341]
  ------------------
  165|  1.90k|		case cmLT:   x = x < y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (165:3): [True: 1.90k, False: 56.2k]
  ------------------
  166|  2.23k|		case cmGT:   x = x > y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (166:3): [True: 2.23k, False: 55.9k]
  ------------------
  167|    821|		case cmLE:   x = x <= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (167:3): [True: 821, False: 57.3k]
  ------------------
  168|    703|		case cmGE:   x = x >= y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (168:3): [True: 703, False: 57.4k]
  ------------------
  169|    831|		case cmNEQ:  x = x != y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (169:3): [True: 831, False: 57.3k]
  ------------------
  170|  1.55k|		case cmEQ:   x = x == y; m_vRPN.pop_back();  break;
  ------------------
  |  Branch (170:3): [True: 1.55k, False: 56.5k]
  ------------------
  171|  5.93k|		case cmADD:  x = x + y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (171:3): [True: 5.93k, False: 52.2k]
  ------------------
  172|  4.56k|		case cmSUB:  x = x - y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (172:3): [True: 4.56k, False: 53.5k]
  ------------------
  173|  2.29k|		case cmMUL:  x = x * y;  m_vRPN.pop_back();  break;
  ------------------
  |  Branch (173:3): [True: 2.29k, False: 55.8k]
  ------------------
  174|  2.05k|		case cmDIV:
  ------------------
  |  Branch (174:3): [True: 2.05k, False: 56.0k]
  ------------------
  175|  2.05k|			if (y == 0)
  ------------------
  |  Branch (175:8): [True: 619, False: 1.43k]
  ------------------
  176|    619|				break;
  177|  1.43k|			x = x / y;
  178|  1.43k|			m_vRPN.pop_back();
  179|  1.43k|			break;
  180|       |
  181|  30.4k|		case cmPOW: x = MathImpl<value_type>::Pow(x, y);
  ------------------
  |  Branch (181:3): [True: 30.4k, False: 27.7k]
  ------------------
  182|  30.4k|			m_vRPN.pop_back();
  183|  30.4k|			break;
  184|       |
  185|      0|		default:
  ------------------
  |  Branch (185:3): [True: 0, False: 58.1k]
  ------------------
  186|      0|			break;
  187|  58.1k|		} // switch opcode
  188|  58.1k|	}
_ZN2mu14ParserByteCode5AddOpENS_8ECmdCodeE:
  202|   157k|	{
  203|   157k|		bool bOptimized = false;
  204|       |
  205|   157k|		if (m_bEnableOptimizer)
  ------------------
  |  Branch (205:7): [True: 157k, False: 0]
  ------------------
  206|   157k|		{
  207|   157k|			std::size_t sz = m_vRPN.size();
  208|       |
  209|       |			// Check for foldable constants like:
  210|       |			//   cmVAL cmVAL cmADD 
  211|       |			// where cmADD can stand fopr any binary operator applied to
  212|       |			// two constant values.
  213|   157k|			if (sz >= 2 && m_vRPN[sz - 2].Cmd == cmVAL && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (213:8): [True: 157k, False: 0]
  |  Branch (213:19): [True: 60.4k, False: 96.6k]
  |  Branch (213:50): [True: 58.1k, False: 2.35k]
  ------------------
  214|  58.1k|			{
  215|  58.1k|				ConstantFolding(a_Oprt);
  216|  58.1k|				bOptimized = true;
  217|  58.1k|			}
  218|  99.0k|			else
  219|  99.0k|			{
  220|  99.0k|				switch (a_Oprt)
  221|  99.0k|				{
  222|  84.6k|				case  cmPOW:
  ------------------
  |  Branch (222:5): [True: 84.6k, False: 14.3k]
  ------------------
  223|       |					// Optimization for polynomials of low order
  224|  84.6k|					if (m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (224:10): [True: 0, False: 84.6k]
  |  Branch (224:41): [True: 0, False: 0]
  ------------------
  225|      0|					{
  226|      0|						if (m_vRPN[sz - 1].Val.data2 == 0)
  ------------------
  |  Branch (226:11): [True: 0, False: 0]
  ------------------
  227|      0|						{
  228|      0|							m_vRPN[sz - 2].Cmd = cmVAL;
  229|      0|							m_vRPN[sz - 2].Val.ptr = nullptr;
  230|      0|							m_vRPN[sz - 2].Val.data = 0;
  231|      0|							m_vRPN[sz - 2].Val.data2 = 1;
  232|      0|						}
  233|      0|						else if (m_vRPN[sz - 1].Val.data2 == 1)
  ------------------
  |  Branch (233:16): [True: 0, False: 0]
  ------------------
  234|      0|							m_vRPN[sz - 2].Cmd = cmVAR;
  235|      0|						else if (m_vRPN[sz - 1].Val.data2 == 2)
  ------------------
  |  Branch (235:16): [True: 0, False: 0]
  ------------------
  236|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW2;
  237|      0|						else if (m_vRPN[sz - 1].Val.data2 == 3)
  ------------------
  |  Branch (237:16): [True: 0, False: 0]
  ------------------
  238|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW3;
  239|      0|						else if (m_vRPN[sz - 1].Val.data2 == 4)
  ------------------
  |  Branch (239:16): [True: 0, False: 0]
  ------------------
  240|      0|							m_vRPN[sz - 2].Cmd = cmVARPOW4;
  241|      0|						else
  242|      0|							break;
  243|       |
  244|      0|						m_vRPN.pop_back();
  245|      0|						bOptimized = true;
  246|      0|					}
  247|  84.6k|					break;
  248|       |
  249|  84.6k|				case  cmSUB:
  ------------------
  |  Branch (249:5): [True: 1.00k, False: 97.9k]
  ------------------
  250|  1.94k|				case  cmADD:
  ------------------
  |  Branch (250:5): [True: 934, False: 98.0k]
  ------------------
  251|       |					// Simple optimization based on pattern recognition for a shitload of different
  252|       |					// bytecode combinations of addition/subtraction
  253|  1.94k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (253:11): [True: 0, False: 1.94k]
  |  Branch (253:42): [True: 0, False: 0]
  ------------------
  254|  1.94k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR) ||
  ------------------
  |  Branch (254:8): [True: 1.23k, False: 707]
  |  Branch (254:39): [True: 0, False: 1.23k]
  ------------------
  255|  1.94k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (255:8): [True: 1.23k, False: 707]
  |  Branch (255:39): [True: 0, False: 1.23k]
  ------------------
  256|  1.94k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (256:8): [True: 0, False: 1.94k]
  |  Branch (256:42): [True: 0, False: 0]
  ------------------
  257|  1.94k|						(m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) ||
  ------------------
  |  Branch (257:8): [True: 0, False: 1.94k]
  |  Branch (257:39): [True: 0, False: 0]
  |  Branch (257:70): [True: 0, False: 0]
  ------------------
  258|  1.94k|						(m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) ||
  ------------------
  |  Branch (258:8): [True: 0, False: 1.94k]
  |  Branch (258:39): [True: 0, False: 0]
  |  Branch (258:73): [True: 0, False: 0]
  ------------------
  259|  1.94k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAR && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr) ||
  ------------------
  |  Branch (259:8): [True: 0, False: 1.94k]
  |  Branch (259:42): [True: 0, False: 0]
  |  Branch (259:73): [True: 0, False: 0]
  ------------------
  260|  1.94k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr))
  ------------------
  |  Branch (260:8): [True: 0, False: 1.94k]
  |  Branch (260:42): [True: 0, False: 0]
  |  Branch (260:76): [True: 0, False: 0]
  ------------------
  261|      0|					{
  262|      0|						MUP_ASSERT(
  ------------------
  |  |   78|      0|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  |  Branch (78:19): [True: 0, False: 0]
  |  |  ------------------
  |  |   79|      0|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  263|      0|							(m_vRPN[sz - 2].Val.ptr == nullptr && m_vRPN[sz - 1].Val.ptr != nullptr) ||
  264|      0|							(m_vRPN[sz - 2].Val.ptr != nullptr && m_vRPN[sz - 1].Val.ptr == nullptr) ||
  265|      0|							(m_vRPN[sz - 2].Val.ptr == m_vRPN[sz - 1].Val.ptr));
  266|       |
  267|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  268|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;    // variable
  ------------------
  |  Branch (268:32): [True: 0, False: 0]
  ------------------
  269|      0|						m_vRPN[sz - 2].Val.data2 += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data2;  // offset
  ------------------
  |  Branch (269:36): [True: 0, False: 0]
  ------------------
  270|      0|						m_vRPN[sz - 2].Val.data += ((a_Oprt == cmSUB) ? -1 : 1) * m_vRPN[sz - 1].Val.data;   // multiplicand
  ------------------
  |  Branch (270:35): [True: 0, False: 0]
  ------------------
  271|      0|						m_vRPN.pop_back();
  272|      0|						bOptimized = true;
  273|      0|					}
  274|  1.94k|					break;
  275|       |
  276|  1.94k|				case  cmMUL:
  ------------------
  |  Branch (276:5): [True: 1.61k, False: 97.3k]
  ------------------
  277|  1.61k|					if ((m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAL) ||
  ------------------
  |  Branch (277:11): [True: 0, False: 1.61k]
  |  Branch (277:42): [True: 0, False: 0]
  ------------------
  278|  1.61k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVAR))
  ------------------
  |  Branch (278:8): [True: 603, False: 1.01k]
  |  Branch (278:39): [True: 0, False: 603]
  ------------------
  279|      0|					{
  280|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  281|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;
  ------------------
  |  Branch (281:32): [True: 0, False: 0]
  ------------------
  282|      0|						m_vRPN[sz - 2].Val.data = m_vRPN[sz - 2].Val.data2 + m_vRPN[sz - 1].Val.data2;
  283|      0|						m_vRPN[sz - 2].Val.data2 = 0;
  284|      0|						m_vRPN.pop_back();
  285|      0|						bOptimized = true;
  286|      0|					}
  287|  1.61k|					else if (
  288|  1.61k|						(m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL) ||
  ------------------
  |  Branch (288:8): [True: 603, False: 1.01k]
  |  Branch (288:39): [True: 0, False: 603]
  ------------------
  289|  1.61k|						(m_vRPN[sz - 1].Cmd == cmVARMUL && m_vRPN[sz - 2].Cmd == cmVAL))
  ------------------
  |  Branch (289:8): [True: 0, False: 1.61k]
  |  Branch (289:42): [True: 0, False: 0]
  ------------------
  290|      0|					{
  291|       |						// Optimization: 2*(3*b+1) or (3*b+1)*2 -> 6*b+2
  292|      0|						m_vRPN[sz - 2].Cmd = cmVARMUL;
  293|      0|						m_vRPN[sz - 2].Val.ptr = m_vRPN[sz - 2].Val.ptr ? m_vRPN[sz - 2].Val.ptr : m_vRPN[sz - 1].Val.ptr;
  ------------------
  |  Branch (293:32): [True: 0, False: 0]
  ------------------
  294|      0|						if (m_vRPN[sz - 1].Cmd == cmVAL)
  ------------------
  |  Branch (294:11): [True: 0, False: 0]
  ------------------
  295|      0|						{
  296|      0|							m_vRPN[sz - 2].Val.data *= m_vRPN[sz - 1].Val.data2;
  297|      0|							m_vRPN[sz - 2].Val.data2 *= m_vRPN[sz - 1].Val.data2;
  298|      0|						}
  299|      0|						else
  300|      0|						{
  301|      0|							m_vRPN[sz - 2].Val.data = m_vRPN[sz - 1].Val.data * m_vRPN[sz - 2].Val.data2;
  302|      0|							m_vRPN[sz - 2].Val.data2 = m_vRPN[sz - 1].Val.data2 * m_vRPN[sz - 2].Val.data2;
  303|      0|						}
  304|      0|						m_vRPN.pop_back();
  305|      0|						bOptimized = true;
  306|      0|					}
  307|  1.61k|					else if (
  308|  1.61k|						m_vRPN[sz - 1].Cmd == cmVAR && m_vRPN[sz - 2].Cmd == cmVAR &&
  ------------------
  |  Branch (308:7): [True: 0, False: 1.61k]
  |  Branch (308:38): [True: 0, False: 0]
  ------------------
  309|      0|						m_vRPN[sz - 1].Val.ptr == m_vRPN[sz - 2].Val.ptr)
  ------------------
  |  Branch (309:7): [True: 0, False: 0]
  ------------------
  310|      0|					{
  311|       |						// Optimization: a*a -> a^2
  312|      0|						m_vRPN[sz - 2].Cmd = cmVARPOW2;
  313|      0|						m_vRPN.pop_back();
  314|      0|						bOptimized = true;
  315|      0|					}
  316|  1.61k|					break;
  317|       |
  318|  1.09k|				case cmDIV:
  ------------------
  |  Branch (318:5): [True: 1.09k, False: 97.9k]
  ------------------
  319|  1.09k|					if (m_vRPN[sz - 1].Cmd == cmVAL && m_vRPN[sz - 2].Cmd == cmVARMUL && m_vRPN[sz - 1].Val.data2 != 0)
  ------------------
  |  Branch (319:10): [True: 448, False: 646]
  |  Branch (319:41): [True: 0, False: 448]
  |  Branch (319:75): [True: 0, False: 0]
  ------------------
  320|      0|					{
  321|       |						// Optimization: 4*a/2 -> 2*a
  322|      0|						m_vRPN[sz - 2].Val.data /= m_vRPN[sz - 1].Val.data2;
  323|      0|						m_vRPN[sz - 2].Val.data2 /= m_vRPN[sz - 1].Val.data2;
  324|      0|						m_vRPN.pop_back();
  325|      0|						bOptimized = true;
  326|      0|					}
  327|  1.09k|					break;
  328|       |
  329|       |					// no optimization for other opcodes
  330|  9.69k|				default:
  ------------------
  |  Branch (330:5): [True: 9.69k, False: 89.3k]
  ------------------
  331|  9.69k|					break;
  332|  99.0k|				} // switch a_Oprt
  333|  99.0k|			}
  334|   157k|		}
  335|       |
  336|       |		// If optimization can't be applied just write the value
  337|   157k|		if (!bOptimized)
  ------------------
  |  Branch (337:7): [True: 99.0k, False: 58.1k]
  ------------------
  338|  99.0k|		{
  339|  99.0k|			--m_iStackPos;
  340|  99.0k|			SToken tok;
  341|  99.0k|			tok.Cmd = a_Oprt;
  342|  99.0k|			m_vRPN.push_back(tok);
  343|  99.0k|		}
  344|   157k|	}
_ZN2mu14ParserByteCode9AddIfElseENS_8ECmdCodeE:
  348|   273k|	{
  349|   273k|		SToken tok;
  350|   273k|		tok.Cmd = a_Oprt;
  351|   273k|		m_vRPN.push_back(tok);
  352|   273k|	}
_ZN2mu14ParserByteCode6AddFunENS_21generic_callable_typeEib:
  382|  25.5k|	{
  383|  25.5k|		std::size_t sz = m_vRPN.size();
  384|  25.5k|		bool optimize = false;
  385|       |
  386|       |		// only optimize functions with fixed number of more than a single arguments
  387|  25.5k|		if (isFunctionOptimizable && m_bEnableOptimizer && a_iArgc > 0)
  ------------------
  |  Branch (387:7): [True: 24.1k, False: 1.41k]
  |  Branch (387:32): [True: 24.1k, False: 0]
  |  Branch (387:54): [True: 20.1k, False: 4.06k]
  ------------------
  388|  20.1k|		{
  389|       |			// <ibg 2020-06-10/> Unary Plus is a no-op, optimize it away
  390|  20.1k|			if (a_pFun == generic_callable_type{(erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr})
  ------------------
  |  Branch (390:8): [True: 6.52k, False: 13.5k]
  ------------------
  391|  6.52k|				return;
  392|       |
  393|  13.5k|			optimize = true;
  394|       |
  395|  24.3k|			for (int i = 0; i < std::abs(a_iArgc); ++i)
  ------------------
  |  Branch (395:20): [True: 13.9k, False: 10.3k]
  ------------------
  396|  13.9k|			{
  397|  13.9k|				if (m_vRPN[sz - i - 1].Cmd != cmVAL)
  ------------------
  |  Branch (397:9): [True: 3.24k, False: 10.7k]
  ------------------
  398|  3.24k|				{
  399|  3.24k|					optimize = false;
  400|  3.24k|					break;
  401|  3.24k|				}
  402|  13.9k|			}
  403|  13.5k|		}
  404|       |
  405|  19.0k|		if (optimize)
  ------------------
  |  Branch (405:7): [True: 10.3k, False: 8.72k]
  ------------------
  406|  10.3k|		{
  407|  10.3k|			value_type val = 0;
  408|  10.3k|			switch (a_iArgc)
  409|  10.3k|			{
  410|  9.96k|			case 1:  val = a_pFun.call_fun<1>(m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (410:4): [True: 9.96k, False: 380]
  ------------------
  411|    380|			case 2:  val = a_pFun.call_fun<2>(m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (411:4): [True: 380, False: 9.96k]
  ------------------
  412|      0|			case 3:  val = a_pFun.call_fun<3>(m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (412:4): [True: 0, False: 10.3k]
  ------------------
  413|      0|			case 4:  val = a_pFun.call_fun<4>(m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (413:4): [True: 0, False: 10.3k]
  ------------------
  414|      0|			case 5:  val = a_pFun.call_fun<5>(m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (414:4): [True: 0, False: 10.3k]
  ------------------
  415|      0|			case 6:  val = a_pFun.call_fun<6>(m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (415:4): [True: 0, False: 10.3k]
  ------------------
  416|      0|			case 7:  val = a_pFun.call_fun<7>(m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (416:4): [True: 0, False: 10.3k]
  ------------------
  417|      0|			case 8:  val = a_pFun.call_fun<8>(m_vRPN[sz - 8].Val.data2, m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (417:4): [True: 0, False: 10.3k]
  ------------------
  418|      0|			case 9:  val = a_pFun.call_fun<9>(m_vRPN[sz - 9].Val.data2, m_vRPN[sz - 8].Val.data2, m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (418:4): [True: 0, False: 10.3k]
  ------------------
  419|      0|			case 10: val = a_pFun.call_fun<10>(m_vRPN[sz - 10].Val.data2, m_vRPN[sz - 9].Val.data2, m_vRPN[sz - 8].Val.data2, m_vRPN[sz - 7].Val.data2, m_vRPN[sz - 6].Val.data2, m_vRPN[sz - 5].Val.data2, m_vRPN[sz - 4].Val.data2, m_vRPN[sz - 3].Val.data2, m_vRPN[sz - 2].Val.data2, m_vRPN[sz - 1].Val.data2); break;
  ------------------
  |  Branch (419:4): [True: 0, False: 10.3k]
  ------------------
  420|      0|			default:
  ------------------
  |  Branch (420:4): [True: 0, False: 10.3k]
  ------------------
  421|       |				// For now functions with unlimited number of arguments are not optimized
  422|      0|				throw ParserError(ecINTERNAL_ERROR);
  423|  10.3k|			}
  424|       |
  425|       |			// remove the folded values
  426|  10.3k|			m_vRPN.erase(m_vRPN.end() - a_iArgc, m_vRPN.end());
  427|       |
  428|  10.3k|			SToken tok;
  429|  10.3k|			tok.Cmd = cmVAL;
  430|  10.3k|			tok.Val.data = 0;
  431|  10.3k|			tok.Val.data2 = val;
  432|  10.3k|			tok.Val.ptr = nullptr;
  433|  10.3k|			m_vRPN.push_back(tok);
  434|  10.3k|		}
  435|  8.72k|		else
  436|  8.72k|		{
  437|  8.72k|			SToken tok;
  438|  8.72k|			tok.Cmd = cmFUNC;
  439|  8.72k|			tok.Fun.argc = a_iArgc;
  440|  8.72k|			tok.Fun.cb = a_pFun;
  441|  8.72k|			m_vRPN.push_back(tok);
  442|  8.72k|		}
  443|       |
  444|  19.0k|		m_iStackPos = m_iStackPos - std::abs(a_iArgc) + 1;
  445|  19.0k|		m_iMaxStackSize = std::max(m_iMaxStackSize, (size_t)m_iStackPos);
  446|       |
  447|  19.0k|	}
_ZN2mu14ParserByteCode8FinalizeEv:
  495|  1.95k|	{
  496|  1.95k|		SToken tok;
  497|  1.95k|		tok.Cmd = cmEND;
  498|  1.95k|		m_vRPN.push_back(tok);
  499|  1.95k|		rpn_type(m_vRPN).swap(m_vRPN);     // shrink bytecode vector to fit
  500|       |
  501|       |		// Determine the if-then-else jump offsets
  502|  1.95k|		std::stack<int> stIf, stElse;
  503|  1.95k|		int idx;
  504|   918k|		for (int i = 0; i < (int)m_vRPN.size(); ++i)
  ------------------
  |  Branch (504:19): [True: 916k, False: 1.95k]
  ------------------
  505|   916k|		{
  506|   916k|			switch (m_vRPN[i].Cmd)
  507|   916k|			{
  508|  88.4k|			case cmIF:
  ------------------
  |  Branch (508:4): [True: 88.4k, False: 828k]
  ------------------
  509|  88.4k|				stIf.push(i);
  510|  88.4k|				break;
  511|       |
  512|  69.4k|			case cmELSE:
  ------------------
  |  Branch (512:4): [True: 69.4k, False: 847k]
  ------------------
  513|  69.4k|				stElse.push(i);
  514|  69.4k|				if (stIf.empty())
  ------------------
  |  Branch (514:9): [True: 0, False: 69.4k]
  ------------------
  515|      0|					throw ParserError(ecINTERNAL_ERROR);
  516|  69.4k|				idx = stIf.top();
  517|  69.4k|				stIf.pop();
  518|  69.4k|				m_vRPN[idx].Oprt.offset = i - idx;
  519|  69.4k|				break;
  520|       |
  521|  39.5k|			case cmENDIF:
  ------------------
  |  Branch (521:4): [True: 39.5k, False: 877k]
  ------------------
  522|  39.5k|				if (stElse.empty())
  ------------------
  |  Branch (522:9): [True: 0, False: 39.5k]
  ------------------
  523|      0|					throw ParserError(ecINTERNAL_ERROR);
  524|  39.5k|				idx = stElse.top();
  525|  39.5k|				stElse.pop();
  526|  39.5k|				m_vRPN[idx].Oprt.offset = i - idx;
  527|  39.5k|				break;
  528|       |
  529|   719k|			default:
  ------------------
  |  Branch (529:4): [True: 719k, False: 197k]
  ------------------
  530|   719k|				break;
  531|   916k|			}
  532|   916k|		}
  533|  1.95k|	}
_ZNK2mu14ParserByteCode15GetMaxStackSizeEv:
  537|  1.77k|	{
  538|  1.77k|		return m_iMaxStackSize + 1;
  539|  1.77k|	}
_ZN2mu14ParserByteCode5clearEv:
  551|   137k|	{
  552|   137k|		m_vRPN.clear();
  553|   137k|		m_iStackPos = 0;
  554|   137k|		m_iMaxStackSize = 0;
  555|   137k|	}

_ZN2mu14ParserCallbackC2EPFdvEb:
   55|  3.91k|		:m_pFun((void*)a_pFun)
   56|  3.91k|		, m_iArgc(0)
   57|  3.91k|		, m_iPri(-1)
   58|  3.91k|		, m_eOprtAsct(oaNONE)
   59|  3.91k|		, m_iCode(cmFUNC)
   60|  3.91k|		, m_iType(tpDBL)
   61|  3.91k|		, m_bAllowOpti(a_bAllowOpti)
   62|  3.91k|	{}
_ZN2mu14ParserCallbackC2EPFddEbiNS_8ECmdCodeE:
   66|  97.9k|		:m_pFun((void*)a_pFun)
   67|  97.9k|		, m_iArgc(1)
   68|  97.9k|		, m_iPri(a_iPrec)
   69|  97.9k|		, m_eOprtAsct(oaNONE)
   70|  97.9k|		, m_iCode(a_iCode)
   71|  97.9k|		, m_iType(tpDBL)
   72|  97.9k|		, m_bAllowOpti(a_bAllowOpti)
   73|  97.9k|	{}
_ZN2mu14ParserCallbackC2EPFddEb:
   77|  90.0k|		: ParserCallback(a_pFun, a_bAllowOpti, -1, cmFUNC)
   78|  90.0k|	{}
_ZN2mu14ParserCallbackC2EPFdddEb:
   85|  3.91k|		:m_pFun((void*)a_pFun)
   86|  3.91k|		, m_iArgc(2)
   87|  3.91k|		, m_iPri(-1)
   88|  3.91k|		, m_eOprtAsct(oaNONE)
   89|  3.91k|		, m_iCode(cmFUNC)
   90|  3.91k|		, m_iType(tpDBL)
   91|  3.91k|		, m_bAllowOpti(a_bAllowOpti)
   92|  3.91k|	{}
_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|   590k|		:m_pFun(0)
  727|   590k|		, m_iArgc(0)
  728|   590k|		, m_iPri(-1)
  729|   590k|		, m_eOprtAsct(oaNONE)
  730|   590k|		, m_iCode(cmUNKNOWN)
  731|   590k|		, m_iType(tpVOID)
  732|   590k|		, m_bAllowOpti(0)
  733|   590k|	{}
_ZN2mu14ParserCallbackC2ERKS0_:
  740|   469k|		:ParserCallback()
  741|   469k|	{
  742|   469k|		Assign(ref);
  743|   469k|	}
_ZN2mu14ParserCallbackaSERKS0_:
  746|   121k|	{
  747|   121k|		Assign(ref);
  748|   121k|		return *this;
  749|   121k|	}
_ZN2mu14ParserCallbackD2Ev:
  753|   712k|	{
  754|   712k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (754:7): [True: 0, False: 712k]
  ------------------
  755|      0|			delete reinterpret_cast<CbWithUserData*>(m_pFun);
  756|   712k|	}
_ZN2mu14ParserCallback6AssignERKS0_:
  764|   590k|	{
  765|   590k|		if (this == &ref)
  ------------------
  |  Branch (765:7): [True: 0, False: 590k]
  ------------------
  766|      0|			return;
  767|       |
  768|   590k|		void* newFun = nullptr;
  769|   590k|		if (ref.m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (769:7): [True: 0, False: 590k]
  ------------------
  770|      0|			newFun = new CbWithUserData(*reinterpret_cast<CbWithUserData*>(ref.m_pFun));
  771|       |
  772|   590k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (772:7): [True: 0, False: 590k]
  ------------------
  773|      0|			delete reinterpret_cast<CbWithUserData*>(m_pFun);
  774|       |
  775|   590k|		if (ref.m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (775:7): [True: 0, False: 590k]
  ------------------
  776|      0|			m_pFun = newFun;
  777|   590k|		else
  778|   590k|			m_pFun = ref.m_pFun;
  779|       |
  780|   590k|		m_iArgc = ref.m_iArgc;
  781|   590k|		m_bAllowOpti = ref.m_bAllowOpti;
  782|   590k|		m_iCode = ref.m_iCode;
  783|   590k|		m_iType = ref.m_iType;
  784|   590k|		m_iPri = ref.m_iPri;
  785|   590k|		m_eOprtAsct = ref.m_eOprtAsct;
  786|   590k|	}
_ZNK2mu14ParserCallback5CloneEv:
  791|   396k|	{
  792|   396k|		return new ParserCallback(*this);
  793|   396k|	}
_ZNK2mu14ParserCallback13IsOptimizableEv:
  802|  25.5k|	{
  803|  25.5k|		return m_bAllowOpti;
  804|  25.5k|	}
_ZNK2mu14ParserCallback7GetAddrEv:
  815|   413k|	{
  816|   413k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (816:7): [True: 0, False: 413k]
  ------------------
  817|      0|			return reinterpret_cast<CbWithUserData*>(m_pFun)->pFun;
  818|   413k|		else
  819|   413k|			return m_pFun;
  820|   413k|	}
_ZNK2mu14ParserCallback11GetUserDataEv:
  828|  91.5k|	{
  829|  91.5k|		if (m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (829:7): [True: 0, False: 91.5k]
  ------------------
  830|      0|			return reinterpret_cast<CbWithUserData*>(m_pFun)->pUserData;
  831|  91.5k|		else
  832|  91.5k|			return nullptr;
  833|  91.5k|	}
_ZNK2mu14ParserCallback7IsValidEv:
  843|   322k|	{
  844|   322k|		return GetAddr() != nullptr
  ------------------
  |  Branch (844:10): [True: 322k, False: 0]
  ------------------
  845|   322k|			&& !((m_iArgc & CALLBACK_INTERNAL_WITH_USER_DATA)
  ------------------
  |  Branch (845:9): [True: 0, False: 322k]
  ------------------
  846|      0|			     && GetUserData() == nullptr);
  ------------------
  |  Branch (846:12): [True: 0, False: 0]
  ------------------
  847|   322k|	}
_ZNK2mu14ParserCallback7GetCodeEv:
  852|   728k|	{
  853|   728k|		return m_iCode;
  854|   728k|	}
_ZNK2mu14ParserCallback7GetTypeEv:
  858|  51.2k|	{
  859|  51.2k|		return m_iType;
  860|  51.2k|	}
_ZNK2mu14ParserCallback6GetPriEv:
  869|  41.2k|	{
  870|  41.2k|		return m_iPri;
  871|  41.2k|	}
_ZNK2mu14ParserCallback7GetArgcEv:
  890|   102k|	{
  891|   102k|		return (m_iArgc & CALLBACK_INTERNAL_VAR_ARGS) ? -1 : (m_iArgc & CALLBACK_INTERNAL_FIXED_ARGS_MASK);
  ------------------
  |  Branch (891:10): [True: 16.2k, False: 86.1k]
  ------------------
  892|   102k|	}

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

_ZN2mu17ParserTokenReaderC2EPNS_10ParserBaseE:
  122|  3.91k|		:m_pParser(a_pParent)
  123|  3.91k|		, m_strFormula()
  124|  3.91k|		, m_iPos(0)
  125|  3.91k|		, m_iSynFlags(0)
  126|  3.91k|		, m_bIgnoreUndefVar(false)
  127|  3.91k|		, m_pFunDef(nullptr)
  128|  3.91k|		, m_pPostOprtDef(nullptr)
  129|  3.91k|		, m_pInfixOprtDef(nullptr)
  130|  3.91k|		, m_pOprtDef(nullptr)
  131|  3.91k|		, m_pConstDef(nullptr)
  132|  3.91k|		, m_pStrVarDef(nullptr)
  133|  3.91k|		, m_pVarDef(nullptr)
  134|  3.91k|		, m_pFactory(nullptr)
  135|  3.91k|		, m_pFactoryData(nullptr)
  136|  3.91k|		, m_vIdentFun()
  137|  3.91k|		, m_UsedVar()
  138|  3.91k|		, m_fZero(0)
  139|  3.91k|		, m_bracketStack()
  140|  3.91k|		, m_lastTok()
  141|  3.91k|		, m_cArgSep(',')
  142|  3.91k|	{
  143|  3.91k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  3.91k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 3.91k]
  |  |  ------------------
  |  |   79|  3.91k|            {														\
  |  |   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.91k|		SetParent(m_pParser);
  145|  3.91k|	}
_ZN2mu17ParserTokenReader16SaveBeforeReturnERKNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  165|  2.25M|	{
  166|  2.25M|		m_lastTok = tok;
  167|  2.25M|		return m_lastTok;
  168|  2.25M|	}
_ZN2mu17ParserTokenReader11AddValIdentEPFiPKcPiPdE:
  172|  3.91k|	{
  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.91k|		m_vIdentFun.push_front(a_pCallback);
  180|  3.91k|	}
_ZNK2mu17ParserTokenReader6GetPosEv:
  196|    238|	{
  197|    238|		return m_iPos;
  198|    238|	}
_ZNK2mu17ParserTokenReader7GetExprEv:
  207|  9.89k|	{
  208|  9.89k|		return m_strFormula;
  209|  9.89k|	}
_ZN2mu17ParserTokenReader10SetFormulaERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE:
  225|  3.88k|	{
  226|  3.88k|		m_strFormula = a_strFormula;
  227|  3.88k|		ReInit();
  228|  3.88k|	}
_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.25M|	{
  266|  2.25M|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|  2.25M|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 2.25M]
  |  |  ------------------
  |  |   79|  2.25M|            {														\
  |  |   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.25M|		const char_type* szExpr = m_strFormula.c_str();
  269|  2.25M|		token_type tok;
  270|       |
  271|       |		// Ignore all non printable characters when reading the expression
  272|  2.26M|		while (szExpr[m_iPos] > 0 && szExpr[m_iPos] <= 0x20)
  ------------------
  |  Branch (272:10): [True: 2.26M, False: 2.84k]
  |  Branch (272:32): [True: 5.54k, False: 2.25M]
  ------------------
  273|  5.54k|		{
  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.54k|			if (szExpr[m_iPos] >= 14 && szExpr[m_iPos] <= 31)
  ------------------
  |  Branch (276:8): [True: 3.04k, False: 2.50k]
  |  Branch (276:32): [True: 12, False: 3.02k]
  ------------------
  277|     12|				Error(ecINVALID_CHARACTERS_FOUND, m_iPos);
  278|       |
  279|  5.54k|			++m_iPos;
  280|  5.54k|		}
  281|       |
  282|       |		// Check for end of formula
  283|  2.25M|		if (IsEOF(tok))
  ------------------
  |  Branch (283:7): [True: 1.99k, False: 2.25M]
  ------------------
  284|  1.99k|			return SaveBeforeReturn(tok);
  285|       |
  286|       |		// Check for user defined binary operator
  287|  2.25M|		if (IsOprt(tok))
  ------------------
  |  Branch (287:7): [True: 0, False: 2.25M]
  ------------------
  288|      0|			return SaveBeforeReturn(tok);
  289|       |
  290|       |		// Check for function token
  291|  2.25M|		if (IsFunTok(tok))
  ------------------
  |  Branch (291:7): [True: 14.3k, False: 2.24M]
  ------------------
  292|  14.3k|			return SaveBeforeReturn(tok);
  293|       |
  294|       |		// Check built in operators / tokens
  295|  2.24M|		if (IsBuiltIn(tok))
  ------------------
  |  Branch (295:7): [True: 932k, False: 1.31M]
  ------------------
  296|   932k|			return SaveBeforeReturn(tok);
  297|       |
  298|       |		// Check for function argument separators
  299|  1.31M|		if (IsArgSep(tok))
  ------------------
  |  Branch (299:7): [True: 432k, False: 878k]
  ------------------
  300|   432k|			return SaveBeforeReturn(tok);
  301|       |
  302|       |		// Check for values / constant tokens
  303|   878k|		if (IsValTok(tok))
  ------------------
  |  Branch (303:7): [True: 863k, False: 14.6k]
  ------------------
  304|   863k|			return SaveBeforeReturn(tok);
  305|       |
  306|       |		// Check for variable tokens
  307|  14.6k|		if (IsVarTok(tok))
  ------------------
  |  Branch (307:7): [True: 0, False: 14.6k]
  ------------------
  308|      0|			return SaveBeforeReturn(tok);
  309|       |
  310|       |		// Check for string variables
  311|  14.6k|		if (IsStrVarTok(tok))
  ------------------
  |  Branch (311:7): [True: 0, False: 14.6k]
  ------------------
  312|      0|			return SaveBeforeReturn(tok);
  313|       |
  314|       |		// Check for String tokens
  315|  14.6k|		if (IsString(tok))
  ------------------
  |  Branch (315:7): [True: 12.9k, False: 1.67k]
  ------------------
  316|  12.9k|			return SaveBeforeReturn(tok);
  317|       |
  318|       |		// Check for unary operators
  319|  1.67k|		if (IsInfixOpTok(tok))
  ------------------
  |  Branch (319:7): [True: 0, False: 1.67k]
  ------------------
  320|      0|			return SaveBeforeReturn(tok);
  321|       |
  322|       |		// Check for unary operators
  323|  1.67k|		if (IsPostOpTok(tok))
  ------------------
  |  Branch (323:7): [True: 0, False: 1.67k]
  ------------------
  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.67k|		if ((m_bIgnoreUndefVar || m_pFactory) && IsUndefVarTok(tok))
  ------------------
  |  Branch (333:8): [True: 1.06k, False: 613]
  |  Branch (333:29): [True: 0, False: 613]
  |  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.67k|		string_type strTok;
  341|  1.67k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  342|  1.67k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (342:7): [True: 409, False: 1.26k]
  ------------------
  343|    409|			Error(ecUNASSIGNABLE_TOKEN, m_iPos, strTok);
  344|       |
  345|  1.67k|		Error(ecUNASSIGNABLE_TOKEN, m_iPos, m_strFormula.substr(m_iPos));
  346|  1.67k|		return token_type(); // never reached
  347|  1.67k|	}
_ZN2mu17ParserTokenReader9SetParentEPNS_10ParserBaseE:
  351|  3.91k|	{
  352|  3.91k|		m_pParser = a_pParent;
  353|  3.91k|		m_pFunDef = &a_pParent->m_FunDef;
  354|  3.91k|		m_pOprtDef = &a_pParent->m_OprtDef;
  355|  3.91k|		m_pInfixOprtDef = &a_pParent->m_InfixOprtDef;
  356|  3.91k|		m_pPostOprtDef = &a_pParent->m_PostOprtDef;
  357|  3.91k|		m_pVarDef = &a_pParent->m_VarDef;
  358|  3.91k|		m_pStrVarDef = &a_pParent->m_StrVarDef;
  359|  3.91k|		m_pConstDef = &a_pParent->m_ConstDef;
  360|  3.91k|	}
_ZNK2mu17ParserTokenReader12ExtractTokenEPKcRNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEm:
  372|  5.01M|	{
  373|  5.01M|		auto iEnd = m_strFormula.find_first_not_of(a_szCharSet, a_iPos);
  374|       |
  375|  5.01M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (375:7): [True: 0, False: 5.01M]
  ------------------
  376|      0|			iEnd = m_strFormula.length();
  377|       |
  378|       |		// Assign token string if there was something found
  379|  5.01M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (379:7): [True: 1.80M, False: 3.21M]
  ------------------
  380|  1.80M|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  381|       |
  382|  5.01M|		return static_cast<int>(iEnd);
  383|  5.01M|	}
_ZNK2mu17ParserTokenReader20ExtractOperatorTokenERNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEm:
  394|  2.25M|	{
  395|       |		// Changed as per Issue 6: https://code.google.com/p/muparser/issues/detail?id=6
  396|  2.25M|		auto iEnd = m_strFormula.find_first_not_of(m_pParser->ValidOprtChars(), a_iPos);
  397|  2.25M|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (397:7): [True: 0, False: 2.25M]
  ------------------
  398|      0|			iEnd = m_strFormula.length();
  399|       |
  400|       |		// Assign token string if there was something found
  401|  2.25M|		if (a_iPos != iEnd)
  ------------------
  |  Branch (401:7): [True: 436k, False: 1.82M]
  ------------------
  402|   436k|		{
  403|   436k|			a_sTok = string_type(m_strFormula.begin() + a_iPos, m_strFormula.begin() + iEnd);
  404|   436k|			return static_cast<int>(iEnd);
  405|   436k|		}
  406|  1.82M|		else
  407|  1.82M|		{
  408|       |			// There is still the chance of having to deal with an operator consisting exclusively
  409|       |			// of alphabetic characters.
  410|  1.82M|			return ExtractToken(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), a_sTok, (std::size_t)a_iPos);
  ------------------
  |  |   69|  1.82M|		#define _T(x) x
  ------------------
  411|  1.82M|		}
  412|  2.25M|	}
_ZN2mu17ParserTokenReader9IsBuiltInERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  420|  2.24M|	{
  421|  2.24M|		const char_type** const pOprtDef = m_pParser->GetOprtDef(),
  422|  2.24M|			* const szFormula = m_strFormula.c_str();
  423|       |
  424|       |		// Compare token with function and operator strings
  425|       |		// check string for operator/function
  426|  38.0M|		for (int i = 0; pOprtDef[i]; i++)
  ------------------
  |  Branch (426:19): [True: 36.7M, False: 1.30M]
  ------------------
  427|  36.7M|		{
  428|  36.7M|			std::size_t len(std::char_traits<char_type>::length(pOprtDef[i]));
  429|  36.7M|			if (string_type(pOprtDef[i]) == string_type(szFormula + m_iPos, szFormula + m_iPos + len))
  ------------------
  |  Branch (429:8): [True: 932k, False: 35.8M]
  ------------------
  430|   932k|			{
  431|   932k|				switch (i)
  432|   932k|				{
  433|  3.91k|				case cmLAND:
  ------------------
  |  Branch (433:5): [True: 3.91k, False: 928k]
  ------------------
  434|  7.27k|				case cmLOR:
  ------------------
  |  Branch (434:5): [True: 3.35k, False: 928k]
  ------------------
  435|  15.0k|				case cmLT:
  ------------------
  |  Branch (435:5): [True: 7.73k, False: 924k]
  ------------------
  436|  17.7k|				case cmGT:
  ------------------
  |  Branch (436:5): [True: 2.79k, False: 929k]
  ------------------
  437|  18.9k|				case cmLE:
  ------------------
  |  Branch (437:5): [True: 1.13k, False: 931k]
  ------------------
  438|  19.9k|				case cmGE:
  ------------------
  |  Branch (438:5): [True: 1.03k, False: 931k]
  ------------------
  439|  21.0k|				case cmNEQ:
  ------------------
  |  Branch (439:5): [True: 1.13k, False: 931k]
  ------------------
  440|  23.0k|				case cmEQ:
  ------------------
  |  Branch (440:5): [True: 1.97k, False: 930k]
  ------------------
  441|  49.1k|				case cmADD:
  ------------------
  |  Branch (441:5): [True: 26.0k, False: 906k]
  ------------------
  442|  94.5k|				case cmSUB:
  ------------------
  |  Branch (442:5): [True: 45.3k, False: 886k]
  ------------------
  443|  98.5k|				case cmMUL:
  ------------------
  |  Branch (443:5): [True: 4.01k, False: 928k]
  ------------------
  444|   104k|				case cmDIV:
  ------------------
  |  Branch (444:5): [True: 5.49k, False: 926k]
  ------------------
  445|   278k|				case cmPOW:
  ------------------
  |  Branch (445:5): [True: 174k, False: 757k]
  ------------------
  446|   278k|				case cmASSIGN:
  ------------------
  |  Branch (446:5): [True: 6, False: 932k]
  ------------------
  447|       |					// The assignment operator need special treatment
  448|   278k|					if (i == cmASSIGN && m_iSynFlags & noASSIGN)
  ------------------
  |  Branch (448:10): [True: 6, False: 278k]
  |  Branch (448:27): [True: 5, False: 1]
  ------------------
  449|      5|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  450|       |
  451|   278k|					if (!m_pParser->HasBuiltInOprt()) continue;
  ------------------
  |  Branch (451:10): [True: 0, False: 278k]
  ------------------
  452|   278k|					if (m_iSynFlags & noOPT)
  ------------------
  |  Branch (452:10): [True: 58.6k, False: 220k]
  ------------------
  453|  58.6k|					{
  454|       |						// Maybe its an infix operator not an operator
  455|       |						// Both operator types can share characters in 
  456|       |						// their identifiers
  457|  58.6k|						if (IsInfixOpTok(a_Tok))
  ------------------
  |  Branch (457:11): [True: 58.5k, False: 120]
  ------------------
  458|  58.5k|							return true;
  459|       |
  460|    120|						Error(ecUNEXPECTED_OPERATOR, m_iPos, pOprtDef[i]);
  461|    120|					}
  462|       |
  463|   220k|					m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE | noEND;
  464|   220k|					break;
  465|       |
  466|   286k|				case cmBO:
  ------------------
  |  Branch (466:5): [True: 286k, False: 645k]
  ------------------
  467|   286k|					if (m_iSynFlags & noBO)
  ------------------
  |  Branch (467:10): [True: 12, False: 286k]
  ------------------
  468|     12|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  469|       |
  470|   286k|					if (m_lastTok.GetCode() == cmFUNC)
  ------------------
  |  Branch (470:10): [True: 14.3k, False: 272k]
  ------------------
  471|  14.3k|						m_iSynFlags = noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  472|   272k|					else
  473|   272k|						m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN | noIF | noELSE;
  474|       |
  475|   286k|					if ((int)m_bracketStack.size() >= MaxNestingDepth)
  ------------------
  |  Branch (475:10): [True: 13, False: 286k]
  ------------------
  476|     13|						Error(ecNESTING_LIMIT, m_iPos, pOprtDef[i]);
  477|       |
  478|   286k|					m_bracketStack.push(cmBO);
  479|   286k|					break;
  480|       |
  481|   143k|				case cmBC:
  ------------------
  |  Branch (481:5): [True: 143k, False: 789k]
  ------------------
  482|   143k|					if (m_iSynFlags & noBC)
  ------------------
  |  Branch (482:10): [True: 11, False: 143k]
  ------------------
  483|     11|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  484|       |
  485|   143k|					m_iSynFlags = noBO | noVAR | noVAL | noFUN | noINFIXOP | noSTR | noASSIGN;
  486|       |
  487|   143k|					if (!m_bracketStack.empty())
  ------------------
  |  Branch (487:10): [True: 143k, False: 20]
  ------------------
  488|   143k|						m_bracketStack.pop();
  489|     20|					else
  490|     20|						Error(ecUNEXPECTED_PARENS, m_iPos, pOprtDef[i]);
  491|   143k|					break;
  492|       |
  493|  82.1k|				case cmELSE:
  ------------------
  |  Branch (493:5): [True: 82.1k, False: 850k]
  ------------------
  494|  82.1k|					if (m_iSynFlags & noELSE)
  ------------------
  |  Branch (494:10): [True: 3, False: 82.1k]
  ------------------
  495|      3|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  496|       |
  497|  82.1k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  498|  82.1k|					break;
  499|       |
  500|   141k|				case cmIF:
  ------------------
  |  Branch (500:5): [True: 141k, False: 790k]
  ------------------
  501|   141k|					if (m_iSynFlags & noIF)
  ------------------
  |  Branch (501:10): [True: 9, False: 141k]
  ------------------
  502|      9|						Error(ecUNEXPECTED_CONDITIONAL, m_iPos, pOprtDef[i]);
  503|       |
  504|   141k|					m_iSynFlags = noBC | noPOSTOP | noEND | noOPT | noIF | noELSE | noSTR;
  505|   141k|					break;
  506|       |
  507|      0|				default:      // The operator is listed in c_DefaultOprt, but not here. This is a bad thing...
  ------------------
  |  Branch (507:5): [True: 0, False: 932k]
  ------------------
  508|      0|					Error(ecINTERNAL_ERROR);
  509|   932k|				} // switch operator id
  510|       |
  511|   873k|				m_iPos += (int)len;
  512|   873k|				a_Tok.Set((ECmdCode)i, pOprtDef[i]);
  513|   873k|				return true;
  514|   932k|			} // if operator string found
  515|  36.7M|		} // end of for all operator strings
  516|       |
  517|  1.30M|		return false;
  518|  2.24M|	}
_ZN2mu17ParserTokenReader8IsArgSepERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  522|  1.30M|	{
  523|  1.30M|		const char_type* szFormula = m_strFormula.c_str();
  524|       |
  525|  1.30M|		if (szFormula[m_iPos] == m_cArgSep)
  ------------------
  |  Branch (525:7): [True: 432k, False: 877k]
  ------------------
  526|   432k|		{
  527|       |			// copy the separator into null terminated string
  528|   432k|			char_type szSep[2];
  529|   432k|			szSep[0] = m_cArgSep;
  530|   432k|			szSep[1] = 0;
  531|       |
  532|   432k|			if (m_iSynFlags & noARG_SEP)
  ------------------
  |  Branch (532:8): [True: 7, False: 432k]
  ------------------
  533|      7|				Error(ecUNEXPECTED_ARG_SEP, m_iPos, szSep);
  534|       |
  535|   432k|			m_iSynFlags = noBC | noOPT | noEND | noARG_SEP | noPOSTOP | noASSIGN;
  536|   432k|			m_iPos++;
  537|   432k|			a_Tok.Set(cmARG_SEP, szSep);
  538|   432k|			return true;
  539|   432k|		}
  540|       |
  541|   877k|		return false;
  542|  1.30M|	}
_ZN2mu17ParserTokenReader5IsEOFERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  553|  2.25M|	{
  554|  2.25M|		const char_type* szFormula = m_strFormula.c_str();
  555|       |
  556|       |		// check for EOF
  557|  2.25M|		if (!szFormula[m_iPos] /*|| szFormula[m_iPos] == '\n'*/)
  ------------------
  |  Branch (557:7): [True: 2.74k, False: 2.25M]
  ------------------
  558|  2.74k|		{
  559|  2.74k|			if (m_iSynFlags & noEND)
  ------------------
  |  Branch (559:8): [True: 603, False: 2.14k]
  ------------------
  560|    603|				Error(ecUNEXPECTED_EOF, m_iPos);
  561|       |
  562|  2.74k|			if (!m_bracketStack.empty())
  ------------------
  |  Branch (562:8): [True: 146, False: 2.60k]
  ------------------
  563|    146|				Error(ecMISSING_PARENS, m_iPos, _T(")"));
  ------------------
  |  |   69|    146|		#define _T(x) x
  ------------------
  564|       |
  565|  2.74k|			m_iSynFlags = 0;
  566|  2.74k|			a_Tok.Set(cmEND);
  567|  2.74k|			return true;
  568|  2.74k|		}
  569|       |
  570|  2.25M|		return false;
  571|  2.25M|	}
_ZN2mu17ParserTokenReader12IsInfixOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  578|  59.2k|	{
  579|  59.2k|		string_type sTok;
  580|  59.2k|		auto iEnd = ExtractToken(m_pParser->ValidInfixOprtChars(), sTok, (std::size_t)m_iPos);
  581|  59.2k|		if (iEnd == m_iPos)
  ------------------
  |  Branch (581:7): [True: 388, False: 58.8k]
  ------------------
  582|    388|			return false;
  583|       |
  584|       |		// iterate over all postfix operator strings
  585|  58.8k|		funmap_type::const_reverse_iterator it = m_pInfixOprtDef->rbegin();
  586|  78.3k|		for (; it != m_pInfixOprtDef->rend(); ++it)
  ------------------
  |  Branch (586:10): [True: 78.0k, False: 312]
  ------------------
  587|  78.0k|		{
  588|  78.0k|			if (sTok.find(it->first) != 0)
  ------------------
  |  Branch (588:8): [True: 19.5k, False: 58.5k]
  ------------------
  589|  19.5k|				continue;
  590|       |
  591|  58.5k|			a_Tok.Set(it->second, it->first);
  592|  58.5k|			m_iPos += (int)it->first.length();
  593|       |
  594|  58.5k|			if (m_iSynFlags & noINFIXOP)
  ------------------
  |  Branch (594:8): [True: 33, False: 58.5k]
  ------------------
  595|     33|				Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString());
  596|       |
  597|  58.5k|			m_iSynFlags |= noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN | noARG_SEP;
  598|  58.5k|			return true;
  599|  78.0k|		}
  600|       |
  601|    312|		return false;
  602|  58.8k|	}
_ZN2mu17ParserTokenReader8IsFunTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  612|  2.25M|	{
  613|  2.25M|		string_type strTok;
  614|  2.25M|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  615|  2.25M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (615:7): [True: 1.37M, False: 877k]
  ------------------
  616|  1.37M|			return false;
  617|       |
  618|   877k|		funmap_type::const_iterator item = m_pFunDef->find(strTok);
  619|   877k|		if (item == m_pFunDef->end())
  ------------------
  |  Branch (619:7): [True: 863k, False: 14.3k]
  ------------------
  620|   863k|			return false;
  621|       |
  622|       |		// Check if the next sign is an opening bracket
  623|  14.3k|		const char_type* szFormula = m_strFormula.c_str();
  624|  14.3k|		if (szFormula[iEnd] != '(')
  ------------------
  |  Branch (624:7): [True: 22, False: 14.3k]
  ------------------
  625|     22|			return false;
  626|       |
  627|       |		// fix for #164: https://github.com/beltoforion/muparser/issues/164
  628|  14.3k|		if (m_lastTok.GetFuncAddr() == generic_callable_type{ (erased_fun_type)&MathImpl<value_type>::UnaryPlus, nullptr })
  ------------------
  |  Branch (628:7): [True: 2, False: 14.3k]
  ------------------
  629|      2|		{
  630|      2|			Error(ecUNARY_PLUS_IN_FRONT_OF_FUNCTION, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  631|      2|		}
  632|       |
  633|  14.3k|		a_Tok.Set(item->second, strTok);
  634|       |
  635|  14.3k|		m_iPos = (int)iEnd;
  636|  14.3k|		if (m_iSynFlags & noFUN)
  ------------------
  |  Branch (636:7): [True: 1, False: 14.3k]
  ------------------
  637|      1|			Error(ecUNEXPECTED_FUN, m_iPos - (int)a_Tok.GetAsString().length(), a_Tok.GetAsString());
  638|       |
  639|  14.3k|		m_iSynFlags = noANY ^ noBO;
  640|  14.3k|		return true;
  641|  14.3k|	}
_ZN2mu17ParserTokenReader6IsOprtERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  649|  2.25M|	{
  650|  2.25M|		const char_type* const szExpr = m_strFormula.c_str();
  651|  2.25M|		string_type strTok;
  652|       |
  653|  2.25M|		auto iEnd = ExtractOperatorToken(strTok, (std::size_t)m_iPos);
  654|  2.25M|		if (iEnd == m_iPos)
  ------------------
  |  Branch (654:7): [True: 1.82M, False: 436k]
  ------------------
  655|  1.82M|			return false;
  656|       |
  657|       |		// Check if the operator is a built in operator, if so ignore it here
  658|   436k|		const char_type** const pOprtDef = m_pParser->GetOprtDef();
  659|  5.81M|		for (int i = 0; m_pParser->HasBuiltInOprt() && pOprtDef[i]; ++i)
  ------------------
  |  Branch (659:19): [True: 5.81M, False: 0]
  |  Branch (659:50): [True: 5.75M, False: 62.2k]
  ------------------
  660|  5.75M|		{
  661|  5.75M|			if (string_type(pOprtDef[i]) == strTok)
  ------------------
  |  Branch (661:8): [True: 374k, False: 5.38M]
  ------------------
  662|   374k|				return false;
  663|  5.75M|		}
  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|  62.2k|		funmap_type::const_reverse_iterator it = m_pOprtDef->rbegin();
  672|  62.2k|		for (; it != m_pOprtDef->rend(); ++it)
  ------------------
  |  Branch (672:10): [True: 0, False: 62.2k]
  ------------------
  673|      0|		{
  674|      0|			const string_type& sID = it->first;
  675|      0|			if (sID == string_type(szExpr + m_iPos, szExpr + m_iPos + sID.length()))
  ------------------
  |  Branch (675:8): [True: 0, False: 0]
  ------------------
  676|      0|			{
  677|      0|				a_Tok.Set(it->second, strTok);
  678|       |
  679|       |				// operator was found
  680|      0|				if (m_iSynFlags & noOPT)
  ------------------
  |  Branch (680:9): [True: 0, False: 0]
  ------------------
  681|      0|				{
  682|       |					// An operator was found but is not expected to occur at
  683|       |					// this position of the formula, maybe it is an infix 
  684|       |					// operator, not a binary operator. Both operator types
  685|       |					// can share characters in their identifiers.
  686|      0|					if (IsInfixOpTok(a_Tok))
  ------------------
  |  Branch (686:10): [True: 0, False: 0]
  ------------------
  687|      0|						return true;
  688|      0|					else
  689|      0|					{
  690|       |						// nope, no infix operator
  691|      0|						return false;
  692|       |						//Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString()); 
  693|      0|					}
  694|       |
  695|      0|				}
  696|       |
  697|      0|				m_iPos += (int)sID.length();
  698|      0|				m_iSynFlags = noBC | noOPT | noARG_SEP | noPOSTOP | noEND | noASSIGN;
  699|      0|				return true;
  700|      0|			}
  701|      0|		}
  702|       |
  703|  62.2k|		return false;
  704|  62.2k|	}
_ZN2mu17ParserTokenReader11IsPostOpTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  709|    613|	{
  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|    613|		if (m_iSynFlags & noPOSTOP)
  ------------------
  |  Branch (717:7): [True: 391, False: 222]
  ------------------
  718|    391|			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|    222|		string_type sTok;
  731|    222|		auto iEnd = ExtractToken(m_pParser->ValidOprtChars(), sTok, (std::size_t)m_iPos);
  732|    222|		if (iEnd == m_iPos)
  ------------------
  |  Branch (732:7): [True: 43, False: 179]
  ------------------
  733|     43|			return false;
  734|       |
  735|       |		// iterate over all postfix operator strings
  736|    179|		funmap_type::const_reverse_iterator it = m_pPostOprtDef->rbegin();
  737|    179|		for (; it != m_pPostOprtDef->rend(); ++it)
  ------------------
  |  Branch (737:10): [True: 0, False: 179]
  ------------------
  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|    179|		return false;
  750|    179|	}
_ZN2mu17ParserTokenReader8IsValTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  761|   877k|	{
  762|   877k|		MUP_ASSERT(m_pConstDef != nullptr);
  ------------------
  |  |   78|   877k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 877k]
  |  |  ------------------
  |  |   79|   877k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  763|   877k|		MUP_ASSERT(m_pParser != nullptr);
  ------------------
  |  |   78|   877k|            if (!(COND))											\
  |  |  ------------------
  |  |  |  Branch (78:17): [True: 0, False: 877k]
  |  |  ------------------
  |  |   79|   877k|            {														\
  |  |   80|      0|              stringstream_type ss;									\
  |  |   81|      0|              ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |                             ss << _T("Assertion \"") _T(#COND) _T("\" failed: ")	\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   82|      0|                 << __FILE__ << _T(" line ")						\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   83|      0|                 << __LINE__ << _T(".");							\
  |  |  ------------------
  |  |  |  |   69|      0|		#define _T(x) x
  |  |  ------------------
  |  |   84|      0|              throw ParserError( ecINTERNAL_ERROR, -1, ss.str());   \
  |  |   85|      0|            }
  ------------------
  764|       |
  765|   877k|		string_type strTok;
  766|   877k|		value_type fVal(0);
  767|       |
  768|       |		// 2.) Check for user defined constant
  769|       |		// Read everything that could be a constant name
  770|   877k|		auto iEnd = ExtractToken(m_pParser->ValidNameChars(), strTok, (std::size_t)m_iPos);
  771|   877k|		if (iEnd != m_iPos)
  ------------------
  |  Branch (771:7): [True: 863k, False: 14.2k]
  ------------------
  772|   863k|		{
  773|   863k|			valmap_type::const_iterator item = m_pConstDef->find(strTok);
  774|   863k|			if (item != m_pConstDef->end())
  ------------------
  |  Branch (774:8): [True: 1.08k, False: 862k]
  ------------------
  775|  1.08k|			{
  776|  1.08k|				m_iPos = iEnd;
  777|  1.08k|				a_Tok.SetVal(item->second, strTok);
  778|       |
  779|  1.08k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (779:9): [True: 2, False: 1.08k]
  ------------------
  780|      2|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  781|       |
  782|  1.08k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  783|  1.08k|				return true;
  784|  1.08k|			}
  785|   863k|		}
  786|       |
  787|       |		// 3.call the value recognition functions provided by the user
  788|       |		// Call user defined value recognition functions
  789|   876k|		std::list<identfun_type>::const_iterator item = m_vIdentFun.begin();
  790|   889k|		for (item = m_vIdentFun.begin(); item != m_vIdentFun.end(); ++item)
  ------------------
  |  Branch (790:36): [True: 876k, False: 13.6k]
  ------------------
  791|   876k|		{
  792|   876k|			int iStart = m_iPos;
  793|   876k|			if ((*item)(m_strFormula.c_str() + m_iPos, &m_iPos, &fVal) == 1)
  ------------------
  |  Branch (793:8): [True: 862k, False: 13.6k]
  ------------------
  794|   862k|			{
  795|       |				// 2013-11-27 Issue 2:  https://code.google.com/p/muparser/issues/detail?id=2
  796|   862k|				strTok.assign(m_strFormula.c_str(), iStart, (std::size_t)m_iPos - iStart);
  797|       |
  798|   862k|				if (m_iSynFlags & noVAL)
  ------------------
  |  Branch (798:9): [True: 21, False: 862k]
  ------------------
  799|     21|					Error(ecUNEXPECTED_VAL, m_iPos - (int)strTok.length(), strTok);
  800|       |
  801|   862k|				a_Tok.SetVal(fVal, strTok);
  802|   862k|				m_iSynFlags = noVAL | noVAR | noFUN | noBO | noINFIXOP | noSTR | noASSIGN;
  803|   862k|				return true;
  804|   862k|			}
  805|   876k|		}
  806|       |
  807|  13.6k|		return false;
  808|   876k|	}
_ZN2mu17ParserTokenReader8IsVarTokERNS_11ParserTokenIdNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE:
  816|  13.6k|	{
  817|  13.6k|		if (m_pVarDef->empty())
  ------------------
  |  Branch (817:7): [True: 13.6k, False: 0]
  ------------------
  818|  13.6k|			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.6k|	{
  848|  13.6k|		if (!m_pStrVarDef || m_pStrVarDef->empty())
  ------------------
  |  Branch (848:7): [True: 0, False: 13.6k]
  |  Branch (848:24): [True: 13.6k, False: 0]
  ------------------
  849|  13.6k|			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.6k|	{
  937|  13.6k|		if (m_strFormula[m_iPos] != '"')
  ------------------
  |  Branch (937:7): [True: 613, False: 13.0k]
  ------------------
  938|    613|			return false;
  939|       |
  940|  13.0k|		string_type strBuf(&m_strFormula[(std::size_t)m_iPos + 1]);
  941|  13.0k|		std::size_t iEnd(0), iSkip(0);
  942|       |
  943|       |		// parser over escaped '\"' end replace them with '"'
  944|  13.5k|		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|  13.0k|		#define _T(x) x
  ------------------
              		for (iEnd = strBuf.find(_T('\"')); iEnd != string_type::npos; iEnd = strBuf.find(_T('\"'), iEnd))
  ------------------
  |  |   69|    553|		#define _T(x) x
  ------------------
  |  Branch (944:38): [True: 13.5k, False: 45]
  ------------------
  945|  13.5k|		{
  946|  13.5k|			if (iEnd==0 || strBuf[iEnd - 1] != '\\') 
  ------------------
  |  Branch (946:8): [True: 10.8k, False: 2.66k]
  |  Branch (946:19): [True: 2.11k, False: 553]
  ------------------
  947|  12.9k|				break;
  948|       |
  949|    553|			strBuf.replace(iEnd - 1, 2, _T("\""));
  ------------------
  |  |   69|    553|		#define _T(x) x
  ------------------
  950|    553|			iSkip++;
  951|    553|		}
  952|       |
  953|  13.0k|		if (iEnd == string_type::npos)
  ------------------
  |  Branch (953:7): [True: 45, False: 12.9k]
  ------------------
  954|     45|			Error(ecUNTERMINATED_STRING, m_iPos, _T("\""));
  ------------------
  |  |   69|     45|		#define _T(x) x
  ------------------
  955|       |
  956|  13.0k|		string_type strTok(strBuf.begin(), strBuf.begin() + iEnd);
  957|       |
  958|  13.0k|		if (m_iSynFlags & noSTR)
  ------------------
  |  Branch (958:7): [True: 42, False: 12.9k]
  ------------------
  959|     42|			Error(ecUNEXPECTED_STR, m_iPos, strTok);
  960|       |
  961|  13.0k|		m_pParser->m_vStringBuf.push_back(strTok); // Store string in internal buffer
  962|  13.0k|		a_Tok.SetString(strTok, m_pParser->m_vStringBuf.size()-1);
  963|       |
  964|  13.0k|		m_iPos += (int)strTok.length() + 2 + (int)iSkip;  // +2 for quotes; +iSkip for escape characters 
  965|  13.0k|		m_iSynFlags = noANY ^ (noARG_SEP | noBC | noOPT | noEND);
  966|       |
  967|  13.0k|		return true;
  968|  13.6k|	}
_ZNK2mu17ParserTokenReader5ErrorENS_11EErrorCodesEiRKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE:
  981|  1.67k|	{
  982|  1.67k|		m_pParser->Error(a_iErrc, a_iPos, a_sTok);
  983|  1.67k|	}
_ZNK2mu17ParserTokenReader9GetArgSepEv:
  993|  3.91k|	{
  994|  3.91k|		return m_cArgSep;
  995|  3.91k|	}

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

