/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 | 58 bool optimizePTrueIntrinsicCalls(SmallSetVector<Function *, 4> &Functions); 62 bool optimizeInstructions(SmallSetVector<Function *, 4> &Functions); 66 bool optimizeFunctions(SmallSetVector<Function *, 4> &Functions); 246 SmallSetVector<Function *, 4> &Functions) { in optimizePTrueIntrinsicCalls() argument 249 for (auto *F : Functions) { in optimizePTrueIntrinsicCalls() 399 SmallSetVector<Function *, 4> &Functions) { in optimizeInstructions() argument 402 for (auto *F : Functions) { in optimizeInstructions() 427 SmallSetVector<Function *, 4> &Functions) { in optimizeFunctions() argument 430 Changed |= optimizePTrueIntrinsicCalls(Functions); in optimizeFunctions() 431 Changed |= optimizeInstructions(Functions); in optimizeFunctions() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngineBindings.cpp | 336 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions, 351 SimpleBindingMMFunctions Functions; member in __anon2e2260210111::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 in ~SimpleBindingMemoryManager() [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 | 1065 Attributor::Attributor(SetVector<Function *> &Functions, in Attributor() argument 1068 : Allocator(InfoCache.Allocator), Functions(Functions), in Attributor() 1072 for (Function *Fn : Functions) in Attributor() 1547 if (!Functions.count(IRP.getAnchorScope())) in isAssumedDead() 2222 if (IterationCounter > MaxIterations && !Functions.empty()) { in runTillFixpoint() 2227 Function *F = Functions.front(); in runTillFixpoint() 2371 : getInfoCache().getTargetLibraryInfoForFunction(*Functions.back()); in identifyDeadInternalFunctions() 2380 for (Function *F : Functions) in identifyDeadInternalFunctions() 2397 (Functions.count(Callee) && Callee->hasLocalLinkage() && in identifyDeadInternalFunctions() 2606 if (!ToBeDeletedFunctions.count(Fn) && Functions.count(Fn)) in cleanupIR() [all …]
|
H A D | LowerTypeTests.cpp | 499 selectJumpTableArmEncoding(ArrayRef<GlobalTypeMember *> Functions); 508 ArrayRef<GlobalTypeMember *> Functions); 510 ArrayRef<GlobalTypeMember *> Functions); 512 ArrayRef<GlobalTypeMember *> Functions); 524 void createJumpTable(Function *F, ArrayRef<GlobalTypeMember *> Functions); 1331 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Functions) { in buildBitSetsFromFunctions() argument 1336 buildBitSetsFromFunctionsNative(TypeIds, Functions); in buildBitSetsFromFunctions() 1338 buildBitSetsFromFunctionsWASM(TypeIds, Functions); in buildBitSetsFromFunctions() 1445 ArrayRef<GlobalTypeMember *> Functions) { in selectJumpTableArmEncoding() argument 1458 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() 183 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() 685 for (auto &F : Functions) { in runDataFlow() 721 return Functions; in run() 838 createGlobalStackSafetyInfo(std::map<const GlobalValue *,FunctionInfo<GlobalValue>> Functions,const ModuleSummaryIndex * Index) createGlobalStackSafetyInfo() argument 910 std::map<const GlobalValue *, FunctionInfo<GlobalValue>> Functions; getInfo() local 1152 std::map<const FunctionSummary *, FunctionInfo<FunctionSummary>> Functions; generateParamAccessSummary() local [all...] |
/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 | 77 if (FuncId >= Functions.size()) in getCVFunctionInfo() 79 if (Functions[FuncId].isUnallocatedFunctionInfo()) in getCVFunctionInfo() 81 return &Functions[FuncId]; in getCVFunctionInfo() 85 if (FuncId >= Functions.size()) in recordFunctionId() 86 Functions.resize(FuncId + 1); in recordFunctionId() 89 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordFunctionId() 93 Functions[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel; in recordFunctionId() 100 if (FuncId >= Functions.size()) in recordInlinedCallSiteId() 101 Functions.resize(FuncId + 1); in recordInlinedCallSiteId() 104 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordInlinedCallSiteId() [all …]
|
/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/contrib/mandoc/ |
H A D | msec.in | 27 LINE("3", "FreeBSD Library Functions Manual") 28 LINE("3lua", "Lua Library Functions Manual")
|
/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/include/llvm/CodeGen/ |
H A D | GCMetadata.h | 219 FuncInfoVec::iterator funcinfo_begin() { return Functions.begin(); } 220 FuncInfoVec::iterator funcinfo_end() { return Functions.end(); } 224 FuncInfoVec Functions;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | GCMetadata.cpp | 105 Functions.push_back(std::make_unique<GCFunctionInfo>(F, *S)); in getFunctionInfo() 106 GCFunctionInfo *GFI = Functions.back().get(); in getFunctionInfo() 112 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/compiler-rt/lib/xray/ |
H A D | xray_interface.cpp | 227 if (InstrMap.Functions == 0) in patchFunction() 232 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in patchFunction() 357 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in mprotectAndPatchFunction() 512 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) in __xray_function_address() 529 return XRayInstrMap.Functions; in __xray_max_function_id()
|
H A D | xray_init.cpp | 89 XRayInstrMap.Functions = __stop_xray_fn_idx - __start_xray_fn_idx; in __xray_init() 103 XRayInstrMap.Functions = CountFunctions; in __xray_init()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageExporterLcov.cpp | 57 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/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() 1184 std::vector<Function *> Functions; in DebugACrash() local 1187 Functions.push_back(&F); in DebugACrash() 1189 if (Functions.size() > 1 && !BugpointIsInterrupted) { in DebugACrash() 1193 unsigned OldSize = Functions.size(); in DebugACrash() [all …]
|
/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/contrib/libfido2/fuzz/ |
H A D | summary.txt | 1 Filename Regions Missed Regions Cover Functions Missed Functions Executed Lines Missed Lines Cover
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | Debugify.h | 60 Module &M, iterator_range<Module::iterator> Functions, StringRef Banner, 76 iterator_range<Module::iterator> Functions, 88 iterator_range<Module::iterator> Functions,
|