Searched defs:FuncName (Results 1 - 25 of 31) sorted by relevance

12

/external/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp21 StringRef FuncName = Function.Name; local
22 return FuncName.find(Name) != StringRef::npos;
/external/swiftshader/third_party/subzero/src/
H A DIceInstrumentation.cpp52 std::string FuncName = Func->getFunctionName().toStringOrEmpty(); local
53 if (FuncName == "_start")
H A DIceSwitchLowering.h90 JumpTableData(GlobalString Name, GlobalString FuncName, SizeT Id, argument
92 : Name(Name), FuncName(FuncName), Id(Id), TargetOffsets(TargetOffsets) {}
98 GlobalString getFunctionName() const { return FuncName; }
107 std::string getSectionName() const { return createSectionName(FuncName); }
111 GlobalString FuncName; member in class:Ice::JumpTableData
H A DIceASanInstrumentation.cpp77 std::string FuncName = Func->getFunctionName().toStringOrEmpty(); local
78 return FuncName == "" ||
79 (FuncBlackList.count(FuncName) == 0 && FuncName.find(ASanPrefix) != 0);
H A DIceELFObjectWriter.cpp220 void ELFObjectWriter::writeFunctionCode(GlobalString FuncName, bool IsInternal, argument
223 TimerMarker T_func(&Ctx, FuncName.toStringOrEmpty());
231 SectionName += "." + FuncName;
258 SymTab->createDefinedSym(FuncName, SymbolType, SymbolBinding, Section,
260 StrTab->add(FuncName);
H A DIceGlobalContext.cpp1034 const std::string &FuncName) {
1039 return Ctx->getTimerID(GlobalContext::TSK_Funcs, FuncName);
1033 getTimerIdFromFuncName(GlobalContext *Ctx, const std::string &FuncName) argument
H A DIceGlobalContext.h671 TimerMarker(GlobalContext *Ctx, const std::string &FuncName) argument
672 : ID(getTimerIdFromFuncName(Ctx, FuncName)), Ctx(Ctx),
687 const std::string &FuncName);
H A DIceInst.h1094 return JumpTableData::createSectionName(FuncName);
1108 GlobalString FuncName; member in class:Ice::InstJumpTable
/external/llvm/utils/TableGen/
H A DAttributes.cpp118 std::string FuncName = Rule->getValueAsString("CompatFunc"); local
119 OS << " Ret &= " << FuncName << "(Caller, Callee);\n"; local
132 std::string FuncName = Rule->getValueAsString("MergeFunc"); local
133 OS << " " << FuncName << "(Caller, Callee);\n"; local
H A DDFAPacketizerEmitter.cpp718 std::string FuncName = FuncList[k]->getName(); local
719 unsigned FuncResources = FUNameToBitsMap[FuncName];
720 DEBUG(dbgs() << " " << FuncName
/external/clang/lib/CodeGen/
H A DCodeGenPGO.h34 std::string FuncName; member in class:clang::CodeGen::CodeGenPGO
92 void emitEmptyCounterMapping(const Decl *D, StringRef FuncName,
/external/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp275 std::string &FuncName = BlocksToNotExtractByName.back().first; local
279 if (F.getName() != FuncName) continue;
/external/llvm/unittests/MI/
H A DLiveIntervalTest.cpp54 const TargetMachine &TM, StringRef MIRCode, const char *FuncName) {
67 Function *F = M->getFunction(FuncName);
52 parseMIR(LLVMContext &Context, legacy::PassManagerBase &PM, std::unique_ptr<MIRParser> &MIR, const TargetMachine &TM, StringRef MIRCode, const char *FuncName) argument
/external/llvm/lib/Target/Sparc/
H A DLeonPasses.cpp729 StringRef FuncName = MO.getGlobal()->getName(); local
730 if (FuncName.compare_lower("fesetround") == 0) {
/external/llvm/unittests/Linker/
H A DLinkModulesTest.cpp133 static Module *getExternal(LLVMContext &Ctx, StringRef FuncName) { argument
140 Function::Create(FTy, Function::ExternalLinkage, FuncName, M);
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DLoopExtractor.cpp265 std::string &FuncName = BlocksToNotExtractByName.back().first; local
270 if (F.getName() != FuncName) continue;
/external/llvm/unittests/ProfileData/
H A DCoverageMappingTest.cpp140 void startFunction(StringRef FuncName, uint64_t Hash) { argument
141 InputFunctions.emplace_back(FuncName.str(), Hash);
/external/llvm/lib/MC/
H A DMCContext.cpp139 MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName, argument
141 return getOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName +
145 MCSymbol *MCContext::getOrCreateParentFrameOffsetSymbol(StringRef FuncName) { argument
146 return getOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName +
150 MCSymbol *MCContext::getOrCreateLSDASymbol(StringRef FuncName) { argument
152 FuncName);
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp399 StringRef FuncName; local
400 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName))
402 Records.emplace_back(Version, FuncName, FuncHash, Mapping, FilenamesBegin,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h58 StringRef FuncName; member in class:clang::ento::CallDescription
65 /// @param FuncName The name of the function that will be matched.
70 CallDescription(StringRef FuncName, unsigned RequiredArgs = NoArgRequirement) argument
71 : II(nullptr), FuncName(FuncName), RequiredArgs(RequiredArgs) {}
74 StringRef getFunctionName() const { return FuncName; }
/external/llvm/lib/ProfileData/
H A DInstrProf.cpp172 // \p FuncName is the string used as profile lookup key for the function. A
174 std::string getPGOFuncNameVarName(StringRef FuncName, argument
177 VarName += FuncName;
/external/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp243 std::string FuncName; member in class:__anon13444::FuncPGOInstrumentation
260 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " +
268 FuncName = getPGOFuncName(F);
282 FuncNameVar = createPGOFuncNameVar(F, FuncName);
513 // Return FuncName string;
514 const std::string getFuncName() const { return FuncInfo.FuncName; }
590 PGOReader->getInstrProfRecord(FuncInfo.FuncName, FuncInfo.FunctionHash);
760 createPGOFuncNameMetadata(F, FuncInfo.FuncName);
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp147 const char *FuncName = Arg->getValue(); local
148 if (Builtin::Context::isBuiltinFunc(FuncName))
149 Values.push_back(FuncName);
/external/llvm/include/llvm/ProfileData/
H A DInstrProf.h192 /// name in PGO instrumentation. \c FuncName is the name of the function
194 std::string getPGOFuncNameVarName(StringRef FuncName,
198 /// instrumentation. \c FuncName is the name of the function returned
203 /// instrumentation. /// \c FuncName is the name of the function
457 /// Update the symtab by adding \p FuncName to the table. This interface
459 void addFuncName(StringRef FuncName) { argument
460 auto Ins = NameTab.insert(FuncName);
463 IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey()));
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVUtil.cpp723 addCallInst(Module *M, StringRef FuncName, Type *RetTy, ArrayRef<Value *> Args, argument
728 FuncName, Mangle, Attrs, TakeFuncName);
736 addCallInstSPIRV(Module *M, StringRef FuncName, Type *RetTy, ArrayRef<Value *> Args, argument
739 return addCallInst(M, FuncName, RetTy, Args, Attrs, Pos, &BtnInfo,

Completed in 602 milliseconds

12