Home
last modified time | relevance | path

Searched refs:FuncName (Results 1 - 25 of 42) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceSwitchLowering.h90 JumpTableData(GlobalString Name, GlobalString FuncName, SizeT Id, in JumpTableData() argument
92 : Name(Name), FuncName(FuncName), Id(Id), TargetOffsets(TargetOffsets) {} in JumpTableData()
98 GlobalString getFunctionName() const { return FuncName; } in getFunctionName()
107 std::string getSectionName() const { return createSectionName(FuncName); } in getSectionName()
111 GlobalString FuncName; member in Ice::JumpTableData
H A DIceInstrumentation.cpp52 std::string FuncName = Func->getFunctionName().toStringOrEmpty(); in instrumentFunc() local
53 if (FuncName == "_start") in instrumentFunc()
H A DIceASanInstrumentation.cpp77 std::string FuncName = Func->getFunctionName().toStringOrEmpty(); in isInstrumentable() local
78 return FuncName == "" || (FuncIgnoreList.count(FuncName) == 0 && in isInstrumentable()
79 FuncName.find(ASanPrefix) != 0); in isInstrumentable()
H A DIceELFObjectWriter.cpp213 void ELFObjectWriter::writeFunctionCode(GlobalString FuncName, bool IsInternal, in writeFunctionCode() argument
216 TimerMarker T_func(&Ctx, FuncName.toStringOrEmpty()); in writeFunctionCode()
224 SectionName += "." + FuncName; in writeFunctionCode()
251 SymTab->createDefinedSym(FuncName, SymbolType, SymbolBinding, Section, in writeFunctionCode()
253 StrTab->add(FuncName); in writeFunctionCode()
H A DIceGlobalContext.h590 TimerMarker(GlobalContext *Ctx, const std::string &FuncName) in TimerMarker() argument
591 : ID(getTimerIdFromFuncName(Ctx, FuncName)), Ctx(Ctx), in TimerMarker()
606 const std::string &FuncName);
H A DIceInst.cpp580 const auto FuncName = Func->getFunctionName();
582 if (FuncName.hasStdString())
584 Ctx, ".L" + FuncName.toString() + "$jumptable$__" + std::to_string(Id));
586 Ctx, "$J" + std::to_string(FuncName.getID()) + "_" + std::to_string(Id));
593 Name(makeName(Func, Id)), FuncName(Func->getFunctionName()) { in InstJumpTable()
617 return JumpTableData(Name, FuncName, Id, TargetList); in toJumpTableData()
H A DIceELFObjectWriter.h73 void writeFunctionCode(GlobalString FuncName, bool IsInternal,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
H A DInstrProfReader.cpp580 StringRef FuncName, ArrayRef<NamedInstrProfRecord> &Data) {
581 auto Iter = HashTable->find(FuncName);
627 Error getRecords(StringRef FuncName,
629 return Underlying.getRecords(FuncName, Data);
686 Error getRecords(StringRef FuncName,
688 StringRef RealName = extractName(FuncName);
692 if (RealName.begin() == FuncName.begin() &&
693 RealName.end() == FuncName.end())
694 FuncName = Remapped;
698 reconstituteName(FuncName, RealNam
[all...]
H A DInstrProf.cpp285 // \p FuncName is the string used as profile lookup key for the function. A
287 std::string getPGOFuncNameVarName(StringRef FuncName, in getPGOFuncNameVarName() argument
290 VarName += FuncName; in getPGOFuncNameVarName()
1222 << " Function: " << FuncName << " (Hash=" << FuncHash << ")\n"; in dump()
H A DSampleProfReader.cpp550 auto FuncName = NameOffset.first; in readFuncProfiles() local
551 if (!FuncsToUse.count(FuncName) && in readFuncProfiles()
552 (!Remapper || !Remapper->exist(FuncName))) in readFuncProfiles()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h354 // Read all the profile records with the key equal to FuncName
355 virtual Error getRecords(StringRef FuncName,
389 Error getRecords(StringRef FuncName,
421 virtual Error getRecords(StringRef FuncName,
473 /// Return the NamedInstrProfRecord associated with FuncName and FuncHash
474 Expected<InstrProfRecord> getInstrProfRecord(StringRef FuncName,
478 Error getFunctionCounts(StringRef FuncName, uint64_t FuncHash,
H A DInstrProf.h175 /// name in PGO instrumentation. \c FuncName is the name of the function
177 std::string getPGOFuncNameVarName(StringRef FuncName,
181 /// instrumentation. \c FuncName is the name of the function returned
186 /// instrumentation. /// \c FuncName is the name of the function
465 /// Update the symtab by adding \p FuncName to the table. This interface
467 Error addFuncName(StringRef FuncName) { in addFuncName() argument
468 if (FuncName.empty()) in addFuncName()
470 auto Ins = NameTab.insert(FuncName); in addFuncName()
473 IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey())); in addFuncName()
618 StringRef FuncName; member
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
H A DLeonPasses.cpp90 StringRef FuncName = MO.getGlobal()->getName(); in runOnMachineFunction() local
91 if (FuncName.compare_lower("fesetround") == 0) { in runOnMachineFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp678 bool AMDGPULibFunc::parse(StringRef FuncName, AMDGPULibFunc &F) {
679 if (FuncName.empty()) {
684 if (eatTerm(FuncName, "_Z"))
688 if (F.Impl->parseFuncName(FuncName))
943 std::string FuncName = fInfo.mangle();
945 M->getValueSymbolTable().lookup(FuncName));
958 std::string const FuncName = fInfo.mangle();
960 M->getValueSymbolTable().lookup(FuncName));
986 C = M->getOrInsertFunction(FuncName, FuncTy);
994 C = M->getOrInsertFunction(FuncName, FuncT
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp178 LR.FuncName = GR.getString(NameOffset); in lookup()
222 SrcLoc.Name = LR.FuncName; in lookup()
234 SrcLoc.Name = LR.FuncName; in lookup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h713 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
716 FuncName = ProfileNames.getFuncName(NameRef, NameS); in getFuncName()
717 if (NameS && FuncName.empty()) in getFuncName()
744 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
746 FuncName = ProfileNames.getFuncName(NameRef); in getFuncName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCContext.cpp143 MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName, in getOrCreateFrameAllocSymbol() argument
145 return getOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName + in getOrCreateFrameAllocSymbol()
149 MCSymbol *MCContext::getOrCreateParentFrameOffsetSymbol(StringRef FuncName) { in getOrCreateParentFrameOffsetSymbol() argument
150 return getOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName + in getOrCreateParentFrameOffsetSymbol()
154 MCSymbol *MCContext::getOrCreateLSDASymbol(StringRef FuncName) { in getOrCreateLSDASymbol() argument
156 FuncName); in getOrCreateLSDASymbol()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/
H A DLookupResult.h42 StringRef FuncName; ///< The concrete function name that contains LookupAddr. member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp538 std::string FuncName; member in __anon25075::FuncPGOInstrumentation
563 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " + in dumpInfo()
588 FuncName = getPGOFuncName(F); in FuncPGOInstrumentation()
603 FuncNameVar = createPGOFuncNameVar(F, FuncName); in FuncPGOInstrumentation()
682 FuncName = Twine(FuncName + "." + Twine(FunctionHash)).str(); in renameComdatFunction()
1046 // Return FuncName string;
1047 const std::string getFuncName() const { return FuncInfo.FuncName; } in getFuncName()
1144 PGOReader->getInstrProfRecord(FuncInfo.FuncName, FuncInfo.FunctionHash); in readCounters()
1150 << FuncInfo.FuncName << " in readCounters()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h365 Error updatePointer(std::string FuncName, JITTargetAddress FnBodyAddr) { in updatePointer() argument
370 LDI->getLogicalModuleResourcesForSymbol(FuncName, false)) { in updatePointer()
372 std::string CalledFnName = mangle(FuncName, SrcM.getDataLayout()); in updatePointer()
379 return make_error<JITSymbolNotFound>(FuncName); in updatePointer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp432 StringRef FuncName; in insertFunctionRecordIfNeeded() local
433 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName)) in insertFunctionRecordIfNeeded()
435 if (FuncName.empty()) in insertFunctionRecordIfNeeded()
437 Records.emplace_back(Version, FuncName, FuncHash, Mapping, FilenamesBegin, in insertFunctionRecordIfNeeded()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCContext.h370 MCSymbol *getOrCreateFrameAllocSymbol(StringRef FuncName, unsigned Idx);
372 MCSymbol *getOrCreateParentFrameOffsetSymbol(StringRef FuncName);
374 MCSymbol *getOrCreateLSDASymbol(StringRef FuncName);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp946 std::string FuncName = GlobalValue::dropLLVMManglingEscape(GV->getName()); in emitDebugInfoForThunk() local
949 OS.AddComment("Symbol subsection for " + Twine(FuncName)); in emitDebugInfoForThunk()
969 emitNullTerminatedSymbolName(OS, FuncName); in emitDebugInfoForThunk()
992 std::string FuncName; in emitDebugInfoForFunction() local
1005 FuncName = getFullyQualifiedName(SP->getScope(), SP->getName()); in emitDebugInfoForFunction()
1008 if (FuncName.empty()) in emitDebugInfoForFunction()
1009 FuncName = GlobalValue::dropLLVMManglingEscape(GV->getName()); in emitDebugInfoForFunction()
1016 OS.AddComment("Symbol subsection for " + Twine(FuncName)); in emitDebugInfoForFunction()
1049 emitNullTerminatedSymbolName(OS, FuncName); in emitDebugInfoForFunction()
/third_party/cJSON/tests/unity/src/
H A Dunity.c1330 void UnityDefaultTestRun(UnityTestFunction Func, const char* FuncName, const int FuncLineNum) in UnityDefaultTestRun() argument
1332 Unity.CurrentTestName = FuncName; in UnityDefaultTestRun()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp836 StringRef FuncName = TLI->getName(TheLibFunc); in emitLibCall() local
838 FunctionCallee Callee = M->getOrInsertFunction(FuncName, FuncType); in emitLibCall()
839 inferLibFuncAttributes(M, FuncName, *TLI); in emitLibCall()
840 CallInst *CI = B.CreateCall(Callee, Operands, FuncName); in emitLibCall()

Completed in 36 milliseconds

12