本文整理汇总了C++中Exp::getTypeId方法的典型用法代码示例。如果您正苦于以下问题:C++ Exp::getTypeId方法的具体用法?C++ Exp::getTypeId怎么用?C++ Exp::getTypeId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Exp
的用法示例。
在下文中一共展示了Exp::getTypeId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: while
MM::VOID MM::PoolNodeInstance::initExp(MM::Exp * exp)
{
if(exp != MM_NULL)
{
Vector<MM::Exp *> exps;
exps.add(exp);
MM::PoolNodeInstance * other = MM_NULL;
MM::VarExp * varExp = MM_NULL;
while(exps.isEmpty() == MM_FALSE)
{
Exp * curExp = exps.pop();
switch(curExp->getTypeId())
{
case MM::T_BinExp:
exps.add(((MM::BinExp*)curExp)->getLhsExp());
exps.add(((MM::BinExp*)curExp)->getRhsExp());
break;
case MM::T_OverrideExp:
exps.add(((MM::OverrideExp*)curExp)->getExp());
break;
case MM::T_UnExp:
exps.add(((MM::UnExp*)curExp)->getExp());
break;
case MM::T_VarExp:
varExp = (MM::VarExp *) curExp;
other = instance->findPoolNodeInstance(varExp);
if(other != MM_NULL)
{
printf("%lu poolNodeInstance %s observes poolNodeInstance %s %lu\n", this, poolNode->getName()->getBuffer(), other->getNode()->getName()->getBuffer(), other);
fflush(stdout);
other->addObserver(this);
observing->add(other);
}
else
{
//TODO: runtime exception
printf("Missing poolNodeInstance on expression %s\n", poolNode->getName()->getBuffer());
fflush(stdout);
//other = instance->findPoolNodeInstance(varExp);
}
break;
default:
break;
}
}
}
}