本文整理汇总了C++中AnalysisProcessor::convertExprToSymVar方法的典型用法代码示例。如果您正苦于以下问题:C++ AnalysisProcessor::convertExprToSymVar方法的具体用法?C++ AnalysisProcessor::convertExprToSymVar怎么用?C++ AnalysisProcessor::convertExprToSymVar使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AnalysisProcessor
的用法示例。
在下文中一共展示了AnalysisProcessor::convertExprToSymVar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: PyErr_Format
static PyObject *Triton_convertExprToSymVar(PyObject *self, PyObject *args)
{
PyObject *exprId, *symVarSize, *varComment = nullptr;
uint64 vs, ei;
std::string vc;
/* Extract arguments */
PyArg_ParseTuple(args, "O|O|O", &exprId, &symVarSize, &varComment);
if (varComment == nullptr)
varComment = PyString_FromString("");
if (!PyLong_Check(exprId) && !PyInt_Check(exprId))
return PyErr_Format(PyExc_TypeError, "convertExprToSymVar(): expected an integer as first argument");
if (!PyLong_Check(symVarSize) && !PyInt_Check(symVarSize))
return PyErr_Format(PyExc_TypeError, "convertExprToSymVar(): expected an integer as second argument");
if (!PyString_Check(varComment))
return PyErr_Format(PyExc_TypeError, "convertExprToSymVar(): expected a comment (string) as third argument");
ei = PyLong_AsLong(exprId);
vs = PyLong_AsLong(symVarSize);
vc = PyString_AsString(varComment);
return PySymbolicVariable(ap.convertExprToSymVar(ei, vs, vc));
}