svf-lib 1.0.2237 → 1.0.2239

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. package/SVF-linux-aarch64/Release-build/bin/ae +0 -0
  2. package/SVF-linux-aarch64/Release-build/bin/cfl +0 -0
  3. package/SVF-linux-aarch64/Release-build/bin/dvf +0 -0
  4. package/SVF-linux-aarch64/Release-build/bin/llvm2svf +0 -0
  5. package/SVF-linux-aarch64/Release-build/bin/mta +0 -0
  6. package/SVF-linux-aarch64/Release-build/bin/saber +0 -0
  7. package/SVF-linux-aarch64/Release-build/bin/svf-ex +0 -0
  8. package/SVF-linux-aarch64/Release-build/bin/wpa +0 -0
  9. package/SVF-linux-aarch64/Release-build/include/AE/Core/AbstractState.h +406 -0
  10. package/SVF-linux-aarch64/Release-build/include/AE/Core/AbstractValue.h +157 -0
  11. package/SVF-linux-aarch64/Release-build/include/AE/Core/AddressValue.h +232 -0
  12. package/SVF-linux-aarch64/Release-build/include/AE/Core/ICFGWTO.h +82 -0
  13. package/SVF-linux-aarch64/Release-build/include/AE/Core/IntervalValue.h +1055 -0
  14. package/SVF-linux-aarch64/Release-build/include/AE/Core/NumericValue.h +1292 -0
  15. package/SVF-linux-aarch64/Release-build/include/AE/Core/RelExeState.h +226 -0
  16. package/SVF-linux-aarch64/Release-build/include/AE/Core/RelationSolver.h +91 -0
  17. package/SVF-linux-aarch64/Release-build/include/AE/Svfexe/AEDetector.h +323 -0
  18. package/SVF-linux-aarch64/Release-build/include/AE/Svfexe/AbsExtAPI.h +140 -0
  19. package/SVF-linux-aarch64/Release-build/include/AE/Svfexe/AbstractInterpretation.h +350 -0
  20. package/SVF-linux-aarch64/Release-build/include/CFL/CFGNormalizer.h +84 -0
  21. package/SVF-linux-aarch64/Release-build/include/CFL/CFGrammar.h +468 -0
  22. package/SVF-linux-aarch64/Release-build/include/CFL/CFLAlias.h +168 -0
  23. package/SVF-linux-aarch64/Release-build/include/CFL/CFLBase.h +118 -0
  24. package/SVF-linux-aarch64/Release-build/include/CFL/CFLGramGraphChecker.h +74 -0
  25. package/SVF-linux-aarch64/Release-build/include/CFL/CFLGraphBuilder.h +166 -0
  26. package/SVF-linux-aarch64/Release-build/include/CFL/CFLSVFGBuilder.h +58 -0
  27. package/SVF-linux-aarch64/Release-build/include/CFL/CFLSolver.h +374 -0
  28. package/SVF-linux-aarch64/Release-build/include/CFL/CFLStat.h +67 -0
  29. package/SVF-linux-aarch64/Release-build/include/CFL/CFLVF.h +68 -0
  30. package/SVF-linux-aarch64/Release-build/include/CFL/GrammarBuilder.h +100 -0
  31. package/SVF-linux-aarch64/Release-build/include/CFL/grammar/PAGGrammar.txt +15 -0
  32. package/SVF-linux-aarch64/Release-build/include/CFL/grammar/PEGGrammar.txt +11 -0
  33. package/SVF-linux-aarch64/Release-build/include/CFL/grammar/VFGGrammar.txt +7 -0
  34. package/SVF-linux-aarch64/Release-build/include/DDA/ContextDDA.h +230 -0
  35. package/SVF-linux-aarch64/Release-build/include/DDA/DDAClient.h +163 -0
  36. package/SVF-linux-aarch64/Release-build/include/DDA/DDAPass.h +102 -0
  37. package/SVF-linux-aarch64/Release-build/include/DDA/DDAStat.h +121 -0
  38. package/SVF-linux-aarch64/Release-build/include/DDA/DDAVFSolver.h +794 -0
  39. package/SVF-linux-aarch64/Release-build/include/DDA/FlowDDA.h +178 -0
  40. package/SVF-linux-aarch64/Release-build/include/FastCluster/LICENSE.TXT +13 -0
  41. package/SVF-linux-aarch64/Release-build/include/FastCluster/fastcluster.h +80 -0
  42. package/SVF-linux-aarch64/Release-build/include/Graphs/BasicBlockG.h +318 -0
  43. package/SVF-linux-aarch64/Release-build/include/Graphs/CDG.h +482 -0
  44. package/SVF-linux-aarch64/Release-build/include/Graphs/CFLGraph.h +232 -0
  45. package/SVF-linux-aarch64/Release-build/include/Graphs/CHG.h +369 -0
  46. package/SVF-linux-aarch64/Release-build/include/Graphs/CallGraph.h +498 -0
  47. package/SVF-linux-aarch64/Release-build/include/Graphs/ConsG.h +402 -0
  48. package/SVF-linux-aarch64/Release-build/include/Graphs/ConsGEdge.h +355 -0
  49. package/SVF-linux-aarch64/Release-build/include/Graphs/ConsGNode.h +418 -0
  50. package/SVF-linux-aarch64/Release-build/include/Graphs/DOTGraphTraits.h +188 -0
  51. package/SVF-linux-aarch64/Release-build/include/Graphs/GenericGraph.h +628 -0
  52. package/SVF-linux-aarch64/Release-build/include/Graphs/GraphPrinter.h +111 -0
  53. package/SVF-linux-aarch64/Release-build/include/Graphs/GraphTraits.h +150 -0
  54. package/SVF-linux-aarch64/Release-build/include/Graphs/GraphWriter.h +380 -0
  55. package/SVF-linux-aarch64/Release-build/include/Graphs/ICFG.h +331 -0
  56. package/SVF-linux-aarch64/Release-build/include/Graphs/ICFGEdge.h +281 -0
  57. package/SVF-linux-aarch64/Release-build/include/Graphs/ICFGNode.h +669 -0
  58. package/SVF-linux-aarch64/Release-build/include/Graphs/ICFGStat.h +164 -0
  59. package/SVF-linux-aarch64/Release-build/include/Graphs/IRGraph.h +398 -0
  60. package/SVF-linux-aarch64/Release-build/include/Graphs/SCC.h +375 -0
  61. package/SVF-linux-aarch64/Release-build/include/Graphs/SVFG.h +491 -0
  62. package/SVF-linux-aarch64/Release-build/include/Graphs/SVFGEdge.h +237 -0
  63. package/SVF-linux-aarch64/Release-build/include/Graphs/SVFGNode.h +501 -0
  64. package/SVF-linux-aarch64/Release-build/include/Graphs/SVFGOPT.h +363 -0
  65. package/SVF-linux-aarch64/Release-build/include/Graphs/SVFGStat.h +273 -0
  66. package/SVF-linux-aarch64/Release-build/include/Graphs/ThreadCallGraph.h +400 -0
  67. package/SVF-linux-aarch64/Release-build/include/Graphs/VFG.h +664 -0
  68. package/SVF-linux-aarch64/Release-build/include/Graphs/VFGEdge.h +295 -0
  69. package/SVF-linux-aarch64/Release-build/include/Graphs/VFGNode.h +1266 -0
  70. package/SVF-linux-aarch64/Release-build/include/Graphs/WTO.h +872 -0
  71. package/SVF-linux-aarch64/Release-build/include/MSSA/MSSAMuChi.h +722 -0
  72. package/SVF-linux-aarch64/Release-build/include/MSSA/MemPartition.h +169 -0
  73. package/SVF-linux-aarch64/Release-build/include/MSSA/MemRegion.h +489 -0
  74. package/SVF-linux-aarch64/Release-build/include/MSSA/MemSSA.h +452 -0
  75. package/SVF-linux-aarch64/Release-build/include/MSSA/SVFGBuilder.h +98 -0
  76. package/SVF-linux-aarch64/Release-build/include/MTA/LockAnalysis.h +533 -0
  77. package/SVF-linux-aarch64/Release-build/include/MTA/MHP.h +546 -0
  78. package/SVF-linux-aarch64/Release-build/include/MTA/MTA.h +98 -0
  79. package/SVF-linux-aarch64/Release-build/include/MTA/MTAStat.h +73 -0
  80. package/SVF-linux-aarch64/Release-build/include/MTA/TCT.h +620 -0
  81. package/SVF-linux-aarch64/Release-build/include/MemoryModel/AbstractPointsToDS.h +316 -0
  82. package/SVF-linux-aarch64/Release-build/include/MemoryModel/AccessPath.h +194 -0
  83. package/SVF-linux-aarch64/Release-build/include/MemoryModel/ConditionalPT.h +878 -0
  84. package/SVF-linux-aarch64/Release-build/include/MemoryModel/MutablePointsToDS.h +1025 -0
  85. package/SVF-linux-aarch64/Release-build/include/MemoryModel/PersistentPointsToCache.h +463 -0
  86. package/SVF-linux-aarch64/Release-build/include/MemoryModel/PersistentPointsToDS.h +955 -0
  87. package/SVF-linux-aarch64/Release-build/include/MemoryModel/PointerAnalysis.h +429 -0
  88. package/SVF-linux-aarch64/Release-build/include/MemoryModel/PointerAnalysisImpl.h +602 -0
  89. package/SVF-linux-aarch64/Release-build/include/MemoryModel/PointsTo.h +255 -0
  90. package/SVF-linux-aarch64/Release-build/include/MemoryModel/SVFLoop.h +167 -0
  91. package/SVF-linux-aarch64/Release-build/include/SABER/DoubleFreeChecker.h +76 -0
  92. package/SVF-linux-aarch64/Release-build/include/SABER/FileChecker.h +80 -0
  93. package/SVF-linux-aarch64/Release-build/include/SABER/LeakChecker.h +122 -0
  94. package/SVF-linux-aarch64/Release-build/include/SABER/ProgSlice.h +327 -0
  95. package/SVF-linux-aarch64/Release-build/include/SABER/SaberCheckerAPI.h +151 -0
  96. package/SVF-linux-aarch64/Release-build/include/SABER/SaberCondAllocator.h +317 -0
  97. package/SVF-linux-aarch64/Release-build/include/SABER/SaberSVFGBuilder.h +114 -0
  98. package/SVF-linux-aarch64/Release-build/include/SABER/SrcSnkDDA.h +327 -0
  99. package/SVF-linux-aarch64/Release-build/include/SABER/SrcSnkSolver.h +186 -0
  100. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/BasicTypes.h +280 -0
  101. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/BreakConstantExpr.h +94 -0
  102. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/CHGBuilder.h +78 -0
  103. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/CppUtil.h +184 -0
  104. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/DCHG.h +477 -0
  105. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/GEPTypeBridgeIterator.h +183 -0
  106. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/ICFGBuilder.h +160 -0
  107. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/LLVMLoopAnalysis.h +60 -0
  108. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/LLVMModule.h +594 -0
  109. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/LLVMUtil.h +438 -0
  110. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/ObjTypeInference.h +130 -0
  111. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/SVFIRBuilder.h +520 -0
  112. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/SVFLLVMValue.h +387 -0
  113. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/SVFModule.h +186 -0
  114. package/SVF-linux-aarch64/Release-build/include/SVF-LLVM/SymbolTableBuilder.h +132 -0
  115. package/SVF-linux-aarch64/Release-build/include/SVFIR/ObjTypeInfo.h +224 -0
  116. package/SVF-linux-aarch64/Release-build/include/SVFIR/PAGBuilderFromFile.h +80 -0
  117. package/SVF-linux-aarch64/Release-build/include/SVFIR/SVFIR.h +856 -0
  118. package/SVF-linux-aarch64/Release-build/include/SVFIR/SVFStatements.h +1328 -0
  119. package/SVF-linux-aarch64/Release-build/include/SVFIR/SVFType.h +578 -0
  120. package/SVF-linux-aarch64/Release-build/include/SVFIR/SVFValue.h +338 -0
  121. package/SVF-linux-aarch64/Release-build/include/SVFIR/SVFVariables.h +2204 -0
  122. package/SVF-linux-aarch64/Release-build/include/Util/Annotator.h +180 -0
  123. package/SVF-linux-aarch64/Release-build/include/Util/BitVector.h +55 -0
  124. package/SVF-linux-aarch64/Release-build/include/Util/CDGBuilder.h +107 -0
  125. package/SVF-linux-aarch64/Release-build/include/Util/CallGraphBuilder.h +62 -0
  126. package/SVF-linux-aarch64/Release-build/include/Util/Casting.h +426 -0
  127. package/SVF-linux-aarch64/Release-build/include/Util/CommandLine.h +530 -0
  128. package/SVF-linux-aarch64/Release-build/include/Util/CoreBitVector.h +214 -0
  129. package/SVF-linux-aarch64/Release-build/include/Util/CxtStmt.h +502 -0
  130. package/SVF-linux-aarch64/Release-build/include/Util/DPItem.h +618 -0
  131. package/SVF-linux-aarch64/Release-build/include/Util/ExtAPI.h +117 -0
  132. package/SVF-linux-aarch64/Release-build/include/Util/GeneralType.h +127 -0
  133. package/SVF-linux-aarch64/Release-build/include/Util/GraphReachSolver.h +186 -0
  134. package/SVF-linux-aarch64/Release-build/include/Util/NodeIDAllocator.h +203 -0
  135. package/SVF-linux-aarch64/Release-build/include/Util/Options.h +272 -0
  136. package/SVF-linux-aarch64/Release-build/include/Util/PTAStat.h +83 -0
  137. package/SVF-linux-aarch64/Release-build/include/Util/SVFBugReport.h +427 -0
  138. package/SVF-linux-aarch64/Release-build/include/Util/SVFLoopAndDomInfo.h +169 -0
  139. package/SVF-linux-aarch64/Release-build/include/Util/SVFStat.h +103 -0
  140. package/SVF-linux-aarch64/Release-build/include/Util/SVFUtil.h +478 -0
  141. package/SVF-linux-aarch64/Release-build/include/Util/SparseBitVector.h +1252 -0
  142. package/SVF-linux-aarch64/Release-build/include/Util/ThreadAPI.h +189 -0
  143. package/SVF-linux-aarch64/Release-build/include/Util/WorkList.h +317 -0
  144. package/SVF-linux-aarch64/Release-build/include/Util/Z3Expr.h +325 -0
  145. package/SVF-linux-aarch64/Release-build/include/Util/cJSON.h +300 -0
  146. package/SVF-linux-aarch64/Release-build/include/Util/config.h +26 -0
  147. package/SVF-linux-aarch64/Release-build/include/Util/iterator.h +407 -0
  148. package/SVF-linux-aarch64/Release-build/include/Util/iterator_range.h +76 -0
  149. package/SVF-linux-aarch64/Release-build/include/WPA/Andersen.h +435 -0
  150. package/SVF-linux-aarch64/Release-build/include/WPA/AndersenPWC.h +160 -0
  151. package/SVF-linux-aarch64/Release-build/include/WPA/CSC.h +95 -0
  152. package/SVF-linux-aarch64/Release-build/include/WPA/FlowSensitive.h +323 -0
  153. package/SVF-linux-aarch64/Release-build/include/WPA/Steensgaard.h +131 -0
  154. package/SVF-linux-aarch64/Release-build/include/WPA/TypeAnalysis.h +90 -0
  155. package/SVF-linux-aarch64/Release-build/include/WPA/VersionedFlowSensitive.h +295 -0
  156. package/SVF-linux-aarch64/Release-build/include/WPA/WPAFSSolver.h +246 -0
  157. package/SVF-linux-aarch64/Release-build/include/WPA/WPAPass.h +116 -0
  158. package/SVF-linux-aarch64/Release-build/include/WPA/WPASolver.h +205 -0
  159. package/SVF-linux-aarch64/Release-build/include/WPA/WPAStat.h +222 -0
  160. package/SVF-linux-aarch64/Release-build/lib/cmake/SVF/SVFConfig.cmake +58 -0
  161. package/SVF-linux-aarch64/Release-build/lib/cmake/SVF/SVFConfigVersion.cmake +43 -0
  162. package/SVF-linux-aarch64/Release-build/lib/extapi.bc +2449 -0
  163. package/SVF-linux-aarch64/Release-build/lib/libSvfCore.so +0 -0
  164. package/SVF-linux-aarch64/Release-build/lib/libSvfLLVM.so.16 +0 -0
  165. package/package.json +1 -1
