HomeSort by: relevance | last modified time | path
    Searched defs:FuncName (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageFilters.cpp 23 StringRef FuncName = Function.Name;
24 return FuncName.find(Name) != StringRef::npos;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LookupResult.h 44 StringRef FuncName; ///< The concrete function name that contains LookupAddr.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
SampleContextTracker.h 42 : ParentContext(Parent), FuncName(FName), FuncSamples(FSamples),
75 StringRef FuncName;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
LeonPasses.cpp 89 StringRef FuncName = MO.getGlobal()->getName();
90 if (FuncName.compare_lower("fesetround") == 0) {
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
Attributes.cpp 76 StringRef FuncName = Rule->getValueAsString("CompatFunc");
77 OS << " Ret &= " << FuncName << "(Caller, Callee);\n";
90 StringRef FuncName = Rule->getValueAsString("MergeFunc");
91 OS << " " << FuncName << "(Caller, Callee);\n";
SubtargetFeatureInfo.cpp 90 StringRef TargetName, StringRef ClassName, StringRef FuncName,
94 << FuncName << "(const " << TargetName << "Subtarget *Subtarget";
112 StringRef TargetName, StringRef ClassName, StringRef FuncName,
115 << FuncName << "(const FeatureBitset &FB) const {\n";
DFAPacketizerEmitter.cpp 161 std::string FuncName = std::string(K->getName());
162 uint64_t FuncResources = FUNameToBitsMap[FuncName];
163 LLVM_DEBUG(dbgs() << " " << FuncName << ":0x"
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenPGO.h 30 std::string FuncName;
85 void emitEmptyCounterMapping(const Decl *D, StringRef FuncName,
CGNonTrivialStruct.cpp 441 llvm::Function *getFunction(StringRef FuncName, QualType QT,
445 if (llvm::Function *F = CGM.getModule().getFunction(FuncName)) {
456 std::string FuncName = std::string(F->getName());
458 CGM.Error(Loc, "special function " + FuncName +
471 FuncName, &CGM.getModule());
475 IdentifierInfo *II = &Ctx.Idents.get(FuncName);
491 void callFunc(StringRef FuncName, QualType QT, std::array<Address, N> Addrs,
504 getFunction(FuncName, QT, Alignments, CallerCGF.CGM))
832 static void callSpecialFunction(G &&Gen, StringRef FuncName, QualType QT,
839 Gen.callFunc(FuncName, QT, Addrs, CGF)
    [all...]
CodeGenFunction.cpp 841 auto FuncName = llvm::makeArrayRef<uint8_t>(
843 auto Group = crc32(FuncName) % FuncGroups;
CGBlocks.cpp 1921 std::string FuncName =
1925 if (llvm::GlobalValue *Func = CGM.getModule().getNamedValue(FuncName))
1947 FuncName, &CGM.getModule());
1949 Fn->setComdat(CGM.getModule().getOrInsertComdat(FuncName));
1951 IdentifierInfo *II = &C.Idents.get(FuncName);
2118 std::string FuncName =
2122 if (llvm::GlobalValue *Func = CGM.getModule().getNamedValue(FuncName))
2142 FuncName, &CGM.getModule());
2144 Fn->setComdat(CGM.getModule().getOrInsertComdat(FuncName));
2146 IdentifierInfo *II = &C.Idents.get(FuncName);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BasicBlockSections.cpp 202 auto FuncName = MF.getName();
203 auto R = FuncAliasMap.find(FuncName);
204 StringRef AliasName = R == FuncAliasMap.end() ? FuncName : R->second;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
PseudoProbe.cpp 29 return It->second.FuncName;
33 OS << "GUID: " << FuncGUID << " Name: " << FuncName << "\n";
47 StringRef FuncName =
49 ContextStr += FuncName.str();
84 StringRef FuncName = getProbeFNameForGUID(GUID2FuncMAP, GUID);
85 OS << FuncName.str() << " ";
333 InlineContextStack.emplace_back(FuncDesc->FuncName + ":" +
PseudoProbe.h 86 std::string FuncName;
89 : FuncGUID(GUID), FuncHash(Hash), FuncName(Name){};
  /src/external/apache2/llvm/dist/llvm/tools/opt/
opt.cpp 766 for (auto &FuncName : DisableBuiltins)
767 if (TLII.getLibFunc(FuncName, F))
771 << FuncName << '\n';
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountDiagnostics.cpp 829 std::string FuncName = FD->getNameAsString();
830 os << "whose name ('" << FuncName << "') starts with '"
831 << StringRef(FuncName).substr(0, 3) << "'";
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 1228 StringRef FuncName = TLI->getName(TheLibFunc);
1230 FunctionCallee Callee = M->getOrInsertFunction(FuncName, FuncType);
1231 inferLibFuncAttributes(M, FuncName, *TLI);
1232 CallInst *CI = B.CreateCall(Callee, Operands, FuncName);
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMappingReader.cpp 566 StringRef FuncName;
567 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName))
569 if (FuncName.empty())
572 Records.emplace_back(Version, FuncName, FuncHash, Mapping,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 611 StringRef FuncName = CallType == ValueProfilingCallType::Default
614 return M.getOrInsertFunction(FuncName, ValueProfilingCallTy, AL);
ControlHeightReduction.cpp 455 StringRef FuncName = F.getName();
457 (void)(FuncName); // Unused in release build.
460 << FuncName);
PGOInstrumentation.cpp 579 std::string FuncName;
604 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " +
631 FuncName = getPGOFuncName(F);
646 FuncNameVar = createPGOFuncNameVar(F, FuncName);
748 FuncName = Twine(FuncName + "." + Twine(FunctionHash)).str();
1151 // Return FuncName string;
1152 std::string getFuncName() const { return FuncInfo.FuncName; }
1279 PGOReader->getInstrProfRecord(FuncInfo.FuncName, FuncInfo.FunctionHash);
1285 << FuncInfo.FuncName << ": ")
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h 181 /// name in PGO instrumentation. \c FuncName is the name of the function
183 std::string getPGOFuncNameVarName(StringRef FuncName,
187 /// instrumentation. \c FuncName is the name of the function returned
192 /// instrumentation. /// \c FuncName is the name of the function
473 /// Update the symtab by adding \p FuncName to the table. This interface
475 Error addFuncName(StringRef FuncName) {
476 if (FuncName.empty())
478 auto Ins = NameTab.insert(FuncName);
481 IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey()));
624 StringRef FuncName;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 1112 StringRef FuncName = "memset_pattern16";
1113 FunctionCallee MSP = M->getOrInsertFunction(FuncName, Builder.getVoidTy(),
1115 inferLibFuncAttributes(M, FuncName, *TLI);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 268 const StringRef FuncName = I.Name;
281 FuncName, firstTime);
2240 StringRef FuncName;
2247 : FuncName(), TotalCount(0), TotalCountPercent(0.0f), MaxCount(0),
2251 : FuncName(FN), TotalCount(TS), TotalCountPercent(TSP), MaxCount(MS),
2304 FOS << R.FuncName << "\n";
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp 3380 StringRef FuncName = Arg->getValue();
3381 CmdArgs.push_back(Args.MakeArgString("-fno-builtin-" + FuncName));

Completed in 102 milliseconds

1 2