本文整理汇总了C++中Identifier::set_name方法的典型用法代码示例。如果您正苦于以下问题:C++ Identifier::set_name方法的具体用法?C++ Identifier::set_name怎么用?C++ Identifier::set_name使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Identifier
的用法示例。
在下文中一共展示了Identifier::set_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: runOnModule
bool AssertionSiteInstrumenter::runOnModule(Module &M) {
InstrCtx.reset(InstrContext::Create(M, SuppressDebugInstr));
// Replace all structure automaton "anchors" with automata definitions.
for (auto &Fn : M) {
StringRef Name = Fn.getName();
if (not Name.startswith(STRUCT_AUTOMATON))
continue;
Name = Name.substr(STRUCT_AUTOMATON.length());
Identifier ID;
ID.set_name(Name.str());
const Automaton *A = this->M.FindAutomaton(ID);
if (not A) {
llvm::errs() << "TESLA manifest does not contain " << Name << "\n";
panic("missing automaton definition", false);
}
assert(A->Name() == Name);
if (Function *AutomatonDefinition = M.getFunction(Name))
AutomatonDefinition->eraseFromParent();
InstrCtx->BuildAutomatonDescription(A);
}
// If this module doesn't declare any assertions, just carry on.
AssertFn = M.getFunction(INLINE_ASSERTION);
if (!AssertFn)
return false;
// Find all calls to TESLA assertion pseudo-function (before we modify IR).
set<CallInst*> AssertCalls;
for (auto I = AssertFn->use_begin(); I != AssertFn->use_end(); ++I)
AssertCalls.insert(cast<CallInst>(*I));
return ConvertAssertions(AssertCalls, M);
}