@@ -0,0 +1,2449 @@
1
+ ; ModuleID = '/home/runner/work/SVF/SVF/svf-llvm/lib/extapi.c'
2
+ source_filename = "/home/runner/work/SVF/SVF/svf-llvm/lib/extapi.c"
3
+ target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
4
+ target triple = "aarch64-unknown-linux-gnu"
5
+
6
+ @.str = private unnamed_addr constant [15 x i8] c"ALLOC_HEAP_RET\00", section "llvm.metadata"
7
+ @.str.1 = private unnamed_addr constant [48 x i8] c"/home/runner/work/SVF/SVF/svf-llvm/lib/extapi.c\00", section "llvm.metadata"
8
+ @.str.2 = private unnamed_addr constant [15 x i8] c"AllocSize:Arg0\00", section "llvm.metadata"
9
+ @.str.3 = private unnamed_addr constant [18 x i8] c"AllocSize:UNKNOWN\00", section "llvm.metadata"
10
+ @.str.4 = private unnamed_addr constant [20 x i8] c"AllocSize:Arg0*Arg1\00", section "llvm.metadata"
11
+ @.str.5 = private unnamed_addr constant [15 x i8] c"AllocSize:Arg1\00", section "llvm.metadata"
12
+ @.str.6 = private unnamed_addr constant [17 x i8] c"REALLOC_HEAP_RET\00", section "llvm.metadata"
13
+ @.str.7 = private unnamed_addr constant [20 x i8] c"AllocSize:Arg1*Arg2\00", section "llvm.metadata"
14
+ @.str.8 = private unnamed_addr constant [16 x i8] c"ALLOC_HEAP_ARG0\00", section "llvm.metadata"
15
+ @.str.9 = private unnamed_addr constant [15 x i8] c"AllocSize:Arg2\00", section "llvm.metadata"
16
+ @.str.10 = private unnamed_addr constant [16 x i8] c"ALLOC_HEAP_ARG1\00", section "llvm.metadata"
17
+ @.str.11 = private unnamed_addr constant [16 x i8] c"ALLOC_HEAP_ARG2\00", section "llvm.metadata"
18
+ @.str.12 = private unnamed_addr constant [7 x i8] c"MEMCPY\00", section "llvm.metadata"
19
+ @.str.13 = private unnamed_addr constant [7 x i8] c"MEMSET\00", section "llvm.metadata"
20
+ @.str.14 = private unnamed_addr constant [7 x i8] c"STRCPY\00", section "llvm.metadata"
21
+ @.str.15 = private unnamed_addr constant [7 x i8] c"STRCAT\00", section "llvm.metadata"
22
+ @.str.16 = private unnamed_addr constant [10 x i8] c"OVERWRITE\00", section "llvm.metadata"
23
+ @.str.17 = private unnamed_addr constant [16 x i8] c"ALLOC_STACK_RET\00", section "llvm.metadata"
24
+ @llvm.global.annotations = appending global [255 x { ptr, ptr, ptr, i32, ptr }] [{ ptr, ptr, ptr, i32, ptr } { ptr @malloc, ptr @.str, ptr @.str.1, i32 19, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @malloc, ptr @.str.2, ptr @.str.1, i32 19, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @fopen, ptr @.str, ptr @.str.1, i32 25, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @fopen, ptr @.str.3, ptr @.str.1, i32 25, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @fopen64, ptr @.str, ptr @.str.1, i32 31, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @fopen64, ptr @.str.3, ptr @.str.1, i32 31, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @fdopen, ptr @.str, ptr @.str.1, i32 37, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @fdopen, ptr @.str.3, ptr @.str.1, i32 37, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @readdir64, ptr @.str, ptr @.str.1, i32 43, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @readdir64, ptr @.str.3, ptr @.str.1, i32 43, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tmpvoid64, ptr @.str, ptr @.str.1, i32 49, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tmpvoid64, ptr @.str.3, ptr @.str.1, i32 49, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @calloc, ptr @.str, ptr @.str.1, i32 55, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @calloc, ptr @.str.4, ptr @.str.1, i32 55, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @zmalloc, ptr @.str, ptr @.str.1, i32 61, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @zmalloc, ptr @.str.2, ptr @.str.1, i32 61, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gzdopen, ptr @.str, ptr @.str.1, i32 67, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gzdopen, ptr @.str.3, ptr @.str.1, i32 67, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @iconv_open, ptr @.str, ptr @.str.1, i32 73, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @iconv_open, ptr @.str.3, ptr @.str.1, i32 73, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @lalloc, ptr @.str, ptr @.str.1, i32 79, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @lalloc, ptr @.str.2, ptr @.str.1, i32 79, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @lalloc_clear, ptr @.str, ptr @.str.1, i32 85, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @lalloc_clear, ptr @.str.2, ptr @.str.1, i32 85, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @nhalloc, ptr @.str, ptr @.str.1, i32 91, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @nhalloc, ptr @.str.3, ptr @.str.1, i32 91, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @oballoc, ptr @.str, ptr @.str.1, i32 97, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @oballoc, ptr @.str.2, ptr @.str.1, i32 97, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @popen, ptr @.str, ptr @.str.1, i32 103, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @popen, ptr @.str.3, ptr @.str.1, i32 103, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @pthread_getspecific, ptr @.str, ptr @.str.1, i32 109, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @pthread_getspecific, ptr @.str.3, ptr @.str.1, i32 109, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @readdir, ptr @.str, ptr @.str.1, i32 115, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @readdir, ptr @.str.3, ptr @.str.1, i32 115, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safe_calloc, ptr @.str, ptr @.str.1, i32 121, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safe_calloc, ptr @.str.4, ptr @.str.1, i32 121, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safe_malloc, ptr @.str, ptr @.str.1, i32 127, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safe_malloc, ptr @.str.2, ptr @.str.1, i32 127, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safecalloc, ptr @.str, ptr @.str.1, i32 133, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safecalloc, ptr @.str.4, ptr @.str.1, i32 133, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safemalloc, ptr @.str, ptr @.str.1, i32 139, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safemalloc, ptr @.str.2, ptr @.str.1, i32 139, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @setmntent, ptr @.str, ptr @.str.1, i32 145, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @setmntent, ptr @.str.3, ptr @.str.1, i32 145, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @shmat, ptr @.str, ptr @.str.1, i32 151, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @shmat, ptr @.str.3, ptr @.str.1, i32 151, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__sysv_signal, ptr @.str, ptr @.str.1, i32 157, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__sysv_signal, ptr @.str.3, ptr @.str.1, i32 157, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @signal, ptr @.str, ptr @.str.1, i32 163, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @signal, ptr @.str.3, ptr @.str.1, i32 163, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tempnam, ptr @.str, ptr @.str.1, i32 169, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tempnam, ptr @.str.3, ptr @.str.1, i32 169, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tmpvoid, ptr @.str, ptr @.str.1, i32 175, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tmpvoid, ptr @.str.3, ptr @.str.1, i32 175, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @xcalloc, ptr @.str, ptr @.str.1, i32 181, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @xcalloc, ptr @.str.3, ptr @.str.1, i32 181, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @xmalloc, ptr @.str, ptr @.str.1, i32 187, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @xmalloc, ptr @.str.2, ptr @.str.1, i32 187, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znam, ptr @.str, ptr @.str.1, i32 193, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znam, ptr @.str.2, ptr @.str.1, i32 193, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znaj, ptr @.str, ptr @.str.1, i32 199, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znaj, ptr @.str.2, ptr @.str.1, i32 199, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znwj, ptr @.str, ptr @.str.1, i32 205, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znwj, ptr @.str.2, ptr @.str.1, i32 205, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__cxa_allocate_exception, ptr @.str, ptr @.str.1, i32 211, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__cxa_allocate_exception, ptr @.str.2, ptr @.str.1, i32 211, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @aligned_alloc, ptr @.str, ptr @.str.1, i32 217, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @aligned_alloc, ptr @.str.5, ptr @.str.1, i32 217, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @memalign, ptr @.str, ptr @.str.1, i32 223, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @memalign, ptr @.str.5, ptr @.str.1, i32 223, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @valloc, ptr @.str, ptr @.str.1, i32 229, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @valloc, ptr @.str.2, ptr @.str.1, i32 229, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @mmap64, ptr @.str, ptr @.str.1, i32 235, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @mmap64, ptr @.str.5, ptr @.str.1, i32 235, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @XSetLocaleModifiers, ptr @.str, ptr @.str.1, i32 241, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @XSetLocaleModifiers, ptr @.str.3, ptr @.str.1, i32 241, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__strdup, ptr @.str, ptr @.str.1, i32 247, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__strdup, ptr @.str.3, ptr @.str.1, i32 247, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @crypt, ptr @.str, ptr @.str.1, i32 253, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @crypt, ptr @.str.3, ptr @.str.1, i32 253, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @ctime, ptr @.str, ptr @.str.1, i32 259, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @ctime, ptr @.str.3, ptr @.str.1, i32 259, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @dlerror, ptr @.str, ptr @.str.1, i32 265, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @dlerror, ptr @.str.3, ptr @.str.1, i32 265, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @dlopen, ptr @.str, ptr @.str.1, i32 271, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @dlopen, ptr @.str.3, ptr @.str.1, i32 271, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gai_strerror, ptr @.str, ptr @.str.1, i32 277, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gai_strerror, ptr @.str.3, ptr @.str.1, i32 277, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gcry_cipher_algo_name, ptr @.str, ptr @.str.1, i32 283, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gcry_cipher_algo_name, ptr @.str.3, ptr @.str.1, i32 283, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @svfgcry_md_algo_name_, ptr @.str, ptr @.str.1, i32 289, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @svfgcry_md_algo_name_, ptr @.str.3, ptr @.str.1, i32 289, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getenv, ptr @.str, ptr @.str.1, i32 295, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getenv, ptr @.str.3, ptr @.str.1, i32 295, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getlogin, ptr @.str, ptr @.str.1, i32 301, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getlogin, ptr @.str.3, ptr @.str.1, i32 301, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getpass, ptr @.str, ptr @.str.1, i32 307, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getpass, ptr @.str.3, ptr @.str.1, i32 307, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_strerror, ptr @.str, ptr @.str.1, i32 313, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_strerror, ptr @.str.3, ptr @.str.1, i32 313, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gpg_strerror, ptr @.str, ptr @.str.1, i32 319, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gpg_strerror, ptr @.str.3, ptr @.str.1, i32 319, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gzerror, ptr @.str, ptr @.str.1, i32 325, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gzerror, ptr @.str.3, ptr @.str.1, i32 325, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @inet_ntoa, ptr @.str, ptr @.str.1, i32 331, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @inet_ntoa, ptr @.str.3, ptr @.str.1, i32 331, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @initscr, ptr @.str, ptr @.str.1, i32 337, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @initscr, ptr @.str.3, ptr @.str.1, i32 337, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_stacksave, ptr @.str, ptr @.str.1, i32 343, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_stacksave, ptr @.str.3, ptr @.str.1, i32 343, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @mmap, ptr @.str, ptr @.str.1, i32 349, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @mmap, ptr @.str.5, ptr @.str.1, i32 349, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @newwin, ptr @.str, ptr @.str.1, i32 355, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @newwin, ptr @.str.3, ptr @.str.1, i32 355, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @nl_langinfo, ptr @.str, ptr @.str.1, i32 361, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @nl_langinfo, ptr @.str.3, ptr @.str.1, i32 361, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @opendir, ptr @.str, ptr @.str.1, i32 367, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @opendir, ptr @.str.3, ptr @.str.1, i32 367, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @sbrk, ptr @.str, ptr @.str.1, i32 373, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @sbrk, ptr @.str.3, ptr @.str.1, i32 373, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strdup, ptr @.str, ptr @.str.1, i32 379, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strdup, ptr @.str.3, ptr @.str.1, i32 379, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strerror, ptr @.str, ptr @.str.1, i32 385, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strerror, ptr @.str.3, ptr @.str.1, i32 385, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strsignal, ptr @.str, ptr @.str.1, i32 391, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strsignal, ptr @.str.3, ptr @.str.1, i32 391, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @textdomain, ptr @.str, ptr @.str.1, i32 397, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @textdomain, ptr @.str.3, ptr @.str.1, i32 397, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tgetstr, ptr @.str, ptr @.str.1, i32 403, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tgetstr, ptr @.str.3, ptr @.str.1, i32 403, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tigetstr, ptr @.str, ptr @.str.1, i32 409, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tigetstr, ptr @.str.3, ptr @.str.1, i32 409, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tmpnam, ptr @.str, ptr @.str.1, i32 415, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tmpnam, ptr @.str.3, ptr @.str.1, i32 415, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @ttyname, ptr @.str, ptr @.str.1, i32 421, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @ttyname, ptr @.str.3, ptr @.str.1, i32 421, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getcwd, ptr @.str.6, ptr @.str.1, i32 427, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getcwd, ptr @.str.3, ptr @.str.1, i32 427, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @mem_realloc, ptr @.str.6, ptr @.str.1, i32 433, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @mem_realloc, ptr @.str.5, ptr @.str.1, i32 433, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @realloc, ptr @.str.6, ptr @.str.1, i32 439, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @realloc, ptr @.str.5, ptr @.str.1, i32 439, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safe_realloc, ptr @.str.6, ptr @.str.1, i32 445, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safe_realloc, ptr @.str.5, ptr @.str.1, i32 445, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @saferealloc, ptr @.str.6, ptr @.str.1, i32 451, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @saferealloc, ptr @.str.7, ptr @.str.1, i32 451, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safexrealloc, ptr @.str.6, ptr @.str.1, i32 457, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @safexrealloc, ptr @.str.3, ptr @.str.1, i32 457, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @xrealloc, ptr @.str.6, ptr @.str.1, i32 479, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @xrealloc, ptr @.str.5, ptr @.str.1, i32 479, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znwm, ptr @.str, ptr @.str.1, i32 485, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_Znwm, ptr @.str.2, ptr @.str.1, i32 485, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_ZnwmRKSt9nothrow_t, ptr @.str, ptr @.str.1, i32 491, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_ZnwmRKSt9nothrow_t, ptr @.str.2, ptr @.str.1, i32 491, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_ZnamRKSt9nothrow_t, ptr @.str, ptr @.str.1, i32 497, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_ZnamRKSt9nothrow_t, ptr @.str.2, ptr @.str.1, i32 497, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @asprintf, ptr @.str.8, ptr @.str.1, i32 503, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @asprintf, ptr @.str.3, ptr @.str.1, i32 503, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @vasprintf, ptr @.str.8, ptr @.str.1, i32 509, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @vasprintf, ptr @.str.3, ptr @.str.1, i32 509, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @db_create, ptr @.str.8, ptr @.str.1, i32 515, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @db_create, ptr @.str.3, ptr @.str.1, i32 515, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_pkcs12_bag_init, ptr @.str.8, ptr @.str.1, i32 521, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_pkcs12_bag_init, ptr @.str.3, ptr @.str.1, i32 521, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_pkcs12_init, ptr @.str.8, ptr @.str.1, i32 527, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_pkcs12_init, ptr @.str.3, ptr @.str.1, i32 527, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_x509_crt_init, ptr @.str.8, ptr @.str.1, i32 533, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_x509_crt_init, ptr @.str.3, ptr @.str.1, i32 533, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_x509_privkey_init, ptr @.str.8, ptr @.str.1, i32 539, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_x509_privkey_init, ptr @.str.3, ptr @.str.1, i32 539, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @posix_memalign, ptr @.str.8, ptr @.str.1, i32 545, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @posix_memalign, ptr @.str.9, ptr @.str.1, i32 545, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @scandir, ptr @.str.10, ptr @.str.1, i32 551, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @scandir, ptr @.str.3, ptr @.str.1, i32 551, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @XmbTextPropertyToTextList, ptr @.str.11, ptr @.str.1, i32 557, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @XmbTextPropertyToTextList, ptr @.str.3, ptr @.str.1, i32 557, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memcpy_p0i8_p0i8_i64, ptr @.str.12, ptr @.str.1, i32 563, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memcpy_p0_p0_i64, ptr @.str.12, ptr @.str.1, i32 566, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memcpy_p0i8_p0i8_i32, ptr @.str.12, ptr @.str.1, i32 569, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memcpy_p0_p0_i32, ptr @.str.12, ptr @.str.1, i32 572, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memcpy, ptr @.str.12, ptr @.str.1, i32 575, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memmove, ptr @.str.12, ptr @.str.1, i32 578, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memmove_p0i8_p0i8_i64, ptr @.str.12, ptr @.str.1, i32 581, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memmove_p0_p0_i64, ptr @.str.12, ptr @.str.1, i32 584, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memmove_p0i8_p0i8_i32, ptr @.str.12, ptr @.str.1, i32 587, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memmove_p0_p0_i32, ptr @.str.12, ptr @.str.1, i32 590, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__memcpy_chk, ptr @.str.12, ptr @.str.1, i32 593, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @memmove, ptr @.str.12, ptr @.str.1, i32 596, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @bcopy, ptr @.str.12, ptr @.str.1, i32 602, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @memccpy, ptr @.str.12, ptr @.str.1, i32 605, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__memmove_chk, ptr @.str.12, ptr @.str.1, i32 611, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memset, ptr @.str.13, ptr @.str.1, i32 614, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memset_p0i8_i32, ptr @.str.13, ptr @.str.1, i32 617, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memset_p0_i32, ptr @.str.13, ptr @.str.1, i32 620, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memset_p0i8_i64, ptr @.str.13, ptr @.str.1, i32 623, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @llvm_memset_p0_i64, ptr @.str.13, ptr @.str.1, i32 626, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__memset_chk, ptr @.str.13, ptr @.str.1, i32 629, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @wmemset, ptr @.str.13, ptr @.str.1, i32 635, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__strcpy_chk, ptr @.str.14, ptr @.str.1, i32 641, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__strcat_chk, ptr @.str.15, ptr @.str.1, i32 647, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__wcscat_chk, ptr @.str.15, ptr @.str.1, i32 653, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @stpcpy, ptr @.str.14, ptr @.str.1, i32 659, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strcat, ptr @.str.15, ptr @.str.1, i32 665, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @wcscat, ptr @.str.15, ptr @.str.1, i32 671, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strcpy, ptr @.str.14, ptr @.str.1, i32 678, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strncat, ptr @.str.15, ptr @.str.1, i32 684, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @wcsncat, ptr @.str.15, ptr @.str.1, i32 690, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__strncat_chk, ptr @.str.15, ptr @.str.1, i32 695, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__wcsncat_chk, ptr @.str.15, ptr @.str.1, i32 701, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @strncpy, ptr @.str.12, ptr @.str.1, i32 706, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @wcscpy, ptr @.str.14, ptr @.str.1, i32 712, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @iconv, ptr @.str.12, ptr @.str.1, i32 717, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @_ZNSt5arrayIPK1ALm2EE4backEv, ptr @.str.16, ptr @.str.1, i32 723, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @SyGetmem, ptr @.str, ptr @.str.1, i32 731, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @SyGetmem, ptr @.str.2, ptr @.str.1, i32 731, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__ctype_b_loc, ptr @.str.17, ptr @.str.1, i32 1049, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__ctype_tolower_loc, ptr @.str.17, ptr @.str.1, i32 1055, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__ctype_toupper_loc, ptr @.str.17, ptr @.str.1, i32 1061, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__errno_location, ptr @.str.17, ptr @.str.1, i32 1067, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__h_errno_location, ptr @.str.17, ptr @.str.1, i32 1073, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @__res_state, ptr @.str.17, ptr @.str.1, i32 1079, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @asctime, ptr @.str.17, ptr @.str.1, i32 1085, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @bindtextdomain, ptr @.str.17, ptr @.str.1, i32 1091, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @bind_textdomain_codeset, ptr @.str.17, ptr @.str.1, i32 1097, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @ctermid, ptr @.str.17, ptr @.str.1, i32 1103, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @dcgettext, ptr @.str.17, ptr @.str.1, i32 1109, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @dgettext, ptr @.str.17, ptr @.str.1, i32 1115, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @dngettext, ptr @.str.17, ptr @.str.1, i32 1121, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getgrgid, ptr @.str.17, ptr @.str.1, i32 1127, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getgrnam, ptr @.str.17, ptr @.str.1, i32 1133, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gethostbyaddr, ptr @.str.17, ptr @.str.1, i32 1139, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gethostbyname, ptr @.str.17, ptr @.str.1, i32 1145, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gethostbyname2, ptr @.str.17, ptr @.str.1, i32 1151, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getmntent, ptr @.str.17, ptr @.str.1, i32 1157, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getprotobyname, ptr @.str.17, ptr @.str.1, i32 1163, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getprotobynumber, ptr @.str.17, ptr @.str.1, i32 1169, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getpwent, ptr @.str.17, ptr @.str.1, i32 1175, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getpwnam, ptr @.str.17, ptr @.str.1, i32 1181, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getpwuid, ptr @.str.17, ptr @.str.1, i32 1187, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getservbyname, ptr @.str.17, ptr @.str.1, i32 1193, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getservbyport, ptr @.str.17, ptr @.str.1, i32 1199, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @getspnam, ptr @.str.17, ptr @.str.1, i32 1205, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gettext, ptr @.str.17, ptr @.str.1, i32 1211, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gmtime, ptr @.str.17, ptr @.str.1, i32 1217, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnu_get_libc_version, ptr @.str.17, ptr @.str.1, i32 1223, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @gnutls_check_version, ptr @.str.17, ptr @.str.1, i32 1229, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @localeconv, ptr @.str.17, ptr @.str.1, i32 1235, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @localtime, ptr @.str.17, ptr @.str.1, i32 1241, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @ngettext, ptr @.str.17, ptr @.str.1, i32 1247, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @pango_cairo_font_map_get_default, ptr @.str.17, ptr @.str.1, i32 1253, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @re_comp, ptr @.str.17, ptr @.str.1, i32 1259, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @setlocale, ptr @.str.17, ptr @.str.1, i32 1265, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tgoto, ptr @.str.17, ptr @.str.1, i32 1271, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @tparm, ptr @.str.17, ptr @.str.1, i32 1277, ptr null }, { ptr, ptr, ptr, i32, ptr } { ptr @zError, ptr @.str.17, ptr @.str.1, i32 1283, ptr null }], section "llvm.metadata"
25
+
26
+ ; Function Attrs: noinline nounwind allocsize(0) uwtable
27
+ define dso_local ptr @malloc(i64 noundef %size) #0 {
28
+ entry:
29
+ %size.addr = alloca i64, align 8
30
+ store i64 %size, ptr %size.addr, align 8
31
+ ret ptr null
32
+ }
33
+
34
+ ; Function Attrs: noinline nounwind uwtable
35
+ define dso_local ptr @fopen(ptr noundef %voidname, ptr noundef %mode) #1 {
36
+ entry:
37
+ %voidname.addr = alloca ptr, align 8
38
+ %mode.addr = alloca ptr, align 8
39
+ store ptr %voidname, ptr %voidname.addr, align 8
40
+ store ptr %mode, ptr %mode.addr, align 8
41
+ ret ptr null
42
+ }
43
+
44
+ ; Function Attrs: noinline nounwind uwtable
45
+ define dso_local ptr @fopen64(ptr noundef %voidname, ptr noundef %mode) #1 {
46
+ entry:
47
+ %voidname.addr = alloca ptr, align 8
48
+ %mode.addr = alloca ptr, align 8
49
+ store ptr %voidname, ptr %voidname.addr, align 8
50
+ store ptr %mode, ptr %mode.addr, align 8
51
+ ret ptr null
52
+ }
53
+
54
+ ; Function Attrs: noinline nounwind uwtable
55
+ define dso_local ptr @fdopen(i32 noundef %fd, ptr noundef %mode) #1 {
56
+ entry:
57
+ %fd.addr = alloca i32, align 4
58
+ %mode.addr = alloca ptr, align 8
59
+ store i32 %fd, ptr %fd.addr, align 4
60
+ store ptr %mode, ptr %mode.addr, align 8
61
+ ret ptr null
62
+ }
63
+
64
+ ; Function Attrs: noinline nounwind uwtable
65
+ define dso_local ptr @readdir64(ptr noundef %dirp) #1 {
66
+ entry:
67
+ %dirp.addr = alloca ptr, align 8
68
+ store ptr %dirp, ptr %dirp.addr, align 8
69
+ ret ptr null
70
+ }
71
+
72
+ ; Function Attrs: noinline nounwind uwtable
73
+ define dso_local ptr @tmpvoid64() #1 {
74
+ entry:
75
+ ret ptr null
76
+ }
77
+
78
+ ; Function Attrs: noinline nounwind allocsize(0,1) uwtable
79
+ define dso_local ptr @calloc(i64 noundef %nitems, i64 noundef %size) #2 {
80
+ entry:
81
+ %nitems.addr = alloca i64, align 8
82
+ %size.addr = alloca i64, align 8
83
+ store i64 %nitems, ptr %nitems.addr, align 8
84
+ store i64 %size, ptr %size.addr, align 8
85
+ ret ptr null
86
+ }
87
+
88
+ ; Function Attrs: noinline nounwind uwtable
89
+ define dso_local ptr @zmalloc(i64 noundef %size) #1 {
90
+ entry:
91
+ %size.addr = alloca i64, align 8
92
+ store i64 %size, ptr %size.addr, align 8
93
+ ret ptr null
94
+ }
95
+
96
+ ; Function Attrs: noinline nounwind uwtable
97
+ define dso_local ptr @gzdopen(i32 noundef %fd, ptr noundef %mode) #1 {
98
+ entry:
99
+ %fd.addr = alloca i32, align 4
100
+ %mode.addr = alloca ptr, align 8
101
+ store i32 %fd, ptr %fd.addr, align 4
102
+ store ptr %mode, ptr %mode.addr, align 8
103
+ ret ptr null
104
+ }
105
+
106
+ ; Function Attrs: noinline nounwind uwtable
107
+ define dso_local ptr @iconv_open(ptr noundef %tocode, ptr noundef %fromcode) #1 {
108
+ entry:
109
+ %tocode.addr = alloca ptr, align 8
110
+ %fromcode.addr = alloca ptr, align 8
111
+ store ptr %tocode, ptr %tocode.addr, align 8
112
+ store ptr %fromcode, ptr %fromcode.addr, align 8
113
+ ret ptr null
114
+ }
115
+
116
+ ; Function Attrs: noinline nounwind uwtable
117
+ define dso_local ptr @lalloc(i64 noundef %size, i32 noundef %a) #1 {
118
+ entry:
119
+ %size.addr = alloca i64, align 8
120
+ %a.addr = alloca i32, align 4
121
+ store i64 %size, ptr %size.addr, align 8
122
+ store i32 %a, ptr %a.addr, align 4
123
+ ret ptr null
124
+ }
125
+
126
+ ; Function Attrs: noinline nounwind uwtable
127
+ define dso_local ptr @lalloc_clear(i64 noundef %size, i32 noundef %a) #1 {
128
+ entry:
129
+ %size.addr = alloca i64, align 8
130
+ %a.addr = alloca i32, align 4
131
+ store i64 %size, ptr %size.addr, align 8
132
+ store i32 %a, ptr %a.addr, align 4
133
+ ret ptr null
134
+ }
135
+
136
+ ; Function Attrs: noinline nounwind uwtable
137
+ define dso_local ptr @nhalloc(i32 noundef %a, ptr noundef %b, i32 noundef %c) #1 {
138
+ entry:
139
+ %a.addr = alloca i32, align 4
140
+ %b.addr = alloca ptr, align 8
141
+ %c.addr = alloca i32, align 4
142
+ store i32 %a, ptr %a.addr, align 4
143
+ store ptr %b, ptr %b.addr, align 8
144
+ store i32 %c, ptr %c.addr, align 4
145
+ ret ptr null
146
+ }
147
+
148
+ ; Function Attrs: noinline nounwind uwtable
149
+ define dso_local ptr @oballoc(i64 noundef %size) #1 {
150
+ entry:
151
+ %size.addr = alloca i64, align 8
152
+ store i64 %size, ptr %size.addr, align 8
153
+ ret ptr null
154
+ }
155
+
156
+ ; Function Attrs: noinline nounwind uwtable
157
+ define dso_local ptr @popen(ptr noundef %command, ptr noundef %type) #1 {
158
+ entry:
159
+ %command.addr = alloca ptr, align 8
160
+ %type.addr = alloca ptr, align 8
161
+ store ptr %command, ptr %command.addr, align 8
162
+ store ptr %type, ptr %type.addr, align 8
163
+ ret ptr null
164
+ }
165
+
166
+ ; Function Attrs: noinline nounwind uwtable
167
+ define dso_local ptr @pthread_getspecific(ptr noundef %a, ptr noundef %b) #1 {
168
+ entry:
169
+ %a.addr = alloca ptr, align 8
170
+ %b.addr = alloca ptr, align 8
171
+ store ptr %a, ptr %a.addr, align 8
172
+ store ptr %b, ptr %b.addr, align 8
173
+ ret ptr null
174
+ }
175
+
176
+ ; Function Attrs: noinline nounwind uwtable
177
+ define dso_local ptr @readdir(ptr noundef %dirp) #1 {
178
+ entry:
179
+ %dirp.addr = alloca ptr, align 8
180
+ store ptr %dirp, ptr %dirp.addr, align 8
181
+ ret ptr null
182
+ }
183
+
184
+ ; Function Attrs: noinline nounwind uwtable
185
+ define dso_local ptr @safe_calloc(i32 noundef %nelem, i32 noundef %elsize) #1 {
186
+ entry:
187
+ %nelem.addr = alloca i32, align 4
188
+ %elsize.addr = alloca i32, align 4
189
+ store i32 %nelem, ptr %nelem.addr, align 4
190
+ store i32 %elsize, ptr %elsize.addr, align 4
191
+ ret ptr null
192
+ }
193
+
194
+ ; Function Attrs: noinline nounwind uwtable
195
+ define dso_local ptr @safe_malloc(i64 noundef %size) #1 {
196
+ entry:
197
+ %size.addr = alloca i64, align 8
198
+ store i64 %size, ptr %size.addr, align 8
199
+ ret ptr null
200
+ }
201
+
202
+ ; Function Attrs: noinline nounwind uwtable
203
+ define dso_local ptr @safecalloc(i32 noundef %a, i32 noundef %b) #1 {
204
+ entry:
205
+ %a.addr = alloca i32, align 4
206
+ %b.addr = alloca i32, align 4
207
+ store i32 %a, ptr %a.addr, align 4
208
+ store i32 %b, ptr %b.addr, align 4
209
+ ret ptr null
210
+ }
211
+
212
+ ; Function Attrs: noinline nounwind uwtable
213
+ define dso_local ptr @safemalloc(i32 noundef %a, i32 noundef %b) #1 {
214
+ entry:
215
+ %a.addr = alloca i32, align 4
216
+ %b.addr = alloca i32, align 4
217
+ store i32 %a, ptr %a.addr, align 4
218
+ store i32 %b, ptr %b.addr, align 4
219
+ ret ptr null
220
+ }
221
+
222
+ ; Function Attrs: noinline nounwind uwtable
223
+ define dso_local ptr @setmntent(ptr noundef %voidname, ptr noundef %type) #1 {
224
+ entry:
225
+ %voidname.addr = alloca ptr, align 8
226
+ %type.addr = alloca ptr, align 8
227
+ store ptr %voidname, ptr %voidname.addr, align 8
228
+ store ptr %type, ptr %type.addr, align 8
229
+ ret ptr null
230
+ }
231
+
232
+ ; Function Attrs: noinline nounwind uwtable
233
+ define dso_local ptr @shmat(i32 noundef %shmid, ptr noundef %shmaddr, i32 noundef %shmflg) #1 {
234
+ entry:
235
+ %shmid.addr = alloca i32, align 4
236
+ %shmaddr.addr = alloca ptr, align 8
237
+ %shmflg.addr = alloca i32, align 4
238
+ store i32 %shmid, ptr %shmid.addr, align 4
239
+ store ptr %shmaddr, ptr %shmaddr.addr, align 8
240
+ store i32 %shmflg, ptr %shmflg.addr, align 4
241
+ ret ptr null
242
+ }
243
+
244
+ ; Function Attrs: noinline nounwind uwtable
245
+ define dso_local ptr @__sysv_signal(i32 noundef %a, ptr noundef %b) #1 {
246
+ entry:
247
+ %a.addr = alloca i32, align 4
248
+ %b.addr = alloca ptr, align 8
249
+ store i32 %a, ptr %a.addr, align 4
250
+ store ptr %b, ptr %b.addr, align 8
251
+ ret ptr null
252
+ }
253
+
254
+ ; Function Attrs: noinline nounwind uwtable
255
+ define dso_local ptr @signal(i32 noundef %sig, ptr noundef %func) #1 {
256
+ entry:
257
+ %sig.addr = alloca i32, align 4
258
+ %func.addr = alloca ptr, align 8
259
+ store i32 %sig, ptr %sig.addr, align 4
260
+ store ptr %func, ptr %func.addr, align 8
261
+ ret ptr null
262
+ }
263
+
264
+ ; Function Attrs: noinline nounwind uwtable
265
+ define dso_local ptr @tempnam(ptr noundef %dir, ptr noundef %pfx) #1 {
266
+ entry:
267
+ %dir.addr = alloca ptr, align 8
268
+ %pfx.addr = alloca ptr, align 8
269
+ store ptr %dir, ptr %dir.addr, align 8
270
+ store ptr %pfx, ptr %pfx.addr, align 8
271
+ ret ptr null
272
+ }
273
+
274
+ ; Function Attrs: noinline nounwind uwtable
275
+ define dso_local ptr @tmpvoid() #1 {
276
+ entry:
277
+ ret ptr null
278
+ }
279
+
280
+ ; Function Attrs: noinline nounwind uwtable
281
+ define dso_local ptr @xcalloc(i64 noundef %size1, i64 noundef %size2) #1 {
282
+ entry:
283
+ %size1.addr = alloca i64, align 8
284
+ %size2.addr = alloca i64, align 8
285
+ store i64 %size1, ptr %size1.addr, align 8
286
+ store i64 %size2, ptr %size2.addr, align 8
287
+ ret ptr null
288
+ }
289
+
290
+ ; Function Attrs: noinline nounwind uwtable
291
+ define dso_local ptr @xmalloc(i64 noundef %size) #1 {
292
+ entry:
293
+ %size.addr = alloca i64, align 8
294
+ store i64 %size, ptr %size.addr, align 8
295
+ ret ptr null
296
+ }
297
+
298
+ ; Function Attrs: noinline nounwind uwtable
299
+ define dso_local ptr @_Znam(i64 noundef %size) #1 {
300
+ entry:
301
+ %size.addr = alloca i64, align 8
302
+ store i64 %size, ptr %size.addr, align 8
303
+ ret ptr null
304
+ }
305
+
306
+ ; Function Attrs: noinline nounwind uwtable
307
+ define dso_local ptr @_Znaj(i64 noundef %size) #1 {
308
+ entry:
309
+ %size.addr = alloca i64, align 8
310
+ store i64 %size, ptr %size.addr, align 8
311
+ ret ptr null
312
+ }
313
+
314
+ ; Function Attrs: noinline nounwind uwtable
315
+ define dso_local ptr @_Znwj(i64 noundef %size) #1 {
316
+ entry:
317
+ %size.addr = alloca i64, align 8
318
+ store i64 %size, ptr %size.addr, align 8
319
+ ret ptr null
320
+ }
321
+
322
+ ; Function Attrs: noinline nounwind uwtable
323
+ define dso_local ptr @__cxa_allocate_exception(i64 noundef %size) #1 {
324
+ entry:
325
+ %size.addr = alloca i64, align 8
326
+ store i64 %size, ptr %size.addr, align 8
327
+ ret ptr null
328
+ }
329
+
330
+ ; Function Attrs: noinline nounwind allocsize(1) uwtable
331
+ define dso_local ptr @aligned_alloc(i64 noundef %size1, i64 noundef %size2) #3 {
332
+ entry:
333
+ %size1.addr = alloca i64, align 8
334
+ %size2.addr = alloca i64, align 8
335
+ store i64 %size1, ptr %size1.addr, align 8
336
+ store i64 %size2, ptr %size2.addr, align 8
337
+ ret ptr null
338
+ }
339
+
340
+ ; Function Attrs: noinline nounwind allocsize(1) uwtable
341
+ define dso_local ptr @memalign(i64 noundef %size1, i64 noundef %size2) #3 {
342
+ entry:
343
+ %size1.addr = alloca i64, align 8
344
+ %size2.addr = alloca i64, align 8
345
+ store i64 %size1, ptr %size1.addr, align 8
346
+ store i64 %size2, ptr %size2.addr, align 8
347
+ ret ptr null
348
+ }
349
+
350
+ ; Function Attrs: noinline nounwind uwtable
351
+ define dso_local ptr @valloc(i64 noundef %size) #1 {
352
+ entry:
353
+ %size.addr = alloca i64, align 8
354
+ store i64 %size, ptr %size.addr, align 8
355
+ ret ptr null
356
+ }
357
+
358
+ ; Function Attrs: noinline nounwind uwtable
359
+ define dso_local ptr @mmap64(ptr noundef %addr, i64 noundef %len, i32 noundef %prot, i32 noundef %flags, i32 noundef %fildes, i64 noundef %off) #1 {
360
+ entry:
361
+ %addr.addr = alloca ptr, align 8
362
+ %len.addr = alloca i64, align 8
363
+ %prot.addr = alloca i32, align 4
364
+ %flags.addr = alloca i32, align 4
365
+ %fildes.addr = alloca i32, align 4
366
+ %off.addr = alloca i64, align 8
367
+ store ptr %addr, ptr %addr.addr, align 8
368
+ store i64 %len, ptr %len.addr, align 8
369
+ store i32 %prot, ptr %prot.addr, align 4
370
+ store i32 %flags, ptr %flags.addr, align 4
371
+ store i32 %fildes, ptr %fildes.addr, align 4
372
+ store i64 %off, ptr %off.addr, align 8
373
+ ret ptr null
374
+ }
375
+
376
+ ; Function Attrs: noinline nounwind uwtable
377
+ define dso_local ptr @XSetLocaleModifiers(ptr noundef %a) #1 {
378
+ entry:
379
+ %a.addr = alloca ptr, align 8
380
+ store ptr %a, ptr %a.addr, align 8
381
+ ret ptr null
382
+ }
383
+
384
+ ; Function Attrs: noinline nounwind uwtable
385
+ define dso_local ptr @__strdup(ptr noundef %string) #1 {
386
+ entry:
387
+ %string.addr = alloca ptr, align 8
388
+ store ptr %string, ptr %string.addr, align 8
389
+ ret ptr null
390
+ }
391
+
392
+ ; Function Attrs: noinline nounwind uwtable
393
+ define dso_local ptr @crypt(ptr noundef %key, ptr noundef %salt) #1 {
394
+ entry:
395
+ %key.addr = alloca ptr, align 8
396
+ %salt.addr = alloca ptr, align 8
397
+ store ptr %key, ptr %key.addr, align 8
398
+ store ptr %salt, ptr %salt.addr, align 8
399
+ ret ptr null
400
+ }
401
+
402
+ ; Function Attrs: noinline nounwind uwtable
403
+ define dso_local ptr @ctime(ptr noundef %timer) #1 {
404
+ entry:
405
+ %timer.addr = alloca ptr, align 8
406
+ store ptr %timer, ptr %timer.addr, align 8
407
+ ret ptr null
408
+ }
409
+
410
+ ; Function Attrs: noinline nounwind uwtable
411
+ define dso_local ptr @dlerror() #1 {
412
+ entry:
413
+ ret ptr null
414
+ }
415
+
416
+ ; Function Attrs: noinline nounwind uwtable
417
+ define dso_local ptr @dlopen(ptr noundef %voidname, i32 noundef %flags) #1 {
418
+ entry:
419
+ %voidname.addr = alloca ptr, align 8
420
+ %flags.addr = alloca i32, align 4
421
+ store ptr %voidname, ptr %voidname.addr, align 8
422
+ store i32 %flags, ptr %flags.addr, align 4
423
+ ret ptr null
424
+ }
425
+
426
+ ; Function Attrs: noinline nounwind uwtable
427
+ define dso_local ptr @gai_strerror(i32 noundef %errcode) #1 {
428
+ entry:
429
+ %errcode.addr = alloca i32, align 4
430
+ store i32 %errcode, ptr %errcode.addr, align 4
431
+ ret ptr null
432
+ }
433
+
434
+ ; Function Attrs: noinline nounwind uwtable
435
+ define dso_local ptr @gcry_cipher_algo_name(i32 noundef %errcode) #1 {
436
+ entry:
437
+ %errcode.addr = alloca i32, align 4
438
+ store i32 %errcode, ptr %errcode.addr, align 4
439
+ ret ptr null
440
+ }
441
+
442
+ ; Function Attrs: noinline nounwind uwtable
443
+ define dso_local ptr @svfgcry_md_algo_name_(i32 noundef %errcode) #1 {
444
+ entry:
445
+ %errcode.addr = alloca i32, align 4
446
+ store i32 %errcode, ptr %errcode.addr, align 4
447
+ ret ptr null
448
+ }
449
+
450
+ ; Function Attrs: noinline nounwind uwtable
451
+ define dso_local ptr @getenv(ptr noundef %name) #1 {
452
+ entry:
453
+ %name.addr = alloca ptr, align 8
454
+ store ptr %name, ptr %name.addr, align 8
455
+ ret ptr null
456
+ }
457
+
458
+ ; Function Attrs: noinline nounwind uwtable
459
+ define dso_local ptr @getlogin() #1 {
460
+ entry:
461
+ ret ptr null
462
+ }
463
+
464
+ ; Function Attrs: noinline nounwind uwtable
465
+ define dso_local ptr @getpass(ptr noundef %prompt) #1 {
466
+ entry:
467
+ %prompt.addr = alloca ptr, align 8
468
+ store ptr %prompt, ptr %prompt.addr, align 8
469
+ ret ptr null
470
+ }
471
+
472
+ ; Function Attrs: noinline nounwind uwtable
473
+ define dso_local ptr @gnutls_strerror(i32 noundef %error) #1 {
474
+ entry:
475
+ %error.addr = alloca i32, align 4
476
+ store i32 %error, ptr %error.addr, align 4
477
+ ret ptr null
478
+ }
479
+
480
+ ; Function Attrs: noinline nounwind uwtable
481
+ define dso_local ptr @gpg_strerror(i32 noundef %a) #1 {
482
+ entry:
483
+ %a.addr = alloca i32, align 4
484
+ store i32 %a, ptr %a.addr, align 4
485
+ ret ptr null
486
+ }
487
+
488
+ ; Function Attrs: noinline nounwind uwtable
489
+ define dso_local ptr @gzerror(ptr noundef %file, ptr noundef %errnum) #1 {
490
+ entry:
491
+ %file.addr = alloca ptr, align 8
492
+ %errnum.addr = alloca ptr, align 8
493
+ store ptr %file, ptr %file.addr, align 8
494
+ store ptr %errnum, ptr %errnum.addr, align 8
495
+ ret ptr null
496
+ }
497
+
498
+ ; Function Attrs: noinline nounwind uwtable
499
+ define dso_local ptr @inet_ntoa(i32 noundef %in) #1 {
500
+ entry:
501
+ %in.addr = alloca i32, align 4
502
+ store i32 %in, ptr %in.addr, align 4
503
+ ret ptr null
504
+ }
505
+
506
+ ; Function Attrs: noinline nounwind uwtable
507
+ define dso_local ptr @initscr() #1 {
508
+ entry:
509
+ ret ptr null
510
+ }
511
+
512
+ ; Function Attrs: noinline nounwind uwtable
513
+ define dso_local ptr @llvm_stacksave() #1 {
514
+ entry:
515
+ ret ptr null
516
+ }
517
+
518
+ ; Function Attrs: noinline nounwind uwtable
519
+ define dso_local ptr @mmap(ptr noundef %addr, i64 noundef %len, i32 noundef %prot, i32 noundef %flags, i32 noundef %fildes, i64 noundef %off) #1 {
520
+ entry:
521
+ %addr.addr = alloca ptr, align 8
522
+ %len.addr = alloca i64, align 8
523
+ %prot.addr = alloca i32, align 4
524
+ %flags.addr = alloca i32, align 4
525
+ %fildes.addr = alloca i32, align 4
526
+ %off.addr = alloca i64, align 8
527
+ store ptr %addr, ptr %addr.addr, align 8
528
+ store i64 %len, ptr %len.addr, align 8
529
+ store i32 %prot, ptr %prot.addr, align 4
530
+ store i32 %flags, ptr %flags.addr, align 4
531
+ store i32 %fildes, ptr %fildes.addr, align 4
532
+ store i64 %off, ptr %off.addr, align 8
533
+ ret ptr null
534
+ }
535
+
536
+ ; Function Attrs: noinline nounwind uwtable
537
+ define dso_local ptr @newwin(i32 noundef %nlines, i32 noundef %ncols, i32 noundef %begin_y, i32 noundef %begin_x) #1 {
538
+ entry:
539
+ %nlines.addr = alloca i32, align 4
540
+ %ncols.addr = alloca i32, align 4
541
+ %begin_y.addr = alloca i32, align 4
542
+ %begin_x.addr = alloca i32, align 4
543
+ store i32 %nlines, ptr %nlines.addr, align 4
544
+ store i32 %ncols, ptr %ncols.addr, align 4
545
+ store i32 %begin_y, ptr %begin_y.addr, align 4
546
+ store i32 %begin_x, ptr %begin_x.addr, align 4
547
+ ret ptr null
548
+ }
549
+
550
+ ; Function Attrs: noinline nounwind uwtable
551
+ define dso_local ptr @nl_langinfo(i32 noundef %item) #1 {
552
+ entry:
553
+ %item.addr = alloca i32, align 4
554
+ store i32 %item, ptr %item.addr, align 4
555
+ ret ptr null
556
+ }
557
+
558
+ ; Function Attrs: noinline nounwind uwtable
559
+ define dso_local ptr @opendir(ptr noundef %name) #1 {
560
+ entry:
561
+ %name.addr = alloca ptr, align 8
562
+ store ptr %name, ptr %name.addr, align 8
563
+ ret ptr null
564
+ }
565
+
566
+ ; Function Attrs: noinline nounwind uwtable
567
+ define dso_local ptr @sbrk(i64 noundef %increment) #1 {
568
+ entry:
569
+ %increment.addr = alloca i64, align 8
570
+ store i64 %increment, ptr %increment.addr, align 8
571
+ ret ptr null
572
+ }
573
+
574
+ ; Function Attrs: noinline nounwind uwtable
575
+ define dso_local ptr @strdup(ptr noundef %s) #1 {
576
+ entry:
577
+ %s.addr = alloca ptr, align 8
578
+ store ptr %s, ptr %s.addr, align 8
579
+ ret ptr null
580
+ }
581
+
582
+ ; Function Attrs: noinline nounwind uwtable
583
+ define dso_local ptr @strerror(i32 noundef %errnum) #1 {
584
+ entry:
585
+ %errnum.addr = alloca i32, align 4
586
+ store i32 %errnum, ptr %errnum.addr, align 4
587
+ ret ptr null
588
+ }
589
+
590
+ ; Function Attrs: noinline nounwind uwtable
591
+ define dso_local ptr @strsignal(i32 noundef %errnum) #1 {
592
+ entry:
593
+ %errnum.addr = alloca i32, align 4
594
+ store i32 %errnum, ptr %errnum.addr, align 4
595
+ ret ptr null
596
+ }
597
+
598
+ ; Function Attrs: noinline nounwind uwtable
599
+ define dso_local ptr @textdomain(ptr noundef %domainname) #1 {
600
+ entry:
601
+ %domainname.addr = alloca ptr, align 8
602
+ store ptr %domainname, ptr %domainname.addr, align 8
603
+ ret ptr null
604
+ }
605
+
606
+ ; Function Attrs: noinline nounwind uwtable
607
+ define dso_local ptr @tgetstr(ptr noundef %id, ptr noundef %area) #1 {
608
+ entry:
609
+ %id.addr = alloca ptr, align 8
610
+ %area.addr = alloca ptr, align 8
611
+ store ptr %id, ptr %id.addr, align 8
612
+ store ptr %area, ptr %area.addr, align 8
613
+ ret ptr null
614
+ }
615
+
616
+ ; Function Attrs: noinline nounwind uwtable
617
+ define dso_local ptr @tigetstr(ptr noundef %capname) #1 {
618
+ entry:
619
+ %capname.addr = alloca ptr, align 8
620
+ store ptr %capname, ptr %capname.addr, align 8
621
+ ret ptr null
622
+ }
623
+
624
+ ; Function Attrs: noinline nounwind uwtable
625
+ define dso_local ptr @tmpnam(ptr noundef %s) #1 {
626
+ entry:
627
+ %s.addr = alloca ptr, align 8
628
+ store ptr %s, ptr %s.addr, align 8
629
+ ret ptr null
630
+ }
631
+
632
+ ; Function Attrs: noinline nounwind uwtable
633
+ define dso_local ptr @ttyname(i32 noundef %fd) #1 {
634
+ entry:
635
+ %fd.addr = alloca i32, align 4
636
+ store i32 %fd, ptr %fd.addr, align 4
637
+ ret ptr null
638
+ }
639
+
640
+ ; Function Attrs: noinline nounwind uwtable
641
+ define dso_local ptr @getcwd(ptr noundef %buf, i64 noundef %size) #1 {
642
+ entry:
643
+ %buf.addr = alloca ptr, align 8
644
+ %size.addr = alloca i64, align 8
645
+ store ptr %buf, ptr %buf.addr, align 8
646
+ store i64 %size, ptr %size.addr, align 8
647
+ ret ptr null
648
+ }
649
+
650
+ ; Function Attrs: noinline nounwind uwtable
651
+ define dso_local ptr @mem_realloc(ptr noundef %ptr, i64 noundef %size) #1 {
652
+ entry:
653
+ %ptr.addr = alloca ptr, align 8
654
+ %size.addr = alloca i64, align 8
655
+ store ptr %ptr, ptr %ptr.addr, align 8
656
+ store i64 %size, ptr %size.addr, align 8
657
+ ret ptr null
658
+ }
659
+
660
+ ; Function Attrs: noinline nounwind uwtable
661
+ define dso_local ptr @realloc(ptr noundef %ptr, i64 noundef %size) #1 {
662
+ entry:
663
+ %ptr.addr = alloca ptr, align 8
664
+ %size.addr = alloca i64, align 8
665
+ store ptr %ptr, ptr %ptr.addr, align 8
666
+ store i64 %size, ptr %size.addr, align 8
667
+ ret ptr null
668
+ }
669
+
670
+ ; Function Attrs: noinline nounwind uwtable
671
+ define dso_local ptr @safe_realloc(ptr noundef %p, i64 noundef %n) #1 {
672
+ entry:
673
+ %p.addr = alloca ptr, align 8
674
+ %n.addr = alloca i64, align 8
675
+ store ptr %p, ptr %p.addr, align 8
676
+ store i64 %n, ptr %n.addr, align 8
677
+ ret ptr null
678
+ }
679
+
680
+ ; Function Attrs: noinline nounwind uwtable
681
+ define dso_local ptr @saferealloc(ptr noundef %p, i64 noundef %n1, i64 noundef %n2) #1 {
682
+ entry:
683
+ %p.addr = alloca ptr, align 8
684
+ %n1.addr = alloca i64, align 8
685
+ %n2.addr = alloca i64, align 8
686
+ store ptr %p, ptr %p.addr, align 8
687
+ store i64 %n1, ptr %n1.addr, align 8
688
+ store i64 %n2, ptr %n2.addr, align 8
689
+ ret ptr null
690
+ }
691
+
692
+ ; Function Attrs: noinline nounwind uwtable
693
+ define dso_local ptr @safexrealloc() #1 {
694
+ entry:
695
+ ret ptr null
696
+ }
697
+
698
+ ; Function Attrs: noinline nounwind uwtable
699
+ define dso_local ptr @strtok(ptr noundef %str, ptr noundef %delim) #1 {
700
+ entry:
701
+ %str.addr = alloca ptr, align 8
702
+ %delim.addr = alloca ptr, align 8
703
+ store ptr %str, ptr %str.addr, align 8
704
+ store ptr %delim, ptr %delim.addr, align 8
705
+ %0 = load ptr, ptr %str.addr, align 8
706
+ ret ptr %0
707
+ }
708
+
709
+ ; Function Attrs: noinline nounwind uwtable
710
+ define dso_local ptr @strtok_r(ptr noundef %str, ptr noundef %delim, ptr noundef %saveptr) #1 {
711
+ entry:
712
+ %str.addr = alloca ptr, align 8
713
+ %delim.addr = alloca ptr, align 8
714
+ %saveptr.addr = alloca ptr, align 8
715
+ store ptr %str, ptr %str.addr, align 8
716
+ store ptr %delim, ptr %delim.addr, align 8
717
+ store ptr %saveptr, ptr %saveptr.addr, align 8
718
+ %0 = load ptr, ptr %str.addr, align 8
719
+ ret ptr %0
720
+ }
721
+
722
+ ; Function Attrs: noinline nounwind uwtable
723
+ define dso_local ptr @strsep(ptr noundef %stringp, ptr noundef %delim) #1 {
724
+ entry:
725
+ %stringp.addr = alloca ptr, align 8
726
+ %delim.addr = alloca ptr, align 8
727
+ store ptr %stringp, ptr %stringp.addr, align 8
728
+ store ptr %delim, ptr %delim.addr, align 8
729
+ %0 = load ptr, ptr %stringp.addr, align 8
730
+ %1 = load ptr, ptr %0, align 8
731
+ ret ptr %1
732
+ }
733
+
734
+ ; Function Attrs: noinline nounwind uwtable
735
+ define dso_local ptr @xrealloc(ptr noundef %ptr, i64 noundef %bytes) #1 {
736
+ entry:
737
+ %ptr.addr = alloca ptr, align 8
738
+ %bytes.addr = alloca i64, align 8
739
+ store ptr %ptr, ptr %ptr.addr, align 8
740
+ store i64 %bytes, ptr %bytes.addr, align 8
741
+ ret ptr null
742
+ }
743
+
744
+ ; Function Attrs: noinline nounwind uwtable
745
+ define dso_local ptr @_Znwm(i64 noundef %size) #1 {
746
+ entry:
747
+ %size.addr = alloca i64, align 8
748
+ store i64 %size, ptr %size.addr, align 8
749
+ ret ptr null
750
+ }
751
+
752
+ ; Function Attrs: noinline nounwind uwtable
753
+ define dso_local ptr @_ZnwmRKSt9nothrow_t(i64 noundef %size, ptr noundef %0) #1 {
754
+ entry:
755
+ %size.addr = alloca i64, align 8
756
+ %.addr = alloca ptr, align 8
757
+ store i64 %size, ptr %size.addr, align 8
758
+ store ptr %0, ptr %.addr, align 8
759
+ ret ptr null
760
+ }
761
+
762
+ ; Function Attrs: noinline nounwind uwtable
763
+ define dso_local ptr @_ZnamRKSt9nothrow_t(i64 noundef %size, ptr noundef %0) #1 {
764
+ entry:
765
+ %size.addr = alloca i64, align 8
766
+ %.addr = alloca ptr, align 8
767
+ store i64 %size, ptr %size.addr, align 8
768
+ store ptr %0, ptr %.addr, align 8
769
+ ret ptr null
770
+ }
771
+
772
+ ; Function Attrs: noinline nounwind uwtable
773
+ define dso_local i32 @asprintf(ptr noalias noundef %strp, ptr noalias noundef %fmt, ...) #1 {
774
+ entry:
775
+ %strp.addr = alloca ptr, align 8
776
+ %fmt.addr = alloca ptr, align 8
777
+ store ptr %strp, ptr %strp.addr, align 8
778
+ store ptr %fmt, ptr %fmt.addr, align 8
779
+ ret i32 0
780
+ }
781
+
782
+ ; Function Attrs: noinline nounwind uwtable
783
+ define dso_local i32 @vasprintf(ptr noundef %strp, ptr noundef %fmt, ptr noundef %ap) #1 {
784
+ entry:
785
+ %strp.addr = alloca ptr, align 8
786
+ %fmt.addr = alloca ptr, align 8
787
+ %ap.addr = alloca ptr, align 8
788
+ store ptr %strp, ptr %strp.addr, align 8
789
+ store ptr %fmt, ptr %fmt.addr, align 8
790
+ store ptr %ap, ptr %ap.addr, align 8
791
+ ret i32 0
792
+ }
793
+
794
+ ; Function Attrs: noinline nounwind uwtable
795
+ define dso_local i32 @db_create(ptr noundef %dbp, ptr noundef %dbenv, i32 noundef %flags) #1 {
796
+ entry:
797
+ %dbp.addr = alloca ptr, align 8
798
+ %dbenv.addr = alloca ptr, align 8
799
+ %flags.addr = alloca i32, align 4
800
+ store ptr %dbp, ptr %dbp.addr, align 8
801
+ store ptr %dbenv, ptr %dbenv.addr, align 8
802
+ store i32 %flags, ptr %flags.addr, align 4
803
+ ret i32 0
804
+ }
805
+
806
+ ; Function Attrs: noinline nounwind uwtable
807
+ define dso_local i32 @gnutls_pkcs12_bag_init(ptr noundef %a) #1 {
808
+ entry:
809
+ %a.addr = alloca ptr, align 8
810
+ store ptr %a, ptr %a.addr, align 8
811
+ ret i32 0
812
+ }
813
+
814
+ ; Function Attrs: noinline nounwind uwtable
815
+ define dso_local i32 @gnutls_pkcs12_init(ptr noundef %a) #1 {
816
+ entry:
817
+ %a.addr = alloca ptr, align 8
818
+ store ptr %a, ptr %a.addr, align 8
819
+ ret i32 0
820
+ }
821
+
822
+ ; Function Attrs: noinline nounwind uwtable
823
+ define dso_local i32 @gnutls_x509_crt_init(ptr noundef %a) #1 {
824
+ entry:
825
+ %a.addr = alloca ptr, align 8
826
+ store ptr %a, ptr %a.addr, align 8
827
+ ret i32 0
828
+ }
829
+
830
+ ; Function Attrs: noinline nounwind uwtable
831
+ define dso_local i32 @gnutls_x509_privkey_init(ptr noundef %a) #1 {
832
+ entry:
833
+ %a.addr = alloca ptr, align 8
834
+ store ptr %a, ptr %a.addr, align 8
835
+ ret i32 0
836
+ }
837
+
838
+ ; Function Attrs: noinline nounwind uwtable
839
+ define dso_local i32 @posix_memalign(ptr noundef %a, i64 noundef %b, i64 noundef %c) #1 {
840
+ entry:
841
+ %a.addr = alloca ptr, align 8
842
+ %b.addr = alloca i64, align 8
843
+ %c.addr = alloca i64, align 8
844
+ store ptr %a, ptr %a.addr, align 8
845
+ store i64 %b, ptr %b.addr, align 8
846
+ store i64 %c, ptr %c.addr, align 8
847
+ ret i32 0
848
+ }
849
+
850
+ ; Function Attrs: noinline nounwind uwtable
851
+ define dso_local i32 @scandir(ptr noalias noundef %dirp, ptr noalias noundef %namelist, ptr noundef %filter, ptr noundef %compar) #1 {
852
+ entry:
853
+ %dirp.addr = alloca ptr, align 8
854
+ %namelist.addr = alloca ptr, align 8
855
+ %filter.addr = alloca ptr, align 8
856
+ %compar.addr = alloca ptr, align 8
857
+ store ptr %dirp, ptr %dirp.addr, align 8
858
+ store ptr %namelist, ptr %namelist.addr, align 8
859
+ store ptr %filter, ptr %filter.addr, align 8
860
+ store ptr %compar, ptr %compar.addr, align 8
861
+ ret i32 0
862
+ }
863
+
864
+ ; Function Attrs: noinline nounwind uwtable
865
+ define dso_local i32 @XmbTextPropertyToTextList(ptr noundef %a, ptr noundef %b, ptr noundef %c, ptr noundef %d) #1 {
866
+ entry:
867
+ %a.addr = alloca ptr, align 8
868
+ %b.addr = alloca ptr, align 8
869
+ %c.addr = alloca ptr, align 8
870
+ %d.addr = alloca ptr, align 8
871
+ store ptr %a, ptr %a.addr, align 8
872
+ store ptr %b, ptr %b.addr, align 8
873
+ store ptr %c, ptr %c.addr, align 8
874
+ store ptr %d, ptr %d.addr, align 8
875
+ ret i32 0
876
+ }
877
+
878
+ ; Function Attrs: noinline nounwind uwtable
879
+ define dso_local void @llvm_memcpy_p0i8_p0i8_i64(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
880
+ entry:
881
+ %dst.addr = alloca ptr, align 8
882
+ %src.addr = alloca ptr, align 8
883
+ %sz.addr = alloca i32, align 4
884
+ %flag.addr = alloca i32, align 4
885
+ store ptr %dst, ptr %dst.addr, align 8
886
+ store ptr %src, ptr %src.addr, align 8
887
+ store i32 %sz, ptr %sz.addr, align 4
888
+ store i32 %flag, ptr %flag.addr, align 4
889
+ ret void
890
+ }
891
+
892
+ ; Function Attrs: noinline nounwind uwtable
893
+ define dso_local void @llvm_memcpy_p0_p0_i64(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
894
+ entry:
895
+ %dst.addr = alloca ptr, align 8
896
+ %src.addr = alloca ptr, align 8
897
+ %sz.addr = alloca i32, align 4
898
+ %flag.addr = alloca i32, align 4
899
+ store ptr %dst, ptr %dst.addr, align 8
900
+ store ptr %src, ptr %src.addr, align 8
901
+ store i32 %sz, ptr %sz.addr, align 4
902
+ store i32 %flag, ptr %flag.addr, align 4
903
+ ret void
904
+ }
905
+
906
+ ; Function Attrs: noinline nounwind uwtable
907
+ define dso_local void @llvm_memcpy_p0i8_p0i8_i32(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
908
+ entry:
909
+ %dst.addr = alloca ptr, align 8
910
+ %src.addr = alloca ptr, align 8
911
+ %sz.addr = alloca i32, align 4
912
+ %flag.addr = alloca i32, align 4
913
+ store ptr %dst, ptr %dst.addr, align 8
914
+ store ptr %src, ptr %src.addr, align 8
915
+ store i32 %sz, ptr %sz.addr, align 4
916
+ store i32 %flag, ptr %flag.addr, align 4
917
+ ret void
918
+ }
919
+
920
+ ; Function Attrs: noinline nounwind uwtable
921
+ define dso_local void @llvm_memcpy_p0_p0_i32(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
922
+ entry:
923
+ %dst.addr = alloca ptr, align 8
924
+ %src.addr = alloca ptr, align 8
925
+ %sz.addr = alloca i32, align 4
926
+ %flag.addr = alloca i32, align 4
927
+ store ptr %dst, ptr %dst.addr, align 8
928
+ store ptr %src, ptr %src.addr, align 8
929
+ store i32 %sz, ptr %sz.addr, align 4
930
+ store i32 %flag, ptr %flag.addr, align 4
931
+ ret void
932
+ }
933
+
934
+ ; Function Attrs: noinline nounwind uwtable
935
+ define dso_local void @llvm_memcpy(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
936
+ entry:
937
+ %dst.addr = alloca ptr, align 8
938
+ %src.addr = alloca ptr, align 8
939
+ %sz.addr = alloca i32, align 4
940
+ %flag.addr = alloca i32, align 4
941
+ store ptr %dst, ptr %dst.addr, align 8
942
+ store ptr %src, ptr %src.addr, align 8
943
+ store i32 %sz, ptr %sz.addr, align 4
944
+ store i32 %flag, ptr %flag.addr, align 4
945
+ ret void
946
+ }
947
+
948
+ ; Function Attrs: noinline nounwind uwtable
949
+ define dso_local void @llvm_memmove(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
950
+ entry:
951
+ %dst.addr = alloca ptr, align 8
952
+ %src.addr = alloca ptr, align 8
953
+ %sz.addr = alloca i32, align 4
954
+ %flag.addr = alloca i32, align 4
955
+ store ptr %dst, ptr %dst.addr, align 8
956
+ store ptr %src, ptr %src.addr, align 8
957
+ store i32 %sz, ptr %sz.addr, align 4
958
+ store i32 %flag, ptr %flag.addr, align 4
959
+ ret void
960
+ }
961
+
962
+ ; Function Attrs: noinline nounwind uwtable
963
+ define dso_local void @llvm_memmove_p0i8_p0i8_i64(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
964
+ entry:
965
+ %dst.addr = alloca ptr, align 8
966
+ %src.addr = alloca ptr, align 8
967
+ %sz.addr = alloca i32, align 4
968
+ %flag.addr = alloca i32, align 4
969
+ store ptr %dst, ptr %dst.addr, align 8
970
+ store ptr %src, ptr %src.addr, align 8
971
+ store i32 %sz, ptr %sz.addr, align 4
972
+ store i32 %flag, ptr %flag.addr, align 4
973
+ ret void
974
+ }
975
+
976
+ ; Function Attrs: noinline nounwind uwtable
977
+ define dso_local void @llvm_memmove_p0_p0_i64(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
978
+ entry:
979
+ %dst.addr = alloca ptr, align 8
980
+ %src.addr = alloca ptr, align 8
981
+ %sz.addr = alloca i32, align 4
982
+ %flag.addr = alloca i32, align 4
983
+ store ptr %dst, ptr %dst.addr, align 8
984
+ store ptr %src, ptr %src.addr, align 8
985
+ store i32 %sz, ptr %sz.addr, align 4
986
+ store i32 %flag, ptr %flag.addr, align 4
987
+ ret void
988
+ }
989
+
990
+ ; Function Attrs: noinline nounwind uwtable
991
+ define dso_local void @llvm_memmove_p0i8_p0i8_i32(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
992
+ entry:
993
+ %dst.addr = alloca ptr, align 8
994
+ %src.addr = alloca ptr, align 8
995
+ %sz.addr = alloca i32, align 4
996
+ %flag.addr = alloca i32, align 4
997
+ store ptr %dst, ptr %dst.addr, align 8
998
+ store ptr %src, ptr %src.addr, align 8
999
+ store i32 %sz, ptr %sz.addr, align 4
1000
+ store i32 %flag, ptr %flag.addr, align 4
1001
+ ret void
1002
+ }
1003
+
1004
+ ; Function Attrs: noinline nounwind uwtable
1005
+ define dso_local void @llvm_memmove_p0_p0_i32(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
1006
+ entry:
1007
+ %dst.addr = alloca ptr, align 8
1008
+ %src.addr = alloca ptr, align 8
1009
+ %sz.addr = alloca i32, align 4
1010
+ %flag.addr = alloca i32, align 4
1011
+ store ptr %dst, ptr %dst.addr, align 8
1012
+ store ptr %src, ptr %src.addr, align 8
1013
+ store i32 %sz, ptr %sz.addr, align 4
1014
+ store i32 %flag, ptr %flag.addr, align 4
1015
+ ret void
1016
+ }
1017
+
1018
+ ; Function Attrs: noinline nounwind uwtable
1019
+ define dso_local void @__memcpy_chk(ptr noundef %dst, ptr noundef %src, i32 noundef %sz, i32 noundef %flag) #1 {
1020
+ entry:
1021
+ %dst.addr = alloca ptr, align 8
1022
+ %src.addr = alloca ptr, align 8
1023
+ %sz.addr = alloca i32, align 4
1024
+ %flag.addr = alloca i32, align 4
1025
+ store ptr %dst, ptr %dst.addr, align 8
1026
+ store ptr %src, ptr %src.addr, align 8
1027
+ store i32 %sz, ptr %sz.addr, align 4
1028
+ store i32 %flag, ptr %flag.addr, align 4
1029
+ ret void
1030
+ }
1031
+
1032
+ ; Function Attrs: noinline nounwind uwtable
1033
+ define dso_local ptr @memmove(ptr noundef %str1, ptr noundef %str2, i64 noundef %n) #1 {
1034
+ entry:
1035
+ %str1.addr = alloca ptr, align 8
1036
+ %str2.addr = alloca ptr, align 8
1037
+ %n.addr = alloca i64, align 8
1038
+ store ptr %str1, ptr %str1.addr, align 8
1039
+ store ptr %str2, ptr %str2.addr, align 8
1040
+ store i64 %n, ptr %n.addr, align 8
1041
+ ret ptr null
1042
+ }
1043
+
1044
+ ; Function Attrs: noinline nounwind uwtable
1045
+ define dso_local void @bcopy(ptr noundef %s1, ptr noundef %s2, i64 noundef %n) #1 {
1046
+ entry:
1047
+ %s1.addr = alloca ptr, align 8
1048
+ %s2.addr = alloca ptr, align 8
1049
+ %n.addr = alloca i64, align 8
1050
+ store ptr %s1, ptr %s1.addr, align 8
1051
+ store ptr %s2, ptr %s2.addr, align 8
1052
+ store i64 %n, ptr %n.addr, align 8
1053
+ ret void
1054
+ }
1055
+
1056
+ ; Function Attrs: noinline nounwind uwtable
1057
+ define dso_local ptr @memccpy(ptr noalias noundef %dest, ptr noalias noundef %src, i32 noundef %c, i64 noundef %count) #1 {
1058
+ entry:
1059
+ %dest.addr = alloca ptr, align 8
1060
+ %src.addr = alloca ptr, align 8
1061
+ %c.addr = alloca i32, align 4
1062
+ %count.addr = alloca i64, align 8
1063
+ store ptr %dest, ptr %dest.addr, align 8
1064
+ store ptr %src, ptr %src.addr, align 8
1065
+ store i32 %c, ptr %c.addr, align 4
1066
+ store i64 %count, ptr %count.addr, align 8
1067
+ ret ptr null
1068
+ }
1069
+
1070
+ ; Function Attrs: noinline nounwind uwtable
1071
+ define dso_local void @__memmove_chk(ptr noundef %dst, ptr noundef %src, i32 noundef %sz) #1 {
1072
+ entry:
1073
+ %dst.addr = alloca ptr, align 8
1074
+ %src.addr = alloca ptr, align 8
1075
+ %sz.addr = alloca i32, align 4
1076
+ store ptr %dst, ptr %dst.addr, align 8
1077
+ store ptr %src, ptr %src.addr, align 8
1078
+ store i32 %sz, ptr %sz.addr, align 4
1079
+ ret void
1080
+ }
1081
+
1082
+ ; Function Attrs: noinline nounwind uwtable
1083
+ define dso_local void @llvm_memset(ptr noundef %dst, i8 noundef %elem, i32 noundef %sz, i32 noundef %flag) #1 {
1084
+ entry:
1085
+ %dst.addr = alloca ptr, align 8
1086
+ %elem.addr = alloca i8, align 1
1087
+ %sz.addr = alloca i32, align 4
1088
+ %flag.addr = alloca i32, align 4
1089
+ store ptr %dst, ptr %dst.addr, align 8
1090
+ store i8 %elem, ptr %elem.addr, align 1
1091
+ store i32 %sz, ptr %sz.addr, align 4
1092
+ store i32 %flag, ptr %flag.addr, align 4
1093
+ ret void
1094
+ }
1095
+
1096
+ ; Function Attrs: noinline nounwind uwtable
1097
+ define dso_local void @llvm_memset_p0i8_i32(ptr noundef %dst, i8 noundef %elem, i32 noundef %sz, i32 noundef %flag) #1 {
1098
+ entry:
1099
+ %dst.addr = alloca ptr, align 8
1100
+ %elem.addr = alloca i8, align 1
1101
+ %sz.addr = alloca i32, align 4
1102
+ %flag.addr = alloca i32, align 4
1103
+ store ptr %dst, ptr %dst.addr, align 8
1104
+ store i8 %elem, ptr %elem.addr, align 1
1105
+ store i32 %sz, ptr %sz.addr, align 4
1106
+ store i32 %flag, ptr %flag.addr, align 4
1107
+ ret void
1108
+ }
1109
+
1110
+ ; Function Attrs: noinline nounwind uwtable
1111
+ define dso_local void @llvm_memset_p0_i32(ptr noundef %dst, i8 noundef %elem, i32 noundef %sz, i32 noundef %flag) #1 {
1112
+ entry:
1113
+ %dst.addr = alloca ptr, align 8
1114
+ %elem.addr = alloca i8, align 1
1115
+ %sz.addr = alloca i32, align 4
1116
+ %flag.addr = alloca i32, align 4
1117
+ store ptr %dst, ptr %dst.addr, align 8
1118
+ store i8 %elem, ptr %elem.addr, align 1
1119
+ store i32 %sz, ptr %sz.addr, align 4
1120
+ store i32 %flag, ptr %flag.addr, align 4
1121
+ ret void
1122
+ }
1123
+
1124
+ ; Function Attrs: noinline nounwind uwtable
1125
+ define dso_local void @llvm_memset_p0i8_i64(ptr noundef %dst, i8 noundef %elem, i32 noundef %sz, i32 noundef %flag) #1 {
1126
+ entry:
1127
+ %dst.addr = alloca ptr, align 8
1128
+ %elem.addr = alloca i8, align 1
1129
+ %sz.addr = alloca i32, align 4
1130
+ %flag.addr = alloca i32, align 4
1131
+ store ptr %dst, ptr %dst.addr, align 8
1132
+ store i8 %elem, ptr %elem.addr, align 1
1133
+ store i32 %sz, ptr %sz.addr, align 4
1134
+ store i32 %flag, ptr %flag.addr, align 4
1135
+ ret void
1136
+ }
1137
+
1138
+ ; Function Attrs: noinline nounwind uwtable
1139
+ define dso_local void @llvm_memset_p0_i64(ptr noundef %dst, i8 noundef %elem, i32 noundef %sz, i32 noundef %flag) #1 {
1140
+ entry:
1141
+ %dst.addr = alloca ptr, align 8
1142
+ %elem.addr = alloca i8, align 1
1143
+ %sz.addr = alloca i32, align 4
1144
+ %flag.addr = alloca i32, align 4
1145
+ store ptr %dst, ptr %dst.addr, align 8
1146
+ store i8 %elem, ptr %elem.addr, align 1
1147
+ store i32 %sz, ptr %sz.addr, align 4
1148
+ store i32 %flag, ptr %flag.addr, align 4
1149
+ ret void
1150
+ }
1151
+
1152
+ ; Function Attrs: noinline nounwind uwtable
1153
+ define dso_local ptr @__memset_chk(ptr noundef %dest, i32 noundef %c, i64 noundef %destlen, i32 noundef %flag) #1 {
1154
+ entry:
1155
+ %dest.addr = alloca ptr, align 8
1156
+ %c.addr = alloca i32, align 4
1157
+ %destlen.addr = alloca i64, align 8
1158
+ %flag.addr = alloca i32, align 4
1159
+ store ptr %dest, ptr %dest.addr, align 8
1160
+ store i32 %c, ptr %c.addr, align 4
1161
+ store i64 %destlen, ptr %destlen.addr, align 8
1162
+ store i32 %flag, ptr %flag.addr, align 4
1163
+ ret ptr null
1164
+ }
1165
+
1166
+ ; Function Attrs: noinline nounwind uwtable
1167
+ define dso_local ptr @wmemset(ptr noundef %dst, i32 noundef %elem, i32 noundef %sz, i32 noundef %flag) #1 {
1168
+ entry:
1169
+ %dst.addr = alloca ptr, align 8
1170
+ %elem.addr = alloca i32, align 4
1171
+ %sz.addr = alloca i32, align 4
1172
+ %flag.addr = alloca i32, align 4
1173
+ store ptr %dst, ptr %dst.addr, align 8
1174
+ store i32 %elem, ptr %elem.addr, align 4
1175
+ store i32 %sz, ptr %sz.addr, align 4
1176
+ store i32 %flag, ptr %flag.addr, align 4
1177
+ ret ptr null
1178
+ }
1179
+
1180
+ ; Function Attrs: noinline nounwind uwtable
1181
+ define dso_local ptr @__strcpy_chk(ptr noundef %dest, ptr noundef %src, i64 noundef %destlen) #1 {
1182
+ entry:
1183
+ %dest.addr = alloca ptr, align 8
1184
+ %src.addr = alloca ptr, align 8
1185
+ %destlen.addr = alloca i64, align 8
1186
+ store ptr %dest, ptr %dest.addr, align 8
1187
+ store ptr %src, ptr %src.addr, align 8
1188
+ store i64 %destlen, ptr %destlen.addr, align 8
1189
+ ret ptr null
1190
+ }
1191
+
1192
+ ; Function Attrs: noinline nounwind uwtable
1193
+ define dso_local ptr @__strcat_chk(ptr noundef %dest, ptr noundef %src, i64 noundef %destlen) #1 {
1194
+ entry:
1195
+ %dest.addr = alloca ptr, align 8
1196
+ %src.addr = alloca ptr, align 8
1197
+ %destlen.addr = alloca i64, align 8
1198
+ store ptr %dest, ptr %dest.addr, align 8
1199
+ store ptr %src, ptr %src.addr, align 8
1200
+ store i64 %destlen, ptr %destlen.addr, align 8
1201
+ ret ptr null
1202
+ }
1203
+
1204
+ ; Function Attrs: noinline nounwind uwtable
1205
+ define dso_local ptr @__wcscat_chk(ptr noundef %dest, ptr noundef %src) #1 {
1206
+ entry:
1207
+ %dest.addr = alloca ptr, align 8
1208
+ %src.addr = alloca ptr, align 8
1209
+ store ptr %dest, ptr %dest.addr, align 8
1210
+ store ptr %src, ptr %src.addr, align 8
1211
+ ret ptr null
1212
+ }
1213
+
1214
+ ; Function Attrs: noinline nounwind uwtable
1215
+ define dso_local ptr @stpcpy(ptr noalias noundef %dst, ptr noalias noundef %src) #1 {
1216
+ entry:
1217
+ %dst.addr = alloca ptr, align 8
1218
+ %src.addr = alloca ptr, align 8
1219
+ store ptr %dst, ptr %dst.addr, align 8
1220
+ store ptr %src, ptr %src.addr, align 8
1221
+ ret ptr null
1222
+ }
1223
+
1224
+ ; Function Attrs: noinline nounwind uwtable
1225
+ define dso_local ptr @strcat(ptr noundef %dest, ptr noundef %src) #1 {
1226
+ entry:
1227
+ %dest.addr = alloca ptr, align 8
1228
+ %src.addr = alloca ptr, align 8
1229
+ store ptr %dest, ptr %dest.addr, align 8
1230
+ store ptr %src, ptr %src.addr, align 8
1231
+ ret ptr null
1232
+ }
1233
+
1234
+ ; Function Attrs: noinline nounwind uwtable
1235
+ define dso_local ptr @wcscat(ptr noundef %dest, ptr noundef %src) #1 {
1236
+ entry:
1237
+ %dest.addr = alloca ptr, align 8
1238
+ %src.addr = alloca ptr, align 8
1239
+ store ptr %dest, ptr %dest.addr, align 8
1240
+ store ptr %src, ptr %src.addr, align 8
1241
+ ret ptr null
1242
+ }
1243
+
1244
+ ; Function Attrs: noinline nounwind uwtable
1245
+ define dso_local ptr @strcpy(ptr noundef %dest, ptr noundef %src) #1 {
1246
+ entry:
1247
+ %dest.addr = alloca ptr, align 8
1248
+ %src.addr = alloca ptr, align 8
1249
+ store ptr %dest, ptr %dest.addr, align 8
1250
+ store ptr %src, ptr %src.addr, align 8
1251
+ ret ptr null
1252
+ }
1253
+
1254
+ ; Function Attrs: noinline nounwind uwtable
1255
+ define dso_local ptr @strncat(ptr noundef %dest, ptr noundef %src, i64 noundef %n) #1 {
1256
+ entry:
1257
+ %dest.addr = alloca ptr, align 8
1258
+ %src.addr = alloca ptr, align 8
1259
+ %n.addr = alloca i64, align 8
1260
+ store ptr %dest, ptr %dest.addr, align 8
1261
+ store ptr %src, ptr %src.addr, align 8
1262
+ store i64 %n, ptr %n.addr, align 8
1263
+ ret ptr null
1264
+ }
1265
+
1266
+ ; Function Attrs: noinline nounwind uwtable
1267
+ define dso_local ptr @wcsncat(ptr noundef %dest, ptr noundef %src, i32 noundef %n) #1 {
1268
+ entry:
1269
+ %dest.addr = alloca ptr, align 8
1270
+ %src.addr = alloca ptr, align 8
1271
+ %n.addr = alloca i32, align 4
1272
+ store ptr %dest, ptr %dest.addr, align 8
1273
+ store ptr %src, ptr %src.addr, align 8
1274
+ store i32 %n, ptr %n.addr, align 4
1275
+ ret ptr null
1276
+ }
1277
+
1278
+ ; Function Attrs: noinline nounwind uwtable
1279
+ define dso_local ptr @__strncat_chk(ptr noundef %dest, ptr noundef %src, i64 noundef %n) #1 {
1280
+ entry:
1281
+ %dest.addr = alloca ptr, align 8
1282
+ %src.addr = alloca ptr, align 8
1283
+ %n.addr = alloca i64, align 8
1284
+ store ptr %dest, ptr %dest.addr, align 8
1285
+ store ptr %src, ptr %src.addr, align 8
1286
+ store i64 %n, ptr %n.addr, align 8
1287
+ ret ptr null
1288
+ }
1289
+
1290
+ ; Function Attrs: noinline nounwind uwtable
1291
+ define dso_local ptr @__wcsncat_chk(ptr noundef %dest, ptr noundef %src, i32 noundef %n) #1 {
1292
+ entry:
1293
+ %dest.addr = alloca ptr, align 8
1294
+ %src.addr = alloca ptr, align 8
1295
+ %n.addr = alloca i32, align 4
1296
+ store ptr %dest, ptr %dest.addr, align 8
1297
+ store ptr %src, ptr %src.addr, align 8
1298
+ store i32 %n, ptr %n.addr, align 4
1299
+ ret ptr null
1300
+ }
1301
+
1302
+ ; Function Attrs: noinline nounwind uwtable
1303
+ define dso_local ptr @strncpy(ptr noundef %dest, ptr noundef %src, i64 noundef %n) #1 {
1304
+ entry:
1305
+ %dest.addr = alloca ptr, align 8
1306
+ %src.addr = alloca ptr, align 8
1307
+ %n.addr = alloca i64, align 8
1308
+ store ptr %dest, ptr %dest.addr, align 8
1309
+ store ptr %src, ptr %src.addr, align 8
1310
+ store i64 %n, ptr %n.addr, align 8
1311
+ ret ptr null
1312
+ }
1313
+
1314
+ ; Function Attrs: noinline nounwind uwtable
1315
+ define dso_local ptr @wcscpy(ptr noundef %dest, ptr noundef %src) #1 {
1316
+ entry:
1317
+ %dest.addr = alloca ptr, align 8
1318
+ %src.addr = alloca ptr, align 8
1319
+ store ptr %dest, ptr %dest.addr, align 8
1320
+ store ptr %src, ptr %src.addr, align 8
1321
+ ret ptr null
1322
+ }
1323
+
1324
+ ; Function Attrs: noinline nounwind uwtable
1325
+ define dso_local i64 @iconv(ptr noundef %cd, ptr noalias noundef %inbuf, ptr noalias noundef %inbytesleft, ptr noalias noundef %outbuf, ptr noalias noundef %outbytesleft) #1 {
1326
+ entry:
1327
+ %cd.addr = alloca ptr, align 8
1328
+ %inbuf.addr = alloca ptr, align 8
1329
+ %inbytesleft.addr = alloca ptr, align 8
1330
+ %outbuf.addr = alloca ptr, align 8
1331
+ %outbytesleft.addr = alloca ptr, align 8
1332
+ store ptr %cd, ptr %cd.addr, align 8
1333
+ store ptr %inbuf, ptr %inbuf.addr, align 8
1334
+ store ptr %inbytesleft, ptr %inbytesleft.addr, align 8
1335
+ store ptr %outbuf, ptr %outbuf.addr, align 8
1336
+ store ptr %outbytesleft, ptr %outbytesleft.addr, align 8
1337
+ ret i64 0
1338
+ }
1339
+
1340
+ ; Function Attrs: noinline nounwind uwtable
1341
+ define dso_local ptr @_ZNSt5arrayIPK1ALm2EE4backEv(ptr noundef %arg) #1 {
1342
+ entry:
1343
+ %arg.addr = alloca ptr, align 8
1344
+ %ptr1 = alloca ptr, align 8
1345
+ %ptr2 = alloca ptr, align 8
1346
+ store ptr %arg, ptr %arg.addr, align 8
1347
+ %0 = load ptr, ptr %arg.addr, align 8
1348
+ %add.ptr = getelementptr inbounds i8, ptr %0, i64 0
1349
+ store ptr %add.ptr, ptr %ptr1, align 8
1350
+ %1 = load ptr, ptr %ptr1, align 8
1351
+ %add.ptr1 = getelementptr inbounds i8, ptr %1, i64 0
1352
+ store ptr %add.ptr1, ptr %ptr2, align 8
1353
+ %2 = load ptr, ptr %ptr2, align 8
1354
+ ret ptr %2
1355
+ }
1356
+
1357
+ ; Function Attrs: noinline nounwind uwtable
1358
+ define dso_local ptr @SyGetmem(i64 noundef %size) #1 {
1359
+ entry:
1360
+ %size.addr = alloca i64, align 8
1361
+ store i64 %size, ptr %size.addr, align 8
1362
+ ret ptr null
1363
+ }
1364
+
1365
+ ; Function Attrs: noinline nounwind uwtable
1366
+ define dso_local ptr @__rawmemchr(ptr noundef %s, i32 noundef %c) #1 {
1367
+ entry:
1368
+ %s.addr = alloca ptr, align 8
1369
+ %c.addr = alloca i32, align 4
1370
+ store ptr %s, ptr %s.addr, align 8
1371
+ store i32 %c, ptr %c.addr, align 4
1372
+ %0 = load ptr, ptr %s.addr, align 8
1373
+ ret ptr %0
1374
+ }
1375
+
1376
+ ; Function Attrs: noinline nounwind uwtable
1377
+ define dso_local ptr @jpeg_std_error(ptr noundef %a) #1 {
1378
+ entry:
1379
+ %a.addr = alloca ptr, align 8
1380
+ store ptr %a, ptr %a.addr, align 8
1381
+ %0 = load ptr, ptr %a.addr, align 8
1382
+ ret ptr %0
1383
+ }
1384
+
1385
+ ; Function Attrs: noinline nounwind uwtable
1386
+ define dso_local ptr @fgets(ptr noundef %str, i32 noundef %n, ptr noundef %stream) #1 {
1387
+ entry:
1388
+ %str.addr = alloca ptr, align 8
1389
+ %n.addr = alloca i32, align 4
1390
+ %stream.addr = alloca ptr, align 8
1391
+ store ptr %str, ptr %str.addr, align 8
1392
+ store i32 %n, ptr %n.addr, align 4
1393
+ store ptr %stream, ptr %stream.addr, align 8
1394
+ %0 = load ptr, ptr %str.addr, align 8
1395
+ ret ptr %0
1396
+ }
1397
+
1398
+ ; Function Attrs: noinline nounwind uwtable
1399
+ define dso_local ptr @fgets_unlocked(ptr noundef %str, i32 noundef %n, ptr noundef %stream) #1 {
1400
+ entry:
1401
+ %str.addr = alloca ptr, align 8
1402
+ %n.addr = alloca i32, align 4
1403
+ %stream.addr = alloca ptr, align 8
1404
+ store ptr %str, ptr %str.addr, align 8
1405
+ store i32 %n, ptr %n.addr, align 4
1406
+ store ptr %stream, ptr %stream.addr, align 8
1407
+ %0 = load ptr, ptr %str.addr, align 8
1408
+ ret ptr %0
1409
+ }
1410
+
1411
+ ; Function Attrs: noinline nounwind uwtable
1412
+ define dso_local ptr @gets(ptr noundef %str) #1 {
1413
+ entry:
1414
+ %str.addr = alloca ptr, align 8
1415
+ store ptr %str, ptr %str.addr, align 8
1416
+ %0 = load ptr, ptr %str.addr, align 8
1417
+ ret ptr %0
1418
+ }
1419
+
1420
+ ; Function Attrs: noinline nounwind uwtable
1421
+ define dso_local ptr @memchr(ptr noundef %str, i32 noundef %c, i64 noundef %n) #1 {
1422
+ entry:
1423
+ %str.addr = alloca ptr, align 8
1424
+ %c.addr = alloca i32, align 4
1425
+ %n.addr = alloca i64, align 8
1426
+ store ptr %str, ptr %str.addr, align 8
1427
+ store i32 %c, ptr %c.addr, align 4
1428
+ store i64 %n, ptr %n.addr, align 8
1429
+ %0 = load ptr, ptr %str.addr, align 8
1430
+ ret ptr %0
1431
+ }
1432
+
1433
+ ; Function Attrs: noinline nounwind uwtable
1434
+ define dso_local ptr @memrchr(ptr noundef %str, i32 noundef %c, i64 noundef %n) #1 {
1435
+ entry:
1436
+ %str.addr = alloca ptr, align 8
1437
+ %c.addr = alloca i32, align 4
1438
+ %n.addr = alloca i64, align 8
1439
+ store ptr %str, ptr %str.addr, align 8
1440
+ store i32 %c, ptr %c.addr, align 4
1441
+ store i64 %n, ptr %n.addr, align 8
1442
+ %0 = load ptr, ptr %str.addr, align 8
1443
+ ret ptr %0
1444
+ }
1445
+
1446
+ ; Function Attrs: noinline nounwind uwtable
1447
+ define dso_local ptr @mremap(ptr noundef %old_address, i64 noundef %old_size, i64 noundef %new_size, i32 noundef %flags) #1 {
1448
+ entry:
1449
+ %old_address.addr = alloca ptr, align 8
1450
+ %old_size.addr = alloca i64, align 8
1451
+ %new_size.addr = alloca i64, align 8
1452
+ %flags.addr = alloca i32, align 4
1453
+ store ptr %old_address, ptr %old_address.addr, align 8
1454
+ store i64 %old_size, ptr %old_size.addr, align 8
1455
+ store i64 %new_size, ptr %new_size.addr, align 8
1456
+ store i32 %flags, ptr %flags.addr, align 4
1457
+ %0 = load ptr, ptr %old_address.addr, align 8
1458
+ ret ptr %0
1459
+ }
1460
+
1461
+ ; Function Attrs: noinline nounwind uwtable
1462
+ define dso_local ptr @strchr(ptr noundef %str, i32 noundef %c) #1 {
1463
+ entry:
1464
+ %str.addr = alloca ptr, align 8
1465
+ %c.addr = alloca i32, align 4
1466
+ store ptr %str, ptr %str.addr, align 8
1467
+ store i32 %c, ptr %c.addr, align 4
1468
+ %0 = load ptr, ptr %str.addr, align 8
1469
+ ret ptr %0
1470
+ }
1471
+
1472
+ ; Function Attrs: noinline nounwind uwtable
1473
+ define dso_local ptr @__strchrnull(ptr noundef %s, i32 noundef %c) #1 {
1474
+ entry:
1475
+ %s.addr = alloca ptr, align 8
1476
+ %c.addr = alloca i32, align 4
1477
+ store ptr %s, ptr %s.addr, align 8
1478
+ store i32 %c, ptr %c.addr, align 4
1479
+ %0 = load ptr, ptr %s.addr, align 8
1480
+ ret ptr %0
1481
+ }
1482
+
1483
+ ; Function Attrs: noinline nounwind uwtable
1484
+ define dso_local ptr @strcasestr(ptr noundef %haystack, ptr noundef %needle) #1 {
1485
+ entry:
1486
+ %haystack.addr = alloca ptr, align 8
1487
+ %needle.addr = alloca ptr, align 8
1488
+ store ptr %haystack, ptr %haystack.addr, align 8
1489
+ store ptr %needle, ptr %needle.addr, align 8
1490
+ %0 = load ptr, ptr %haystack.addr, align 8
1491
+ ret ptr %0
1492
+ }
1493
+
1494
+ ; Function Attrs: noinline nounwind uwtable
1495
+ define dso_local ptr @index(ptr noundef %s, i32 noundef %c) #1 {
1496
+ entry:
1497
+ %s.addr = alloca ptr, align 8
1498
+ %c.addr = alloca i32, align 4
1499
+ store ptr %s, ptr %s.addr, align 8
1500
+ store i32 %c, ptr %c.addr, align 4
1501
+ %0 = load ptr, ptr %s.addr, align 8
1502
+ ret ptr %0
1503
+ }
1504
+
1505
+ ; Function Attrs: noinline nounwind uwtable
1506
+ define dso_local ptr @rindex(ptr noundef %s, i32 noundef %c) #1 {
1507
+ entry:
1508
+ %s.addr = alloca ptr, align 8
1509
+ %c.addr = alloca i32, align 4
1510
+ store ptr %s, ptr %s.addr, align 8
1511
+ store i32 %c, ptr %c.addr, align 4
1512
+ %0 = load ptr, ptr %s.addr, align 8
1513
+ ret ptr %0
1514
+ }
1515
+
1516
+ ; Function Attrs: noinline nounwind uwtable
1517
+ define dso_local ptr @strerror_r(i32 noundef %errnum, ptr noundef %buf, i64 noundef %buflen) #1 {
1518
+ entry:
1519
+ %errnum.addr = alloca i32, align 4
1520
+ %buf.addr = alloca ptr, align 8
1521
+ %buflen.addr = alloca i64, align 8
1522
+ store i32 %errnum, ptr %errnum.addr, align 4
1523
+ store ptr %buf, ptr %buf.addr, align 8
1524
+ store i64 %buflen, ptr %buflen.addr, align 8
1525
+ %0 = load ptr, ptr %buf.addr, align 8
1526
+ ret ptr %0
1527
+ }
1528
+
1529
+ ; Function Attrs: noinline nounwind uwtable
1530
+ define dso_local ptr @strpbrk(ptr noundef %str1, ptr noundef %str2) #1 {
1531
+ entry:
1532
+ %str1.addr = alloca ptr, align 8
1533
+ %str2.addr = alloca ptr, align 8
1534
+ store ptr %str1, ptr %str1.addr, align 8
1535
+ store ptr %str2, ptr %str2.addr, align 8
1536
+ %0 = load ptr, ptr %str1.addr, align 8
1537
+ ret ptr %0
1538
+ }
1539
+
1540
+ ; Function Attrs: noinline nounwind uwtable
1541
+ define dso_local ptr @strptime(ptr noundef %s, ptr noundef %format, ptr noundef %tm) #1 {
1542
+ entry:
1543
+ %s.addr = alloca ptr, align 8
1544
+ %format.addr = alloca ptr, align 8
1545
+ %tm.addr = alloca ptr, align 8
1546
+ store ptr %s, ptr %s.addr, align 8
1547
+ store ptr %format, ptr %format.addr, align 8
1548
+ store ptr %tm, ptr %tm.addr, align 8
1549
+ %0 = load ptr, ptr %s.addr, align 8
1550
+ ret ptr %0
1551
+ }
1552
+
1553
+ ; Function Attrs: noinline nounwind uwtable
1554
+ define dso_local ptr @strrchr(ptr noundef %str, i32 noundef %c) #1 {
1555
+ entry:
1556
+ %str.addr = alloca ptr, align 8
1557
+ %c.addr = alloca i32, align 4
1558
+ store ptr %str, ptr %str.addr, align 8
1559
+ store i32 %c, ptr %c.addr, align 4
1560
+ %0 = load ptr, ptr %str.addr, align 8
1561
+ ret ptr %0
1562
+ }
1563
+
1564
+ ; Function Attrs: noinline nounwind uwtable
1565
+ define dso_local ptr @strstr(ptr noundef %haystack, ptr noundef %needle) #1 {
1566
+ entry:
1567
+ %haystack.addr = alloca ptr, align 8
1568
+ %needle.addr = alloca ptr, align 8
1569
+ store ptr %haystack, ptr %haystack.addr, align 8
1570
+ store ptr %needle, ptr %needle.addr, align 8
1571
+ %0 = load ptr, ptr %haystack.addr, align 8
1572
+ ret ptr %0
1573
+ }
1574
+
1575
+ ; Function Attrs: noinline nounwind uwtable
1576
+ define dso_local ptr @tmpnam_r(ptr noundef %s) #1 {
1577
+ entry:
1578
+ %s.addr = alloca ptr, align 8
1579
+ store ptr %s, ptr %s.addr, align 8
1580
+ %0 = load ptr, ptr %s.addr, align 8
1581
+ ret ptr %0
1582
+ }
1583
+
1584
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1585
+ define dso_local i32 @isalnum(i32 noundef %character) #4 {
1586
+ entry:
1587
+ %character.addr = alloca i32, align 4
1588
+ store i32 %character, ptr %character.addr, align 4
1589
+ %0 = load i32, ptr %character.addr, align 4
1590
+ ret i32 %0
1591
+ }
1592
+
1593
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1594
+ define dso_local i32 @isalpha(i32 noundef %character) #4 {
1595
+ entry:
1596
+ %character.addr = alloca i32, align 4
1597
+ store i32 %character, ptr %character.addr, align 4
1598
+ %0 = load i32, ptr %character.addr, align 4
1599
+ ret i32 %0
1600
+ }
1601
+
1602
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1603
+ define dso_local i32 @isblank(i32 noundef %character) #4 {
1604
+ entry:
1605
+ %character.addr = alloca i32, align 4
1606
+ store i32 %character, ptr %character.addr, align 4
1607
+ %0 = load i32, ptr %character.addr, align 4
1608
+ ret i32 %0
1609
+ }
1610
+
1611
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1612
+ define dso_local i32 @iscntrl(i32 noundef %c) #4 {
1613
+ entry:
1614
+ %c.addr = alloca i32, align 4
1615
+ store i32 %c, ptr %c.addr, align 4
1616
+ %0 = load i32, ptr %c.addr, align 4
1617
+ ret i32 %0
1618
+ }
1619
+
1620
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1621
+ define dso_local i32 @isdigit(i32 noundef %c) #4 {
1622
+ entry:
1623
+ %c.addr = alloca i32, align 4
1624
+ store i32 %c, ptr %c.addr, align 4
1625
+ %0 = load i32, ptr %c.addr, align 4
1626
+ ret i32 %0
1627
+ }
1628
+
1629
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1630
+ define dso_local i32 @isgraph(i32 noundef %c) #4 {
1631
+ entry:
1632
+ %c.addr = alloca i32, align 4
1633
+ store i32 %c, ptr %c.addr, align 4
1634
+ %0 = load i32, ptr %c.addr, align 4
1635
+ ret i32 %0
1636
+ }
1637
+
1638
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1639
+ define dso_local i32 @islower(i32 noundef %arg) #4 {
1640
+ entry:
1641
+ %arg.addr = alloca i32, align 4
1642
+ store i32 %arg, ptr %arg.addr, align 4
1643
+ %0 = load i32, ptr %arg.addr, align 4
1644
+ ret i32 %0
1645
+ }
1646
+
1647
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1648
+ define dso_local i32 @isprint(i32 noundef %c) #4 {
1649
+ entry:
1650
+ %c.addr = alloca i32, align 4
1651
+ store i32 %c, ptr %c.addr, align 4
1652
+ %0 = load i32, ptr %c.addr, align 4
1653
+ ret i32 %0
1654
+ }
1655
+
1656
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1657
+ define dso_local i32 @ispunct(i32 noundef %argument) #4 {
1658
+ entry:
1659
+ %argument.addr = alloca i32, align 4
1660
+ store i32 %argument, ptr %argument.addr, align 4
1661
+ %0 = load i32, ptr %argument.addr, align 4
1662
+ ret i32 %0
1663
+ }
1664
+
1665
+ ; Function Attrs: noinline nounwind uwtable
1666
+ define dso_local i32 @isspace(i8 noundef %c) #1 {
1667
+ entry:
1668
+ %c.addr = alloca i8, align 1
1669
+ store i8 %c, ptr %c.addr, align 1
1670
+ %0 = load i8, ptr %c.addr, align 1
1671
+ %conv = zext i8 %0 to i32
1672
+ ret i32 %conv
1673
+ }
1674
+
1675
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1676
+ define dso_local i32 @isupper(i32 noundef %c) #4 {
1677
+ entry:
1678
+ %c.addr = alloca i32, align 4
1679
+ store i32 %c, ptr %c.addr, align 4
1680
+ %0 = load i32, ptr %c.addr, align 4
1681
+ ret i32 %0
1682
+ }
1683
+
1684
+ ; Function Attrs: noinline nounwind willreturn memory(read) uwtable
1685
+ define dso_local i32 @isxdigit(i32 noundef %c) #4 {
1686
+ entry:
1687
+ %c.addr = alloca i32, align 4
1688
+ store i32 %c, ptr %c.addr, align 4
1689
+ %0 = load i32, ptr %c.addr, align 4
1690
+ ret i32 %0
1691
+ }
1692
+
1693
+ ; Function Attrs: noinline nounwind uwtable
1694
+ define dso_local ptr @asctime_r(ptr noundef %tm, ptr noundef %buf) #1 {
1695
+ entry:
1696
+ %tm.addr = alloca ptr, align 8
1697
+ %buf.addr = alloca ptr, align 8
1698
+ store ptr %tm, ptr %tm.addr, align 8
1699
+ store ptr %buf, ptr %buf.addr, align 8
1700
+ %0 = load ptr, ptr %buf.addr, align 8
1701
+ ret ptr %0
1702
+ }
1703
+
1704
+ ; Function Attrs: noinline nounwind uwtable
1705
+ define dso_local ptr @bsearch(ptr noundef %key, ptr noundef %base, i64 noundef %nitems, i64 noundef %size, ptr noundef %compar) #1 {
1706
+ entry:
1707
+ %key.addr = alloca ptr, align 8
1708
+ %base.addr = alloca ptr, align 8
1709
+ %nitems.addr = alloca i64, align 8
1710
+ %size.addr = alloca i64, align 8
1711
+ %compar.addr = alloca ptr, align 8
1712
+ store ptr %key, ptr %key.addr, align 8
1713
+ store ptr %base, ptr %base.addr, align 8
1714
+ store i64 %nitems, ptr %nitems.addr, align 8
1715
+ store i64 %size, ptr %size.addr, align 8
1716
+ store ptr %compar, ptr %compar.addr, align 8
1717
+ %0 = load ptr, ptr %base.addr, align 8
1718
+ ret ptr %0
1719
+ }
1720
+
1721
+ ; Function Attrs: noinline nounwind uwtable
1722
+ define dso_local ptr @getmntent_r(ptr noundef %fp, ptr noundef %mntbuf, ptr noundef %buf, i32 noundef %buflen) #1 {
1723
+ entry:
1724
+ %fp.addr = alloca ptr, align 8
1725
+ %mntbuf.addr = alloca ptr, align 8
1726
+ %buf.addr = alloca ptr, align 8
1727
+ %buflen.addr = alloca i32, align 4
1728
+ store ptr %fp, ptr %fp.addr, align 8
1729
+ store ptr %mntbuf, ptr %mntbuf.addr, align 8
1730
+ store ptr %buf, ptr %buf.addr, align 8
1731
+ store i32 %buflen, ptr %buflen.addr, align 4
1732
+ %0 = load ptr, ptr %mntbuf.addr, align 8
1733
+ ret ptr %0
1734
+ }
1735
+
1736
+ ; Function Attrs: noinline nounwind uwtable
1737
+ define dso_local ptr @gmtime_r(ptr noundef %timer, ptr noundef %buf) #1 {
1738
+ entry:
1739
+ %timer.addr = alloca ptr, align 8
1740
+ %buf.addr = alloca ptr, align 8
1741
+ store ptr %timer, ptr %timer.addr, align 8
1742
+ store ptr %buf, ptr %buf.addr, align 8
1743
+ %0 = load ptr, ptr %buf.addr, align 8
1744
+ ret ptr %0
1745
+ }
1746
+
1747
+ ; Function Attrs: noinline nounwind uwtable
1748
+ define dso_local ptr @gzgets(ptr noundef %file, ptr noundef %buf, i32 noundef %len) #1 {
1749
+ entry:
1750
+ %file.addr = alloca ptr, align 8
1751
+ %buf.addr = alloca ptr, align 8
1752
+ %len.addr = alloca i32, align 4
1753
+ store ptr %file, ptr %file.addr, align 8
1754
+ store ptr %buf, ptr %buf.addr, align 8
1755
+ store i32 %len, ptr %len.addr, align 4
1756
+ %0 = load ptr, ptr %buf.addr, align 8
1757
+ ret ptr %0
1758
+ }
1759
+
1760
+ ; Function Attrs: noinline nounwind uwtable
1761
+ define dso_local ptr @localtime_r(ptr noundef %timep, ptr noundef %result) #1 {
1762
+ entry:
1763
+ %timep.addr = alloca ptr, align 8
1764
+ %result.addr = alloca ptr, align 8
1765
+ store ptr %timep, ptr %timep.addr, align 8
1766
+ store ptr %result, ptr %result.addr, align 8
1767
+ %0 = load ptr, ptr %result.addr, align 8
1768
+ ret ptr %0
1769
+ }
1770
+
1771
+ ; Function Attrs: noinline nounwind uwtable
1772
+ define dso_local ptr @realpath(ptr noalias noundef %path, ptr noalias noundef %resolved_path) #1 {
1773
+ entry:
1774
+ %path.addr = alloca ptr, align 8
1775
+ %resolved_path.addr = alloca ptr, align 8
1776
+ store ptr %path, ptr %path.addr, align 8
1777
+ store ptr %resolved_path, ptr %resolved_path.addr, align 8
1778
+ %0 = load ptr, ptr %resolved_path.addr, align 8
1779
+ ret ptr %0
1780
+ }
1781
+
1782
+ ; Function Attrs: noinline nounwind uwtable
1783
+ define dso_local ptr @freopen64(ptr noundef %voidname, ptr noundef %mode, ptr noundef %fp) #1 {
1784
+ entry:
1785
+ %voidname.addr = alloca ptr, align 8
1786
+ %mode.addr = alloca ptr, align 8
1787
+ %fp.addr = alloca ptr, align 8
1788
+ store ptr %voidname, ptr %voidname.addr, align 8
1789
+ store ptr %mode, ptr %mode.addr, align 8
1790
+ store ptr %fp, ptr %fp.addr, align 8
1791
+ %0 = load ptr, ptr %fp.addr, align 8
1792
+ ret ptr %0
1793
+ }
1794
+
1795
+ ; Function Attrs: noinline nounwind uwtable
1796
+ define dso_local ptr @freopen(ptr noundef %voidname, ptr noundef %mode, ptr noundef %fp) #1 {
1797
+ entry:
1798
+ %voidname.addr = alloca ptr, align 8
1799
+ %mode.addr = alloca ptr, align 8
1800
+ %fp.addr = alloca ptr, align 8
1801
+ store ptr %voidname, ptr %voidname.addr, align 8
1802
+ store ptr %mode, ptr %mode.addr, align 8
1803
+ store ptr %fp, ptr %fp.addr, align 8
1804
+ %0 = load ptr, ptr %fp.addr, align 8
1805
+ ret ptr %0
1806
+ }
1807
+
1808
+ ; Function Attrs: noinline nounwind uwtable
1809
+ define dso_local ptr @inet_ntop(i32 noundef %af, ptr noalias noundef %src, ptr noalias noundef %dst, i32 noundef %size) #1 {
1810
+ entry:
1811
+ %af.addr = alloca i32, align 4
1812
+ %src.addr = alloca ptr, align 8
1813
+ %dst.addr = alloca ptr, align 8
1814
+ %size.addr = alloca i32, align 4
1815
+ store i32 %af, ptr %af.addr, align 4
1816
+ store ptr %src, ptr %src.addr, align 8
1817
+ store ptr %dst, ptr %dst.addr, align 8
1818
+ store i32 %size, ptr %size.addr, align 4
1819
+ %0 = load ptr, ptr %dst.addr, align 8
1820
+ ret ptr %0
1821
+ }
1822
+
1823
+ ; Function Attrs: noinline nounwind uwtable
1824
+ define dso_local double @strtod(ptr noundef %str, ptr noundef %endptr) #1 {
1825
+ entry:
1826
+ %str.addr = alloca ptr, align 8
1827
+ %endptr.addr = alloca ptr, align 8
1828
+ store ptr %str, ptr %str.addr, align 8
1829
+ store ptr %endptr, ptr %endptr.addr, align 8
1830
+ %0 = load ptr, ptr %str.addr, align 8
1831
+ %1 = load ptr, ptr %endptr.addr, align 8
1832
+ store ptr %0, ptr %1, align 8
1833
+ ret double 0.000000e+00
1834
+ }
1835
+
1836
+ ; Function Attrs: noinline nounwind uwtable
1837
+ define dso_local double @strtod_l(ptr noundef %str, ptr noundef %endptr, ptr noundef %loc) #1 {
1838
+ entry:
1839
+ %str.addr = alloca ptr, align 8
1840
+ %endptr.addr = alloca ptr, align 8
1841
+ %loc.addr = alloca ptr, align 8
1842
+ store ptr %str, ptr %str.addr, align 8
1843
+ store ptr %endptr, ptr %endptr.addr, align 8
1844
+ store ptr %loc, ptr %loc.addr, align 8
1845
+ %0 = load ptr, ptr %str.addr, align 8
1846
+ %1 = load ptr, ptr %endptr.addr, align 8
1847
+ store ptr %0, ptr %1, align 8
1848
+ ret double 0.000000e+00
1849
+ }
1850
+
1851
+ ; Function Attrs: noinline nounwind uwtable
1852
+ define dso_local float @strtof(ptr noundef %nptr, ptr noundef %endptr) #1 {
1853
+ entry:
1854
+ %nptr.addr = alloca ptr, align 8
1855
+ %endptr.addr = alloca ptr, align 8
1856
+ store ptr %nptr, ptr %nptr.addr, align 8
1857
+ store ptr %endptr, ptr %endptr.addr, align 8
1858
+ %0 = load ptr, ptr %nptr.addr, align 8
1859
+ %1 = load ptr, ptr %endptr.addr, align 8
1860
+ store ptr %0, ptr %1, align 8
1861
+ ret float 0.000000e+00
1862
+ }
1863
+
1864
+ ; Function Attrs: noinline nounwind uwtable
1865
+ define dso_local float @strtof_l(ptr noundef %nptr, ptr noundef %endptr, ptr noundef %loc) #1 {
1866
+ entry:
1867
+ %nptr.addr = alloca ptr, align 8
1868
+ %endptr.addr = alloca ptr, align 8
1869
+ %loc.addr = alloca ptr, align 8
1870
+ store ptr %nptr, ptr %nptr.addr, align 8
1871
+ store ptr %endptr, ptr %endptr.addr, align 8
1872
+ store ptr %loc, ptr %loc.addr, align 8
1873
+ %0 = load ptr, ptr %nptr.addr, align 8
1874
+ %1 = load ptr, ptr %endptr.addr, align 8
1875
+ store ptr %0, ptr %1, align 8
1876
+ ret float 0.000000e+00
1877
+ }
1878
+
1879
+ ; Function Attrs: noinline nounwind uwtable
1880
+ define dso_local i64 @strtol(ptr noundef %str, ptr noundef %endptr, i32 noundef %base) #1 {
1881
+ entry:
1882
+ %str.addr = alloca ptr, align 8
1883
+ %endptr.addr = alloca ptr, align 8
1884
+ %base.addr = alloca i32, align 4
1885
+ store ptr %str, ptr %str.addr, align 8
1886
+ store ptr %endptr, ptr %endptr.addr, align 8
1887
+ store i32 %base, ptr %base.addr, align 4
1888
+ %0 = load ptr, ptr %str.addr, align 8
1889
+ %1 = load ptr, ptr %endptr.addr, align 8
1890
+ store ptr %0, ptr %1, align 8
1891
+ ret i64 0
1892
+ }
1893
+
1894
+ ; Function Attrs: noinline nounwind uwtable
1895
+ define dso_local i64 @strtoll(ptr noundef %str, ptr noundef %endptr, i32 noundef %base) #1 {
1896
+ entry:
1897
+ %str.addr = alloca ptr, align 8
1898
+ %endptr.addr = alloca ptr, align 8
1899
+ %base.addr = alloca i32, align 4
1900
+ store ptr %str, ptr %str.addr, align 8
1901
+ store ptr %endptr, ptr %endptr.addr, align 8
1902
+ store i32 %base, ptr %base.addr, align 4
1903
+ %0 = load ptr, ptr %str.addr, align 8
1904
+ %1 = load ptr, ptr %endptr.addr, align 8
1905
+ store ptr %0, ptr %1, align 8
1906
+ ret i64 0
1907
+ }
1908
+
1909
+ ; Function Attrs: noinline nounwind uwtable
1910
+ define dso_local fp128 @strtold(ptr noundef %str, ptr noundef %endptr) #1 {
1911
+ entry:
1912
+ %str.addr = alloca ptr, align 8
1913
+ %endptr.addr = alloca ptr, align 8
1914
+ store ptr %str, ptr %str.addr, align 8
1915
+ store ptr %endptr, ptr %endptr.addr, align 8
1916
+ %0 = load ptr, ptr %str.addr, align 8
1917
+ %1 = load ptr, ptr %endptr.addr, align 8
1918
+ store ptr %0, ptr %1, align 8
1919
+ ret fp128 0xL00000000000000000000000000000000
1920
+ }
1921
+
1922
+ ; Function Attrs: noinline nounwind uwtable
1923
+ define dso_local i64 @strtoul(ptr noundef %str, ptr noundef %endptr, i32 noundef %base) #1 {
1924
+ entry:
1925
+ %str.addr = alloca ptr, align 8
1926
+ %endptr.addr = alloca ptr, align 8
1927
+ %base.addr = alloca i32, align 4
1928
+ store ptr %str, ptr %str.addr, align 8
1929
+ store ptr %endptr, ptr %endptr.addr, align 8
1930
+ store i32 %base, ptr %base.addr, align 4
1931
+ %0 = load ptr, ptr %str.addr, align 8
1932
+ %1 = load ptr, ptr %endptr.addr, align 8
1933
+ store ptr %0, ptr %1, align 8
1934
+ ret i64 0
1935
+ }
1936
+
1937
+ ; Function Attrs: noinline nounwind uwtable
1938
+ define dso_local i64 @strtoull(ptr noundef %str, ptr noundef %endptr, i32 noundef %base) #1 {
1939
+ entry:
1940
+ %str.addr = alloca ptr, align 8
1941
+ %endptr.addr = alloca ptr, align 8
1942
+ %base.addr = alloca i32, align 4
1943
+ store ptr %str, ptr %str.addr, align 8
1944
+ store ptr %endptr, ptr %endptr.addr, align 8
1945
+ store i32 %base, ptr %base.addr, align 4
1946
+ %0 = load ptr, ptr %str.addr, align 8
1947
+ %1 = load ptr, ptr %endptr.addr, align 8
1948
+ store ptr %0, ptr %1, align 8
1949
+ ret i64 0
1950
+ }
1951
+
1952
+ ; Function Attrs: noinline nounwind uwtable
1953
+ define dso_local ptr @gcvt(double noundef %x, i32 noundef %ndigit, ptr noundef %buf) #1 {
1954
+ entry:
1955
+ %x.addr = alloca double, align 8
1956
+ %ndigit.addr = alloca i32, align 4
1957
+ %buf.addr = alloca ptr, align 8
1958
+ store double %x, ptr %x.addr, align 8
1959
+ store i32 %ndigit, ptr %ndigit.addr, align 4
1960
+ store ptr %buf, ptr %buf.addr, align 8
1961
+ %0 = load ptr, ptr %buf.addr, align 8
1962
+ ret ptr %0
1963
+ }
1964
+
1965
+ ; Function Attrs: noinline nounwind uwtable
1966
+ define dso_local ptr @memmem(ptr noundef %haystack, i64 noundef %haystacklen, ptr noundef %needle, i64 noundef %needlelen) #1 {
1967
+ entry:
1968
+ %haystack.addr = alloca ptr, align 8
1969
+ %haystacklen.addr = alloca i64, align 8
1970
+ %needle.addr = alloca ptr, align 8
1971
+ %needlelen.addr = alloca i64, align 8
1972
+ store ptr %haystack, ptr %haystack.addr, align 8
1973
+ store i64 %haystacklen, ptr %haystacklen.addr, align 8
1974
+ store ptr %needle, ptr %needle.addr, align 8
1975
+ store i64 %needlelen, ptr %needlelen.addr, align 8
1976
+ %0 = load ptr, ptr %haystack.addr, align 8
1977
+ ret ptr %0
1978
+ }
1979
+
1980
+ ; Function Attrs: noinline nounwind uwtable
1981
+ define dso_local ptr @ctime_r(ptr noundef %timer, ptr noundef %buf) #1 {
1982
+ entry:
1983
+ %timer.addr = alloca ptr, align 8
1984
+ %buf.addr = alloca ptr, align 8
1985
+ store ptr %timer, ptr %timer.addr, align 8
1986
+ store ptr %buf, ptr %buf.addr, align 8
1987
+ %0 = load ptr, ptr %buf.addr, align 8
1988
+ ret ptr %0
1989
+ }
1990
+
1991
+ ; Function Attrs: noinline nounwind uwtable
1992
+ define dso_local i32 @readdir_r(ptr noundef %__restrict__dir, ptr noundef %__restrict__entry, ptr noundef %__restrict__result) #1 {
1993
+ entry:
1994
+ %__restrict__dir.addr = alloca ptr, align 8
1995
+ %__restrict__entry.addr = alloca ptr, align 8
1996
+ %__restrict__result.addr = alloca ptr, align 8
1997
+ store ptr %__restrict__dir, ptr %__restrict__dir.addr, align 8
1998
+ store ptr %__restrict__entry, ptr %__restrict__entry.addr, align 8
1999
+ store ptr %__restrict__result, ptr %__restrict__result.addr, align 8
2000
+ %0 = load ptr, ptr %__restrict__result.addr, align 8
2001
+ %1 = load ptr, ptr %0, align 8
2002
+ store ptr %1, ptr %__restrict__entry.addr, align 8
2003
+ ret i32 0
2004
+ }
2005
+
2006
+ ; Function Attrs: noinline nounwind uwtable
2007
+ define dso_local i32 @getpwnam_r(ptr noundef %name, ptr noundef %pwd, ptr noundef %buf, i64 noundef %buflen, ptr noundef %result) #1 {
2008
+ entry:
2009
+ %name.addr = alloca ptr, align 8
2010
+ %pwd.addr = alloca ptr, align 8
2011
+ %buf.addr = alloca ptr, align 8
2012
+ %buflen.addr = alloca i64, align 8
2013
+ %result.addr = alloca ptr, align 8
2014
+ store ptr %name, ptr %name.addr, align 8
2015
+ store ptr %pwd, ptr %pwd.addr, align 8
2016
+ store ptr %buf, ptr %buf.addr, align 8
2017
+ store i64 %buflen, ptr %buflen.addr, align 8
2018
+ store ptr %result, ptr %result.addr, align 8
2019
+ %0 = load ptr, ptr %pwd.addr, align 8
2020
+ %1 = load ptr, ptr %result.addr, align 8
2021
+ store ptr %0, ptr %1, align 8
2022
+ ret i32 0
2023
+ }
2024
+
2025
+ ; Function Attrs: noinline nounwind uwtable
2026
+ define dso_local i32 @getpwuid_r(i32 noundef %uid, ptr noundef %pwd, ptr noundef %buf, i64 noundef %buflen, ptr noundef %result) #1 {
2027
+ entry:
2028
+ %uid.addr = alloca i32, align 4
2029
+ %pwd.addr = alloca ptr, align 8
2030
+ %buf.addr = alloca ptr, align 8
2031
+ %buflen.addr = alloca i64, align 8
2032
+ %result.addr = alloca ptr, align 8
2033
+ store i32 %uid, ptr %uid.addr, align 4
2034
+ store ptr %pwd, ptr %pwd.addr, align 8
2035
+ store ptr %buf, ptr %buf.addr, align 8
2036
+ store i64 %buflen, ptr %buflen.addr, align 8
2037
+ store ptr %result, ptr %result.addr, align 8
2038
+ %0 = load ptr, ptr %pwd.addr, align 8
2039
+ %1 = load ptr, ptr %result.addr, align 8
2040
+ store ptr %0, ptr %1, align 8
2041
+ ret i32 0
2042
+ }
2043
+
2044
+ ; Function Attrs: noinline nounwind uwtable
2045
+ define dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef %arg0, ptr noundef %arg1) #1 {
2046
+ entry:
2047
+ %arg0.addr = alloca ptr, align 8
2048
+ %arg1.addr = alloca ptr, align 8
2049
+ store ptr %arg0, ptr %arg0.addr, align 8
2050
+ store ptr %arg1, ptr %arg1.addr, align 8
2051
+ %0 = load ptr, ptr %arg0.addr, align 8
2052
+ %1 = load ptr, ptr %arg1.addr, align 8
2053
+ store ptr %0, ptr %1, align 8
2054
+ ret void
2055
+ }
2056
+
2057
+ ; Function Attrs: noinline nounwind uwtable
2058
+ define dso_local ptr @__dynamic_cast(ptr noundef %source, ptr noundef %sourceTypeInfo, ptr noundef %targetTypeInfo, i64 noundef %castType) #1 {
2059
+ entry:
2060
+ %source.addr = alloca ptr, align 8
2061
+ %sourceTypeInfo.addr = alloca ptr, align 8
2062
+ %targetTypeInfo.addr = alloca ptr, align 8
2063
+ %castType.addr = alloca i64, align 8
2064
+ store ptr %source, ptr %source.addr, align 8
2065
+ store ptr %sourceTypeInfo, ptr %sourceTypeInfo.addr, align 8
2066
+ store ptr %targetTypeInfo, ptr %targetTypeInfo.addr, align 8
2067
+ store i64 %castType, ptr %castType.addr, align 8
2068
+ %0 = load ptr, ptr %source.addr, align 8
2069
+ ret ptr %0
2070
+ }
2071
+
2072
+ ; Function Attrs: noinline nounwind uwtable
2073
+ define dso_local void @_ZNSsC1EPKcRKSaIcE(ptr noundef %arg0, ptr noundef %arg1) #1 {
2074
+ entry:
2075
+ %arg0.addr = alloca ptr, align 8
2076
+ %arg1.addr = alloca ptr, align 8
2077
+ store ptr %arg0, ptr %arg0.addr, align 8
2078
+ store ptr %arg1, ptr %arg1.addr, align 8
2079
+ %0 = load ptr, ptr %arg1.addr, align 8
2080
+ %1 = load ptr, ptr %arg0.addr, align 8
2081
+ store ptr %0, ptr %1, align 8
2082
+ ret void
2083
+ }
2084
+
2085
+ ; Function Attrs: noinline nounwind uwtable
2086
+ define dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(ptr noundef %arg0, ptr noundef %arg1) #1 {
2087
+ entry:
2088
+ %arg0.addr = alloca ptr, align 8
2089
+ %arg1.addr = alloca ptr, align 8
2090
+ store ptr %arg0, ptr %arg0.addr, align 8
2091
+ store ptr %arg1, ptr %arg1.addr, align 8
2092
+ %0 = load ptr, ptr %arg1.addr, align 8
2093
+ %1 = load ptr, ptr %arg0.addr, align 8
2094
+ store ptr %0, ptr %1, align 8
2095
+ ret void
2096
+ }
2097
+
2098
+ ; Function Attrs: noinline nounwind uwtable
2099
+ define dso_local ptr @__ctype_b_loc() #1 {
2100
+ entry:
2101
+ ret ptr null
2102
+ }
2103
+
2104
+ ; Function Attrs: noinline nounwind uwtable
2105
+ define dso_local ptr @__ctype_tolower_loc() #1 {
2106
+ entry:
2107
+ ret ptr null
2108
+ }
2109
+
2110
+ ; Function Attrs: noinline nounwind uwtable
2111
+ define dso_local ptr @__ctype_toupper_loc() #1 {
2112
+ entry:
2113
+ ret ptr null
2114
+ }
2115
+
2116
+ ; Function Attrs: noinline nounwind uwtable
2117
+ define dso_local ptr @__errno_location() #1 {
2118
+ entry:
2119
+ ret ptr null
2120
+ }
2121
+
2122
+ ; Function Attrs: noinline nounwind uwtable
2123
+ define dso_local ptr @__h_errno_location() #1 {
2124
+ entry:
2125
+ ret ptr null
2126
+ }
2127
+
2128
+ ; Function Attrs: noinline nounwind uwtable
2129
+ define dso_local ptr @__res_state() #1 {
2130
+ entry:
2131
+ ret ptr null
2132
+ }
2133
+
2134
+ ; Function Attrs: noinline nounwind uwtable
2135
+ define dso_local ptr @asctime(ptr noundef %timeptr) #1 {
2136
+ entry:
2137
+ %timeptr.addr = alloca ptr, align 8
2138
+ store ptr %timeptr, ptr %timeptr.addr, align 8
2139
+ ret ptr null
2140
+ }
2141
+
2142
+ ; Function Attrs: noinline nounwind uwtable
2143
+ define dso_local ptr @bindtextdomain(ptr noundef %domainname, ptr noundef %dirname) #1 {
2144
+ entry:
2145
+ %domainname.addr = alloca ptr, align 8
2146
+ %dirname.addr = alloca ptr, align 8
2147
+ store ptr %domainname, ptr %domainname.addr, align 8
2148
+ store ptr %dirname, ptr %dirname.addr, align 8
2149
+ ret ptr null
2150
+ }
2151
+
2152
+ ; Function Attrs: noinline nounwind uwtable
2153
+ define dso_local ptr @bind_textdomain_codeset(ptr noundef %domainname, ptr noundef %codeset) #1 {
2154
+ entry:
2155
+ %domainname.addr = alloca ptr, align 8
2156
+ %codeset.addr = alloca ptr, align 8
2157
+ store ptr %domainname, ptr %domainname.addr, align 8
2158
+ store ptr %codeset, ptr %codeset.addr, align 8
2159
+ ret ptr null
2160
+ }
2161
+
2162
+ ; Function Attrs: noinline nounwind uwtable
2163
+ define dso_local ptr @ctermid(ptr noundef %s) #1 {
2164
+ entry:
2165
+ %s.addr = alloca ptr, align 8
2166
+ store ptr %s, ptr %s.addr, align 8
2167
+ %0 = load ptr, ptr %s.addr, align 8
2168
+ ret ptr %0
2169
+ }
2170
+
2171
+ ; Function Attrs: noinline nounwind uwtable
2172
+ define dso_local ptr @dcgettext(ptr noundef %domainname, ptr noundef %msgid, i32 noundef %category) #1 {
2173
+ entry:
2174
+ %domainname.addr = alloca ptr, align 8
2175
+ %msgid.addr = alloca ptr, align 8
2176
+ %category.addr = alloca i32, align 4
2177
+ store ptr %domainname, ptr %domainname.addr, align 8
2178
+ store ptr %msgid, ptr %msgid.addr, align 8
2179
+ store i32 %category, ptr %category.addr, align 4
2180
+ ret ptr null
2181
+ }
2182
+
2183
+ ; Function Attrs: noinline nounwind uwtable
2184
+ define dso_local ptr @dgettext(ptr noundef %domainname, ptr noundef %msgid) #1 {
2185
+ entry:
2186
+ %domainname.addr = alloca ptr, align 8
2187
+ %msgid.addr = alloca ptr, align 8
2188
+ store ptr %domainname, ptr %domainname.addr, align 8
2189
+ store ptr %msgid, ptr %msgid.addr, align 8
2190
+ ret ptr null
2191
+ }
2192
+
2193
+ ; Function Attrs: noinline nounwind uwtable
2194
+ define dso_local ptr @dngettext(ptr noundef %domainname, ptr noundef %msgid, ptr noundef %msgid_plural, i64 noundef %n) #1 {
2195
+ entry:
2196
+ %domainname.addr = alloca ptr, align 8
2197
+ %msgid.addr = alloca ptr, align 8
2198
+ %msgid_plural.addr = alloca ptr, align 8
2199
+ %n.addr = alloca i64, align 8
2200
+ store ptr %domainname, ptr %domainname.addr, align 8
2201
+ store ptr %msgid, ptr %msgid.addr, align 8
2202
+ store ptr %msgid_plural, ptr %msgid_plural.addr, align 8
2203
+ store i64 %n, ptr %n.addr, align 8
2204
+ ret ptr null
2205
+ }
2206
+
2207
+ ; Function Attrs: noinline nounwind uwtable
2208
+ define dso_local ptr @getgrgid(i32 noundef %gid) #1 {
2209
+ entry:
2210
+ %gid.addr = alloca i32, align 4
2211
+ store i32 %gid, ptr %gid.addr, align 4
2212
+ ret ptr null
2213
+ }
2214
+
2215
+ ; Function Attrs: noinline nounwind uwtable
2216
+ define dso_local ptr @getgrnam(ptr noundef %name) #1 {
2217
+ entry:
2218
+ %name.addr = alloca ptr, align 8
2219
+ store ptr %name, ptr %name.addr, align 8
2220
+ ret ptr null
2221
+ }
2222
+
2223
+ ; Function Attrs: noinline nounwind uwtable
2224
+ define dso_local ptr @gethostbyaddr(ptr noundef %addr, i32 noundef %len, i32 noundef %type) #1 {
2225
+ entry:
2226
+ %addr.addr = alloca ptr, align 8
2227
+ %len.addr = alloca i32, align 4
2228
+ %type.addr = alloca i32, align 4
2229
+ store ptr %addr, ptr %addr.addr, align 8
2230
+ store i32 %len, ptr %len.addr, align 4
2231
+ store i32 %type, ptr %type.addr, align 4
2232
+ ret ptr null
2233
+ }
2234
+
2235
+ ; Function Attrs: noinline nounwind uwtable
2236
+ define dso_local ptr @gethostbyname(ptr noundef %name) #1 {
2237
+ entry:
2238
+ %name.addr = alloca ptr, align 8
2239
+ store ptr %name, ptr %name.addr, align 8
2240
+ ret ptr null
2241
+ }
2242
+
2243
+ ; Function Attrs: noinline nounwind uwtable
2244
+ define dso_local ptr @gethostbyname2(ptr noundef %name, i32 noundef %af) #1 {
2245
+ entry:
2246
+ %name.addr = alloca ptr, align 8
2247
+ %af.addr = alloca i32, align 4
2248
+ store ptr %name, ptr %name.addr, align 8
2249
+ store i32 %af, ptr %af.addr, align 4
2250
+ ret ptr null
2251
+ }
2252
+
2253
+ ; Function Attrs: noinline nounwind uwtable
2254
+ define dso_local ptr @getmntent(ptr noundef %stream) #1 {
2255
+ entry:
2256
+ %stream.addr = alloca ptr, align 8
2257
+ store ptr %stream, ptr %stream.addr, align 8
2258
+ ret ptr null
2259
+ }
2260
+
2261
+ ; Function Attrs: noinline nounwind uwtable
2262
+ define dso_local ptr @getprotobyname(ptr noundef %name) #1 {
2263
+ entry:
2264
+ %name.addr = alloca ptr, align 8
2265
+ store ptr %name, ptr %name.addr, align 8
2266
+ ret ptr null
2267
+ }
2268
+
2269
+ ; Function Attrs: noinline nounwind uwtable
2270
+ define dso_local ptr @getprotobynumber(i32 noundef %proto) #1 {
2271
+ entry:
2272
+ %proto.addr = alloca i32, align 4
2273
+ store i32 %proto, ptr %proto.addr, align 4
2274
+ ret ptr null
2275
+ }
2276
+
2277
+ ; Function Attrs: noinline nounwind uwtable
2278
+ define dso_local ptr @getpwent() #1 {
2279
+ entry:
2280
+ ret ptr null
2281
+ }
2282
+
2283
+ ; Function Attrs: noinline nounwind uwtable
2284
+ define dso_local ptr @getpwnam(ptr noundef %name) #1 {
2285
+ entry:
2286
+ %name.addr = alloca ptr, align 8
2287
+ store ptr %name, ptr %name.addr, align 8
2288
+ ret ptr null
2289
+ }
2290
+
2291
+ ; Function Attrs: noinline nounwind uwtable
2292
+ define dso_local ptr @getpwuid(i32 noundef %uid) #1 {
2293
+ entry:
2294
+ %uid.addr = alloca i32, align 4
2295
+ store i32 %uid, ptr %uid.addr, align 4
2296
+ ret ptr null
2297
+ }
2298
+
2299
+ ; Function Attrs: noinline nounwind uwtable
2300
+ define dso_local ptr @getservbyname(ptr noundef %name, ptr noundef %proto) #1 {
2301
+ entry:
2302
+ %name.addr = alloca ptr, align 8
2303
+ %proto.addr = alloca ptr, align 8
2304
+ store ptr %name, ptr %name.addr, align 8
2305
+ store ptr %proto, ptr %proto.addr, align 8
2306
+ ret ptr null
2307
+ }
2308
+
2309
+ ; Function Attrs: noinline nounwind uwtable
2310
+ define dso_local ptr @getservbyport(i32 noundef %port, ptr noundef %proto) #1 {
2311
+ entry:
2312
+ %port.addr = alloca i32, align 4
2313
+ %proto.addr = alloca ptr, align 8
2314
+ store i32 %port, ptr %port.addr, align 4
2315
+ store ptr %proto, ptr %proto.addr, align 8
2316
+ ret ptr null
2317
+ }
2318
+
2319
+ ; Function Attrs: noinline nounwind uwtable
2320
+ define dso_local ptr @getspnam(ptr noundef %name) #1 {
2321
+ entry:
2322
+ %name.addr = alloca ptr, align 8
2323
+ store ptr %name, ptr %name.addr, align 8
2324
+ ret ptr null
2325
+ }
2326
+
2327
+ ; Function Attrs: noinline nounwind uwtable
2328
+ define dso_local ptr @gettext(ptr noundef %msgid) #1 {
2329
+ entry:
2330
+ %msgid.addr = alloca ptr, align 8
2331
+ store ptr %msgid, ptr %msgid.addr, align 8
2332
+ ret ptr null
2333
+ }
2334
+
2335
+ ; Function Attrs: noinline nounwind uwtable
2336
+ define dso_local ptr @gmtime(ptr noundef %timer) #1 {
2337
+ entry:
2338
+ %timer.addr = alloca ptr, align 8
2339
+ store ptr %timer, ptr %timer.addr, align 8
2340
+ ret ptr null
2341
+ }
2342
+
2343
+ ; Function Attrs: noinline nounwind uwtable
2344
+ define dso_local ptr @gnu_get_libc_version() #1 {
2345
+ entry:
2346
+ ret ptr null
2347
+ }
2348
+
2349
+ ; Function Attrs: noinline nounwind uwtable
2350
+ define dso_local ptr @gnutls_check_version(ptr noundef %req_version) #1 {
2351
+ entry:
2352
+ %req_version.addr = alloca ptr, align 8
2353
+ store ptr %req_version, ptr %req_version.addr, align 8
2354
+ ret ptr null
2355
+ }
2356
+
2357
+ ; Function Attrs: noinline nounwind uwtable
2358
+ define dso_local ptr @localeconv() #1 {
2359
+ entry:
2360
+ ret ptr null
2361
+ }
2362
+
2363
+ ; Function Attrs: noinline nounwind uwtable
2364
+ define dso_local ptr @localtime(ptr noundef %timer) #1 {
2365
+ entry:
2366
+ %timer.addr = alloca ptr, align 8
2367
+ store ptr %timer, ptr %timer.addr, align 8
2368
+ ret ptr null
2369
+ }
2370
+
2371
+ ; Function Attrs: noinline nounwind uwtable
2372
+ define dso_local ptr @ngettext(ptr noundef %msgid, ptr noundef %msgid_plural, i64 noundef %n) #1 {
2373
+ entry:
2374
+ %msgid.addr = alloca ptr, align 8
2375
+ %msgid_plural.addr = alloca ptr, align 8
2376
+ %n.addr = alloca i64, align 8
2377
+ store ptr %msgid, ptr %msgid.addr, align 8
2378
+ store ptr %msgid_plural, ptr %msgid_plural.addr, align 8
2379
+ store i64 %n, ptr %n.addr, align 8
2380
+ ret ptr null
2381
+ }
2382
+
2383
+ ; Function Attrs: noinline nounwind uwtable
2384
+ define dso_local ptr @pango_cairo_font_map_get_default() #1 {
2385
+ entry:
2386
+ ret ptr null
2387
+ }
2388
+
2389
+ ; Function Attrs: noinline nounwind uwtable
2390
+ define dso_local ptr @re_comp(ptr noundef %regex) #1 {
2391
+ entry:
2392
+ %regex.addr = alloca ptr, align 8
2393
+ store ptr %regex, ptr %regex.addr, align 8
2394
+ ret ptr null
2395
+ }
2396
+
2397
+ ; Function Attrs: noinline nounwind uwtable
2398
+ define dso_local ptr @setlocale(i32 noundef %category, ptr noundef %locale) #1 {
2399
+ entry:
2400
+ %category.addr = alloca i32, align 4
2401
+ %locale.addr = alloca ptr, align 8
2402
+ store i32 %category, ptr %category.addr, align 4
2403
+ store ptr %locale, ptr %locale.addr, align 8
2404
+ ret ptr null
2405
+ }
2406
+
2407
+ ; Function Attrs: noinline nounwind uwtable
2408
+ define dso_local ptr @tgoto(ptr noundef %cap, i32 noundef %col, i32 noundef %row) #1 {
2409
+ entry:
2410
+ %cap.addr = alloca ptr, align 8
2411
+ %col.addr = alloca i32, align 4
2412
+ %row.addr = alloca i32, align 4
2413
+ store ptr %cap, ptr %cap.addr, align 8
2414
+ store i32 %col, ptr %col.addr, align 4
2415
+ store i32 %row, ptr %row.addr, align 4
2416
+ ret ptr null
2417
+ }
2418
+
2419
+ ; Function Attrs: noinline nounwind uwtable
2420
+ define dso_local ptr @tparm(ptr noundef %str, ...) #1 {
2421
+ entry:
2422
+ %str.addr = alloca ptr, align 8
2423
+ store ptr %str, ptr %str.addr, align 8
2424
+ ret ptr null
2425
+ }
2426
+
2427
+ ; Function Attrs: noinline nounwind uwtable
2428
+ define dso_local ptr @zError(i32 noundef %a) #1 {
2429
+ entry:
2430
+ %a.addr = alloca i32, align 4
2431
+ store i32 %a, ptr %a.addr, align 4
2432
+ ret ptr null
2433
+ }
2434
+
2435
+ attributes #0 = { noinline nounwind allocsize(0) uwtable "frame-pointer"="non-leaf" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="generic" "target-features"="+fp-armv8,+neon,+outline-atomics,+v8a,-fmv" }
2436
+ attributes #1 = { noinline nounwind uwtable "frame-pointer"="non-leaf" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="generic" "target-features"="+fp-armv8,+neon,+outline-atomics,+v8a,-fmv" }
2437
+ attributes #2 = { noinline nounwind allocsize(0,1) uwtable "frame-pointer"="non-leaf" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="generic" "target-features"="+fp-armv8,+neon,+outline-atomics,+v8a,-fmv" }
2438
+ attributes #3 = { noinline nounwind allocsize(1) uwtable "frame-pointer"="non-leaf" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="generic" "target-features"="+fp-armv8,+neon,+outline-atomics,+v8a,-fmv" }
2439
+ attributes #4 = { noinline nounwind willreturn memory(read) uwtable "frame-pointer"="non-leaf" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="generic" "target-features"="+fp-armv8,+neon,+outline-atomics,+v8a,-fmv" }
2440
+
2441
+ !llvm.module.flags = !{!0, !1, !2, !3, !4}
2442
+ !llvm.ident = !{!5}
2443
+
2444
+ !0 = !{i32 1, !"wchar_size", i32 4}
2445
+ !1 = !{i32 8, !"PIC Level", i32 2}
2446
+ !2 = !{i32 7, !"PIE Level", i32 2}
2447
+ !3 = !{i32 7, !"uwtable", i32 2}
2448
+ !4 = !{i32 7, !"frame-pointer", i32 1}
2449
+ !5 = !{!"clang version 16.0.4 (https://github.com/SVF-tools/SVF.git f7cc52632ef5f6b611c49d8ee47f4f83d3bceb16)"}