Home
last modified time | relevance | path

Searched refs:FunctionNames (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp169 std::vector<std::string> FunctionNames; in Init() local
179 FunctionNames.push_back(L); in Init()
199 *FocusFunction = FunctionNames[FocusFuncIdx]; in Init()
202 FunctionNames[FocusFuncIdx].c_str()); in Init()
209 FunctionNames[i].c_str()); in Init()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCAutoreleaseWriteChecker.cpp107 callsNames(const std::vector<std::string> &FunctionNames) { in callsNames() argument
108 return callee(functionDecl(hasAnyName(toRefs(FunctionNames)))); in callsNames()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.h118 std::vector<llvm::Constant *> FunctionNames; variable
H A DCoverageMappingGen.cpp2537 FunctionNames.push_back(NamePtr); in addFunctionMappingRecord()
2624 if (!FunctionNames.empty()) { in emit()
2625 auto AddrSpace = FunctionNames.front()->getType()->getPointerAddressSpace(); in emit()
2627 llvm::PointerType::get(Ctx, AddrSpace), FunctionNames.size()); in emit()
2628 auto NamesArrVal = llvm::ConstantArray::get(NamesArrTy, FunctionNames); in emit()
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp1194 std::vector<std::string> FunctionNames; in DebugACrash() local
1196 FunctionNames.push_back(std::string(F.getName())); in DebugACrash()
1198 if (!FunctionNames.empty() && !BugpointIsInterrupted) { in DebugACrash()
1204 for (std::string &Name : FunctionNames) { in DebugACrash()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp281 if (Section.FunctionNames.size()) { in writeSectionContent()
286 encodeULEB128(Section.FunctionNames.size(), SubSection.getStream()); in writeSectionContent()
287 for (const WasmYAML::NameEntry &NameEntry : Section.FunctionNames) { in writeSectionContent()
H A DWasmYAML.cpp68 IO.mapOptional("FunctionNames", Section.FunctionNames); in sectionMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h245 std::vector<NameEntry> FunctionNames; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1183 SmallVector<StringRef, 10> FunctionNames; in printCodeViewSymbolSection() local
1284 FunctionNames.push_back(LinkageName); in printCodeViewSymbolSection()
1349 for (unsigned I = 0, E = FunctionNames.size(); I != E; ++I) { in printCodeViewSymbolSection()
1350 StringRef Name = FunctionNames[I]; in printCodeViewSymbolSection()