Searched refs:Functions (Results 1 - 25 of 56) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h49 size_t NumCoveredFunctions() const { return Functions.size(); }
52 auto It = Functions.find(FunctionId);
53 if (It == Functions.end()) return 0;
61 auto It = Functions.find(FunctionId);
62 if (It == Functions.end()) return 0;
68 auto It = Functions.find(FunctionId);
69 if (It == Functions.end()) return 0;
79 void clear() { Functions.clear(); }
109 std::unordered_map<size_t, CoverageVector> Functions; member in class:fuzzer::BlockCoverage
110 // Functions tha
[all...]
H A DFuzzerDataFlowTrace.cpp67 auto It = Functions.find(FunctionId);
69 It == Functions.end()
70 ? Functions.insert({FunctionId, Vector<uint32_t>(NumBlocks)})
90 for (auto It : Functions) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinCFGuard.cpp83 std::vector<const Function *> Functions; local
86 Functions.push_back(&F);
87 if (Functions.empty() && LongjmpTargets.empty())
91 for (const Function *F : Functions)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp324 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
339 SimpleBindingMMFunctions Functions; member in class:__anon1869::SimpleBindingMemoryManager
344 const SimpleBindingMMFunctions& Functions,
346 : Functions(Functions), Opaque(Opaque) {
347 assert(Functions.AllocateCodeSection &&
349 assert(Functions.AllocateDataSection &&
351 assert(Functions.FinalizeMemory &&
353 assert(Functions.Destroy &&
358 Functions
343 SimpleBindingMemoryManager( const SimpleBindingMMFunctions& Functions, void *Opaque) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp53 const iterator_range<coverage::FunctionRecordIterator> &Functions) {
54 for (const auto &F : Functions) {
58 for (const auto &F : Functions)
51 renderFunctions( raw_ostream &OS, const iterator_range<coverage::FunctionRecordIterator> &Functions) argument
H A DCoverageExporterJson.cpp32 // -- Functions: array => List of objects describing coverage for functions
190 const iterator_range<coverage::FunctionRecordIterator> &Functions) {
192 for (const auto &F : Functions)
189 renderFunctions( const iterator_range<coverage::FunctionRecordIterator> &Functions) argument
H A DCoverageReport.cpp95 ArrayRef<StringRef> Functions) {
98 for (StringRef Funcname : Functions)
284 auto Functions = Coverage.getCoveredFunctions(Filename); local
292 for (const auto &F : Functions)
308 for (const auto &F : Functions) {
414 OS << column("Functions", FileReportColumns[4], Column::RightAlignment)
415 << column("Missed Functions", FileReportColumns[5], Column::RightAlignment)
94 adjustColumnWidths(ArrayRef<StringRef> Files, ArrayRef<StringRef> Functions) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_interface_internal.h56 size_t Functions; member in struct:__xray::XRaySledMap
H A Dxray_init.cpp88 XRayInstrMap.Functions = __stop_xray_fn_idx - __start_xray_fn_idx;
H A Dxray_interface.cpp197 if (InstrMap.Functions == 0)
202 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) {
322 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) {
465 if (FuncId <= 0 || static_cast<size_t>(FuncId) > XRayInstrMap.Functions)
479 return XRayInstrMap.Functions;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp73 CVPLatticeVal(std::vector<Function *> &&Functions) argument
74 : LatticeState(FunctionSet), Functions(std::move(Functions)) {
75 assert(std::is_sorted(this->Functions.begin(), this->Functions.end(),
82 return Functions;
89 return LatticeState == RHS.LatticeState && Functions == RHS.Functions;
93 return LatticeState != RHS.LatticeState || Functions != RHS.Functions;
107 std::vector<Function *> Functions; member in class:__anon2573::CVPLatticeVal
[all...]
H A DBlockExtractor.cpp170 SmallVector<Function *, 4> Functions; local
173 Functions.push_back(&F);
222 for (Function *F : Functions) {
H A DLowerTypeTests.cpp472 ArrayRef<GlobalTypeMember *> Functions);
474 ArrayRef<GlobalTypeMember *> Functions);
476 ArrayRef<GlobalTypeMember *> Functions);
488 void createJumpTable(Function *F, ArrayRef<GlobalTypeMember *> Functions);
1239 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Functions) {
1242 buildBitSetsFromFunctionsNative(TypeIds, Functions);
1244 buildBitSetsFromFunctionsWASM(TypeIds, Functions);
1332 selectJumpTableArmEncoding(ArrayRef<GlobalTypeMember *> Functions, argument
1338 for (const auto GTM : Functions) {
1354 Function *F, ArrayRef<GlobalTypeMember *> Functions) {
1238 buildBitSetsFromFunctions( ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Functions) argument
1353 createJumpTable( Function *F, ArrayRef<GlobalTypeMember *> Functions) argument
1403 buildBitSetsFromFunctionsNative( ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Functions) argument
1560 buildBitSetsFromFunctionsWASM( ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Functions) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp110 MethodAddressVector Functions; local
156 Functions.push_back((void*)Addr);
201 LoadedObjectMap[ObjData] = Functions;
219 MethodAddressVector& Functions = OI->second;
222 for (MethodAddressVector::iterator FI = Functions.begin(),
223 FE = Functions.end();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DGCMetadata.h168 FuncInfoVec::iterator funcinfo_begin() { return Functions.begin(); }
169 FuncInfoVec::iterator funcinfo_end() { return Functions.end(); }
173 FuncInfoVec Functions; member in class:llvm::GCModuleInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DGCMetadata.cpp76 Functions.push_back(std::make_unique<GCFunctionInfo>(F, *S));
77 GCFunctionInfo *GFI = Functions.back().get();
83 Functions.clear();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp399 FunctionMap Functions;
413 updateOneNode(Callee, Functions.find(Callee)->second);
416 for (auto &F : Functions)
438 Functions.emplace(&F, FI(F));
441 Functions.emplace(&A, StackSafetyInfo::FunctionInfo(&A));
447 auto IT = Functions.find(Callee);
449 if (IT == Functions.end())
507 for (auto &F : Functions) {
546 for (auto &F : Functions)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.h86 std::vector<std::pair<SymbolDesc, StringRef>> Functions; member in class:llvm::symbolize::SymbolizableObjectFile
H A DSymbolizableObjectFile.cpp85 std::vector<std::pair<SymbolDesc, StringRef>> &Fs = res->Functions,
155 Functions.emplace_back(SD, Export.Name);
204 auto &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
227 const auto &Symbols = Type == SymbolRef::ST_Function ? Functions : Objects;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp79 if (FuncId >= Functions.size())
81 if (Functions[FuncId].isUnallocatedFunctionInfo())
83 return &Functions[FuncId];
87 if (FuncId >= Functions.size())
88 Functions.resize(FuncId + 1);
91 if (!Functions[FuncId].isUnallocatedFunctionInfo())
95 Functions[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel;
102 if (FuncId >= Functions.size())
103 Functions.resize(FuncId + 1);
106 if (!Functions[FuncI
[all...]
H A DWasmObjectWriter.cpp315 void writeFunctionSection(ArrayRef<WasmFunction> Functions);
320 ArrayRef<WasmFunction> Functions);
333 updateCustomSectionRelocations(const SmallVector<WasmFunction, 4> &Functions,
743 void WasmObjectWriter::writeFunctionSection(ArrayRef<WasmFunction> Functions) { argument
744 if (Functions.empty())
750 encodeULEB128(Functions.size(), W.OS);
751 for (const WasmFunction &Func : Functions)
824 ArrayRef<WasmFunction> Functions) {
825 if (Functions.empty())
832 encodeULEB128(Functions
822 writeCodeSection(const MCAssembler &Asm, const MCAsmLayout &Layout, ArrayRef<WasmFunction> Functions) argument
1112 SmallVector<WasmFunction, 4> Functions; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DDebugify.cpp56 iterator_range<Module::iterator> Functions,
86 for (Function &F : Functions) {
203 iterator_range<Module::iterator> Functions,
230 for (Function &F : Functions) {
55 applyDebugifyMetadata(Module &M, iterator_range<Module::iterator> Functions, StringRef Banner) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp79 abilities |= Functions;
86 abilities |= Functions;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp250 std::set<Function *> Functions; local
256 Functions.insert(CMF);
266 if (!I.isDeclaration() && !Functions.count(&I))
275 if (Functions.count(F))
293 if (!I.isDeclaration() && !Functions.count(&I)) {
315 Funcs.assign(Functions.begin(), Functions.end());
1196 std::vector<Function *> Functions;
1199 Functions.push_back(&F);
1201 if (Functions
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp46 Functions.push_back(std::move(GFun));
75 for (size_t i = 0, e = Functions.size(); i < e; ++i) {
80 if (!Functions[i]->readGCDA(Buffer, Version))
108 for (const auto &FPtr : Functions)
120 for (const auto &FPtr : Functions)
743 FunctionLines::const_iterator FuncsIt = Line.Functions.find(LineIndex);
744 if (FuncsIt != Line.Functions.end())

Completed in 168 milliseconds

123