Searched refs:FunctionName (Results 26 - 48 of 48) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/include/llvm/Bitcode/
H A DReaderWriter.h87 StringRef FunctionName, std::unique_ptr<FunctionInfoIndex> Index);
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp65 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info);
87 Frame->FunctionName = DemangleName(Frame->FunctionName, Info);
/freebsd-11.0-release/contrib/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp601 StringRef FunctionName;
607 FunctionName = *FunctionNameOrErr;
619 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
668 StringRef FunctionName; local
674 FunctionName = *FunctionNameOrErr;
684 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp551 if (!FindFunctionInModule(function_name, llvm_module_ap.get(), m_expr.FunctionName()))
554 err.SetErrorStringWithFormat("Couldn't find %s() in the module", m_expr.FunctionName());
560 log->Printf("Found function %s for %s", function_name.AsCString(), m_expr.FunctionName());
H A DClangUserExpression.cpp513 ConstString const_func_name(FunctionName());
/freebsd-11.0-release/contrib/llvm/include/llvm/
H A DPass.h375 extern bool isFunctionInPrintList(StringRef FunctionName);
/freebsd-11.0-release/contrib/llvm/lib/ProfileData/
H A DCoverageMapping.cpp195 Record.FunctionName, Record.FunctionHash, Counts)) {
207 StringRef OrigFuncName = Record.FunctionName;
H A DCoverageMappingReader.cpp539 Record.FunctionName = R.FunctionName;
H A DInstrProfReader.cpp284 StringRef FunctionName(getName(I->NamePtr), swap(I->NameSize));
285 Symtab.addFuncName(FunctionName);
289 Symtab.mapAddress(FPtr, IndexedInstrProf::ComputeHash(FunctionName));
/freebsd-11.0-release/sys/contrib/dev/acpica/include/
H A Dacpixf.h1209 const char *FunctionName,
1221 const char *FunctionName,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DFunctionCaller.cpp119 ConstString const_func_name(FunctionName());
/freebsd-11.0-release/contrib/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp253 Options.colored_ostream(OS, raw_ostream::CYAN) << NextISV->FunctionName
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprConstant.cpp1074 std::string FunctionName; local
1076 FunctionName = CGF->CurFn->getName();
1078 FunctionName = "global";
1082 CGM.GetAddrOfGlobalBlock(cast<BlockExpr>(E), FunctionName.c_str());
H A DCGObjCGNU.cpp50 const char *FunctionName; member in class:__anon3800::LazyRuntimeFunction
58 : CGM(nullptr), FunctionName(nullptr), Function(nullptr) {}
65 FunctionName = name;
82 if (!FunctionName)
85 cast<llvm::Constant>(CGM->CreateRuntimeFunction(FTy, FunctionName));
2627 std::string FunctionName = SymbolNameForMethod(ClassName, CategoryName, local
2633 FunctionName,
H A DCoverageMappingGen.cpp885 static void dump(llvm::raw_ostream &OS, StringRef FunctionName, argument
888 OS << FunctionName << ":\n"; local
/freebsd-11.0-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp4377 std::string FunctionName;
4379 FunctionName = Lex.getStrVal();
4417 parseOptionalComdat(FunctionName, C) ||
4471 if (!FunctionName.empty()) {
4474 auto FRVI = ForwardRefVals.find(FunctionName);
4476 Fn = M->getFunction(FunctionName);
4482 "function '" + FunctionName + "' with wrong type!");
4485 } else if ((Fn = M->getFunction(FunctionName))) {
4488 FunctionName + "'");
4489 } else if (M->getNamedValue(FunctionName)) {
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp121 bool CallEvent::isGlobalCFunction(StringRef FunctionName) const {
126 return CheckerContext::isCLibraryFunction(FD, FunctionName);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp4969 const char *FunctionName = nullptr; local
4971 FunctionName = "std::abs";
5012 FunctionName = S.Context.BuiltinInfo.getName(AbsKind);
5016 DeclarationName DN(&S.Context.Idents.get(FunctionName));
5035 << FunctionName << FixItHint::CreateReplacement(Range, FunctionName);
5044 << FunctionName; local
5087 const char *FunctionName = local
5091 << FunctionName
H A DSemaExpr.cpp4522 FunctionName(FuncName) {}
4526 candidate.getCorrectionAsIdentifierInfo() != FunctionName) {
4534 const IdentifierInfo *const FunctionName; member in class:__anon4022::FunctionCallCCC
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DFormatEntity.cpp95 ENTRY ("name" , FunctionName , CString),
340 ENUM_TO_CSTR(FunctionName);
1654 case Entry::Type::FunctionName:
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DLegacyPassManager.cpp120 bool llvm::isFunctionInPrintList(StringRef FunctionName) { argument
123 return PrintFuncNames.empty() || PrintFuncNames.count(FunctionName);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp418 std::string FunctionName = "__msan_maybe_warning_" + itostr(AccessSize); local
420 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8),
423 FunctionName = "__msan_maybe_store_origin_" + itostr(AccessSize);
425 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8),
/freebsd-11.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5981 StringRef FunctionName, std::unique_ptr<FunctionInfoIndex> Index) {
5994 for (const auto &FI : Index->getFunctionInfoList(FunctionName)) {
5979 readFunctionSummary( MemoryBufferRef Buffer, DiagnosticHandlerFunction DiagnosticHandler, StringRef FunctionName, std::unique_ptr<FunctionInfoIndex> Index) argument

Completed in 345 milliseconds

12