| 903 | } |
| 904 | |
| 905 | bool RDAnalyzer::isNonStaticMethodInvocation(const llvm::CallBase &CB) const { |
| 906 | |
| 907 | auto *F = CB.getCalledFunction(); |
| 908 | if (!F) { |
| 909 | // Return false unless which function is called by this instruction. |
| 910 | return false; |
| 911 | } |
| 912 | |
| 913 | auto Name = F->getName(); |
| 914 | return Extension.isNonStaticClassMethod(Name.str()); |
| 915 | } |
| 916 | |
| 917 | RDAnalyzer::PROPTYPE RDAnalyzer::isPropagated(const RDTarget &Target, |
| 918 | llvm::Value &Src) { |
nothing calls this directly
no test coverage detected