| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerDataFlowTrace.h | 50 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 D | FuzzerDataFlowTrace.cpp | 68 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 D | SVEIntrinsicOpts.cpp | 55 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 D | ExecutionEngineBindings.cpp | 335 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 D | CalledValuePropagation.cpp | 74 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 D | Attributor.cpp | 1073 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 D | LowerTypeTests.cpp | 524 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 D | BlockExtractor.cpp | 130 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 D | StackSafetyAnalysis.cpp | 589 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 D | xray_init.cpp | 86 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 D | done_abilist.txt | 63 # 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 D | MCCodeView.cpp | 75 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 D | msec.in | 27 LINE("3", "FreeBSD Library Functions Manual") 28 LINE("3lua", "Lua Library Functions Manual")
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | IntelJITEventListener.cpp | 239 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 D | softfloat.txt | 48 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 D | GCMetadata.cpp | 104 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 D | t5fw_cfg_fpga.txt | 22 # 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 D | t4fw_cfg_uwire.txt | 22 # 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 D | CrashDebugger.cpp | 262 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 D | GCMetadata.h | 253 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 D | fetching-composite-algorithms.md | 49 - [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 D | messages.subr | 26 msg_functions_in="Functions in %s:" 27 msg_functions_in_matching="Functions in %s matching \`%s':"
|
| /freebsd/sys/tools/gdb/ |
| H A D | README.txt | 4 Add new commands and functions in their own files. Functions with general 24 Functions:
|
| /freebsd/contrib/libfido2/fuzz/ |
| H A D | summary.txt | 1 … Regions Missed Regions Cover Functions Missed Functions Execut…
|
| /freebsd/crypto/openssl/util/ |
| H A D | wrap.pl.in | 7 use File::Spec::Functions; 97 use File::Spec::Functions qw(rel2abs);
|