Lines Matching refs:pszAnnotation

2642 static int printMsrWriteOnly(uint32_t uMsr, const char *pszWrFnName, const char *pszAnnotation)
2646 vbCpuRepPrintf(pszAnnotation
2649 uMsr, getMsrName(uMsr), pszWrFnName, pszAnnotation);
2655 static int printMsrValueReadOnly(uint32_t uMsr, uint64_t uValue, const char *pszAnnotation)
2660 if (pszAnnotation)
2661 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2668 static int printMsrValueIgnoreWritesNamed(uint32_t uMsr, uint64_t uValue, const char *pszName, const char *pszAnnotation)
2673 if (pszAnnotation)
2674 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2680 static int printMsrValueIgnoreWrites(uint32_t uMsr, uint64_t uValue, const char *pszAnnotation)
2682 return printMsrValueIgnoreWritesNamed(uMsr, uValue, getMsrName(uMsr), pszAnnotation);
2687 const char *pszAnnotation)
2694 if (pszAnnotation)
2695 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2701 static int printMsrRangeValueReadOnly(uint32_t uMsr, uint32_t uLast, uint64_t uValue, const char *pszAnnotation)
2706 if (pszAnnotation)
2707 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2713 static int printMsrRangeValueIgnoreWritesNamed(uint32_t uMsr, uint32_t uLast, uint64_t uValue, const char *pszName, const char *pszAnnotation)
2718 if (pszAnnotation)
2719 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2725 static int printMsrRangeValueIgnoreWrites(uint32_t uMsr, uint32_t uLast, uint64_t uValue, const char *pszAnnotation)
2727 return printMsrRangeValueIgnoreWritesNamed(uMsr, uLast, uValue, getMsrRangeName(uMsr), pszAnnotation);
2731 static int printMsrFunction(uint32_t uMsr, const char *pszRdFnName, const char *pszWrFnName, const char *pszAnnotation)
2738 if (pszAnnotation)
2739 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2745 static int printMsrFunctionReadOnly(uint32_t uMsr, const char *pszRdFnName, const char *pszAnnotation)
2750 if (pszAnnotation)
2751 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2757 static int printMsrFunctionIgnoreWrites(uint32_t uMsr, const char *pszRdFnName, const char *pszAnnotation)
2762 if (pszAnnotation)
2763 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2770 uint64_t fIgnMask, const char *pszAnnotation)
2779 if (pszAnnotation)
2780 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2787 uint64_t fIgnMask, uint64_t fGpMask, const char *pszAnnotation)
2798 if (pszAnnotation)
2799 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2806 uint64_t fIgnMask, uint64_t fGpMask, const char *pszAnnotation)
2816 if (pszAnnotation)
2817 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2824 const char *pszCpumCpuStorage, const char *pszAnnotation)
2835 if (pszAnnotation)
2836 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2844 const char *pszAnnotation)
2858 if (pszAnnotation)
2859 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2866 const char *pszAnnotation)
2873 if (pszAnnotation)
2874 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2881 uint64_t uValue, uint64_t fIgnMask, uint64_t fGpMask, const char *pszAnnotation)
2892 if (pszAnnotation)
2893 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2900 uint64_t uValue, uint64_t fIgnMask, uint64_t fGpMask, const char *pszAnnotation)
2911 if (pszAnnotation)
2912 vbCpuRepPrintf(" /* %s */", pszAnnotation);
2918 static int printMsrAlias(uint32_t uMsr, uint32_t uTarget, const char *pszAnnotation)
2921 if (pszAnnotation)
2922 vbCpuRepPrintf(" /* %s */", pszAnnotation);
3098 const char *pszAnnotation = NULL;
3115 pszAnnotation = "XXX: The range ended earlier than expected!";
3135 pszAnnotation ? pszAnnotation : annotateValue(paMsrs[0].uValue));
3138 pszRdWrFnName, fReadOnly0 ? "ReadOnly" : pszRdWrFnName, pszAnnotation);
3141 iRange /*uValue*/, fIgnMask0, fGpMask0, pszAnnotation);