MCPcopy Create free account
hub / github.com/Samsung/UTopia / analyzeTargetCall

Method analyzeTargetCall

lib/inputanalysis/DefAnalyzer.cpp:150–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148}
149
150DefAnalyzer::FuncDef DefAnalyzer::analyzeTargetCall(llvm::CallBase &CB) {
151 DefAnalyzer::FuncDef Result(CB);
152 try {
153 if (ASTMap->hasDiffNumArgs(CB))
154 return Result;
155 } catch (std::runtime_error &E) {
156 return Result;
157 }
158 Result.ArgDefs = analyzeTargetCallArgs(CB);
159 return Result;
160}
161
162std::vector<DefAnalyzer::ArgDef>
163DefAnalyzer::analyzeTargetCallArgs(llvm::CallBase &CB) {

Callers

nothing calls this directly

Calls 1

hasDiffNumArgsMethod · 0.80

Tested by

no test coverage detected