Displaying 1 result from an estimated 1 matches for "callsexternalnod".
Did you mean:
callsexternalnode
2011 Mar 29
2
[LLVMdev] Anomaly with CallGraph construction
...gin(), IE = BB->end();
II != IE; ++II) {
CallSite CS(cast<Value>(II));
if (CS && !isa<DbgInfoIntrinsic>(II)) {
const Function *Callee = CS.getCalledFunction();
if (Callee)
Node->addCalledFunction(CS, getOrInsertFunction(Callee));
else
Node->addCalledFunction(CS, CallsExternalNode);
}
}
------
While analyzing the IS NAS Parallel Benchmark I find the following BasicBlock:
; <label>:24 ; preds = %20
%25 = call double (...)* bitcast (double (double*, double*)* @randlc to double (...)*)(double* %t1, double* %t1)
store double %25, double* %t2, align 8
br label %2...