Home
last modified time | relevance | path

Searched refs:Functions (Results 1 – 25 of 181) sorted by relevance

12345678

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h50 size_t NumCoveredFunctions() const { return Functions.size(); } in NumCoveredFunctions()
53 auto It = Functions.find(FunctionId); in GetCounter()
54 if (It == Functions.end()) in GetCounter()
63 auto It = Functions.find(FunctionId); in GetNumberOfBlocks()
64 if (It == Functions.end()) return 0; in GetNumberOfBlocks()
70 auto It = Functions.find(FunctionId); in GetNumberOfCoveredBlocks()
71 if (It == Functions.end()) return 0; in GetNumberOfCoveredBlocks()
81 void clear() { Functions.clear(); } in clear()
111 std::unordered_map<size_t, CoverageVector> Functions; variable
H A DFuzzerDataFlowTrace.cpp68 auto It = Functions.find(FunctionId); in AppendCoverage()
70 It == Functions.end() in AppendCoverage()
71 ? Functions.insert({FunctionId, Vector<uint32_t>(NumBlocks)}) in AppendCoverage()
91 for (auto It : Functions) { in FunctionWeights()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSVEIntrinsicOpts.cpp61 bool optimizePTrueIntrinsicCalls(SmallSetVector<Function *, 4> &Functions);
65 bool optimizeFunctions(SmallSetVector<Function *, 4> &Functions);
245 SmallSetVector<Function *, 4> &Functions) { in optimizePTrueIntrinsicCalls() argument
248 for (auto *F : Functions) { in optimizePTrueIntrinsicCalls()
280 SmallSetVector<Function *, 4> &Functions) { in optimizeFunctions() argument
283 Changed |= optimizePTrueIntrinsicCalls(Functions); in optimizeFunctions()
290 SmallSetVector<Function *, 4> Functions; in runOnModule() local
302 Functions.insert(cast<Instruction>(U)->getFunction()); in runOnModule()
309 if (!Functions.empty()) in runOnModule()
310 Changed |= optimizeFunctions(Functions); in runOnModule()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPruneEH.cpp65 static bool runImpl(CallGraphUpdater &CGU, SetVector<Function *> &Functions) { in runImpl() argument
67 for (auto *F : Functions) in runImpl()
74 for (Function *F : Functions) in runImpl()
85 for (Function *F : Functions) { in runImpl()
124 if (Functions.contains(Callee)) in runImpl()
144 for (Function *F : Functions) { in runImpl()
156 for (Function *F : Functions) { in runImpl()
169 SetVector<Function *> Functions; in runOnSCC() local
172 Functions.insert(F); in runOnSCC()
177 return runImpl(CGU, Functions); in runOnSCC()
H A DCalledValuePropagation.cpp72 CVPLatticeVal(std::vector<Function *> &&Functions) in CVPLatticeVal() argument
73 : LatticeState(FunctionSet), Functions(std::move(Functions)) { in CVPLatticeVal()
74 assert(llvm::is_sorted(this->Functions, Compare())); in CVPLatticeVal()
80 return Functions; in getFunctions()
87 return LatticeState == RHS.LatticeState && Functions == RHS.Functions; in operator ==()
91 return LatticeState != RHS.LatticeState || Functions != RHS.Functions; in operator !=()
105 std::vector<Function *> Functions; member in __anon771e2f7f0111::CVPLatticeVal
H A DAttributor.cpp1543 for (Function *F : Functions) in identifyDeadInternalFunctions()
1774 if (!Functions.count(Fn)) in cleanupIR()
1806 for (Function *F : Functions) { in cleanupIR()
2178 Functions.insert(NewFn); in rewriteFunctionSignatures()
2787 if (Functions.empty()) in runAttributorOnFunctions()
2820 Functions.insert(NewF); in runAttributorOnFunctions()
2899 Functions.insert(&F); in run()
2924 if (Functions.empty()) in run()
3003 Functions.insert(&F); in runOnModule()
3033 Functions.insert(Fn); in runOnSCC()
[all …]
H A DLowerTypeTests.cpp1276 buildBitSetsFromFunctionsWASM(TypeIds, Functions); in buildBitSetsFromFunctions()
1370 for (const auto GTM : Functions) { in selectJumpTableArmEncoding()
1390 AsmArgs.reserve(Functions.size() * 2); in createJumpTable()
1394 for (unsigned I = 0; I != Functions.size(); ++I) in createJumpTable()
1517 assert(!Functions.empty()); in buildBitSetsFromFunctionsNative()
1522 for (unsigned I = 0; I != Functions.size(); ++I) in buildBitSetsFromFunctionsNative()
1523 GlobalLayout[Functions[I]] = I * EntrySize; in buildBitSetsFromFunctionsNative()
1553 if (Functions[I]->isExported()) { in buildBitSetsFromFunctionsNative()
1587 createJumpTable(JumpTableFn, Functions); in buildBitSetsFromFunctionsNative()
1598 assert(!Functions.empty()); in buildBitSetsFromFunctionsWASM()
[all …]
H A DBlockExtractor.cpp185 SmallVector<Function *, 4> Functions; in runOnModule() local
188 Functions.push_back(&F); in runOnModule()
237 for (Function *F : Functions) { in runOnModule()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp336 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
351 SimpleBindingMMFunctions Functions; member in __anon9c985f550111::SimpleBindingMemoryManager
356 const SimpleBindingMMFunctions& Functions, in SimpleBindingMemoryManager() argument
358 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager()
359 assert(Functions.AllocateCodeSection && in SimpleBindingMemoryManager()
361 assert(Functions.AllocateDataSection && in SimpleBindingMemoryManager()
363 assert(Functions.FinalizeMemory && in SimpleBindingMemoryManager()
365 assert(Functions.Destroy && in SimpleBindingMemoryManager()
370 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager()
376 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp478 FunctionMap Functions; member in __anon9ddec65d0211::StackSafetyDataFlowAnalysis
491 for (auto &F : Functions) in updateAllNodes()
501 : Functions(std::move(Functions)), in StackSafetyDataFlowAnalysis()
514 auto FnIt = Functions.find(Callee); in getArgumentAccessRange()
516 if (FnIt == Functions.end()) in getArgumentAccessRange()
574 for (auto &F : Functions) { in runDataFlow()
611 return Functions; in run()
731 if (Functions.empty()) in createGlobalStackSafetyInfo()
735 auto Copy = Functions; in createGlobalStackSafetyInfo()
752 auto &SrcF = Functions[F.first]; in createGlobalStackSafetyInfo()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DVecFuncs.def28 // Accelerate framework's Vector Functions
38 // Exponential and Logarithmic Functions
49 // Trigonometric Functions
59 // Hyperbolic Functions
70 // Exponential and Logarithmic Functions
76 // Trigonometric Functions
107 // Hyperbolic Functions
122 // GLIBC Vector math Functions
203 // IBM MASS library's vector Functions
239 // Trigonometric Functions
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt47 # Functions of memory allocators
65 # Functions that return a value that depends on the input, but the output might
77 # Functions that return a value that is data-dependent on the input.
123 # Functions that produce an output that does not depend on the input (shadow is
211 # Functions that produce output does not depend on the input (need to zero the
237 # Functions that produce an output that depend on the input (propagate the
255 # Functions that produce an output that is computed from the input, but is not
274 # Functions that take a callback (wrap the callback manually).
352 # Functions that take a callback (wrap the callback manually).
355 # Functions that produce output does not depend on the input (need to zero the
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp79 if (FuncId >= Functions.size()) in getCVFunctionInfo()
81 if (Functions[FuncId].isUnallocatedFunctionInfo()) in getCVFunctionInfo()
83 return &Functions[FuncId]; in getCVFunctionInfo()
87 if (FuncId >= Functions.size()) in recordFunctionId()
88 Functions.resize(FuncId + 1); in recordFunctionId()
91 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordFunctionId()
95 Functions[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel; in recordFunctionId()
102 if (FuncId >= Functions.size()) in recordInlinedCallSiteId()
103 Functions.resize(FuncId + 1); in recordInlinedCallSiteId()
106 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordInlinedCallSiteId()
[all …]
/freebsd-13.1/contrib/mandoc/
H A Dmsec.in27 LINE("3", "FreeBSD Library Functions Manual")
28 LINE("3lua", "Lua Library Functions Manual")
29 LINE("3p", "Perl Library Functions Manual")
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp238 MethodAddressVector Functions; in notifyObjectLoaded() local
285 Functions.push_back((void *)Addr); in notifyObjectLoaded()
330 LoadedObjectMap[ObjData] = Functions; in notifyObjectLoaded()
361 MethodAddressVector &Functions = OI->second; in notifyFreeingObject() local
364 for (MethodAddressVector::iterator FI = Functions.begin(), in notifyFreeingObject()
365 FE = Functions.end(); in notifyFreeingObject()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DGCMetadata.h168 FuncInfoVec::iterator funcinfo_begin() { return Functions.begin(); } in funcinfo_begin()
169 FuncInfoVec::iterator funcinfo_end() { return Functions.end(); } in funcinfo_end()
173 FuncInfoVec Functions;
/freebsd-13.1/lib/libc/softfloat/
H A Dsoftfloat.txt49 Types and Functions
54 Conversion Functions
56 Remainder Functions
58 Comparison Functions
84 Types and Functions
197 Conversion Functions
246 Standard Arithmetic Functions
263 Remainder Functions
285 Round-to-Integer Functions
301 Comparison Functions
[all …]
/freebsd-13.1/sys/dev/cxgbe/firmware/
H A Dt5fw_cfg_fpga.txt22 # 2. Ingress Queues with Free Lists: 1024. PCI-E SR-IOV Virtual Functions
24 # 3. Egress Queues: 128K. PCI-E SR-IOV Virtual Functions must use a
27 # Virtual Functions based off of a Physical Function all get the
29 # Additionally, regardless of whether Virtual Functions are enabled or
32 # Functions (PF0-3) must have the same number of configured TotalVFs in
45 # Physical Functions don't have any Virtual Functions associated with
48 # storage, etc.) on different Physical Functions. For example, NIC
72 # Functions so this is in fact solely limited to NIC.)
271 # Note: The UnifiedPF is PF4 which doesn't have any Virtual Functions
290 # Functions, we give the UnifiedPF and the PF0-3 Physical Functions
[all …]
H A Dt4fw_cfg_uwire.txt22 # 2. Ingress Queues with Free Lists: 1024. PCI-E SR-IOV Virtual Functions
24 # 3. Egress Queues: 128K. PCI-E SR-IOV Virtual Functions must use a
27 # Virtual Functions based off of a Physical Function all get the
29 # Additionally, regardless of whether Virtual Functions are enabled or
32 # Functions (PF0-3) must have the same number of configured TotalVFs in
45 # Physical Functions don't have any Virtual Functions associated with
48 # storage, etc.) on different Physical Functions. For example, NIC
72 # Functions so this is in fact solely limited to NIC.)
254 # Note: The UnifiedPF is PF4 which doesn't have any Virtual Functions
273 # Functions, we give the UnifiedPF and the PF0-3 Physical Functions
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DGCMetadata.cpp76 Functions.push_back(std::make_unique<GCFunctionInfo>(F, *S)); in getFunctionInfo()
77 GCFunctionInfo *GFI = Functions.back().get(); in getFunctionInfo()
83 Functions.clear(); in clear()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_init.cpp89 XRayInstrMap.Functions = __stop_xray_fn_idx - __start_xray_fn_idx; in __xray_init()
103 XRayInstrMap.Functions = CountFunctions; in __xray_init()
H A Dxray_interface.cpp224 if (InstrMap.Functions == 0) in patchFunction()
229 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in patchFunction()
350 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in mprotectAndPatchFunction()
500 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) in __xray_function_address()
517 return XRayInstrMap.Functions; in __xray_max_function_id()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DDebugify.h59 Module &M, iterator_range<Module::iterator> Functions, StringRef Banner,
75 iterator_range<Module::iterator> Functions,
87 iterator_range<Module::iterator> Functions,
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp57 const iterator_range<coverage::FunctionRecordIterator> &Functions) { in renderFunctions() argument
58 for (const auto &F : Functions) { in renderFunctions()
62 for (const auto &F : Functions) in renderFunctions()
/freebsd-13.1/contrib/libfido2/fuzz/
H A Dsummary.txt1 … Regions Missed Regions Cover Functions Missed Functions Execut…

12345678