本文整理汇总了C++中SSATmp::getValStr方法的典型用法代码示例。如果您正苦于以下问题:C++ SSATmp::getValStr方法的具体用法?C++ SSATmp::getValStr怎么用?C++ SSATmp::getValStr使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SSATmp
的用法示例。
在下文中一共展示了SSATmp::getValStr方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: findClassName
const StringData* findClassName(SSATmp* cls) {
assert(cls->isA(Type::Cls));
if (cls->isConst()) {
return cls->getValClass()->preClass()->name();
}
// Try to get the class name from a LdCls
IRInstruction* clsInst = cls->inst();
if (clsInst->op() == LdCls || clsInst->op() == LdClsCached) {
SSATmp* clsName = clsInst->src(0);
assert(clsName->isA(Type::Str));
if (clsName->isConst()) {
return clsName->getValStr();
}
}
return nullptr;
}
示例2: simplifyLdCls
SSATmp* Simplifier::simplifyLdCls(IRInstruction* inst) {
SSATmp* clsName = inst->getSrc(0);
if (clsName->isConst()) {
const Class* cls = Unit::lookupUniqueClass(clsName->getValStr());
if (cls) {
if (RuntimeOption::RepoAuthoritative && (cls->attrs() & AttrUnique)) {
// the class is unique
return m_tb->genDefConst(cls);
}
const Class* ctx = inst->getSrc(1)->getValClass();
if (ctx && ctx->classof(cls)) {
// the class of the current function being compiled is the
// same as or derived from cls, so cls must be defined and
// cannot change the next time we execute this same code
return m_tb->genDefConst(cls);
}
}
return m_tb->gen(LdClsCached, clsName);
}
return nullptr;
}