本文整理汇总了C#中Procedure.callingConv方法的典型用法代码示例。如果您正苦于以下问题:C# Procedure.callingConv方法的具体用法?C# Procedure.callingConv怎么用?C# Procedure.callingConv使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Procedure
的用法示例。
在下文中一共展示了Procedure.callingConv方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LibCheck
/// <summary>
/// Check this function to see if it is a library function. Return true if
/// it is, and copy its name to pProc.Name
/// </summary>
public bool LibCheck(IServiceProvider services, Program prog, Procedure pProc, Address addr)
{
var diagSvc = services.RequireService<IDiagnosticsService>();
long fileOffset;
int h;
// i, j, arg;
uint Idx;
if (false) // && prog.bSigs == false)
{
/* No signatures... can't rely on hash parameters to be initialised
so always return false */
return false;
}
ImageSegment segment;
if (!prog.SegmentMap.TryFindSegment(addr, out segment))
return false;
fileOffset = addr - segment.MemoryArea.BaseAddress; /* Offset into the image */
//if (fileOffset == prog.offMain)
//{
// /* Easy - this function is called main! */
// pProc.Name = "main";
// return false;
//}
byte[] pat = new byte[PATLEN];
if (!segment.MemoryArea.TryReadBytes(fileOffset, PATLEN, pat))
return false;
fixWildCards(pat); /* Fix wild cards in the copy */
h = g_pattern_hasher.hash(pat); /* Hash the found proc */
/* We always have to compare keys, because the hash function will always return a valid index */
if (MemoryArea.CompareArrays(ht[h].htPat, 0, pat, PATLEN))
{
#if NOT_YET
/* We have a match. Save the name, if not already set */
if (string.IsNullOrEmpty(pProc.Name)) /* Don't overwrite existing name */
{
/* Give proc the new name */
pProc.Name = ht[h].htSym;
}
/* But is it a real library function? */
i = NIL;
if ((numFunc == 0) || (i = searchPList(ht[h].htSym)) != NIL)
{
pProc.flg |= PROC_ISLIB; /* It's a lib function */
pProc.callingConv(CConv::C);
if (i != NIL)
{
/* Allocate space for the arg struct, and copy the hlType to
the appropriate field */
arg = pFunc[i].firstArg;
pProc.args.numArgs = pFunc[i].numArg;
pProc.args.resize(pFunc[i].numArg);
for (j = 0; j < pFunc[i].numArg; j++)
{
pProc.args[j].type = pArg[arg++];
}
if (pFunc[i].typ != hlType.TYPE_UNKNOWN)
{
pProc.retVal.type = pFunc[i].typ;
pProc.flg |= PROC_IS_FUNC;
switch (pProc.retVal.type)
{
case hlType.TYPE_LONG_SIGN:
case hlType.TYPE_LONG_UNSIGN:
pProc.liveOut.setReg(rDX).addReg(rAX);
break;
case hlType.TYPE_WORD_SIGN:
case hlType.TYPE_WORD_UNSIGN:
pProc.liveOut.setReg(rAX);
break;
case hlType.TYPE_BYTE_SIGN:
case hlType.TYPE_BYTE_UNSIGN:
pProc.liveOut.setReg(rAL);
break;
case hlType.TYPE_STR:
case hlType.TYPE_PTR:
fprintf(stderr, "Warning assuming Large memory model\n");
pProc.liveOut.setReg(rAX).addReg(rDS);
break;
default:
diagSvc.Warn(string.Format("Unknown retval type {0} for {1} in LibCheck.",
pProc.retVal.type,
pProc.Name);
break;
/*** other types are not considered yet ***/
}
}
pProc.getFunctionType()->m_vararg = pFunc[i].bVararg;
}
}
else if (i == NIL)
//.........这里部分代码省略.........