本文整理汇总了C++中NodeValue::getResNo方法的典型用法代码示例。如果您正苦于以下问题:C++ NodeValue::getResNo方法的具体用法?C++ NodeValue::getResNo怎么用?C++ NodeValue::getResNo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NodeValue
的用法示例。
在下文中一共展示了NodeValue::getResNo方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: replaceAllUsesOfWith
void NodeValue::replaceAllUsesOfWith(NodeValue v) {
if (v.getNode()) {
assert(getType() == v.getType() && "Replacing value with the wrong type");
}
auto &users = node_->getUsers();
llvm::SmallVector<NodeUse, 4> usersVec(users.begin(), users.end());
for (auto &U : usersVec) {
NodeValue *site = U.get();
assert(site->getNode() == node_ && "Invalid user");
if (site->getResNo() == getResNo()) {
site->setOperand(v.getNode(), v.getResNo());
}
}
}
示例2: setOperand
void NodeUse::setOperand(NodeValue &other) {
if (other && site_->getNode()) {
assert(site_->getType() == other.getType() &&
"Setting operand to a node with a different type");
}
site_->setOperand(other.getNode(), other.getResNo());
}
示例3: count
bool UnownedNodeValueMap::count(NodeValue from) {
for (auto &E : entries_) {
auto &F = E.first;
if (F.first == from.getNode() && F.second == from.getResNo()) {
return true;
}
}
return false;
}
示例4: get
NodeValue UnownedNodeValueMap::get(NodeValue from) {
for (auto &E : entries_) {
auto &F = E.first;
auto &T = E.second;
if (F.first == from.getNode() && F.second == from.getResNo()) {
return NodeValue(T.first, T.second);
}
}
llvm_unreachable("Invalid node");
return NodeValue(nullptr, 0);
}
示例5: insert
void UnownedNodeValueMap::insert(NodeValue from, NodeValue to) {
entries_.push_front(
{{from.getNode(), from.getResNo()}, {to.getNode(), to.getResNo()}});
}