Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd/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, std::vector<uint32_t>(NumBlocks)}) in AppendCoverage()
91 for (const auto &It : Functions) { in FunctionWeights()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSVEIntrinsicOpts.cpp55 bool optimizePTrueIntrinsicCalls(SmallSetVector<Function *, 4> &Functions);
59 bool optimizeInstructions(SmallSetVector<Function *, 4> &Functions);
63 bool optimizeFunctions(SmallSetVector<Function *, 4> &Functions);
243 SmallSetVector<Function *, 4> &Functions) { in optimizePTrueIntrinsicCalls() argument
246 for (auto *F : Functions) { in optimizePTrueIntrinsicCalls()
396 SmallSetVector<Function *, 4> &Functions) { in optimizeInstructions() argument
399 for (auto *F : Functions) { in optimizeInstructions()
424 SmallSetVector<Function *, 4> &Functions) { in optimizeFunctions() argument
427 Changed |= optimizePTrueIntrinsicCalls(Functions); in optimizeFunctions()
428 Changed |= optimizeInstructions(Functions); in optimizeFunctions()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp335 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
350 SimpleBindingMMFunctions Functions; member in __anon2e2260210111::SimpleBindingMemoryManager
355 const SimpleBindingMMFunctions& Functions, in SimpleBindingMemoryManager() argument
357 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager()
358 assert(Functions.AllocateCodeSection && in SimpleBindingMemoryManager()
360 assert(Functions.AllocateDataSection && in SimpleBindingMemoryManager()
362 assert(Functions.FinalizeMemory && in SimpleBindingMemoryManager()
364 assert(Functions.Destroy && in SimpleBindingMemoryManager()
369 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager()
375 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp74 CVPLatticeVal(std::vector<Function *> &&Functions) in CVPLatticeVal() argument
75 : LatticeState(FunctionSet), Functions(std::move(Functions)) { in CVPLatticeVal()
76 assert(llvm::is_sorted(this->Functions, Compare())); in CVPLatticeVal()
82 return Functions; in getFunctions()
89 return LatticeState == RHS.LatticeState && Functions == RHS.Functions; in operator ==()
93 return LatticeState != RHS.LatticeState || Functions != RHS.Functions; in operator !=()
107 std::vector<Function *> Functions; member in __anoncc598d4b0111::CVPLatticeVal
H A DAttributor.cpp1073 Attributor::Attributor(SetVector<Function *> &Functions, in Attributor() argument
1076 : Allocator(InfoCache.Allocator), Functions(Functions), in Attributor()
1080 for (Function *Fn : Functions) in Attributor()
1556 if (!Functions.count(IRP.getAnchorScope())) in isAssumedDead()
2214 if (IterationCounter > MaxIterations && !Functions.empty()) { in runTillFixpoint()
2219 Function *F = Functions.front(); in runTillFixpoint()
2363 : getInfoCache().getTargetLibraryInfoForFunction(*Functions.back()); in identifyDeadInternalFunctions()
2372 for (Function *F : Functions) in identifyDeadInternalFunctions()
2389 (Functions.count(Callee) && Callee->hasLocalLinkage() && in identifyDeadInternalFunctions()
2598 if (!ToBeDeletedFunctions.count(Fn) && Functions.count(Fn)) in cleanupIR()
[all …]
H A DLowerTypeTests.cpp524 selectJumpTableArmEncoding(ArrayRef<GlobalTypeMember *> Functions);
530 ArrayRef<GlobalTypeMember *> Functions);
532 ArrayRef<GlobalTypeMember *> Functions);
534 ArrayRef<GlobalTypeMember *> Functions);
546 void createJumpTable(Function *F, ArrayRef<GlobalTypeMember *> Functions,
1385 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Functions) { in buildBitSetsFromFunctions() argument
1390 buildBitSetsFromFunctionsNative(TypeIds, Functions); in buildBitSetsFromFunctions()
1392 buildBitSetsFromFunctionsWASM(TypeIds, Functions); in buildBitSetsFromFunctions()
1499 ArrayRef<GlobalTypeMember *> Functions) { in selectJumpTableArmEncoding() argument
1512 for (const auto GTM : Functions) { in selectJumpTableArmEncoding()
[all …]
H A DBlockExtractor.cpp130 SmallVector<Function *, 4> Functions; in runOnModule() local
133 Functions.push_back(&F); in runOnModule()
182 for (Function *F : Functions) { in runOnModule()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp589 FunctionMap Functions; member in __anonc3460ea90211::StackSafetyDataFlowAnalysis
599 updateOneNode(Callee, Functions.find(Callee)->second); in updateOneNode()
602 for (auto &F : Functions) in updateAllNodes()
611 StackSafetyDataFlowAnalysis(uint32_t PointerBitWidth, FunctionMap Functions) in StackSafetyDataFlowAnalysis() argument
612 : Functions(std::move(Functions)), in StackSafetyDataFlowAnalysis()
625 auto FnIt = Functions.find(Callee); in getArgumentAccessRange()
627 if (FnIt == Functions.end()) in getArgumentAccessRange()
684 for (auto &F : Functions) { in runDataFlow()
720 return Functions; in run()
837 std::map<const GlobalValue *, FunctionInfo<GlobalValue>> Functions, in createGlobalStackSafetyInfo() argument
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_init.cpp86 SledMap.Functions = FnIndexEnd - FnIndexBegin; in __xray_register_sleds()
100 SledMap.Functions = CountFunctions; in __xray_register_sleds()
102 if (SledMap.Functions >= XRayMaxFunctions) { in __xray_register_sleds()
108 Report("Registering %d new functions!\n", SledMap.Functions); in __xray_register_sleds()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt63 # Functions of memory allocators
81 # Functions that return a value that depends on the input, but the output might
94 # Functions that return a value that is data-dependent on the input.
140 # Functions that produce an output that does not depend on the input (shadow is
228 # Functions that produce output does not depend on the input (need to zero the
255 # Functions that produce an output that depend on the input (propagate the
279 # Functions that produce an output that is computed from the input, but is not
296 # Functions which take action based on global state, such as running a callback
300 # Functions that take a callback (wrap the callback manually).
383 # Functions tha
[all...]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp75 if (FuncId >= Functions.size()) in getCVFunctionInfo()
77 if (Functions[FuncId].isUnallocatedFunctionInfo()) in getCVFunctionInfo()
79 return &Functions[FuncId]; in getCVFunctionInfo()
83 if (FuncId >= Functions.size()) in recordFunctionId()
84 Functions.resize(FuncId + 1); in recordFunctionId()
87 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordFunctionId()
91 Functions[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel; in recordFunctionId()
98 if (FuncId >= Functions.size()) in recordInlinedCallSiteId()
99 Functions.resize(FuncId + 1); in recordInlinedCallSiteId()
102 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordInlinedCallSiteId()
[all …]
/freebsd/contrib/mandoc/
H A Dmsec.in27 LINE("3", "FreeBSD Library Functions Manual")
28 LINE("3lua", "Lua Library Functions Manual")
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp239 MethodAddressVector Functions; in notifyObjectLoaded() local
286 Functions.push_back((void *)Addr); in notifyObjectLoaded()
331 LoadedObjectMap[ObjData] = Functions; in notifyObjectLoaded()
362 MethodAddressVector &Functions = OI->second; in notifyFreeingObject() local
365 for (MethodAddressVector::iterator FI = Functions.begin(), in notifyFreeingObject()
366 FE = Functions.end(); in notifyFreeingObject()
/freebsd/lib/libc/softfloat/
H A Dsoftfloat.txt48 Types and Functions
53 Conversion Functions
54 Standard Arithmetic Functions
55 Remainder Functions
56 Round-to-Integer Functions
57 Comparison Functions
58 Signaling NaN Test Functions
83 Types and Functions
196 Conversion Functions
245 Standard Arithmetic Functions
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DGCMetadata.cpp104 Functions.push_back(std::make_unique<GCFunctionInfo>(F, *S)); in getFunctionInfo()
105 GCFunctionInfo *GFI = Functions.back().get(); in getFunctionInfo()
111 Functions.clear(); in clear()
/freebsd/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
69 # Virtual Functions and "PCI Device Passthrough" -- this is especially
72 # Functions so this is in fact solely limited to NIC.)
271 # Note: The UnifiedPF is PF4 which doesn't have any Virtual 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
69 # Virtual Functions and "PCI Device Passthrough" -- this is especially
72 # Functions so this is in fact solely limited to NIC.)
254 # Note: The UnifiedPF is PF4 which doesn't have any Virtual Functions
[all …]
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp262 std::set<Function *> Functions; in TestFuncs() local
268 Functions.insert(CMF); in TestFuncs()
278 if (!I.isDeclaration() && !Functions.count(&I)) in TestFuncs()
287 if (Functions.count(F)) in TestFuncs()
305 if (!I.isDeclaration() && !Functions.count(&I)) { in TestFuncs()
327 Funcs.assign(Functions.begin(), Functions.end()); in TestFuncs()
1173 std::vector<Function *> Functions; in DebugACrash() local
1176 Functions.push_back(&F); in DebugACrash()
1178 if (Functions.size() > 1 && !BugpointIsInterrupted) { in DebugACrash()
1182 unsigned OldSize = Functions.size(); in DebugACrash()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DGCMetadata.h253 FuncInfoVec::iterator funcinfo_begin() { return Functions.begin(); }
254 FuncInfoVec::iterator funcinfo_end() { return Functions.end(); }
258 FuncInfoVec Functions;
/freebsd/crypto/openssl/doc/designs/
H A Dfetching-composite-algorithms.md49 - [Functions for explicitly fetched signature algorithms]
50 - [Functions for explicitly fetched asym-cipher algorithms] (not yet designed)
51 - [Functions for explicitly fetched keyexch algorithms] (not yet designed)
134 [Functions for explicitly fetched signature algorithms]:
/freebsd/usr.sbin/bsdconfig/includes/include/
H A Dmessages.subr26 msg_functions_in="Functions in %s:"
27 msg_functions_in_matching="Functions in %s matching \`%s':"
/freebsd/sys/tools/gdb/
H A DREADME.txt4 Add new commands and functions in their own files. Functions with general
24 Functions:
/freebsd/contrib/libfido2/fuzz/
H A Dsummary.txt1 … Regions Missed Regions Cover Functions Missed Functions Execut…
/freebsd/crypto/openssl/util/
H A Dwrap.pl.in7 use File::Spec::Functions;
97 use File::Spec::Functions qw(rel2abs);

12345678910>>...13