| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngineBindings.cpp | 325 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions, 340 SimpleBindingMMFunctions Functions; member in __anonebda18a60111::SimpleBindingMemoryManager 345 const SimpleBindingMMFunctions& Functions, in SimpleBindingMemoryManager() argument 347 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager() 348 assert(Functions.AllocateCodeSection && in SimpleBindingMemoryManager() 350 assert(Functions.AllocateDataSection && in SimpleBindingMemoryManager() 352 assert(Functions.FinalizeMemory && in SimpleBindingMemoryManager() 354 assert(Functions.Destroy && in SimpleBindingMemoryManager() 359 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager() 365 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinCFGuard.cpp | 35 std::vector<const Function *> Functions; in endModule() local 38 Functions.push_back(&F); in endModule() 39 if (Functions.empty()) in endModule() 43 for (const Function *F : Functions) in endModule()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/IPO/ |
| H A D | CalledValuePropagation.cpp | 72 CVPLatticeVal(std::vector<Function *> &&Functions) in CVPLatticeVal() argument 73 : LatticeState(FunctionSet), Functions(std::move(Functions)) { in CVPLatticeVal() 74 assert(std::is_sorted(this->Functions.begin(), this->Functions.end(), in CVPLatticeVal() 81 return Functions; in getFunctions() 88 return LatticeState == RHS.LatticeState && Functions == RHS.Functions; in operator ==() 92 return LatticeState != RHS.LatticeState || Functions != RHS.Functions; in operator !=() 106 std::vector<Function *> Functions; member in __anon754f60900111::CVPLatticeVal
|
| H A D | LowerTypeTests.cpp | 1279 for (const auto GTM : Functions) { in selectJumpTableArmEncoding() 1298 AsmArgs.reserve(Functions.size() * 2); in createJumpTable() 1302 for (unsigned I = 0; I != Functions.size(); ++I) in createJumpTable() 1421 assert(!Functions.empty()); in buildBitSetsFromFunctionsNative() 1426 for (unsigned I = 0; I != Functions.size(); ++I) in buildBitSetsFromFunctionsNative() 1427 GlobalLayout[Functions[I]] = I * EntrySize; in buildBitSetsFromFunctionsNative() 1444 for (unsigned I = 0; I != Functions.size(); ++I) { in buildBitSetsFromFunctionsNative() 1454 if (Functions[I]->isExported()) { in buildBitSetsFromFunctionsNative() 1485 createJumpTable(JumpTableFn, Functions); in buildBitSetsFromFunctionsNative() 1496 assert(!Functions.empty()); in buildBitSetsFromFunctionsWASM() [all …]
|
| H A D | BlockExtractor.cpp | 126 SmallVector<Function *, 4> Functions; in runOnModule() local 129 Functions.push_back(&F); in runOnModule() 164 for (Function *F : Functions) { in runOnModule()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | IntelJITEventListener.cpp | 111 MethodAddressVector Functions; in notifyObjectLoaded() local 146 Functions.push_back((void*)Addr); in notifyObjectLoaded() 190 LoadedObjectMap[ObjData] = Functions; in notifyObjectLoaded() 208 MethodAddressVector& Functions = OI->second; in notifyFreeingObject() local 211 for (MethodAddressVector::iterator FI = Functions.begin(), in notifyFreeingObject() 212 FE = Functions.end(); in notifyFreeingObject()
|
| /freebsd-12.1/contrib/compiler-rt/lib/dfsan/ |
| H A D | done_abilist.txt | 37 # Functions that return a value that depends on the input, but the output might 49 # Functions that return a value that is data-dependent on the input. 66 # Functions that produce an output that does not depend on the input (shadow is 148 # Functions that produce output does not depend on the input (need to zero the 167 # Functions that produce an output that depend on the input (propagate the 183 # Functions that produce an output that is computed from the input, but is not 196 # Functions which take action based on global state, such as running a callback 200 # Functions that take a callback (wrap the callback manually). 238 # Functions that take a callback (wrap the callback manually). 244 # Functions that are written in asm or are called from asm.
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 80 if (FuncId >= Functions.size()) in getCVFunctionInfo() 82 if (Functions[FuncId].isUnallocatedFunctionInfo()) in getCVFunctionInfo() 84 return &Functions[FuncId]; in getCVFunctionInfo() 88 if (FuncId >= Functions.size()) in recordFunctionId() 89 Functions.resize(FuncId + 1); in recordFunctionId() 92 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordFunctionId() 96 Functions[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel; in recordFunctionId() 103 if (FuncId >= Functions.size()) in recordInlinedCallSiteId() 104 Functions.resize(FuncId + 1); in recordInlinedCallSiteId() 107 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordInlinedCallSiteId() [all …]
|
| H A D | WasmObjectWriter.cpp | 779 if (Functions.empty()) in writeFunctionSection() 785 encodeULEB128(Functions.size(), W.OS); in writeFunctionSection() 786 for (const WasmFunction &Func : Functions) in writeFunctionSection() 870 if (Functions.empty()) in writeCodeSection() 877 encodeULEB128(Functions.size(), W.OS); in writeCodeSection() 879 for (const WasmFunction &Func : Functions) { in writeCodeSection() 1156 SmallVector<WasmFunction, 4> Functions; in writeObject() local 1328 Index = NumFunctionImports + Functions.size(); in writeObject() 1333 Functions.push_back(Func); in writeObject() 1573 writeFunctionSection(Functions); in writeObject() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | CoverageExporterLcov.cpp | 54 const iterator_range<coverage::FunctionRecordIterator> &Functions) { in renderFunctions() argument 55 for (const auto &F : Functions) { in renderFunctions() 59 for (const auto &F : Functions) in renderFunctions()
|
| H A D | CoverageReport.cpp | 96 ArrayRef<StringRef> Functions) { in adjustColumnWidths() argument 99 for (StringRef Funcname : Functions) in adjustColumnWidths() 285 auto Functions = Coverage.getCoveredFunctions(Filename); in renderFunctionReports() local 293 for (const auto &F : Functions) in renderFunctionReports() 309 for (const auto &F : Functions) { in renderFunctionReports()
|
| /freebsd-12.1/lib/libc/softfloat/ |
| H A D | softfloat.txt | 49 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-12.1/contrib/llvm/lib/Analysis/ |
| H A D | StackSafetyAnalysis.cpp | 398 FunctionMap Functions; member in __anonbb2e384e0211::StackSafetyDataFlowAnalysis 412 updateOneNode(Callee, Functions.find(Callee)->second); in updateOneNode() 415 for (auto &F : Functions) in updateAllNodes() 435 Functions.emplace(&F, FI(F)); in StackSafetyDataFlowAnalysis() 438 Functions.emplace(&A, StackSafetyInfo::FunctionInfo(&A)); in StackSafetyDataFlowAnalysis() 444 auto IT = Functions.find(Callee); in getArgumentAccessRange() 446 if (IT == Functions.end()) in getArgumentAccessRange() 504 for (auto &F : Functions) { in runDataFlow() 541 for (auto &F : Functions) in run()
|
| /freebsd-12.1/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 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 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 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-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | GCMetadata.h | 169 FuncInfoVec::iterator funcinfo_begin() { return Functions.begin(); } in funcinfo_begin() 170 FuncInfoVec::iterator funcinfo_end() { return Functions.end(); } in funcinfo_end() 174 FuncInfoVec Functions;
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | GCMetadata.cpp | 76 Functions.push_back(llvm::make_unique<GCFunctionInfo>(F, *S)); in getFunctionInfo() 77 GCFunctionInfo *GFI = Functions.back().get(); in getFunctionInfo() 83 Functions.clear(); in clear()
|
| /freebsd-12.1/contrib/compiler-rt/lib/xray/ |
| H A D | xray_interface.cc | 198 if (InstrMap.Functions == 0) in patchFunction() 203 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in patchFunction() 323 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in mprotectAndPatchFunction() 466 if (FuncId <= 0 || static_cast<size_t>(FuncId) > XRayInstrMap.Functions) in __xray_function_address() 480 return XRayInstrMap.Functions; in __xray_max_function_id()
|
| /freebsd-12.1/contrib/gcclibs/libiberty/ |
| H A D | libiberty.texi | 89 * Functions:: Available functions, macros, and global variables. 138 Functions contained in @libib{} can be divided into three general categories. 142 * Supplemental Functions:: Providing functions which don't exist 145 * Replacement Functions:: These functions are sometimes buggy or 148 * Extensions:: Functions which provide useful extensions 152 @node Supplemental Functions 153 @section Supplemental Functions 180 @node Replacement Functions 181 @section Replacement Functions 256 @node Functions
|
| /freebsd-12.1/contrib/binutils/libiberty/ |
| H A D | libiberty.texi | 89 * Functions:: Available functions, macros, and global variables. 138 Functions contained in @libib{} can be divided into three general categories. 142 * Supplemental Functions:: Providing functions which don't exist 145 * Replacement Functions:: These functions are sometimes buggy or 148 * Extensions:: Functions which provide useful extensions 152 @node Supplemental Functions 153 @section Supplemental Functions 180 @node Replacement Functions 181 @section Replacement Functions 256 @node Functions
|
| /freebsd-12.1/contrib/llvm/tools/bugpoint/ |
| H A D | CrashDebugger.cpp | 246 std::set<Function *> Functions; in TestFuncs() local 252 Functions.insert(CMF); in TestFuncs() 262 if (!I.isDeclaration() && !Functions.count(&I)) in TestFuncs() 271 if (Functions.count(F)) in TestFuncs() 289 if (!I.isDeclaration() && !Functions.count(&I)) { in TestFuncs() 311 Funcs.assign(Functions.begin(), Functions.end()); in TestFuncs() 1100 std::vector<Function *> Functions; in DebugACrash() local 1103 Functions.push_back(&F); in DebugACrash() 1105 if (Functions.size() > 1 && !BugpointIsInterrupted) { in DebugACrash() 1109 unsigned OldSize = Functions.size(); in DebugACrash() [all …]
|
| /freebsd-12.1/contrib/mandoc/ |
| H A D | msec.in | 27 LINE("3", "FreeBSD Library Functions Manual") 28 LINE("3p", "Perl Library Functions Manual")
|
| /freebsd-12.1/usr.sbin/bsdconfig/includes/include/ |
| H A D | messages.subr | 27 msg_functions_in="Functions in %s:" 28 msg_functions_in_matching="Functions in %s matching \`%s':"
|
| /freebsd-12.1/contrib/llvm/lib/ProfileData/ |
| H A D | GCOV.cpp | 46 Functions.push_back(std::move(GFun)); in readGCNO() 75 for (size_t i = 0, e = Functions.size(); i < e; ++i) { in readGCDA() 80 if (!Functions[i]->readGCDA(Buffer, Version)) in readGCDA() 108 for (const auto &FPtr : Functions) in print() 120 for (const auto &FPtr : Functions) in collectLineCounts() 735 FunctionLines::const_iterator FuncsIt = Line.Functions.find(LineIndex); in print() 736 if (FuncsIt != Line.Functions.end()) in print()
|
| /freebsd-12.1/contrib/llvm/tools/opt/ |
| H A D | Debugify.cpp | 64 iterator_range<Module::iterator> Functions, in applyDebugifyMetadata() argument 94 for (Function &F : Functions) { in applyDebugifyMetadata() 211 iterator_range<Module::iterator> Functions, in checkDebugifyMetadata() argument 238 for (Function &F : Functions) { in checkDebugifyMetadata()
|