Home
last modified time | relevance | path

Searched refs:getFunctionName (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallDescription.cpp85 return CheckerContext::isCLibraryFunction(FD, getFunctionName()) && in matchesImpl()
91 II = &FD->getASTContext().Idents.get(getFunctionName()); in matchesImpl()
104 return Name.getAsString() == CD.getFunctionName(); in matchesImpl()
H A DSValBuilder.cpp355 assert(PE->getFunctionName() && in getConstantVal()
358 return makeLoc(getRegionManager().getStringRegion(PE->getFunctionName())); in getConstantVal()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DIgnoreExpr.h170 if (PE->isTransparent() && PE->getFunctionName()) in IgnoreParensSingleStep()
171 return PE->getFunctionName(); in IgnoreParensSingleStep()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp38 Result.FunctionName = getFunctionName(Address.Address, Specifier.FNKind); in getLineInfoForAddress()
143 std::string PDBContext::getFunctionName(uint64_t Address, in getFunctionName() function in PDBContext
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBContext.h61 std::string getFunctionName(uint64_t Address, DINameKind NameKind) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DDemangle.h101 char *getFunctionName(char *Buf, size_t *N) const;
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DXCOFFDump.cpp289 uint16_t FunctionNameLen = TbTable.getFunctionName()->size(); in dumpTracebackTable()
313 OS << "\t# FunctionName = " << *TbTable.getFunctionName(); in dumpTracebackTable()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallDescription.h78 StringRef getFunctionName() const { return QualifiedName.back(); } in getFunctionName() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp202 static StringRef getFunctionName(const DISubprogram *SP) { in getFunctionName() function
332 LLVM_DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n"); in GCOVFunction()
342 FNLOS << getFunctionName(SP) << SP->getLine(); in GCOVFunction()
364 2 + (Version >= 47) + wordsOfString(getFunctionName(SP)); in writeOut()
375 writeString(getFunctionName(SP)); in writeOut()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp219 << AnalysisDeclContext::getFunctionName(D); in DisplayFunction()
627 AnalysisDeclContext::getFunctionName(D) != Opts.AnalyzeSpecificFunction) in getModeForDecl()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp339 std::string AnalysisDeclContext::getFunctionName(const Decl *D) { in getFunctionName() function in AnalysisDeclContext
511 Out << "Calling " << AnalysisDeclContext::getFunctionName(D); in dumpStack()
/freebsd/contrib/llvm-project/lld/MachO/
H A DSymbolTable.cpp486 char *buf = d.getFunctionName(nullptr, nullptr); in canSuggestExternCForCXX()
575 if (char *buf = d.getFunctionName(nullptr, nullptr)) { in getAlternativeSpelling()
/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwindCursor.hpp456 virtual bool getFunctionName(char *, size_t, unw_word_t *) { in getFunctionName() function in libunwind::AbstractUnwindCursor
504 virtual bool getFunctionName(char *buf, size_t len, unw_word_t *off);
947 virtual bool getFunctionName(char *buf, size_t len, unw_word_t *off);
2057 if (!getFunctionName(functionBuf, sizeof(functionBuf), &offset)) { in getInfoFromTBTable()
2304 if (!getFunctionName(functionBuf, sizeof(functionBuf), &offset)) { in stepWithTBTable()
2963 bool UnwindCursor<A, R>::getFunctionName(char *buf, size_t bufLen, in getFunctionName() function in libunwind::UnwindCursor
H A Dlibunwind.cpp228 if (co->getFunctionName(buf, bufLen, offset)) in _LIBUNWIND_WEAK_ALIAS()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h203 static std::string getFunctionName(const Decl *D);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DValistChecker.cpp155 Errmsg += FuncInfo.Func.getFunctionName(); in checkPreCall()
H A DStdLibraryFunctionsChecker.cpp832 static std::string getFunctionName(const CallEvent &Call) { in getFunctionName() function in __anon6bc7ad640111::StdLibraryFunctionsChecker
868 MsgOs << " to '" << getFunctionName(Call) << "' "; in reportBug()
1345 Os << getFunctionName(Call); in checkPreCall()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDiagnosticInfo.cpp444 DP << "call to " << demangle(getFunctionName()) << " marked \"dontcall-"; in print()
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp497 char *ItaniumPartialDemangler::getFunctionName(char *Buf, size_t *N) const { in getFunctionName() function in ItaniumPartialDemangler
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDiagnosticInfo.h1111 StringRef getFunctionName() const { return CalleeName; } in getFunctionName() function
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h757 StringRef getFunctionName(const FunctionDecl *FD);
H A DCodeGenAction.cpp805 << llvm::demangle(D.getFunctionName()) << D.getNote(); in DontCallDiagHandler()
/freebsd/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp583 char *buf = d.getFunctionName(nullptr, nullptr); in canSuggestExternCForCXX()
677 if (char *buf = d.getFunctionName(nullptr, nullptr)) { in getAlternativeSpelling()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h966 const std::optional<StringRef> &getFunctionName() const {
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp662 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr()
669 Record.AddStmt(E->getFunctionName()); in VisitPredefinedExpr()

12