Rodrigo Mesquita pushed to branch wip/T26166 at Glasgow Haskell Compiler / GHC

Commits:

10 changed files:

Changes:

  • libraries/base/src/System/CPUTime.hsc
    ... ... @@ -17,6 +17,7 @@
    17 17
     
    
    18 18
     #include "HsFFI.h"
    
    19 19
     #include "HsBaseConfig.h"
    
    20
    +#include "RtsIfaceStub.h"
    
    20 21
     
    
    21 22
     -- For various _POSIX_* #defines
    
    22 23
     #if defined(HAVE_UNISTD_H)
    

  • libraries/ghc-internal/ghc-internal.cabal.in
    ... ... @@ -486,6 +486,7 @@ Library
    486 486
             RtsIfaceStub.h
    
    487 487
         install-includes:
    
    488 488
             HsBase.h
    
    489
    +        RtsIfaceStub.h
    
    489 490
             consUtils.h
    
    490 491
     
    
    491 492
         if flag(need-atomic)
    

  • rts/include/HsFFI.h
    ... ... @@ -143,8 +143,6 @@ extern void hs_try_putmvar_with_value (int capability, HsStablePtr sp, StgClosur
    143 143
     
    
    144 144
     /* -------------------------------------------------------------------------- */
    
    145 145
     
    
    146
    -
    
    147
    -
    
    148 146
     #if defined(__cplusplus)
    
    149 147
     }
    
    150 148
     #endif

  • rts/rts.cabal
    1
    -cabal-version: 3.0
    
    1
    +cabal-version: 3.4
    
    2 2
     name: rts
    
    3 3
     version: 1.0.3
    
    4 4
     synopsis: The GHC runtime system
    

  • utils/ghc-toolchain/ghc-toolchain.cabal
    ... ... @@ -26,6 +26,7 @@ library
    26 26
                           GHC.Toolchain.Tools.Cxx,
    
    27 27
                           GHC.Toolchain.Tools.Cpp,
    
    28 28
                           GHC.Toolchain.Tools.Link,
    
    29
    +                      GHC.Toolchain.Tools.Link.RtsSymbols,
    
    29 30
                           GHC.Toolchain.Tools.Nm,
    
    30 31
                           GHC.Toolchain.Tools.Ranlib,
    
    31 32
                           GHC.Toolchain.Tools.Readelf,
    

  • utils/ghc-toolchain/src/GHC/Toolchain/Tools/Link.hs
    ... ... @@ -17,6 +17,8 @@ import GHC.Toolchain.Program
    17 17
     import GHC.Toolchain.Tools.Cc
    
    18 18
     import GHC.Toolchain.Tools.Readelf
    
    19 19
     
    
    20
    +import GHC.Toolchain.Tools.Link.RtsSymbols
    
    21
    +
    
    20 22
     -- | Configuration on how the C compiler can be used to link
    
    21 23
     data CcLink = CcLink { ccLinkProgram :: Program
    
    22 24
                          , ccLinkSupportsNoPie :: Bool -- See Note [No PIE when linking] in GHC.Driver.Session
    
    ... ... @@ -328,6 +330,10 @@ addPlatformDepLinkFlags archOs cc ccLink0 = do
    328 330
           -- Since https://github.com/emscripten-core/emscripten/blob/main/ChangeLog.md#407---041525
    
    329 331
           -- the emcc linker does not export the HEAP8 memory view which is used by the js RTS by default anymore.
    
    330 332
           return $ ccLink2 & _prgFlags %++ "-sEXPORTED_RUNTIME_METHODS=HEAP8,HEAPU8"
    
    333
    +    ArchOS _ OSDarwin ->
    
    334
    +      -- See Note [TODO]
    
    335
    +      return $ ccLink2 & _prgFlags %++
    
    336
    +        ("-Wl" ++ concatMap (",-U,_" ++ ) rtsPublicSymbols)
    
    331 337
         _ ->
    
    332 338
           return ccLink2
    
    333 339
     
    

  • utils/ghc-toolchain/src/GHC/Toolchain/Tools/Link/RtsSymbols.hs
    1
    +module GHC.Toolchain.Tools.Link.RtsSymbols where
    
    2
    +
    
    3
    +import Data.String (String)
    
    4
    +import Data.List ((++))
    
    5
    +
    
    6
    +-- My guess is that these should not be part of the rtsPublicSymbols and are a
    
    7
    +-- problem which comes from no longer having -undefined dynamic_lookup. For
    
    8
    +-- unix e.g. we probably should add -U<symbol> to the ld-options of unix?
    
    9
    +--
    
    10
    +-- For the other Symbols not as sure.
    
    11
    +sketchySymbols :: [String]
    
    12
    +sketchySymbols =
    
    13
    +  ["nocldstop"] -- from unix
    
    14
    +  ++
    
    15
    +  ["CCS_DONT_CARE", "user_era"] -- ??
    
    16
    +  ++
    
    17
    +  -- things which should probably be in the public api dir (rts/include/..) but are only in (rts/...)
    
    18
    +  ["arenaAlloc", "arenaFree", "cloneStack", "newArena", "rts_setMainThread", "sendCloneStackMessage"]
    
    19
    +  ++
    
    20
    +  -- FFI things...?
    
    21
    +  ["ffi_prep_cif", "ffi_type_double", "ffi_type_float", "ffi_type_pointer",
    
    22
    +  "ffi_type_sint16", "ffi_type_sint32", "ffi_type_sint64", "ffi_type_sint8",
    
    23
    +  "ffi_type_uint16", "ffi_type_uint32", "ffi_type_uint64", "ffi_type_uint8",
    
    24
    +  "ffi_type_void"]
    
    25
    +  ++
    
    26
    +  -- Profiling and more unexported from rts/include but which are public in the RTS
    
    27
    +  -- Perhaps we should just include ALL symbols from the RTS regardless of public/private.
    
    28
    +  -- Ideally we'd want the "visibility" attribute to be checked but that doesn't seem to be available.
    
    29
    +  [ "mkCostCentre", "rts_disableStopAfterReturn", "rts_disableStopNextBreakpoint", "rts_disableStopNextBreakpointAll", "rts_enableStopAfterReturn", "rts_enableStopNextBreakpoint", "rts_enableStopNextBreakpointAll"]
    
    30
    +  -- Stg things?
    
    31
    +  ++
    
    32
    +  [ "stg_interp_constr1_entry"
    
    33
    +  , "stg_interp_constr2_entry"
    
    34
    +  , "stg_interp_constr3_entry"
    
    35
    +  , "stg_interp_constr4_entry"
    
    36
    +  , "stg_interp_constr5_entry"
    
    37
    +  , "stg_interp_constr6_entry"
    
    38
    +  , "stg_interp_constr7_entry"
    
    39
    +  ]
    
    40
    +
    
    41
    +-- See Note [TODO]
    
    42
    +
    
    43
    +-- The `rtsPublicSymbols` list is kept up to date by hand but can be potentially regenerated from
    
    44
    +-- scratch using the script XXX...
    
    45
    +
    
    46
    +-- A list of all the symbols which are undefined when linking a Haskell library
    
    47
    +-- and are only resolved when linking a final executable against the RTS.
    
    48
    +--
    
    49
    +-- Essentially, all the public RTS symbols
    
    50
    +rtsPublicSymbols :: [String]
    
    51
    +rtsPublicSymbols =
    
    52
    +  sketchySymbols ++
    
    53
    +  [ "ALLOC_BH_adm"
    
    54
    +  , "ALLOC_BH_ctr"
    
    55
    +  , "ALLOC_BH_gds"
    
    56
    +  , "ALLOC_BH_slp"
    
    57
    +  , "ALLOC_CON_adm"
    
    58
    +  , "ALLOC_CON_ctr"
    
    59
    +  , "ALLOC_CON_gds"
    
    60
    +  , "ALLOC_CON_slp"
    
    61
    +  , "ALLOC_FUN_adm"
    
    62
    +  , "ALLOC_FUN_ctr"
    
    63
    +  , "ALLOC_FUN_gds"
    
    64
    +  , "ALLOC_FUN_slp"
    
    65
    +  , "ALLOC_HEAP_ctr"
    
    66
    +  , "ALLOC_HEAP_tot"
    
    67
    +  , "ALLOC_PAP_adm"
    
    68
    +  , "ALLOC_PAP_ctr"
    
    69
    +  , "ALLOC_PAP_gds"
    
    70
    +  , "ALLOC_PAP_slp"
    
    71
    +  , "ALLOC_PRIM_adm"
    
    72
    +  , "ALLOC_PRIM_ctr"
    
    73
    +  , "ALLOC_PRIM_gds"
    
    74
    +  , "ALLOC_PRIM_slp"
    
    75
    +  , "ALLOC_RTS_ctr"
    
    76
    +  , "ALLOC_RTS_tot"
    
    77
    +  , "ALLOC_SE_THK_ctr"
    
    78
    +  , "ALLOC_STACK_ctr"
    
    79
    +  , "ALLOC_STACK_tot"
    
    80
    +  , "ALLOC_THK_adm"
    
    81
    +  , "ALLOC_THK_gds"
    
    82
    +  , "ALLOC_THK_slp"
    
    83
    +  , "ALLOC_TSO_ctr"
    
    84
    +  , "ALLOC_TSO_tot"
    
    85
    +  , "ALLOC_TUP_adm"
    
    86
    +  , "ALLOC_TUP_ctr"
    
    87
    +  , "ALLOC_TUP_gds"
    
    88
    +  , "ALLOC_TUP_slp"
    
    89
    +  , "ALLOC_UP_THK_ctr"
    
    90
    +  , "ATTRIBUTE_ALIGNED"
    
    91
    +  , "AddDelayRequest"
    
    92
    +  , "AddIORequest"
    
    93
    +  , "AddProcRequest"
    
    94
    +  , "CATCHF_PUSHED_ctr"
    
    95
    +  , "CCS_OVERHEAD"
    
    96
    +  , "CCS_SYSTEM"
    
    97
    +  , "CLOSURE"
    
    98
    +  , "Capability"
    
    99
    +  , "EF_"
    
    100
    +  , "ENT_AP_STACK_ctr"
    
    101
    +  , "ENT_AP_ctr"
    
    102
    +  , "ENT_BH_ctr"
    
    103
    +  , "ENT_CONTINUATION_ctr"
    
    104
    +  , "ENT_DYN_CON_ctr"
    
    105
    +  , "ENT_DYN_FUN_DIRECT_ctr"
    
    106
    +  , "ENT_DYN_IND_ctr"
    
    107
    +  , "ENT_DYN_THK_MANY_ctr"
    
    108
    +  , "ENT_DYN_THK_SINGLE_ctr"
    
    109
    +  , "ENT_LNE_ctr"
    
    110
    +  , "ENT_PAP_ctr"
    
    111
    +  , "ENT_PERM_IND_ctr"
    
    112
    +  , "ENT_STATIC_CON_ctr"
    
    113
    +  , "ENT_STATIC_FUN_DIRECT_ctr"
    
    114
    +  , "ENT_STATIC_IND_ctr"
    
    115
    +  , "ENT_STATIC_THK_MANY_ctr"
    
    116
    +  , "ENT_STATIC_THK_SINGLE_ctr"
    
    117
    +  , "ENT_VIA_NODE_ctr"
    
    118
    +  , "EXTERN_INLINE"
    
    119
    +  , "FetchWork"
    
    120
    +  , "FileEventLogWriter"
    
    121
    +  , "FlagDefaultsHook"
    
    122
    +  , "FreeWorkQueue"
    
    123
    +  , "GC_FAILED_PROMOTION_ctr"
    
    124
    +  , "GC_SEL_ABANDONED_ctr"
    
    125
    +  , "GC_SEL_MAJOR_ctr"
    
    126
    +  , "GC_SEL_MINOR_ctr"
    
    127
    +  , "GHC_STATIC_ASSERT"
    
    128
    +  , "GarbageCollect"
    
    129
    +  , "GetWork"
    
    130
    +  , "GetWorkQueueHandle"
    
    131
    +  , "HEAP_CHK_ctr"
    
    132
    +  , "HashSet"
    
    133
    +  , "INFO_TABLE_RET"
    
    134
    +  , "KNOWN_CALL_EXTRA_ARGS_ctr"
    
    135
    +  , "KNOWN_CALL_TOO_FEW_ARGS_ctr"
    
    136
    +  , "KNOWN_CALL_ctr"
    
    137
    +  , "LongGCSync"
    
    138
    +  , "LongGCSyncEnd"
    
    139
    +  , "MULTI_CHUNK_SLOW_CALL_CHUNKS_ctr"
    
    140
    +  , "MULTI_CHUNK_SLOW_CALL_ctr"
    
    141
    +  , "MainCapability"
    
    142
    +  , "MallocFailHook"
    
    143
    +  , "N"
    
    144
    +  , "NewWorkQueue"
    
    145
    +  , "NullEventLogWriter"
    
    146
    +  , "OnExitHook"
    
    147
    +  , "OutOfHeapHook"
    
    148
    +  , "P_"
    
    149
    +  , "PrintTickyInfo"
    
    150
    +  , "RET_NEW_ctr"
    
    151
    +  , "RET_NEW_hst"
    
    152
    +  , "RET_OLD_ctr"
    
    153
    +  , "RET_OLD_hst"
    
    154
    +  , "RET_SEMI_loads_avoided"
    
    155
    +  , "RET_UNBOXED_TUP_ctr"
    
    156
    +  , "RET_UNBOXED_TUP_hst"
    
    157
    +  , "RtsFlags"
    
    158
    +  , "SET_INFO"
    
    159
    +  , "SET_INFO_RELAXED"
    
    160
    +  , "SET_INFO_RELEASE"
    
    161
    +  , "SLOW_CALL_FUN_CORRECT_ctr"
    
    162
    +  , "SLOW_CALL_FUN_TOO_FEW_ctr"
    
    163
    +  , "SLOW_CALL_FUN_TOO_MANY_ctr"
    
    164
    +  , "SLOW_CALL_PAP_CORRECT_ctr"
    
    165
    +  , "SLOW_CALL_PAP_TOO_FEW_ctr"
    
    166
    +  , "SLOW_CALL_PAP_TOO_MANY_ctr"
    
    167
    +  , "SLOW_CALL_UNEVALD_ctr"
    
    168
    +  , "SLOW_CALL_ctr"
    
    169
    +  , "SLOW_CALL_fast_d_ctr"
    
    170
    +  , "SLOW_CALL_fast_f_ctr"
    
    171
    +  , "SLOW_CALL_fast_l_ctr"
    
    172
    +  , "SLOW_CALL_fast_n_ctr"
    
    173
    +  , "SLOW_CALL_fast_p_ctr"
    
    174
    +  , "SLOW_CALL_fast_pp_ctr"
    
    175
    +  , "SLOW_CALL_fast_ppp_ctr"
    
    176
    +  , "SLOW_CALL_fast_pppp_ctr"
    
    177
    +  , "SLOW_CALL_fast_ppppp_ctr"
    
    178
    +  , "SLOW_CALL_fast_pppppp_ctr"
    
    179
    +  , "SLOW_CALL_fast_pppv_ctr"
    
    180
    +  , "SLOW_CALL_fast_ppv_ctr"
    
    181
    +  , "SLOW_CALL_fast_pv_ctr"
    
    182
    +  , "SLOW_CALL_fast_v16_ctr"
    
    183
    +  , "SLOW_CALL_fast_v_ctr"
    
    184
    +  , "SNT_size"
    
    185
    +  , "STK_CHK_ctr"
    
    186
    +  , "ShutdownIOManager"
    
    187
    +  , "StackOverflowHook"
    
    188
    +  , "StartIOManager"
    
    189
    +  , "StgClosure"
    
    190
    +  , "StgCompactNFData"
    
    191
    +  , "StgCompactNFDataBlock"
    
    192
    +  , "StgConInfoTable"
    
    193
    +  , "StgFun"
    
    194
    +  , "StgFunInfoTable"
    
    195
    +  , "StgHalfWord"
    
    196
    +  , "StgInfoTable"
    
    197
    +  , "StgInt"
    
    198
    +  , "StgOffset"
    
    199
    +  , "StgPtr"
    
    200
    +  , "StgRegTable"
    
    201
    +  , "StgRetInfoTable"
    
    202
    +  , "StgReturn"
    
    203
    +  , "StgTSO"
    
    204
    +  , "StgThunkInfoTable"
    
    205
    +  , "StgTimeout"
    
    206
    +  , "StgTimeoutQueue"
    
    207
    +  , "StgWord"
    
    208
    +  , "StgWord8"
    
    209
    +  , "StrHashTable"
    
    210
    +  , "SubmitWork"
    
    211
    +  , "TAG_TAGGED_miss"
    
    212
    +  , "TAG_TAGGED_pred"
    
    213
    +  , "TAG_UNTAGGED_miss"
    
    214
    +  , "TAG_UNTAGGED_pred"
    
    215
    +  , "TRACE_cap"
    
    216
    +  , "TRACE_gc"
    
    217
    +  , "TRACE_nonmoving_gc"
    
    218
    +  , "TRACE_sched"
    
    219
    +  , "TRACE_spark_full"
    
    220
    +  , "TRACE_spark_sampled"
    
    221
    +  , "Task"
    
    222
    +  , "TaskId"
    
    223
    +  , "Time"
    
    224
    +  , "UNKNOWN_CALL_ctr"
    
    225
    +  , "UPDF_OMITTED_ctr"
    
    226
    +  , "UPDF_PUSHED_ctr"
    
    227
    +  , "UPDF_RCC_OMITTED_ctr"
    
    228
    +  , "UPDF_RCC_PUSHED_ctr"
    
    229
    +  , "UPD_BH_UPDATABLE_ctr"
    
    230
    +  , "UPD_CAF_BH_SINGLE_ENTRY_ctr"
    
    231
    +  , "UPD_CAF_BH_UPDATABLE_ctr"
    
    232
    +  , "UPD_CON_IN_NEW_ctr"
    
    233
    +  , "UPD_CON_IN_PLACE_ctr"
    
    234
    +  , "UPD_NEW_IND_ctr"
    
    235
    +  , "UPD_NEW_PERM_IND_ctr"
    
    236
    +  , "UPD_OLD_IND_ctr"
    
    237
    +  , "UPD_OLD_PERM_IND_ctr"
    
    238
    +  , "UPD_PAP_IN_NEW_ctr"
    
    239
    +  , "UPD_PAP_IN_PLACE_ctr"
    
    240
    +  , "UPD_SQUEEZED_ctr"
    
    241
    +  , "VERY_SLOW_CALL_ctr"
    
    242
    +  , "WINAPI"
    
    243
    +  , "W_"
    
    244
    +  , "XXH128_canonicalFromHash"
    
    245
    +  , "XXH128_cmp"
    
    246
    +  , "XXH128_hashFromCanonical"
    
    247
    +  , "XXH128_isEqual"
    
    248
    +  , "XXH32"
    
    249
    +  , "XXH32_canonicalFromHash"
    
    250
    +  , "XXH32_copyState"
    
    251
    +  , "XXH32_createState"
    
    252
    +  , "XXH32_digest"
    
    253
    +  , "XXH32_freeState"
    
    254
    +  , "XXH32_hashFromCanonical"
    
    255
    +  , "XXH32_reset"
    
    256
    +  , "XXH32_update"
    
    257
    +  , "XXH3_128bits"
    
    258
    +  , "XXH3_128bits_digest"
    
    259
    +  , "XXH3_128bits_reset"
    
    260
    +  , "XXH3_128bits_reset_withSecret"
    
    261
    +  , "XXH3_128bits_reset_withSeed"
    
    262
    +  , "XXH3_128bits_update"
    
    263
    +  , "XXH3_128bits_withSecret"
    
    264
    +  , "XXH3_128bits_withSeed"
    
    265
    +  , "XXH3_64bits"
    
    266
    +  , "XXH3_64bits_digest"
    
    267
    +  , "XXH3_64bits_reset"
    
    268
    +  , "XXH3_64bits_reset_withSecret"
    
    269
    +  , "XXH3_64bits_reset_withSeed"
    
    270
    +  , "XXH3_64bits_update"
    
    271
    +  , "XXH3_64bits_withSecret"
    
    272
    +  , "XXH3_64bits_withSeed"
    
    273
    +  , "XXH3_copyState"
    
    274
    +  , "XXH3_createState"
    
    275
    +  , "XXH3_freeState"
    
    276
    +  , "XXH64"
    
    277
    +  , "XXH64_canonicalFromHash"
    
    278
    +  , "XXH64_copyState"
    
    279
    +  , "XXH64_createState"
    
    280
    +  , "XXH64_digest"
    
    281
    +  , "XXH64_freeState"
    
    282
    +  , "XXH64_hashFromCanonical"
    
    283
    +  , "XXH64_reset"
    
    284
    +  , "XXH64_update"
    
    285
    +  , "XXH_versionNumber"
    
    286
    +  , "ZCMain_main_closure"
    
    287
    +  , "_Exit"
    
    288
    +  , "__assert_rtn"
    
    289
    +  , "__cospi"
    
    290
    +  , "__cospif"
    
    291
    +  , "__decodeDouble_2Int"
    
    292
    +  , "__decodeDouble_Int64"
    
    293
    +  , "__decodeFloat_Int"
    
    294
    +  , "__exp10"
    
    295
    +  , "__exp10f"
    
    296
    +  , "__fpclassifyd"
    
    297
    +  , "__fpclassifyf"
    
    298
    +  , "__fpclassifyl"
    
    299
    +  , "__hs_fopen"
    
    300
    +  , "__hscore_get_saved_termios"
    
    301
    +  , "__hscore_set_saved_termios"
    
    302
    +  , "__inline_isfinited"
    
    303
    +  , "__inline_isfinitef"
    
    304
    +  , "__inline_isfinitel"
    
    305
    +  , "__inline_isinfd"
    
    306
    +  , "__inline_isinff"
    
    307
    +  , "__inline_isinfl"
    
    308
    +  , "__inline_isnand"
    
    309
    +  , "__inline_isnanf"
    
    310
    +  , "__inline_isnanl"
    
    311
    +  , "__inline_isnormald"
    
    312
    +  , "__inline_isnormalf"
    
    313
    +  , "__inline_isnormall"
    
    314
    +  , "__inline_signbitd"
    
    315
    +  , "__inline_signbitf"
    
    316
    +  , "__inline_signbitl"
    
    317
    +  , "__int_encodeDouble"
    
    318
    +  , "__int_encodeFloat"
    
    319
    +  , "__math_errhandling"
    
    320
    +  , "__mb_cur_max"
    
    321
    +  , "__register_hs_exception_handler"
    
    322
    +  , "__rts_fopen"
    
    323
    +  , "__sincos"
    
    324
    +  , "__sincos_stret"
    
    325
    +  , "__sincosf"
    
    326
    +  , "__sincosf_stret"
    
    327
    +  , "__sincospi"
    
    328
    +  , "__sincospi_stret"
    
    329
    +  , "__sincospif"
    
    330
    +  , "__sincospif_stret"
    
    331
    +  , "__sinpi"
    
    332
    +  , "__sinpif"
    
    333
    +  , "__snprintf_chk"
    
    334
    +  , "__sprintf_chk"
    
    335
    +  , "__sputc"
    
    336
    +  , "__srget"
    
    337
    +  , "__stderrp"
    
    338
    +  , "__stdinp"
    
    339
    +  , "__stdoutp"
    
    340
    +  , "__stg_EAGER_BLACKHOLE_entry"
    
    341
    +  , "__stg_EAGER_BLACKHOLE_info"
    
    342
    +  , "__stg_gc_enter_1"
    
    343
    +  , "__stg_gc_fun"
    
    344
    +  , "__svfscanf"
    
    345
    +  , "__swbuf"
    
    346
    +  , "__tanpi"
    
    347
    +  , "__tanpif"
    
    348
    +  , "__unregister_hs_exception_handler"
    
    349
    +  , "__vsnprintf_chk"
    
    350
    +  , "__vsprintf_chk"
    
    351
    +  , "__word_encodeDouble"
    
    352
    +  , "__word_encodeFloat"
    
    353
    +  , "_assertFail"
    
    354
    +  , "_warnFail"
    
    355
    +  , "a64l"
    
    356
    +  , "abandonRequestWait"
    
    357
    +  , "abandonWorkRequest"
    
    358
    +  , "abort"
    
    359
    +  , "abs"
    
    360
    +  , "accountAllocation"
    
    361
    +  , "acos"
    
    362
    +  , "acosf"
    
    363
    +  , "acosh"
    
    364
    +  , "acoshf"
    
    365
    +  , "acoshl"
    
    366
    +  , "acosl"
    
    367
    +  , "addDLL"
    
    368
    +  , "addDLL_PEi386"
    
    369
    +  , "addDelayRequest"
    
    370
    +  , "addDoProcRequest"
    
    371
    +  , "addIORequest"
    
    372
    +  , "addInitFini"
    
    373
    +  , "addLibrarySearchPath"
    
    374
    +  , "addLibrarySearchPath_PEi386"
    
    375
    +  , "addProddableBlock"
    
    376
    +  , "addSection"
    
    377
    +  , "aligned_alloc"
    
    378
    +  , "all_tasks"
    
    379
    +  , "allocAlignedGroupOnNode"
    
    380
    +  , "allocBlockOnNode_lock"
    
    381
    +  , "allocBlock_lock"
    
    382
    +  , "allocGroup"
    
    383
    +  , "allocGroupOnNode"
    
    384
    +  , "allocGroupOnNode_lock"
    
    385
    +  , "allocGroupOnNode_sync"
    
    386
    +  , "allocGroup_lock"
    
    387
    +  , "allocGroup_sync"
    
    388
    +  , "allocHashTable"
    
    389
    +  , "allocLargeChunk"
    
    390
    +  , "allocLargeChunkOnNode"
    
    391
    +  , "allocMBlockAlignedGroupOnNode"
    
    392
    +  , "alloc_adjustor"
    
    393
    +  , "alloc_todo_block"
    
    394
    +  , "alloca"
    
    395
    +  , "allocate"
    
    396
    +  , "allocateArrBytes"
    
    397
    +  , "allocateArrBytesPinned"
    
    398
    +  , "allocateExecPage"
    
    399
    +  , "allocateForCompact"
    
    400
    +  , "allocateMightFail"
    
    401
    +  , "allocateMutArrPtrs"
    
    402
    +  , "allocatePinned"
    
    403
    +  , "allocateSmallMutArrPtrs"
    
    404
    +  , "anyPendingTimeoutsOrIO"
    
    405
    +  , "anyUserHandlers"
    
    406
    +  , "appendToRunQueue"
    
    407
    +  , "arc4random"
    
    408
    +  , "arc4random_addrandom"
    
    409
    +  , "arc4random_buf"
    
    410
    +  , "arc4random_stir"
    
    411
    +  , "arc4random_uniform"
    
    412
    +  , "arenaAlloc"
    
    413
    +  , "arenaBlocks"
    
    414
    +  , "arenaFree"
    
    415
    +  , "asctime"
    
    416
    +  , "asctime_r"
    
    417
    +  , "asin"
    
    418
    +  , "asinf"
    
    419
    +  , "asinh"
    
    420
    +  , "asinhf"
    
    421
    +  , "asinhl"
    
    422
    +  , "asinl"
    
    423
    +  , "asprintf"
    
    424
    +  , "assert_in_nonmoving_heap"
    
    425
    +  , "atan"
    
    426
    +  , "atan2"
    
    427
    +  , "atan2f"
    
    428
    +  , "atan2l"
    
    429
    +  , "atanf"
    
    430
    +  , "atanh"
    
    431
    +  , "atanhf"
    
    432
    +  , "atanhl"
    
    433
    +  , "atanl"
    
    434
    +  , "atexit"
    
    435
    +  , "atexit_b"
    
    436
    +  , "atof"
    
    437
    +  , "atoi"
    
    438
    +  , "atol"
    
    439
    +  , "atoll"
    
    440
    +  , "awaitAsyncRequests"
    
    441
    +  , "awaitCompletedTimeoutsOrIO"
    
    442
    +  , "awaitCompletedTimeoutsOrIOSelect"
    
    443
    +  , "awaitCompletedTimeoutsOrIOWin32"
    
    444
    +  , "awaitRequests"
    
    445
    +  , "awakenBlockedExceptionQueue"
    
    446
    +  , "backtraceFree"
    
    447
    +  , "barf"
    
    448
    +  , "bcmp"
    
    449
    +  , "bcopy"
    
    450
    +  , "bdescr"
    
    451
    +  , "blackHoleOwner"
    
    452
    +  , "blockUserSignals"
    
    453
    +  , "bool"
    
    454
    +  , "broadcastCondition"
    
    455
    +  , "bsearch"
    
    456
    +  , "bsearch_b"
    
    457
    +  , "bzero"
    
    458
    +  , "calcNeeded"
    
    459
    +  , "calcTotalAllocated"
    
    460
    +  , "calcTotalCompactW"
    
    461
    +  , "calcTotalLargeObjectsW"
    
    462
    +  , "calloc"
    
    463
    +  , "capabilities"
    
    464
    +  , "capacityClosureTable"
    
    465
    +  , "captureContinuationAndAbort"
    
    466
    +  , "cas_ptr"
    
    467
    +  , "cbrt"
    
    468
    +  , "cbrtf"
    
    469
    +  , "cbrtl"
    
    470
    +  , "ceil"
    
    471
    +  , "ceilf"
    
    472
    +  , "ceill"
    
    473
    +  , "cgetcap"
    
    474
    +  , "cgetclose"
    
    475
    +  , "cgetent"
    
    476
    +  , "cgetfirst"
    
    477
    +  , "cgetmatch"
    
    478
    +  , "cgetnext"
    
    479
    +  , "cgetnum"
    
    480
    +  , "cgetset"
    
    481
    +  , "cgetstr"
    
    482
    +  , "cgetustr"
    
    483
    +  , "checkAndLoadImportLibrary"
    
    484
    +  , "checkBlockingQueues"
    
    485
    +  , "checkFPUStack"
    
    486
    +  , "checkProddableBlock"
    
    487
    +  , "checkUnload"
    
    488
    +  , "checkVectorSupport"
    
    489
    +  , "clearImportSymbol"
    
    490
    +  , "clearNursery"
    
    491
    +  , "clear_blocks"
    
    492
    +  , "clear_free_list"
    
    493
    +  , "clearerr"
    
    494
    +  , "clock"
    
    495
    +  , "clock_getres"
    
    496
    +  , "clock_gettime"
    
    497
    +  , "clock_gettime_nsec_np"
    
    498
    +  , "clock_settime"
    
    499
    +  , "cloneStack"
    
    500
    +  , "closeCondition"
    
    501
    +  , "closeMutex"
    
    502
    +  , "closure_flags"
    
    503
    +  , "closure_sizeW_"
    
    504
    +  , "closure_type_names"
    
    505
    +  , "cmp_thread"
    
    506
    +  , "collectFreshWeakPtrs"
    
    507
    +  , "collect_pointers"
    
    508
    +  , "commitMBlockFreeing"
    
    509
    +  , "compact"
    
    510
    +  , "compactAllocateBlock"
    
    511
    +  , "compactContains"
    
    512
    +  , "compactFixupPointers"
    
    513
    +  , "compactFree"
    
    514
    +  , "compactMarkKnown"
    
    515
    +  , "compactNew"
    
    516
    +  , "compactResize"
    
    517
    +  , "completeSynchronousRequest"
    
    518
    +  , "containsSpan"
    
    519
    +  , "contextSwitchAllCapabilities"
    
    520
    +  , "contextSwitchCapability"
    
    521
    +  , "copysign"
    
    522
    +  , "copysignf"
    
    523
    +  , "copysignl"
    
    524
    +  , "cos"
    
    525
    +  , "cosf"
    
    526
    +  , "cosh"
    
    527
    +  , "coshf"
    
    528
    +  , "coshl"
    
    529
    +  , "cosl"
    
    530
    +  , "countAllocdBlocks"
    
    531
    +  , "countBlocks"
    
    532
    +  , "countCompactBlocks"
    
    533
    +  , "countNurseryBlocks"
    
    534
    +  , "countOccupied"
    
    535
    +  , "createAdjustor"
    
    536
    +  , "createAttachedOSThread"
    
    537
    +  , "createGenThread"
    
    538
    +  , "createIOThread"
    
    539
    +  , "createOSThread"
    
    540
    +  , "createStrictIOThread"
    
    541
    +  , "createThread"
    
    542
    +  , "ctermid"
    
    543
    +  , "ctermid_r"
    
    544
    +  , "ctime"
    
    545
    +  , "ctime_r"
    
    546
    +  , "current_mark_queue"
    
    547
    +  , "daemon"
    
    548
    +  , "daylight"
    
    549
    +  , "dbl_link_insert_after"
    
    550
    +  , "dbl_link_onto"
    
    551
    +  , "dbl_link_remove"
    
    552
    +  , "dbl_link_replace"
    
    553
    +  , "dead_weak_ptr_list"
    
    554
    +  , "deadlock_detect_gc"
    
    555
    +  , "debugBelch"
    
    556
    +  , "debugMsgFn"
    
    557
    +  , "debug_caf_list"
    
    558
    +  , "defaultRtsConfig"
    
    559
    +  , "deferMBlockFreeing"
    
    560
    +  , "deleteMinTimeoutQueue"
    
    561
    +  , "deleteTimeoutQueue"
    
    562
    +  , "devname"
    
    563
    +  , "devname_r"
    
    564
    +  , "difftime"
    
    565
    +  , "dirty_MUT_VAR"
    
    566
    +  , "dirty_MVAR"
    
    567
    +  , "dirty_STACK"
    
    568
    +  , "dirty_TSO"
    
    569
    +  , "dirty_TVAR"
    
    570
    +  , "discardElements"
    
    571
    +  , "discardTasksExcept"
    
    572
    +  , "div"
    
    573
    +  , "doIdleGCWork"
    
    574
    +  , "doneWithMsgThrowTo"
    
    575
    +  , "dprintf"
    
    576
    +  , "drand48"
    
    577
    +  , "dropExtension"
    
    578
    +  , "dumpIPEToEventLog"
    
    579
    +  , "dyn_caf_list"
    
    580
    +  , "ecvt"
    
    581
    +  , "emitTickyCounterDefs"
    
    582
    +  , "emitTickyCounterSamples"
    
    583
    +  , "enabled_capabilities"
    
    584
    +  , "endEventLogging"
    
    585
    +  , "endHeapProfiling"
    
    586
    +  , "endProfiling"
    
    587
    +  , "endsWithPath"
    
    588
    +  , "enlargeClosureTable"
    
    589
    +  , "enterFunCCS"
    
    590
    +  , "entering_PAP"
    
    591
    +  , "eq_thread"
    
    592
    +  , "era"
    
    593
    +  , "erand48"
    
    594
    +  , "erf"
    
    595
    +  , "erfc"
    
    596
    +  , "erfcf"
    
    597
    +  , "erfcl"
    
    598
    +  , "erff"
    
    599
    +  , "erfl"
    
    600
    +  , "errorBelch"
    
    601
    +  , "errorMsgFn"
    
    602
    +  , "evacuate"
    
    603
    +  , "evacuate1"
    
    604
    +  , "evacuate_BLACKHOLE"
    
    605
    +  , "evacuate_BLACKHOLE1"
    
    606
    +  , "eventLogStatus"
    
    607
    +  , "exec_block"
    
    608
    +  , "exit"
    
    609
    +  , "exitFn"
    
    610
    +  , "exitGlobalStore"
    
    611
    +  , "exitHeapOverflow"
    
    612
    +  , "exitHpc"
    
    613
    +  , "exitIOManager"
    
    614
    +  , "exitIpe"
    
    615
    +  , "exitLinker"
    
    616
    +  , "exitLinker_PEi386"
    
    617
    +  , "exitMyTask"
    
    618
    +  , "exitScheduler"
    
    619
    +  , "exitStableNameTable"
    
    620
    +  , "exitStablePtrTable"
    
    621
    +  , "exitStaticPtrTable"
    
    622
    +  , "exitStorage"
    
    623
    +  , "exitTicker"
    
    624
    +  , "exitTimer"
    
    625
    +  , "exitTopHandler"
    
    626
    +  , "exitUnloadCheck"
    
    627
    +  , "exp"
    
    628
    +  , "exp2"
    
    629
    +  , "exp2f"
    
    630
    +  , "exp2l"
    
    631
    +  , "expf"
    
    632
    +  , "expl"
    
    633
    +  , "expm1"
    
    634
    +  , "expm1f"
    
    635
    +  , "expm1l"
    
    636
    +  , "fabs"
    
    637
    +  , "fabsf"
    
    638
    +  , "fabsl"
    
    639
    +  , "fatalInternalErrorFn"
    
    640
    +  , "fclose"
    
    641
    +  , "fcvt"
    
    642
    +  , "fdim"
    
    643
    +  , "fdimf"
    
    644
    +  , "fdiml"
    
    645
    +  , "fdopen"
    
    646
    +  , "feof"
    
    647
    +  , "ferror"
    
    648
    +  , "fflush"
    
    649
    +  , "ffs"
    
    650
    +  , "ffsl"
    
    651
    +  , "ffsll"
    
    652
    +  , "fgetc"
    
    653
    +  , "fgetln"
    
    654
    +  , "fgetpos"
    
    655
    +  , "fgets"
    
    656
    +  , "fileno"
    
    657
    +  , "findAtomicallyFrameHelper"
    
    658
    +  , "findRetryFrameHelper"
    
    659
    +  , "findSystemLibrary"
    
    660
    +  , "findSystemLibrary_PEi386"
    
    661
    +  , "finiUserSignals"
    
    662
    +  , "finishCapEventLogging"
    
    663
    +  , "finishedNurseryBlock"
    
    664
    +  , "flockfile"
    
    665
    +  , "floor"
    
    666
    +  , "floorf"
    
    667
    +  , "floorl"
    
    668
    +  , "fls"
    
    669
    +  , "flsl"
    
    670
    +  , "flsll"
    
    671
    +  , "flushEventLog"
    
    672
    +  , "flushExec"
    
    673
    +  , "flushLocalEventsBuf"
    
    674
    +  , "fma"
    
    675
    +  , "fmaf"
    
    676
    +  , "fmal"
    
    677
    +  , "fmax"
    
    678
    +  , "fmaxf"
    
    679
    +  , "fmaxl"
    
    680
    +  , "fmemopen"
    
    681
    +  , "fmin"
    
    682
    +  , "fminf"
    
    683
    +  , "fminl"
    
    684
    +  , "fmod"
    
    685
    +  , "fmodf"
    
    686
    +  , "fmodl"
    
    687
    +  , "fmtcheck"
    
    688
    +  , "fopen"
    
    689
    +  , "foreignExportStablePtr"
    
    690
    +  , "foreignExportsFinishedLoadingObject"
    
    691
    +  , "foreignExportsLoadingObject"
    
    692
    +  , "forkOS_createThread"
    
    693
    +  , "forkProcess"
    
    694
    +  , "formatClosureDescIpe"
    
    695
    +  , "fprintf"
    
    696
    +  , "fpurge"
    
    697
    +  , "fputc"
    
    698
    +  , "fputs"
    
    699
    +  , "fread"
    
    700
    +  , "free"
    
    701
    +  , "freeAllMBlocks"
    
    702
    +  , "freeCapabilities"
    
    703
    +  , "freeChain"
    
    704
    +  , "freeChain_lock"
    
    705
    +  , "freeChain_sync"
    
    706
    +  , "freeExecPage"
    
    707
    +  , "freeFileLocking"
    
    708
    +  , "freeFullProgArgv"
    
    709
    +  , "freeGcThreads"
    
    710
    +  , "freeGroup"
    
    711
    +  , "freeGroup_lock"
    
    712
    +  , "freeGroup_sync"
    
    713
    +  , "freeHashSet"
    
    714
    +  , "freeHashTable"
    
    715
    +  , "freeHaskellFunctionPtr"
    
    716
    +  , "freeHeapProfiling"
    
    717
    +  , "freeInitFiniList"
    
    718
    +  , "freeMBlocks"
    
    719
    +  , "freeMarkQueue"
    
    720
    +  , "freeMyTask"
    
    721
    +  , "freeNativeCode_POSIX"
    
    722
    +  , "freeObjectCode"
    
    723
    +  , "freePreloadObjectFile_PEi386"
    
    724
    +  , "freeProddableBlocks"
    
    725
    +  , "freeProfiling"
    
    726
    +  , "freeProgEnvv"
    
    727
    +  , "freeRtsArgs"
    
    728
    +  , "freeScheduler"
    
    729
    +  , "freeSegments"
    
    730
    +  , "freeSnEntry"
    
    731
    +  , "freeStablePtr"
    
    732
    +  , "freeStablePtrUnsafe"
    
    733
    +  , "freeStorage"
    
    734
    +  , "freeStrHashTable"
    
    735
    +  , "freeTaskManager"
    
    736
    +  , "freeThreadingResources"
    
    737
    +  , "freeWSDeque"
    
    738
    +  , "free_adjustor"
    
    739
    +  , "freezeExecPage"
    
    740
    +  , "freopen"
    
    741
    +  , "frexp"
    
    742
    +  , "frexpf"
    
    743
    +  , "frexpl"
    
    744
    +  , "fscanf"
    
    745
    +  , "fseek"
    
    746
    +  , "fseeko"
    
    747
    +  , "fsetpos"
    
    748
    +  , "ftell"
    
    749
    +  , "ftello"
    
    750
    +  , "ftrylockfile"
    
    751
    +  , "funlockfile"
    
    752
    +  , "funopen"
    
    753
    +  , "fwrite"
    
    754
    +  , "g0"
    
    755
    +  , "gcStableNameTable"
    
    756
    +  , "gcThreadLiveBlocks"
    
    757
    +  , "gcThreadLiveWords"
    
    758
    +  , "gcWorkerThread"
    
    759
    +  , "gc_threads"
    
    760
    +  , "gcvt"
    
    761
    +  , "genLiveBlocks"
    
    762
    +  , "genLiveCopiedBlocks"
    
    763
    +  , "genLiveCopiedWords"
    
    764
    +  , "genLiveUncopiedBlocks"
    
    765
    +  , "genLiveUncopiedWords"
    
    766
    +  , "genLiveWords"
    
    767
    +  , "gen_workspace"
    
    768
    +  , "generateDump"
    
    769
    +  , "generateStack"
    
    770
    +  , "generations"
    
    771
    +  , "genericRaise"
    
    772
    +  , "getAllocations"
    
    773
    +  , "getCurrentThreadCPUTime"
    
    774
    +  , "getDelayTarget"
    
    775
    +  , "getFirstMBlock"
    
    776
    +  , "getFullProgArgv"
    
    777
    +  , "getHeaderInfo"
    
    778
    +  , "getMBlock"
    
    779
    +  , "getMBlockOnNode"
    
    780
    +  , "getMBlocks"
    
    781
    +  , "getMBlocksOnNode"
    
    782
    +  , "getMonotonicNSec"
    
    783
    +  , "getMyTask"
    
    784
    +  , "getNewNursery"
    
    785
    +  , "getNextMBlock"
    
    786
    +  , "getNumCapabilities"
    
    787
    +  , "getNumberOfProcessors"
    
    788
    +  , "getObjectLoadStatus"
    
    789
    +  , "getObjectLoadStatus_"
    
    790
    +  , "getObjectType"
    
    791
    +  , "getOrSetGHCConcSignalSignalHandlerStore"
    
    792
    +  , "getOrSetGHCConcWindowsIOManagerThreadStore"
    
    793
    +  , "getOrSetGHCConcWindowsPendingDelaysStore"
    
    794
    +  , "getOrSetGHCConcWindowsProddingStore"
    
    795
    +  , "getOrSetLibHSghcFastStringTable"
    
    796
    +  , "getOrSetLibHSghcGlobalHasNoDebugOutput"
    
    797
    +  , "getOrSetLibHSghcGlobalHasNoStateHack"
    
    798
    +  , "getOrSetLibHSghcGlobalHasPprDebug"
    
    799
    +  , "getOrSetSystemEventThreadEventManagerStore"
    
    800
    +  , "getOrSetSystemEventThreadIOManagerThreadStore"
    
    801
    +  , "getOrSetSystemTimerThreadEventManagerStore"
    
    802
    +  , "getOrSetSystemTimerThreadIOManagerThreadStore"
    
    803
    +  , "getOverlappedEntries"
    
    804
    +  , "getPageFaults"
    
    805
    +  , "getPageSize"
    
    806
    +  , "getPhysicalMemorySize"
    
    807
    +  , "getProcessCPUTime"
    
    808
    +  , "getProcessElapsedTime"
    
    809
    +  , "getProcessTimes"
    
    810
    +  , "getProgArgv"
    
    811
    +  , "getProgEnvv"
    
    812
    +  , "getRTSStats"
    
    813
    +  , "getRTSStatsEnabled"
    
    814
    +  , "getRecentActivity"
    
    815
    +  , "getSchedState"
    
    816
    +  , "getSectionKind_MachO"
    
    817
    +  , "getStablePtr"
    
    818
    +  , "getSymNumberOfAuxSymbols"
    
    819
    +  , "getSymSectionNumber"
    
    820
    +  , "getSymShortName"
    
    821
    +  , "getSymStorageClass"
    
    822
    +  , "getSymType"
    
    823
    +  , "getSymValue"
    
    824
    +  , "getSymbolSize"
    
    825
    +  , "getTopHandlerThread"
    
    826
    +  , "getUnixEpochTime"
    
    827
    +  , "getUserEra"
    
    828
    +  , "get_name_string"
    
    829
    +  , "get_sym_name"
    
    830
    +  , "getbsize"
    
    831
    +  , "getc"
    
    832
    +  , "getc_unlocked"
    
    833
    +  , "getchar"
    
    834
    +  , "getchar_unlocked"
    
    835
    +  , "getdate"
    
    836
    +  , "getdate_err"
    
    837
    +  , "getdelim"
    
    838
    +  , "getenv"
    
    839
    +  , "getiopolicy_np"
    
    840
    +  , "getline"
    
    841
    +  , "getloadavg"
    
    842
    +  , "getpriority"
    
    843
    +  , "getprogname"
    
    844
    +  , "getrlimit"
    
    845
    +  , "getrusage"
    
    846
    +  , "gets"
    
    847
    +  , "getsubopt"
    
    848
    +  , "getw"
    
    849
    +  , "ghc___aarch64_cas1_acq"
    
    850
    +  , "ghc___aarch64_cas1_acq_rel"
    
    851
    +  , "ghc___aarch64_cas1_relax"
    
    852
    +  , "ghc___aarch64_cas1_sync"
    
    853
    +  , "ghc___aarch64_cas2_acq"
    
    854
    +  , "ghc___aarch64_cas2_acq_rel"
    
    855
    +  , "ghc___aarch64_cas2_relax"
    
    856
    +  , "ghc___aarch64_cas2_sync"
    
    857
    +  , "ghc___aarch64_cas4_acq"
    
    858
    +  , "ghc___aarch64_cas4_acq_rel"
    
    859
    +  , "ghc___aarch64_cas4_relax"
    
    860
    +  , "ghc___aarch64_cas4_sync"
    
    861
    +  , "ghc___aarch64_cas8_acq"
    
    862
    +  , "ghc___aarch64_cas8_acq_rel"
    
    863
    +  , "ghc___aarch64_cas8_relax"
    
    864
    +  , "ghc___aarch64_cas8_sync"
    
    865
    +  , "ghc___aarch64_ldadd1_acq"
    
    866
    +  , "ghc___aarch64_ldadd1_acq_rel"
    
    867
    +  , "ghc___aarch64_ldadd1_rel"
    
    868
    +  , "ghc___aarch64_ldadd1_relax"
    
    869
    +  , "ghc___aarch64_ldadd1_sync"
    
    870
    +  , "ghc___aarch64_ldadd2_acq"
    
    871
    +  , "ghc___aarch64_ldadd2_acq_rel"
    
    872
    +  , "ghc___aarch64_ldadd2_rel"
    
    873
    +  , "ghc___aarch64_ldadd2_relax"
    
    874
    +  , "ghc___aarch64_ldadd2_sync"
    
    875
    +  , "ghc___aarch64_ldadd4_acq"
    
    876
    +  , "ghc___aarch64_ldadd4_acq_rel"
    
    877
    +  , "ghc___aarch64_ldadd4_rel"
    
    878
    +  , "ghc___aarch64_ldadd4_relax"
    
    879
    +  , "ghc___aarch64_ldadd4_sync"
    
    880
    +  , "ghc___aarch64_ldadd8_acq"
    
    881
    +  , "ghc___aarch64_ldadd8_acq_rel"
    
    882
    +  , "ghc___aarch64_ldadd8_rel"
    
    883
    +  , "ghc___aarch64_ldadd8_relax"
    
    884
    +  , "ghc___aarch64_ldadd8_sync"
    
    885
    +  , "ghc___aarch64_ldclr1_acq"
    
    886
    +  , "ghc___aarch64_ldclr1_acq_rel"
    
    887
    +  , "ghc___aarch64_ldclr1_rel"
    
    888
    +  , "ghc___aarch64_ldclr1_relax"
    
    889
    +  , "ghc___aarch64_ldclr1_sync"
    
    890
    +  , "ghc___aarch64_ldclr2_acq"
    
    891
    +  , "ghc___aarch64_ldclr2_acq_rel"
    
    892
    +  , "ghc___aarch64_ldclr2_rel"
    
    893
    +  , "ghc___aarch64_ldclr2_relax"
    
    894
    +  , "ghc___aarch64_ldclr2_sync"
    
    895
    +  , "ghc___aarch64_ldclr4_acq"
    
    896
    +  , "ghc___aarch64_ldclr4_acq_rel"
    
    897
    +  , "ghc___aarch64_ldclr4_rel"
    
    898
    +  , "ghc___aarch64_ldclr4_relax"
    
    899
    +  , "ghc___aarch64_ldclr4_sync"
    
    900
    +  , "ghc___aarch64_ldclr8_acq"
    
    901
    +  , "ghc___aarch64_ldclr8_acq_rel"
    
    902
    +  , "ghc___aarch64_ldclr8_rel"
    
    903
    +  , "ghc___aarch64_ldclr8_relax"
    
    904
    +  , "ghc___aarch64_ldclr8_sync"
    
    905
    +  , "ghc___aarch64_ldeor1_acq"
    
    906
    +  , "ghc___aarch64_ldeor1_acq_rel"
    
    907
    +  , "ghc___aarch64_ldeor1_rel"
    
    908
    +  , "ghc___aarch64_ldeor1_relax"
    
    909
    +  , "ghc___aarch64_ldeor1_sync"
    
    910
    +  , "ghc___aarch64_ldeor2_acq"
    
    911
    +  , "ghc___aarch64_ldeor2_acq_rel"
    
    912
    +  , "ghc___aarch64_ldeor2_rel"
    
    913
    +  , "ghc___aarch64_ldeor2_relax"
    
    914
    +  , "ghc___aarch64_ldeor2_sync"
    
    915
    +  , "ghc___aarch64_ldeor4_acq"
    
    916
    +  , "ghc___aarch64_ldeor4_acq_rel"
    
    917
    +  , "ghc___aarch64_ldeor4_rel"
    
    918
    +  , "ghc___aarch64_ldeor4_relax"
    
    919
    +  , "ghc___aarch64_ldeor4_sync"
    
    920
    +  , "ghc___aarch64_ldeor8_acq"
    
    921
    +  , "ghc___aarch64_ldeor8_acq_rel"
    
    922
    +  , "ghc___aarch64_ldeor8_rel"
    
    923
    +  , "ghc___aarch64_ldeor8_relax"
    
    924
    +  , "ghc___aarch64_ldeor8_sync"
    
    925
    +  , "ghc___aarch64_ldset1_acq"
    
    926
    +  , "ghc___aarch64_ldset1_acq_rel"
    
    927
    +  , "ghc___aarch64_ldset1_rel"
    
    928
    +  , "ghc___aarch64_ldset1_relax"
    
    929
    +  , "ghc___aarch64_ldset1_sync"
    
    930
    +  , "ghc___aarch64_ldset2_acq"
    
    931
    +  , "ghc___aarch64_ldset2_acq_rel"
    
    932
    +  , "ghc___aarch64_ldset2_rel"
    
    933
    +  , "ghc___aarch64_ldset2_relax"
    
    934
    +  , "ghc___aarch64_ldset2_sync"
    
    935
    +  , "ghc___aarch64_ldset4_acq"
    
    936
    +  , "ghc___aarch64_ldset4_acq_rel"
    
    937
    +  , "ghc___aarch64_ldset4_rel"
    
    938
    +  , "ghc___aarch64_ldset4_relax"
    
    939
    +  , "ghc___aarch64_ldset4_sync"
    
    940
    +  , "ghc___aarch64_ldset8_acq"
    
    941
    +  , "ghc___aarch64_ldset8_acq_rel"
    
    942
    +  , "ghc___aarch64_ldset8_rel"
    
    943
    +  , "ghc___aarch64_ldset8_relax"
    
    944
    +  , "ghc___aarch64_ldset8_sync"
    
    945
    +  , "ghc___aarch64_swp1_acq"
    
    946
    +  , "ghc___aarch64_swp1_acq_rel"
    
    947
    +  , "ghc___aarch64_swp1_rel"
    
    948
    +  , "ghc___aarch64_swp1_relax"
    
    949
    +  , "ghc___aarch64_swp1_sync"
    
    950
    +  , "ghc___aarch64_swp2_acq"
    
    951
    +  , "ghc___aarch64_swp2_acq_rel"
    
    952
    +  , "ghc___aarch64_swp2_rel"
    
    953
    +  , "ghc___aarch64_swp2_relax"
    
    954
    +  , "ghc___aarch64_swp2_sync"
    
    955
    +  , "ghc___aarch64_swp4_acq"
    
    956
    +  , "ghc___aarch64_swp4_acq_rel"
    
    957
    +  , "ghc___aarch64_swp4_rel"
    
    958
    +  , "ghc___aarch64_swp4_relax"
    
    959
    +  , "ghc___aarch64_swp4_sync"
    
    960
    +  , "ghc___aarch64_swp8_acq"
    
    961
    +  , "ghc___aarch64_swp8_acq_rel"
    
    962
    +  , "ghc___aarch64_swp8_rel"
    
    963
    +  , "ghc___aarch64_swp8_relax"
    
    964
    +  , "ghc___aarch64_swp8_sync"
    
    965
    +  , "ghc_hs_iface"
    
    966
    +  , "ghc_rts_opts"
    
    967
    +  , "ghc_tsan_atomic16_compare_exchange"
    
    968
    +  , "ghc_tsan_atomic32_compare_exchange"
    
    969
    +  , "ghc_tsan_atomic64_compare_exchange"
    
    970
    +  , "ghc_tsan_atomic8_compare_exchange"
    
    971
    +  , "ghc_unique_counter64"
    
    972
    +  , "ghc_unique_inc"
    
    973
    +  , "ghciInsertSymbolTable"
    
    974
    +  , "ghciLookupSymbolInfo"
    
    975
    +  , "gmtime"
    
    976
    +  , "gmtime_r"
    
    977
    +  , "grabCapability"
    
    978
    +  , "grab_local_todo_block"
    
    979
    +  , "grantpt"
    
    980
    +  , "handleProfTick"
    
    981
    +  , "hashBuffer"
    
    982
    +  , "hashStr"
    
    983
    +  , "hashWord"
    
    984
    +  , "heapCensus"
    
    985
    +  , "heapInsertNewCounter"
    
    986
    +  , "heap_overflow"
    
    987
    +  , "heap_view_closurePtrs"
    
    988
    +  , "heap_view_closureSize"
    
    989
    +  , "heap_view_closure_ptrs_in_pap_payload"
    
    990
    +  , "heapsort"
    
    991
    +  , "heapsort_b"
    
    992
    +  , "hp_file"
    
    993
    +  , "hs_add64"
    
    994
    +  , "hs_and64"
    
    995
    +  , "hs_atomic_add16"
    
    996
    +  , "hs_atomic_add32"
    
    997
    +  , "hs_atomic_add64"
    
    998
    +  , "hs_atomic_add8"
    
    999
    +  , "hs_atomic_and16"
    
    1000
    +  , "hs_atomic_and32"
    
    1001
    +  , "hs_atomic_and64"
    
    1002
    +  , "hs_atomic_and8"
    
    1003
    +  , "hs_atomic_nand16"
    
    1004
    +  , "hs_atomic_nand32"
    
    1005
    +  , "hs_atomic_nand64"
    
    1006
    +  , "hs_atomic_nand8"
    
    1007
    +  , "hs_atomic_or16"
    
    1008
    +  , "hs_atomic_or32"
    
    1009
    +  , "hs_atomic_or64"
    
    1010
    +  , "hs_atomic_or8"
    
    1011
    +  , "hs_atomic_sub16"
    
    1012
    +  , "hs_atomic_sub32"
    
    1013
    +  , "hs_atomic_sub64"
    
    1014
    +  , "hs_atomic_sub8"
    
    1015
    +  , "hs_atomic_xor16"
    
    1016
    +  , "hs_atomic_xor32"
    
    1017
    +  , "hs_atomic_xor64"
    
    1018
    +  , "hs_atomic_xor8"
    
    1019
    +  , "hs_atomicread16"
    
    1020
    +  , "hs_atomicread32"
    
    1021
    +  , "hs_atomicread64"
    
    1022
    +  , "hs_atomicread8"
    
    1023
    +  , "hs_atomicwrite16"
    
    1024
    +  , "hs_atomicwrite32"
    
    1025
    +  , "hs_atomicwrite64"
    
    1026
    +  , "hs_atomicwrite8"
    
    1027
    +  , "hs_bitrev16"
    
    1028
    +  , "hs_bitrev32"
    
    1029
    +  , "hs_bitrev64"
    
    1030
    +  , "hs_bitrev8"
    
    1031
    +  , "hs_bswap16"
    
    1032
    +  , "hs_bswap32"
    
    1033
    +  , "hs_bswap64"
    
    1034
    +  , "hs_clz16"
    
    1035
    +  , "hs_clz32"
    
    1036
    +  , "hs_clz64"
    
    1037
    +  , "hs_clz8"
    
    1038
    +  , "hs_cmpxchg16"
    
    1039
    +  , "hs_cmpxchg32"
    
    1040
    +  , "hs_cmpxchg64"
    
    1041
    +  , "hs_cmpxchg8"
    
    1042
    +  , "hs_ctz16"
    
    1043
    +  , "hs_ctz32"
    
    1044
    +  , "hs_ctz64"
    
    1045
    +  , "hs_ctz8"
    
    1046
    +  , "hs_eq64"
    
    1047
    +  , "hs_exit"
    
    1048
    +  , "hs_exit_nowait"
    
    1049
    +  , "hs_free_fun_ptr"
    
    1050
    +  , "hs_free_stable_ptr"
    
    1051
    +  , "hs_free_stable_ptr_unsafe"
    
    1052
    +  , "hs_geInt64"
    
    1053
    +  , "hs_geWord64"
    
    1054
    +  , "hs_gtInt64"
    
    1055
    +  , "hs_gtWord64"
    
    1056
    +  , "hs_hpc_module"
    
    1057
    +  , "hs_hpc_rootModule"
    
    1058
    +  , "hs_init"
    
    1059
    +  , "hs_init_ghc"
    
    1060
    +  , "hs_init_with_rtsopts"
    
    1061
    +  , "hs_int64ToInt"
    
    1062
    +  , "hs_intToInt64"
    
    1063
    +  , "hs_leInt64"
    
    1064
    +  , "hs_leWord64"
    
    1065
    +  , "hs_lock_stable_ptr_table"
    
    1066
    +  , "hs_lock_stable_tables"
    
    1067
    +  , "hs_ltInt64"
    
    1068
    +  , "hs_ltWord64"
    
    1069
    +  , "hs_main"
    
    1070
    +  , "hs_mul64"
    
    1071
    +  , "hs_ne64"
    
    1072
    +  , "hs_neg64"
    
    1073
    +  , "hs_not64"
    
    1074
    +  , "hs_or64"
    
    1075
    +  , "hs_pdep16"
    
    1076
    +  , "hs_pdep32"
    
    1077
    +  , "hs_pdep64"
    
    1078
    +  , "hs_pdep8"
    
    1079
    +  , "hs_perform_gc"
    
    1080
    +  , "hs_pext16"
    
    1081
    +  , "hs_pext32"
    
    1082
    +  , "hs_pext64"
    
    1083
    +  , "hs_pext8"
    
    1084
    +  , "hs_popcnt"
    
    1085
    +  , "hs_popcnt16"
    
    1086
    +  , "hs_popcnt32"
    
    1087
    +  , "hs_popcnt64"
    
    1088
    +  , "hs_popcnt8"
    
    1089
    +  , "hs_quotInt64"
    
    1090
    +  , "hs_quotWord64"
    
    1091
    +  , "hs_remInt64"
    
    1092
    +  , "hs_remWord64"
    
    1093
    +  , "hs_restoreConsoleCP"
    
    1094
    +  , "hs_set_argv"
    
    1095
    +  , "hs_spt_insert"
    
    1096
    +  , "hs_spt_insert_stableptr"
    
    1097
    +  , "hs_spt_key_count"
    
    1098
    +  , "hs_spt_keys"
    
    1099
    +  , "hs_spt_lookup"
    
    1100
    +  , "hs_spt_remove"
    
    1101
    +  , "hs_sub64"
    
    1102
    +  , "hs_thread_done"
    
    1103
    +  , "hs_try_putmvar"
    
    1104
    +  , "hs_try_putmvar_with_value"
    
    1105
    +  , "hs_uncheckedIShiftRA64"
    
    1106
    +  , "hs_uncheckedShiftL64"
    
    1107
    +  , "hs_uncheckedShiftRL64"
    
    1108
    +  , "hs_unlock_stable_ptr_table"
    
    1109
    +  , "hs_unlock_stable_tables"
    
    1110
    +  , "hs_word2float32"
    
    1111
    +  , "hs_word2float64"
    
    1112
    +  , "hs_word64ToWord"
    
    1113
    +  , "hs_wordToWord64"
    
    1114
    +  , "hs_xchg16"
    
    1115
    +  , "hs_xchg32"
    
    1116
    +  , "hs_xchg64"
    
    1117
    +  , "hs_xchg8"
    
    1118
    +  , "hs_xor64"
    
    1119
    +  , "hw_alloc_blocks"
    
    1120
    +  , "hypot"
    
    1121
    +  , "hypotf"
    
    1122
    +  , "hypotl"
    
    1123
    +  , "ilogb"
    
    1124
    +  , "ilogbf"
    
    1125
    +  , "ilogbl"
    
    1126
    +  , "imaxabs"
    
    1127
    +  , "imaxdiv"
    
    1128
    +  , "incrementUserEra"
    
    1129
    +  , "index"
    
    1130
    +  , "indexClosureTable"
    
    1131
    +  , "info_hdr_type"
    
    1132
    +  , "info_type"
    
    1133
    +  , "info_type_by_ip"
    
    1134
    +  , "info_update_frame"
    
    1135
    +  , "initAdjustors"
    
    1136
    +  , "initAllocator"
    
    1137
    +  , "initBdescr"
    
    1138
    +  , "initBlockAllocator"
    
    1139
    +  , "initBuiltinClosures"
    
    1140
    +  , "initCapabilities"
    
    1141
    +  , "initCapabilityIOManager"
    
    1142
    +  , "initClosureTable"
    
    1143
    +  , "initCondition"
    
    1144
    +  , "initElemTimeoutQueue"
    
    1145
    +  , "initFileLocking"
    
    1146
    +  , "initGcThreads"
    
    1147
    +  , "initGeneration"
    
    1148
    +  , "initGlobalStore"
    
    1149
    +  , "initHeapProfiling"
    
    1150
    +  , "initIOManager"
    
    1151
    +  , "initIOManagerAfterFork"
    
    1152
    +  , "initIpe"
    
    1153
    +  , "initLDVCtr"
    
    1154
    +  , "initLinker"
    
    1155
    +  , "initLinkerMMap"
    
    1156
    +  , "initLinker_"
    
    1157
    +  , "initLinker_PEi386"
    
    1158
    +  , "initMBlocks"
    
    1159
    +  , "initMarkQueue"
    
    1160
    +  , "initMutex"
    
    1161
    +  , "initProddableBlockSet"
    
    1162
    +  , "initProfTimer"
    
    1163
    +  , "initProfiling"
    
    1164
    +  , "initRtsFlagsDefaults"
    
    1165
    +  , "initScheduler"
    
    1166
    +  , "initSegment"
    
    1167
    +  , "initSpinLock"
    
    1168
    +  , "initStableNameTable"
    
    1169
    +  , "initStablePtrTable"
    
    1170
    +  , "initStats0"
    
    1171
    +  , "initStats1"
    
    1172
    +  , "initStorage"
    
    1173
    +  , "initTaskManager"
    
    1174
    +  , "initTicker"
    
    1175
    +  , "initTimer"
    
    1176
    +  , "initTopHandler"
    
    1177
    +  , "initUnloadCheck"
    
    1178
    +  , "initWeakForGC"
    
    1179
    +  , "initializeTimer"
    
    1180
    +  , "initstate"
    
    1181
    +  , "insertClosureTable"
    
    1182
    +  , "insertCompactHash"
    
    1183
    +  , "insertHashSet"
    
    1184
    +  , "insertHashTable"
    
    1185
    +  , "insertHashTable_"
    
    1186
    +  , "insertOCSectionIndices"
    
    1187
    +  , "insertStrHashTable"
    
    1188
    +  , "insertSymbol"
    
    1189
    +  , "insertTimeoutQueue"
    
    1190
    +  , "install_vtalrm_handler"
    
    1191
    +  , "interp_shutdown"
    
    1192
    +  , "interp_startup"
    
    1193
    +  , "interruptAllCapabilities"
    
    1194
    +  , "interruptCapability"
    
    1195
    +  , "interruptIOManagerEvent"
    
    1196
    +  , "interruptOSThread"
    
    1197
    +  , "interruptStgRts"
    
    1198
    +  , "interruptible"
    
    1199
    +  , "ioManagerDie"
    
    1200
    +  , "ioManagerFinished"
    
    1201
    +  , "ioManagerStart"
    
    1202
    +  , "ioManagerWakeup"
    
    1203
    +  , "iomgr_type"
    
    1204
    +  , "isAlive"
    
    1205
    +  , "isAlreadyLoaded"
    
    1206
    +  , "isArchive"
    
    1207
    +  , "isSymbolImport"
    
    1208
    +  , "isSymbolWeak"
    
    1209
    +  , "isThreadBound"
    
    1210
    +  , "is_io_mng_native_p"
    
    1211
    +  , "iterHashTable"
    
    1212
    +  , "j0"
    
    1213
    +  , "j1"
    
    1214
    +  , "jn"
    
    1215
    +  , "joinOSThread"
    
    1216
    +  , "jrand48"
    
    1217
    +  , "keepCAFs"
    
    1218
    +  , "kernelThreadId"
    
    1219
    +  , "keyCountHashTable"
    
    1220
    +  , "keysHashTable"
    
    1221
    +  , "l64a"
    
    1222
    +  , "labelThread"
    
    1223
    +  , "labs"
    
    1224
    +  , "large_alloc_lim"
    
    1225
    +  , "lcong48"
    
    1226
    +  , "ldexp"
    
    1227
    +  , "ldexpf"
    
    1228
    +  , "ldexpl"
    
    1229
    +  , "ldiv"
    
    1230
    +  , "lgamma"
    
    1231
    +  , "lgammaf"
    
    1232
    +  , "lgammal"
    
    1233
    +  , "libdwGetBacktrace"
    
    1234
    +  , "libdwLookupLocation"
    
    1235
    +  , "libdwPoolClear"
    
    1236
    +  , "libdwPoolInit"
    
    1237
    +  , "libdwPoolRelease"
    
    1238
    +  , "libdwPoolTake"
    
    1239
    +  , "libdwPrintBacktrace"
    
    1240
    +  , "listAllBlocks"
    
    1241
    +  , "listThreads"
    
    1242
    +  , "llabs"
    
    1243
    +  , "lldiv"
    
    1244
    +  , "llrint"
    
    1245
    +  , "llrintf"
    
    1246
    +  , "llrintl"
    
    1247
    +  , "llround"
    
    1248
    +  , "llroundf"
    
    1249
    +  , "llroundl"
    
    1250
    +  , "loadArchive"
    
    1251
    +  , "loadArchive_"
    
    1252
    +  , "loadNativeObj"
    
    1253
    +  , "loadNativeObjFromLinkerScript_ELF"
    
    1254
    +  , "loadNativeObj_POSIX"
    
    1255
    +  , "loadObj"
    
    1256
    +  , "loadOc"
    
    1257
    +  , "loadSymbol"
    
    1258
    +  , "loaded_objects"
    
    1259
    +  , "localtime"
    
    1260
    +  , "localtime_r"
    
    1261
    +  , "lockFile"
    
    1262
    +  , "log"
    
    1263
    +  , "log10"
    
    1264
    +  , "log10f"
    
    1265
    +  , "log10l"
    
    1266
    +  , "log1p"
    
    1267
    +  , "log1pf"
    
    1268
    +  , "log1pl"
    
    1269
    +  , "log2"
    
    1270
    +  , "log2_ceil"
    
    1271
    +  , "log2f"
    
    1272
    +  , "log2l"
    
    1273
    +  , "logb"
    
    1274
    +  , "logbf"
    
    1275
    +  , "logbl"
    
    1276
    +  , "logf"
    
    1277
    +  , "logl"
    
    1278
    +  , "lookupDependentSymbol"
    
    1279
    +  , "lookupHashTable"
    
    1280
    +  , "lookupHashTable_"
    
    1281
    +  , "lookupIPE"
    
    1282
    +  , "lookupIPEId"
    
    1283
    +  , "lookupObjectByPath"
    
    1284
    +  , "lookupStableName"
    
    1285
    +  , "lookupStrHashTable"
    
    1286
    +  , "lookupSymbol"
    
    1287
    +  , "lookupSymbolInDLL_PEi386"
    
    1288
    +  , "lookupSymbolInNativeObj"
    
    1289
    +  , "lookupSymbol_PEi386"
    
    1290
    +  , "lookupTlsgdSymbol"
    
    1291
    +  , "lrand48"
    
    1292
    +  , "lrint"
    
    1293
    +  , "lrintf"
    
    1294
    +  , "lrintl"
    
    1295
    +  , "lround"
    
    1296
    +  , "lroundf"
    
    1297
    +  , "lroundl"
    
    1298
    +  , "machoGetMisalignment"
    
    1299
    +  , "major_gc"
    
    1300
    +  , "malloc"
    
    1301
    +  , "mapHashTable"
    
    1302
    +  , "mapHashTableKeys"
    
    1303
    +  , "mark"
    
    1304
    +  , "markCAFs"
    
    1305
    +  , "markCapabilities"
    
    1306
    +  , "markCapability"
    
    1307
    +  , "markCapabilityIOManager"
    
    1308
    +  , "markClosureTable"
    
    1309
    +  , "markObjectCode"
    
    1310
    +  , "markQueueAddRoot"
    
    1311
    +  , "markQueuePush"
    
    1312
    +  , "markQueuePushArray"
    
    1313
    +  , "markQueuePushClosure"
    
    1314
    +  , "markQueuePushClosureGC"
    
    1315
    +  , "markQueuePushClosure_"
    
    1316
    +  , "markQueuePushFunSrt"
    
    1317
    +  , "markQueuePushThunkSrt"
    
    1318
    +  , "markStablePtrTable"
    
    1319
    +  , "markWeakList"
    
    1320
    +  , "markWeakPtrList"
    
    1321
    +  , "mark_sp"
    
    1322
    +  , "mark_stack_bd"
    
    1323
    +  , "mark_stack_top_bd"
    
    1324
    +  , "max_n_capabilities"
    
    1325
    +  , "maybePerformBlockedException"
    
    1326
    +  , "mblen"
    
    1327
    +  , "mblocks_allocated"
    
    1328
    +  , "mbstowcs"
    
    1329
    +  , "mbtowc"
    
    1330
    +  , "memccpy"
    
    1331
    +  , "memchr"
    
    1332
    +  , "memcmp"
    
    1333
    +  , "memcpy"
    
    1334
    +  , "memmem"
    
    1335
    +  , "memmove"
    
    1336
    +  , "memset"
    
    1337
    +  , "memset_pattern16"
    
    1338
    +  , "memset_pattern4"
    
    1339
    +  , "memset_pattern8"
    
    1340
    +  , "memset_s"
    
    1341
    +  , "mergesort"
    
    1342
    +  , "mergesort_b"
    
    1343
    +  , "messageBlackHole"
    
    1344
    +  , "migrateThread"
    
    1345
    +  , "mkOc"
    
    1346
    +  , "mkPath"
    
    1347
    +  , "mkstemp"
    
    1348
    +  , "mktemp"
    
    1349
    +  , "mktime"
    
    1350
    +  , "mmapAnon"
    
    1351
    +  , "mmapAnonForLinker"
    
    1352
    +  , "mmapForLinker"
    
    1353
    +  , "mmap_32bit_base"
    
    1354
    +  , "modf"
    
    1355
    +  , "modff"
    
    1356
    +  , "modfl"
    
    1357
    +  , "moreCapabilities"
    
    1358
    +  , "move_STACK"
    
    1359
    +  , "mprotectForLinker"
    
    1360
    +  , "mrand48"
    
    1361
    +  , "munmapForLinker"
    
    1362
    +  , "my_task"
    
    1363
    +  , "myindex"
    
    1364
    +  , "n_alloc_blocks"
    
    1365
    +  , "n_capabilities"
    
    1366
    +  , "n_gc_threads"
    
    1367
    +  , "n_nonmoving_large_blocks"
    
    1368
    +  , "n_numa_nodes"
    
    1369
    +  , "n_nurseries"
    
    1370
    +  , "n_unloaded_objects"
    
    1371
    +  , "nan"
    
    1372
    +  , "nanf"
    
    1373
    +  , "nanl"
    
    1374
    +  , "nanosleep"
    
    1375
    +  , "nearbyint"
    
    1376
    +  , "nearbyintf"
    
    1377
    +  , "nearbyintl"
    
    1378
    +  , "newArena"
    
    1379
    +  , "newBoundTask"
    
    1380
    +  , "newCAF"
    
    1381
    +  , "newGCdCAF"
    
    1382
    +  , "newNurseryBlock"
    
    1383
    +  , "newRetainedCAF"
    
    1384
    +  , "newSpark"
    
    1385
    +  , "newWSDeque"
    
    1386
    +  , "new_adjustor_pool"
    
    1387
    +  , "new_adjustor_pool_from_template"
    
    1388
    +  , "nextafter"
    
    1389
    +  , "nextafterf"
    
    1390
    +  , "nextafterl"
    
    1391
    +  , "nexttoward"
    
    1392
    +  , "nexttowardf"
    
    1393
    +  , "nexttowardl"
    
    1394
    +  , "nonmovingAddUpdRemSetBlocks"
    
    1395
    +  , "nonmovingAllocate"
    
    1396
    +  , "nonmovingAllocateGC"
    
    1397
    +  , "nonmovingAllocatorCensus"
    
    1398
    +  , "nonmovingAllocatorCensusWithWords"
    
    1399
    +  , "nonmovingBlockConcurrentMark"
    
    1400
    +  , "nonmovingBlockCount"
    
    1401
    +  , "nonmovingClearSegment"
    
    1402
    +  , "nonmovingClearSegmentFreeBlocks"
    
    1403
    +  , "nonmovingCollect"
    
    1404
    +  , "nonmovingConcurrentMarkIsRunning"
    
    1405
    +  , "nonmovingExit"
    
    1406
    +  , "nonmovingGetSegment"
    
    1407
    +  , "nonmovingGetSegment_unchecked"
    
    1408
    +  , "nonmovingHeap"
    
    1409
    +  , "nonmovingInit"
    
    1410
    +  , "nonmovingInitCapability"
    
    1411
    +  , "nonmovingInitUpdRemSet"
    
    1412
    +  , "nonmovingIsAlive"
    
    1413
    +  , "nonmovingMark"
    
    1414
    +  , "nonmovingMarkDeadWeak"
    
    1415
    +  , "nonmovingMarkDeadWeaks"
    
    1416
    +  , "nonmovingMarkEpoch"
    
    1417
    +  , "nonmovingMarkInit"
    
    1418
    +  , "nonmovingMarkLiveWeak"
    
    1419
    +  , "nonmovingMarkQueueEntryType"
    
    1420
    +  , "nonmovingMarkUnlimitedBudget"
    
    1421
    +  , "nonmovingMarkWeakPtrList"
    
    1422
    +  , "nonmovingPrintAllocatorCensus"
    
    1423
    +  , "nonmovingPruneFreeSegmentList"
    
    1424
    +  , "nonmovingPushActiveSegment"
    
    1425
    +  , "nonmovingPushFilledSegment"
    
    1426
    +  , "nonmovingPushFreeSegment"
    
    1427
    +  , "nonmovingResurrectThreads"
    
    1428
    +  , "nonmovingScavengeOne"
    
    1429
    +  , "nonmovingSegmentAllocator"
    
    1430
    +  , "nonmovingSegmentBlockCount"
    
    1431
    +  , "nonmovingSegmentBlockSize"
    
    1432
    +  , "nonmovingSegmentGetBlock"
    
    1433
    +  , "nonmovingSegmentGetBlock_"
    
    1434
    +  , "nonmovingSegmentInfo"
    
    1435
    +  , "nonmovingSetClosureMark"
    
    1436
    +  , "nonmovingSetMark"
    
    1437
    +  , "nonmovingSweep"
    
    1438
    +  , "nonmovingSweepCompactObjects"
    
    1439
    +  , "nonmovingSweepLargeObjects"
    
    1440
    +  , "nonmovingSweepMutLists"
    
    1441
    +  , "nonmovingSweepStableNameTable"
    
    1442
    +  , "nonmovingTidyThreads"
    
    1443
    +  , "nonmovingTidyWeaks"
    
    1444
    +  , "nonmovingTraceAllocatorCensus"
    
    1445
    +  , "nonmovingUnblockConcurrentMark"
    
    1446
    +  , "nonmoving_alloca_cnt"
    
    1447
    +  , "nonmoving_alloca_dense_cnt"
    
    1448
    +  , "nonmoving_block_idx"
    
    1449
    +  , "nonmoving_eval_thunk_selector"
    
    1450
    +  , "nonmoving_large_objects"
    
    1451
    +  , "nonmoving_large_words"
    
    1452
    +  , "nonmoving_old_threads"
    
    1453
    +  , "nonmoving_old_weak_ptr_list"
    
    1454
    +  , "nonmoving_segment_live_words"
    
    1455
    +  , "nonmoving_threads"
    
    1456
    +  , "nonmoving_weak_ptr_list"
    
    1457
    +  , "nonmoving_write_barrier_enabled"
    
    1458
    +  , "notifyIOManagerCapabilitiesChanged"
    
    1459
    +  , "nrand48"
    
    1460
    +  , "numa_map"
    
    1461
    +  , "nurseries"
    
    1462
    +  , "object_code_mark_bit"
    
    1463
    +  , "objects"
    
    1464
    +  , "ocAllocateExtras_ELF"
    
    1465
    +  , "ocAllocateExtras_MachO"
    
    1466
    +  , "ocBuildSegments_MachO"
    
    1467
    +  , "ocDeinit_ELF"
    
    1468
    +  , "ocDeinit_MachO"
    
    1469
    +  , "ocFlushInstructionCache"
    
    1470
    +  , "ocGetNames_ELF"
    
    1471
    +  , "ocGetNames_MachO"
    
    1472
    +  , "ocGetNames_PEi386"
    
    1473
    +  , "ocInit_ELF"
    
    1474
    +  , "ocInit_MachO"
    
    1475
    +  , "ocResolve_ELF"
    
    1476
    +  , "ocResolve_MachO"
    
    1477
    +  , "ocResolve_PEi386"
    
    1478
    +  , "ocRunFini_ELF"
    
    1479
    +  , "ocRunFini_MachO"
    
    1480
    +  , "ocRunFini_PEi386"
    
    1481
    +  , "ocRunInit_ELF"
    
    1482
    +  , "ocRunInit_MachO"
    
    1483
    +  , "ocRunInit_PEi386"
    
    1484
    +  , "ocVerifyImage_ELF"
    
    1485
    +  , "ocVerifyImage_MachO"
    
    1486
    +  , "ocVerifyImage_PEi386"
    
    1487
    +  , "oldest_gen"
    
    1488
    +  , "onComplete"
    
    1489
    +  , "open_memstream"
    
    1490
    +  , "osBindMBlocksToNode"
    
    1491
    +  , "osBuiltWithNumaSupport"
    
    1492
    +  , "osFreeAllMBlocks"
    
    1493
    +  , "osFreeMBlocks"
    
    1494
    +  , "osGetMBlocks"
    
    1495
    +  , "osMemInit"
    
    1496
    +  , "osNumaAvailable"
    
    1497
    +  , "osNumaMask"
    
    1498
    +  , "osNumaNodes"
    
    1499
    +  , "osReleaseFreeMemory"
    
    1500
    +  , "osThreadId"
    
    1501
    +  , "osThreadIsAlive"
    
    1502
    +  , "overwritingClosure"
    
    1503
    +  , "overwritingClosureSize"
    
    1504
    +  , "overwritingMutableClosureOfs"
    
    1505
    +  , "parseIOManagerFlag"
    
    1506
    +  , "pathdir"
    
    1507
    +  , "pathdup"
    
    1508
    +  , "pauseHeapProfTimer"
    
    1509
    +  , "pauseTokenCapability"
    
    1510
    +  , "pclose"
    
    1511
    +  , "peakWorkerCount"
    
    1512
    +  , "peak_mblocks_allocated"
    
    1513
    +  , "pending_sync"
    
    1514
    +  , "performBlockingMajorGC"
    
    1515
    +  , "performGC"
    
    1516
    +  , "performHeapProfile"
    
    1517
    +  , "performMajorGC"
    
    1518
    +  , "performTickySample"
    
    1519
    +  , "performTryPutMVar"
    
    1520
    +  , "perror"
    
    1521
    +  , "pollCompletedTimeoutsOrIO"
    
    1522
    +  , "poolFlush"
    
    1523
    +  , "poolFree"
    
    1524
    +  , "poolGetDesiredSize"
    
    1525
    +  , "poolGetMaxSize"
    
    1526
    +  , "poolInit"
    
    1527
    +  , "poolRelease"
    
    1528
    +  , "poolSetDesiredSize"
    
    1529
    +  , "poolSetMaxSize"
    
    1530
    +  , "poolTake"
    
    1531
    +  , "poolTryTake"
    
    1532
    +  , "popRunQueue"
    
    1533
    +  , "popWSDeque"
    
    1534
    +  , "popen"
    
    1535
    +  , "posix2time"
    
    1536
    +  , "posix_memalign"
    
    1537
    +  , "posix_openpt"
    
    1538
    +  , "postCapMsg"
    
    1539
    +  , "postEvent"
    
    1540
    +  , "postEventNoCap"
    
    1541
    +  , "postInitEvent"
    
    1542
    +  , "postMsg"
    
    1543
    +  , "postSchedEvent"
    
    1544
    +  , "postThreadLabel"
    
    1545
    +  , "pow"
    
    1546
    +  , "powf"
    
    1547
    +  , "powl"
    
    1548
    +  , "prepareUnloadCheck"
    
    1549
    +  , "prev_static_flag"
    
    1550
    +  , "printLoadedObjects"
    
    1551
    +  , "printObj"
    
    1552
    +  , "printPtr"
    
    1553
    +  , "printRtsInfo"
    
    1554
    +  , "printf"
    
    1555
    +  , "processForeignExports"
    
    1556
    +  , "processTimeoutCompletions"
    
    1557
    +  , "prof_file"
    
    1558
    +  , "prog_argc"
    
    1559
    +  , "prog_argv"
    
    1560
    +  , "prog_name"
    
    1561
    +  , "promoteInRunQueue"
    
    1562
    +  , "psort"
    
    1563
    +  , "psort_b"
    
    1564
    +  , "psort_r"
    
    1565
    +  , "ptsname"
    
    1566
    +  , "ptsname_r"
    
    1567
    +  , "purgeObj"
    
    1568
    +  , "pushCostCentre"
    
    1569
    +  , "pushOnRunQueue"
    
    1570
    +  , "pushWSDeque"
    
    1571
    +  , "push_mark_stack"
    
    1572
    +  , "push_scanned_block"
    
    1573
    +  , "putc"
    
    1574
    +  , "putc_unlocked"
    
    1575
    +  , "putchar"
    
    1576
    +  , "putchar_unlocked"
    
    1577
    +  , "putenv"
    
    1578
    +  , "puts"
    
    1579
    +  , "putw"
    
    1580
    +  , "qsort"
    
    1581
    +  , "qsort_b"
    
    1582
    +  , "qsort_r"
    
    1583
    +  , "queueIOThread"
    
    1584
    +  , "radixsort"
    
    1585
    +  , "raiseAsync"
    
    1586
    +  , "raiseExceptionHelper"
    
    1587
    +  , "rand"
    
    1588
    +  , "rand_r"
    
    1589
    +  , "random"
    
    1590
    +  , "realloc"
    
    1591
    +  , "reallocf"
    
    1592
    +  , "realpath"
    
    1593
    +  , "recent_activity"
    
    1594
    +  , "recordClosureMutated"
    
    1595
    +  , "recordMutableCap"
    
    1596
    +  , "recordMutableGen_GC"
    
    1597
    +  , "refreshProfilingCCSs"
    
    1598
    +  , "registerAlertableWait"
    
    1599
    +  , "registerCcList"
    
    1600
    +  , "registerCcsList"
    
    1601
    +  , "registerForeignExports"
    
    1602
    +  , "registerIOCPHandle"
    
    1603
    +  , "registerInfoProvList"
    
    1604
    +  , "releaseAndWakeupCapability"
    
    1605
    +  , "releaseCapability"
    
    1606
    +  , "releaseCapability_"
    
    1607
    +  , "releaseFreeMemory"
    
    1608
    +  , "releaseThreadNode"
    
    1609
    +  , "remainder"
    
    1610
    +  , "remainderf"
    
    1611
    +  , "remainderl"
    
    1612
    +  , "rememberOldStableNameAddresses"
    
    1613
    +  , "remove"
    
    1614
    +  , "removeClosureTable"
    
    1615
    +  , "removeCompactClosureTable"
    
    1616
    +  , "removeHashTable"
    
    1617
    +  , "removeHashTable_"
    
    1618
    +  , "removeLibrarySearchPath"
    
    1619
    +  , "removeLibrarySearchPath_PEi386"
    
    1620
    +  , "removeStrHashTable"
    
    1621
    +  , "removeThreadFromDeQueue"
    
    1622
    +  , "removeThreadFromQueue"
    
    1623
    +  , "remquo"
    
    1624
    +  , "remquof"
    
    1625
    +  , "remquol"
    
    1626
    +  , "rename"
    
    1627
    +  , "renameat"
    
    1628
    +  , "renameatx_np"
    
    1629
    +  , "renamex_np"
    
    1630
    +  , "reportHeapOverflow"
    
    1631
    +  , "reportMemoryMap"
    
    1632
    +  , "reportStackOverflow"
    
    1633
    +  , "requestHeapCensus"
    
    1634
    +  , "requestTickyCounterSamples"
    
    1635
    +  , "resetAbandonRequestWait"
    
    1636
    +  , "resetChildProcessStats"
    
    1637
    +  , "resetNurseries"
    
    1638
    +  , "resetTerminalSettings"
    
    1639
    +  , "resizeGenerations"
    
    1640
    +  , "resizeNurseries"
    
    1641
    +  , "resizeNurseriesFixed"
    
    1642
    +  , "resolveObjs"
    
    1643
    +  , "resolveSymbolAddr"
    
    1644
    +  , "resolveSymbolAddr_PEi386"
    
    1645
    +  , "resumeHeapProfTimer"
    
    1646
    +  , "resumeThread"
    
    1647
    +  , "resurrectThreads"
    
    1648
    +  , "resurrected_threads"
    
    1649
    +  , "returnMemoryToOS"
    
    1650
    +  , "revertCAFs"
    
    1651
    +  , "revertible_caf_list"
    
    1652
    +  , "rewind"
    
    1653
    +  , "rindex"
    
    1654
    +  , "rint"
    
    1655
    +  , "rintf"
    
    1656
    +  , "rintl"
    
    1657
    +  , "round"
    
    1658
    +  , "roundf"
    
    1659
    +  , "roundl"
    
    1660
    +  , "rpmatch"
    
    1661
    +  , "rtsBadAlignmentBarf"
    
    1662
    +  , "rtsConfig"
    
    1663
    +  , "rtsDebugMsgFn"
    
    1664
    +  , "rtsErrorMsgFn"
    
    1665
    +  , "rtsExtraSyms"
    
    1666
    +  , "rtsFatalInternalErrorFn"
    
    1667
    +  , "rtsMemcpyRangeOverlap"
    
    1668
    +  , "rtsOutOfBoundsAccess"
    
    1669
    +  , "rtsSleep"
    
    1670
    +  , "rtsSupportsBoundThreads"
    
    1671
    +  , "rtsSyms"
    
    1672
    +  , "rtsSysErrorMsgFn"
    
    1673
    +  , "rtsTimerSignal"
    
    1674
    +  , "rts_apply"
    
    1675
    +  , "rts_argc"
    
    1676
    +  , "rts_argv"
    
    1677
    +  , "rts_breakpoint_io_action"
    
    1678
    +  , "rts_checkSchedStatus"
    
    1679
    +  , "rts_clearMemory"
    
    1680
    +  , "rts_disableStopAfterReturn"
    
    1681
    +  , "rts_disableStopNextBreakpoint"
    
    1682
    +  , "rts_disableStopNextBreakpointAll"
    
    1683
    +  , "rts_disableThreadAllocationLimit"
    
    1684
    +  , "rts_done"
    
    1685
    +  , "rts_enableStopAfterReturn"
    
    1686
    +  , "rts_enableStopNextBreakpoint"
    
    1687
    +  , "rts_enableStopNextBreakpointAll"
    
    1688
    +  , "rts_enableThreadAllocationLimit"
    
    1689
    +  , "rts_eval"
    
    1690
    +  , "rts_evalIO"
    
    1691
    +  , "rts_evalLazyIO"
    
    1692
    +  , "rts_evalLazyIO_"
    
    1693
    +  , "rts_evalStableIO"
    
    1694
    +  , "rts_evalStableIOMain"
    
    1695
    +  , "rts_eval_"
    
    1696
    +  , "rts_getBool"
    
    1697
    +  , "rts_getChar"
    
    1698
    +  , "rts_getDouble"
    
    1699
    +  , "rts_getFloat"
    
    1700
    +  , "rts_getFunPtr"
    
    1701
    +  , "rts_getInt"
    
    1702
    +  , "rts_getInt16"
    
    1703
    +  , "rts_getInt32"
    
    1704
    +  , "rts_getInt64"
    
    1705
    +  , "rts_getInt8"
    
    1706
    +  , "rts_getPtr"
    
    1707
    +  , "rts_getSchedStatus"
    
    1708
    +  , "rts_getStablePtr"
    
    1709
    +  , "rts_getThreadId"
    
    1710
    +  , "rts_getWord"
    
    1711
    +  , "rts_getWord16"
    
    1712
    +  , "rts_getWord32"
    
    1713
    +  , "rts_getWord64"
    
    1714
    +  , "rts_getWord8"
    
    1715
    +  , "rts_inCall"
    
    1716
    +  , "rts_isDebugged"
    
    1717
    +  , "rts_isDynamic"
    
    1718
    +  , "rts_isPaused"
    
    1719
    +  , "rts_isProfiled"
    
    1720
    +  , "rts_isThreaded"
    
    1721
    +  , "rts_isTracing"
    
    1722
    +  , "rts_listMiscRoots"
    
    1723
    +  , "rts_listThreads"
    
    1724
    +  , "rts_lock"
    
    1725
    +  , "rts_mkBool"
    
    1726
    +  , "rts_mkChar"
    
    1727
    +  , "rts_mkDouble"
    
    1728
    +  , "rts_mkFloat"
    
    1729
    +  , "rts_mkFunPtr"
    
    1730
    +  , "rts_mkInt"
    
    1731
    +  , "rts_mkInt16"
    
    1732
    +  , "rts_mkInt32"
    
    1733
    +  , "rts_mkInt64"
    
    1734
    +  , "rts_mkInt8"
    
    1735
    +  , "rts_mkPtr"
    
    1736
    +  , "rts_mkStablePtr"
    
    1737
    +  , "rts_mkString"
    
    1738
    +  , "rts_mkWord"
    
    1739
    +  , "rts_mkWord16"
    
    1740
    +  , "rts_mkWord32"
    
    1741
    +  , "rts_mkWord64"
    
    1742
    +  , "rts_mkWord8"
    
    1743
    +  , "rts_pause"
    
    1744
    +  , "rts_pinThreadToNumaNode"
    
    1745
    +  , "rts_resume"
    
    1746
    +  , "rts_setInCallCapability"
    
    1747
    +  , "rts_setMainThread"
    
    1748
    +  , "rts_stop_next_breakpoint"
    
    1749
    +  , "rts_stop_on_exception"
    
    1750
    +  , "rts_unlock"
    
    1751
    +  , "rts_unsafeGetMyCapability"
    
    1752
    +  , "rts_waitConsoleHandlerCompletion"
    
    1753
    +  , "runAllCFinalizers"
    
    1754
    +  , "runCFinalizers"
    
    1755
    +  , "runFini"
    
    1756
    +  , "runInit"
    
    1757
    +  , "runSomeFinalizers"
    
    1758
    +  , "running_finalizers"
    
    1759
    +  , "scalb"
    
    1760
    +  , "scalbln"
    
    1761
    +  , "scalblnf"
    
    1762
    +  , "scalblnl"
    
    1763
    +  , "scalbn"
    
    1764
    +  , "scalbnf"
    
    1765
    +  , "scalbnl"
    
    1766
    +  , "scanf"
    
    1767
    +  , "scavengeLiveWeak"
    
    1768
    +  , "scavengeNonmovingSegment"
    
    1769
    +  , "scavengeTSO"
    
    1770
    +  , "scavengeTSOIOManager"
    
    1771
    +  , "scavenge_AP"
    
    1772
    +  , "scavenge_PAP"
    
    1773
    +  , "scavenge_capability_mut_lists"
    
    1774
    +  , "scavenge_compact"
    
    1775
    +  , "scavenge_continuation"
    
    1776
    +  , "scavenge_fun_srt"
    
    1777
    +  , "scavenge_loop"
    
    1778
    +  , "scavenge_mut_arr_ptrs"
    
    1779
    +  , "scavenge_stack"
    
    1780
    +  , "scavenge_thunk_srt"
    
    1781
    +  , "sched_state"
    
    1782
    +  , "scheduleFinalizers"
    
    1783
    +  , "scheduleThread"
    
    1784
    +  , "scheduleThreadNow"
    
    1785
    +  , "scheduleThreadOn"
    
    1786
    +  , "scheduleWaitThread"
    
    1787
    +  , "scheduleWorker"
    
    1788
    +  , "seed48"
    
    1789
    +  , "selectIOManager"
    
    1790
    +  , "sendCloneStackMessage"
    
    1791
    +  , "setAllocLimitKill"
    
    1792
    +  , "setFullProgArgv"
    
    1793
    +  , "setHighMemDynamic"
    
    1794
    +  , "setIOManagerControlFd"
    
    1795
    +  , "setIOManagerWakeupFd"
    
    1796
    +  , "setImportSymbol"
    
    1797
    +  , "setKeepCAFs"
    
    1798
    +  , "setMyTask"
    
    1799
    +  , "setNumCapabilities"
    
    1800
    +  , "setProgArgv"
    
    1801
    +  , "setRecentActivity"
    
    1802
    +  , "setSchedState"
    
    1803
    +  , "setSymbolInfo"
    
    1804
    +  , "setTSOLink"
    
    1805
    +  , "setTSOPrev"
    
    1806
    +  , "setThreadAffinity"
    
    1807
    +  , "setThreadLabel"
    
    1808
    +  , "setThreadNode"
    
    1809
    +  , "setTimerManagerControlFd"
    
    1810
    +  , "setUserEra"
    
    1811
    +  , "setVectorSupport"
    
    1812
    +  , "setWeakSymbol"
    
    1813
    +  , "setbuf"
    
    1814
    +  , "setbuffer"
    
    1815
    +  , "setenv"
    
    1816
    +  , "setiopolicy_np"
    
    1817
    +  , "setkey"
    
    1818
    +  , "setlinebuf"
    
    1819
    +  , "setpriority"
    
    1820
    +  , "setprogname"
    
    1821
    +  , "setrlimit"
    
    1822
    +  , "setstate"
    
    1823
    +  , "setupRtsFlags"
    
    1824
    +  , "setvbuf"
    
    1825
    +  , "shouldCompact"
    
    1826
    +  , "showIOManager"
    
    1827
    +  , "showStgWord64"
    
    1828
    +  , "shutdownAllocator"
    
    1829
    +  , "shutdownAsyncIO"
    
    1830
    +  , "shutdownAsyncWinIO"
    
    1831
    +  , "shutdownCapabilities"
    
    1832
    +  , "shutdownHaskell"
    
    1833
    +  , "shutdownHaskellAndExit"
    
    1834
    +  , "shutdownHaskellAndSignal"
    
    1835
    +  , "shutdownThread"
    
    1836
    +  , "signal"
    
    1837
    +  , "signalCondition"
    
    1838
    +  , "signal_handlers"
    
    1839
    +  , "signgam"
    
    1840
    +  , "sin"
    
    1841
    +  , "sinf"
    
    1842
    +  , "sinh"
    
    1843
    +  , "sinhf"
    
    1844
    +  , "sinhl"
    
    1845
    +  , "sinl"
    
    1846
    +  , "sizeClosureTable"
    
    1847
    +  , "size_t"
    
    1848
    +  , "snprintf"
    
    1849
    +  , "sprintf"
    
    1850
    +  , "sqrt"
    
    1851
    +  , "sqrtf"
    
    1852
    +  , "sqrtl"
    
    1853
    +  , "sradixsort"
    
    1854
    +  , "srand"
    
    1855
    +  , "srand48"
    
    1856
    +  , "sranddev"
    
    1857
    +  , "srandom"
    
    1858
    +  , "srandomdev"
    
    1859
    +  , "sscanf"
    
    1860
    +  , "stableNameLock"
    
    1861
    +  , "stableNameUnlock"
    
    1862
    +  , "stablePtrLock"
    
    1863
    +  , "stablePtrUnlock"
    
    1864
    +  , "stable_name_table"
    
    1865
    +  , "stable_ptr_table"
    
    1866
    +  , "startEventLogging"
    
    1867
    +  , "startHeapProfTimer"
    
    1868
    +  , "startProfTimer"
    
    1869
    +  , "startSignalHandlers"
    
    1870
    +  , "startTicker"
    
    1871
    +  , "startTimer"
    
    1872
    +  , "startupAsyncIO"
    
    1873
    +  , "startupAsyncWinIO"
    
    1874
    +  , "startupHaskell"
    
    1875
    +  , "startupHpc"
    
    1876
    +  , "statDescribeGens"
    
    1877
    +  , "stat_endExit"
    
    1878
    +  , "stat_endGC"
    
    1879
    +  , "stat_endGCWorker"
    
    1880
    +  , "stat_endInit"
    
    1881
    +  , "stat_endNonmovingGc"
    
    1882
    +  , "stat_endNonmovingGcSync"
    
    1883
    +  , "stat_exit"
    
    1884
    +  , "stat_exitReport"
    
    1885
    +  , "stat_getElapsedGCTime"
    
    1886
    +  , "stat_getElapsedTime"
    
    1887
    +  , "stat_startExit"
    
    1888
    +  , "stat_startGC"
    
    1889
    +  , "stat_startGCSync"
    
    1890
    +  , "stat_startGCWorker"
    
    1891
    +  , "stat_startInit"
    
    1892
    +  , "stat_startNonmovingGc"
    
    1893
    +  , "stat_startNonmovingGcSync"
    
    1894
    +  , "stat_workerStop"
    
    1895
    +  , "stealWSDeque"
    
    1896
    +  , "stealWSDeque_"
    
    1897
    +  , "stgFree"
    
    1898
    +  , "stgFreeAligned"
    
    1899
    +  , "stgMallocAlignedBytes"
    
    1900
    +  , "stgReallocBytes"
    
    1901
    +  , "stg_AP_NOUPD_entry"
    
    1902
    +  , "stg_AP_NOUPD_info"
    
    1903
    +  , "stg_AP_STACK_NOUPD_entry"
    
    1904
    +  , "stg_AP_STACK_NOUPD_info"
    
    1905
    +  , "stg_AP_STACK_entry"
    
    1906
    +  , "stg_AP_STACK_info"
    
    1907
    +  , "stg_AP_entry"
    
    1908
    +  , "stg_AP_info"
    
    1909
    +  , "stg_ARR_WORDS_entry"
    
    1910
    +  , "stg_ARR_WORDS_info"
    
    1911
    +  , "stg_ASYNCIOOP_entry"
    
    1912
    +  , "stg_ASYNCIOOP_info"
    
    1913
    +  , "stg_ASYNCIO_LIVE0_closure"
    
    1914
    +  , "stg_ASYNCIO_LIVE0_entry"
    
    1915
    +  , "stg_ASYNCIO_LIVE0_info"
    
    1916
    +  , "stg_BCO_entry"
    
    1917
    +  , "stg_BCO_info"
    
    1918
    +  , "stg_BLACKHOLE_entry"
    
    1919
    +  , "stg_BLACKHOLE_info"
    
    1920
    +  , "stg_BLOCKING_QUEUE_CLEAN_entry"
    
    1921
    +  , "stg_BLOCKING_QUEUE_CLEAN_info"
    
    1922
    +  , "stg_BLOCKING_QUEUE_DIRTY_entry"
    
    1923
    +  , "stg_BLOCKING_QUEUE_DIRTY_info"
    
    1924
    +  , "stg_CAF_BLACKHOLE_entry"
    
    1925
    +  , "stg_CAF_BLACKHOLE_info"
    
    1926
    +  , "stg_CHARLIKE_closure"
    
    1927
    +  , "stg_CLOSURE_TABLE_NULL_closure"
    
    1928
    +  , "stg_CLOSURE_TABLE_NULL_entry"
    
    1929
    +  , "stg_CLOSURE_TABLE_NULL_info"
    
    1930
    +  , "stg_COMPACT_NFDATA_CLEAN_entry"
    
    1931
    +  , "stg_COMPACT_NFDATA_CLEAN_info"
    
    1932
    +  , "stg_COMPACT_NFDATA_DIRTY_entry"
    
    1933
    +  , "stg_COMPACT_NFDATA_DIRTY_info"
    
    1934
    +  , "stg_CONTINUATION_apply"
    
    1935
    +  , "stg_CONTINUATION_entry"
    
    1936
    +  , "stg_CONTINUATION_info"
    
    1937
    +  , "stg_C_FINALIZER_LIST_entry"
    
    1938
    +  , "stg_C_FINALIZER_LIST_info"
    
    1939
    +  , "stg_DEAD_WEAK_entry"
    
    1940
    +  , "stg_DEAD_WEAK_info"
    
    1941
    +  , "stg_END_STM_CHUNK_LIST_closure"
    
    1942
    +  , "stg_END_STM_CHUNK_LIST_entry"
    
    1943
    +  , "stg_END_STM_CHUNK_LIST_info"
    
    1944
    +  , "stg_END_STM_WATCH_QUEUE_closure"
    
    1945
    +  , "stg_END_STM_WATCH_QUEUE_entry"
    
    1946
    +  , "stg_END_STM_WATCH_QUEUE_info"
    
    1947
    +  , "stg_END_TSO_QUEUE_closure"
    
    1948
    +  , "stg_END_TSO_QUEUE_entry"
    
    1949
    +  , "stg_END_TSO_QUEUE_info"
    
    1950
    +  , "stg_EVACUATED_entry"
    
    1951
    +  , "stg_EVACUATED_info"
    
    1952
    +  , "stg_GCD_CAF_entry"
    
    1953
    +  , "stg_GCD_CAF_info"
    
    1954
    +  , "stg_IND_STATIC_entry"
    
    1955
    +  , "stg_IND_STATIC_info"
    
    1956
    +  , "stg_IND_entry"
    
    1957
    +  , "stg_IND_info"
    
    1958
    +  , "stg_INTLIKE_closure"
    
    1959
    +  , "stg_MSG_BLACKHOLE_entry"
    
    1960
    +  , "stg_MSG_BLACKHOLE_info"
    
    1961
    +  , "stg_MSG_CLONE_STACK_entry"
    
    1962
    +  , "stg_MSG_CLONE_STACK_info"
    
    1963
    +  , "stg_MSG_NULL_entry"
    
    1964
    +  , "stg_MSG_NULL_info"
    
    1965
    +  , "stg_MSG_THROWTO_entry"
    
    1966
    +  , "stg_MSG_THROWTO_info"
    
    1967
    +  , "stg_MSG_TRY_WAKEUP_entry"
    
    1968
    +  , "stg_MSG_TRY_WAKEUP_info"
    
    1969
    +  , "stg_MUT_ARR_PTRS_CLEAN_entry"
    
    1970
    +  , "stg_MUT_ARR_PTRS_CLEAN_info"
    
    1971
    +  , "stg_MUT_ARR_PTRS_DIRTY_entry"
    
    1972
    +  , "stg_MUT_ARR_PTRS_DIRTY_info"
    
    1973
    +  , "stg_MUT_ARR_PTRS_FROZEN_CLEAN_entry"
    
    1974
    +  , "stg_MUT_ARR_PTRS_FROZEN_CLEAN_info"
    
    1975
    +  , "stg_MUT_ARR_PTRS_FROZEN_DIRTY_entry"
    
    1976
    +  , "stg_MUT_ARR_PTRS_FROZEN_DIRTY_info"
    
    1977
    +  , "stg_MUT_ARR_WORDS_entry"
    
    1978
    +  , "stg_MUT_ARR_WORDS_info"
    
    1979
    +  , "stg_MUT_VAR_CLEAN_entry"
    
    1980
    +  , "stg_MUT_VAR_CLEAN_info"
    
    1981
    +  , "stg_MUT_VAR_DIRTY_entry"
    
    1982
    +  , "stg_MUT_VAR_DIRTY_info"
    
    1983
    +  , "stg_MVAR_CLEAN_entry"
    
    1984
    +  , "stg_MVAR_CLEAN_info"
    
    1985
    +  , "stg_MVAR_DIRTY_entry"
    
    1986
    +  , "stg_MVAR_DIRTY_info"
    
    1987
    +  , "stg_MVAR_TSO_QUEUE_entry"
    
    1988
    +  , "stg_MVAR_TSO_QUEUE_info"
    
    1989
    +  , "stg_NO_FINALIZER_closure"
    
    1990
    +  , "stg_NO_FINALIZER_entry"
    
    1991
    +  , "stg_NO_FINALIZER_info"
    
    1992
    +  , "stg_NO_TREC_closure"
    
    1993
    +  , "stg_NO_TREC_entry"
    
    1994
    +  , "stg_NO_TREC_info"
    
    1995
    +  , "stg_PAP_apply"
    
    1996
    +  , "stg_PAP_entry"
    
    1997
    +  , "stg_PAP_info"
    
    1998
    +  , "stg_PROMPT_TAG_entry"
    
    1999
    +  , "stg_PROMPT_TAG_info"
    
    2000
    +  , "stg_RUBBISH_ENTRY_entry"
    
    2001
    +  , "stg_RUBBISH_ENTRY_info"
    
    2002
    +  , "stg_SMALL_MUT_ARR_PTRS_CLEAN_entry"
    
    2003
    +  , "stg_SMALL_MUT_ARR_PTRS_CLEAN_info"
    
    2004
    +  , "stg_SMALL_MUT_ARR_PTRS_DIRTY_entry"
    
    2005
    +  , "stg_SMALL_MUT_ARR_PTRS_DIRTY_info"
    
    2006
    +  , "stg_SMALL_MUT_ARR_PTRS_FROZEN_CLEAN_entry"
    
    2007
    +  , "stg_SMALL_MUT_ARR_PTRS_FROZEN_CLEAN_info"
    
    2008
    +  , "stg_SMALL_MUT_ARR_PTRS_FROZEN_DIRTY_entry"
    
    2009
    +  , "stg_SMALL_MUT_ARR_PTRS_FROZEN_DIRTY_info"
    
    2010
    +  , "stg_SRT_10_entry"
    
    2011
    +  , "stg_SRT_10_info"
    
    2012
    +  , "stg_SRT_11_entry"
    
    2013
    +  , "stg_SRT_11_info"
    
    2014
    +  , "stg_SRT_12_entry"
    
    2015
    +  , "stg_SRT_12_info"
    
    2016
    +  , "stg_SRT_13_entry"
    
    2017
    +  , "stg_SRT_13_info"
    
    2018
    +  , "stg_SRT_14_entry"
    
    2019
    +  , "stg_SRT_14_info"
    
    2020
    +  , "stg_SRT_15_entry"
    
    2021
    +  , "stg_SRT_15_info"
    
    2022
    +  , "stg_SRT_16_entry"
    
    2023
    +  , "stg_SRT_16_info"
    
    2024
    +  , "stg_SRT_1_entry"
    
    2025
    +  , "stg_SRT_1_info"
    
    2026
    +  , "stg_SRT_2_entry"
    
    2027
    +  , "stg_SRT_2_info"
    
    2028
    +  , "stg_SRT_3_entry"
    
    2029
    +  , "stg_SRT_3_info"
    
    2030
    +  , "stg_SRT_4_entry"
    
    2031
    +  , "stg_SRT_4_info"
    
    2032
    +  , "stg_SRT_5_entry"
    
    2033
    +  , "stg_SRT_5_info"
    
    2034
    +  , "stg_SRT_6_entry"
    
    2035
    +  , "stg_SRT_6_info"
    
    2036
    +  , "stg_SRT_7_entry"
    
    2037
    +  , "stg_SRT_7_info"
    
    2038
    +  , "stg_SRT_8_entry"
    
    2039
    +  , "stg_SRT_8_info"
    
    2040
    +  , "stg_SRT_9_entry"
    
    2041
    +  , "stg_SRT_9_info"
    
    2042
    +  , "stg_STABLE_NAME_entry"
    
    2043
    +  , "stg_STABLE_NAME_info"
    
    2044
    +  , "stg_STACK_entry"
    
    2045
    +  , "stg_STACK_info"
    
    2046
    +  , "stg_STM_AWOKEN_closure"
    
    2047
    +  , "stg_STM_AWOKEN_entry"
    
    2048
    +  , "stg_STM_AWOKEN_info"
    
    2049
    +  , "stg_TIMEOUT_QUEUE_EMPTY_closure"
    
    2050
    +  , "stg_TIMEOUT_QUEUE_EMPTY_entry"
    
    2051
    +  , "stg_TIMEOUT_QUEUE_EMPTY_info"
    
    2052
    +  , "stg_TIMEOUT_QUEUE_entry"
    
    2053
    +  , "stg_TIMEOUT_QUEUE_info"
    
    2054
    +  , "stg_TREC_CHUNK_entry"
    
    2055
    +  , "stg_TREC_CHUNK_info"
    
    2056
    +  , "stg_TREC_HEADER_entry"
    
    2057
    +  , "stg_TREC_HEADER_info"
    
    2058
    +  , "stg_TSO_entry"
    
    2059
    +  , "stg_TSO_info"
    
    2060
    +  , "stg_TVAR_CLEAN_entry"
    
    2061
    +  , "stg_TVAR_CLEAN_info"
    
    2062
    +  , "stg_TVAR_DIRTY_entry"
    
    2063
    +  , "stg_TVAR_DIRTY_info"
    
    2064
    +  , "stg_TVAR_WATCH_QUEUE_entry"
    
    2065
    +  , "stg_TVAR_WATCH_QUEUE_info"
    
    2066
    +  , "stg_WEAK_entry"
    
    2067
    +  , "stg_WEAK_info"
    
    2068
    +  , "stg_WHITEHOLE_entry"
    
    2069
    +  , "stg_WHITEHOLE_info"
    
    2070
    +  , "stg_absentErrorzh"
    
    2071
    +  , "stg_addCFinalizzerToWeakzh"
    
    2072
    +  , "stg_ann_frame_info"
    
    2073
    +  , "stg_ann_frame_ret"
    
    2074
    +  , "stg_annotateStackzh"
    
    2075
    +  , "stg_ap_0_fast"
    
    2076
    +  , "stg_ap_1_upd_entry"
    
    2077
    +  , "stg_ap_1_upd_info"
    
    2078
    +  , "stg_ap_2_upd_entry"
    
    2079
    +  , "stg_ap_2_upd_info"
    
    2080
    +  , "stg_ap_3_upd_entry"
    
    2081
    +  , "stg_ap_3_upd_info"
    
    2082
    +  , "stg_ap_4_upd_entry"
    
    2083
    +  , "stg_ap_4_upd_info"
    
    2084
    +  , "stg_ap_5_upd_entry"
    
    2085
    +  , "stg_ap_5_upd_info"
    
    2086
    +  , "stg_ap_6_upd_entry"
    
    2087
    +  , "stg_ap_6_upd_info"
    
    2088
    +  , "stg_ap_7_upd_entry"
    
    2089
    +  , "stg_ap_7_upd_info"
    
    2090
    +  , "stg_ap_d_fast"
    
    2091
    +  , "stg_ap_d_info"
    
    2092
    +  , "stg_ap_d_ret"
    
    2093
    +  , "stg_ap_f_fast"
    
    2094
    +  , "stg_ap_f_info"
    
    2095
    +  , "stg_ap_f_ret"
    
    2096
    +  , "stg_ap_l_fast"
    
    2097
    +  , "stg_ap_l_info"
    
    2098
    +  , "stg_ap_l_ret"
    
    2099
    +  , "stg_ap_n_fast"
    
    2100
    +  , "stg_ap_n_info"
    
    2101
    +  , "stg_ap_n_ret"
    
    2102
    +  , "stg_ap_p_fast"
    
    2103
    +  , "stg_ap_p_info"
    
    2104
    +  , "stg_ap_p_ret"
    
    2105
    +  , "stg_ap_pp_fast"
    
    2106
    +  , "stg_ap_pp_info"
    
    2107
    +  , "stg_ap_pp_ret"
    
    2108
    +  , "stg_ap_ppp_fast"
    
    2109
    +  , "stg_ap_ppp_info"
    
    2110
    +  , "stg_ap_ppp_ret"
    
    2111
    +  , "stg_ap_pppp_fast"
    
    2112
    +  , "stg_ap_pppp_info"
    
    2113
    +  , "stg_ap_pppp_ret"
    
    2114
    +  , "stg_ap_ppppp_fast"
    
    2115
    +  , "stg_ap_ppppp_info"
    
    2116
    +  , "stg_ap_ppppp_ret"
    
    2117
    +  , "stg_ap_pppppp_fast"
    
    2118
    +  , "stg_ap_pppppp_info"
    
    2119
    +  , "stg_ap_pppppp_ret"
    
    2120
    +  , "stg_ap_pppv_fast"
    
    2121
    +  , "stg_ap_pppv_info"
    
    2122
    +  , "stg_ap_pppv_ret"
    
    2123
    +  , "stg_ap_ppv_fast"
    
    2124
    +  , "stg_ap_ppv_info"
    
    2125
    +  , "stg_ap_ppv_ret"
    
    2126
    +  , "stg_ap_pv_fast"
    
    2127
    +  , "stg_ap_pv_info"
    
    2128
    +  , "stg_ap_pv_ret"
    
    2129
    +  , "stg_ap_stack_entries"
    
    2130
    +  , "stg_ap_stk_v16"
    
    2131
    +  , "stg_ap_stk_v32"
    
    2132
    +  , "stg_ap_stk_v64"
    
    2133
    +  , "stg_ap_v16_fast"
    
    2134
    +  , "stg_ap_v16_info"
    
    2135
    +  , "stg_ap_v16_ret"
    
    2136
    +  , "stg_ap_v32_fast"
    
    2137
    +  , "stg_ap_v32_info"
    
    2138
    +  , "stg_ap_v32_ret"
    
    2139
    +  , "stg_ap_v64_fast"
    
    2140
    +  , "stg_ap_v64_info"
    
    2141
    +  , "stg_ap_v64_ret"
    
    2142
    +  , "stg_ap_v_fast"
    
    2143
    +  , "stg_ap_v_info"
    
    2144
    +  , "stg_ap_v_ret"
    
    2145
    +  , "stg_apply_interp_info"
    
    2146
    +  , "stg_apply_interp_ret"
    
    2147
    +  , "stg_arg_bitmaps"
    
    2148
    +  , "stg_atomicModifyMutVar2zh"
    
    2149
    +  , "stg_atomicModifyMutVarzuzh"
    
    2150
    +  , "stg_atomically_entry"
    
    2151
    +  , "stg_atomically_frame_info"
    
    2152
    +  , "stg_atomically_frame_ret"
    
    2153
    +  , "stg_atomically_info"
    
    2154
    +  , "stg_atomically_waiting_frame_info"
    
    2155
    +  , "stg_atomically_waiting_frame_ret"
    
    2156
    +  , "stg_atomicallyzh"
    
    2157
    +  , "stg_bh_upd_frame_info"
    
    2158
    +  , "stg_bh_upd_frame_ret"
    
    2159
    +  , "stg_block_blackhole"
    
    2160
    +  , "stg_block_blackhole_finally"
    
    2161
    +  , "stg_block_noregs"
    
    2162
    +  , "stg_block_putmvar"
    
    2163
    +  , "stg_block_putmvar_info"
    
    2164
    +  , "stg_block_putmvar_ret"
    
    2165
    +  , "stg_block_readmvar"
    
    2166
    +  , "stg_block_readmvar_info"
    
    2167
    +  , "stg_block_readmvar_ret"
    
    2168
    +  , "stg_block_stmwait"
    
    2169
    +  , "stg_block_takemvar"
    
    2170
    +  , "stg_block_takemvar_info"
    
    2171
    +  , "stg_block_takemvar_ret"
    
    2172
    +  , "stg_block_throwto"
    
    2173
    +  , "stg_block_throwto_info"
    
    2174
    +  , "stg_block_throwto_ret"
    
    2175
    +  , "stg_casArrayzh"
    
    2176
    +  , "stg_casInt16Arrayzh"
    
    2177
    +  , "stg_casInt32Arrayzh"
    
    2178
    +  , "stg_casInt64Arrayzh"
    
    2179
    +  , "stg_casInt8Arrayzh"
    
    2180
    +  , "stg_casIntArrayzh"
    
    2181
    +  , "stg_casMutVarzh"
    
    2182
    +  , "stg_casSmallArrayzh"
    
    2183
    +  , "stg_castDoubleToWord64zh"
    
    2184
    +  , "stg_castFloatToWord32zh"
    
    2185
    +  , "stg_castWord32ToFloatzh"
    
    2186
    +  , "stg_castWord64ToDoublezh"
    
    2187
    +  , "stg_catchRetryzh"
    
    2188
    +  , "stg_catchSTMzh"
    
    2189
    +  , "stg_catch_entry"
    
    2190
    +  , "stg_catch_frame_info"
    
    2191
    +  , "stg_catch_frame_ret"
    
    2192
    +  , "stg_catch_info"
    
    2193
    +  , "stg_catch_retry_frame_info"
    
    2194
    +  , "stg_catch_retry_frame_ret"
    
    2195
    +  , "stg_catch_stm_frame_info"
    
    2196
    +  , "stg_catch_stm_frame_ret"
    
    2197
    +  , "stg_catchzh"
    
    2198
    +  , "stg_clearCCSzh"
    
    2199
    +  , "stg_cloneArrayzh"
    
    2200
    +  , "stg_cloneMutableArrayzh"
    
    2201
    +  , "stg_cloneSmallArrayzh"
    
    2202
    +  , "stg_cloneSmallMutableArrayzh"
    
    2203
    +  , "stg_closureSizzezh"
    
    2204
    +  , "stg_compactAddWithSharingzh"
    
    2205
    +  , "stg_compactAddzh"
    
    2206
    +  , "stg_compactAllocateBlockzh"
    
    2207
    +  , "stg_compactAppendzh"
    
    2208
    +  , "stg_compactContainsAnyzh"
    
    2209
    +  , "stg_compactContainszh"
    
    2210
    +  , "stg_compactFixupPointerszh"
    
    2211
    +  , "stg_compactGetFirstBlockzh"
    
    2212
    +  , "stg_compactGetNextBlockzh"
    
    2213
    +  , "stg_compactGetRootzh"
    
    2214
    +  , "stg_compactNewzh"
    
    2215
    +  , "stg_compactResizzezh"
    
    2216
    +  , "stg_compactSizzezh"
    
    2217
    +  , "stg_control0zh"
    
    2218
    +  , "stg_control0zh_ll"
    
    2219
    +  , "stg_copyArray_barrier"
    
    2220
    +  , "stg_copyArrayzh"
    
    2221
    +  , "stg_copyMutableArrayzh"
    
    2222
    +  , "stg_copySmallArrayzh"
    
    2223
    +  , "stg_copySmallMutableArrayzh"
    
    2224
    +  , "stg_ctoi_D1_info"
    
    2225
    +  , "stg_ctoi_D1_ret"
    
    2226
    +  , "stg_ctoi_F1_info"
    
    2227
    +  , "stg_ctoi_F1_ret"
    
    2228
    +  , "stg_ctoi_L1_info"
    
    2229
    +  , "stg_ctoi_L1_ret"
    
    2230
    +  , "stg_ctoi_R1n_info"
    
    2231
    +  , "stg_ctoi_R1n_ret"
    
    2232
    +  , "stg_ctoi_R1p_info"
    
    2233
    +  , "stg_ctoi_R1p_ret"
    
    2234
    +  , "stg_ctoi_V_info"
    
    2235
    +  , "stg_ctoi_V_ret"
    
    2236
    +  , "stg_ctoi_t"
    
    2237
    +  , "stg_ctoi_t0_info"
    
    2238
    +  , "stg_ctoi_t0_ret"
    
    2239
    +  , "stg_ctoi_t10_info"
    
    2240
    +  , "stg_ctoi_t10_ret"
    
    2241
    +  , "stg_ctoi_t11_info"
    
    2242
    +  , "stg_ctoi_t11_ret"
    
    2243
    +  , "stg_ctoi_t12_info"
    
    2244
    +  , "stg_ctoi_t12_ret"
    
    2245
    +  , "stg_ctoi_t13_info"
    
    2246
    +  , "stg_ctoi_t13_ret"
    
    2247
    +  , "stg_ctoi_t14_info"
    
    2248
    +  , "stg_ctoi_t14_ret"
    
    2249
    +  , "stg_ctoi_t15_info"
    
    2250
    +  , "stg_ctoi_t15_ret"
    
    2251
    +  , "stg_ctoi_t16_info"
    
    2252
    +  , "stg_ctoi_t16_ret"
    
    2253
    +  , "stg_ctoi_t17_info"
    
    2254
    +  , "stg_ctoi_t17_ret"
    
    2255
    +  , "stg_ctoi_t18_info"
    
    2256
    +  , "stg_ctoi_t18_ret"
    
    2257
    +  , "stg_ctoi_t19_info"
    
    2258
    +  , "stg_ctoi_t19_ret"
    
    2259
    +  , "stg_ctoi_t1_info"
    
    2260
    +  , "stg_ctoi_t1_ret"
    
    2261
    +  , "stg_ctoi_t20_info"
    
    2262
    +  , "stg_ctoi_t20_ret"
    
    2263
    +  , "stg_ctoi_t21_info"
    
    2264
    +  , "stg_ctoi_t21_ret"
    
    2265
    +  , "stg_ctoi_t22_info"
    
    2266
    +  , "stg_ctoi_t22_ret"
    
    2267
    +  , "stg_ctoi_t23_info"
    
    2268
    +  , "stg_ctoi_t23_ret"
    
    2269
    +  , "stg_ctoi_t24_info"
    
    2270
    +  , "stg_ctoi_t24_ret"
    
    2271
    +  , "stg_ctoi_t25_info"
    
    2272
    +  , "stg_ctoi_t25_ret"
    
    2273
    +  , "stg_ctoi_t26_info"
    
    2274
    +  , "stg_ctoi_t26_ret"
    
    2275
    +  , "stg_ctoi_t27_info"
    
    2276
    +  , "stg_ctoi_t27_ret"
    
    2277
    +  , "stg_ctoi_t28_info"
    
    2278
    +  , "stg_ctoi_t28_ret"
    
    2279
    +  , "stg_ctoi_t29_info"
    
    2280
    +  , "stg_ctoi_t29_ret"
    
    2281
    +  , "stg_ctoi_t2_info"
    
    2282
    +  , "stg_ctoi_t2_ret"
    
    2283
    +  , "stg_ctoi_t30_info"
    
    2284
    +  , "stg_ctoi_t30_ret"
    
    2285
    +  , "stg_ctoi_t31_info"
    
    2286
    +  , "stg_ctoi_t31_ret"
    
    2287
    +  , "stg_ctoi_t32_info"
    
    2288
    +  , "stg_ctoi_t32_ret"
    
    2289
    +  , "stg_ctoi_t33_info"
    
    2290
    +  , "stg_ctoi_t33_ret"
    
    2291
    +  , "stg_ctoi_t34_info"
    
    2292
    +  , "stg_ctoi_t34_ret"
    
    2293
    +  , "stg_ctoi_t35_info"
    
    2294
    +  , "stg_ctoi_t35_ret"
    
    2295
    +  , "stg_ctoi_t36_info"
    
    2296
    +  , "stg_ctoi_t36_ret"
    
    2297
    +  , "stg_ctoi_t37_info"
    
    2298
    +  , "stg_ctoi_t37_ret"
    
    2299
    +  , "stg_ctoi_t38_info"
    
    2300
    +  , "stg_ctoi_t38_ret"
    
    2301
    +  , "stg_ctoi_t39_info"
    
    2302
    +  , "stg_ctoi_t39_ret"
    
    2303
    +  , "stg_ctoi_t3_info"
    
    2304
    +  , "stg_ctoi_t3_ret"
    
    2305
    +  , "stg_ctoi_t40_info"
    
    2306
    +  , "stg_ctoi_t40_ret"
    
    2307
    +  , "stg_ctoi_t41_info"
    
    2308
    +  , "stg_ctoi_t41_ret"
    
    2309
    +  , "stg_ctoi_t42_info"
    
    2310
    +  , "stg_ctoi_t42_ret"
    
    2311
    +  , "stg_ctoi_t43_info"
    
    2312
    +  , "stg_ctoi_t43_ret"
    
    2313
    +  , "stg_ctoi_t44_info"
    
    2314
    +  , "stg_ctoi_t44_ret"
    
    2315
    +  , "stg_ctoi_t45_info"
    
    2316
    +  , "stg_ctoi_t45_ret"
    
    2317
    +  , "stg_ctoi_t46_info"
    
    2318
    +  , "stg_ctoi_t46_ret"
    
    2319
    +  , "stg_ctoi_t47_info"
    
    2320
    +  , "stg_ctoi_t47_ret"
    
    2321
    +  , "stg_ctoi_t48_info"
    
    2322
    +  , "stg_ctoi_t48_ret"
    
    2323
    +  , "stg_ctoi_t49_info"
    
    2324
    +  , "stg_ctoi_t49_ret"
    
    2325
    +  , "stg_ctoi_t4_info"
    
    2326
    +  , "stg_ctoi_t4_ret"
    
    2327
    +  , "stg_ctoi_t50_info"
    
    2328
    +  , "stg_ctoi_t50_ret"
    
    2329
    +  , "stg_ctoi_t51_info"
    
    2330
    +  , "stg_ctoi_t51_ret"
    
    2331
    +  , "stg_ctoi_t52_info"
    
    2332
    +  , "stg_ctoi_t52_ret"
    
    2333
    +  , "stg_ctoi_t53_info"
    
    2334
    +  , "stg_ctoi_t53_ret"
    
    2335
    +  , "stg_ctoi_t54_info"
    
    2336
    +  , "stg_ctoi_t54_ret"
    
    2337
    +  , "stg_ctoi_t55_info"
    
    2338
    +  , "stg_ctoi_t55_ret"
    
    2339
    +  , "stg_ctoi_t56_info"
    
    2340
    +  , "stg_ctoi_t56_ret"
    
    2341
    +  , "stg_ctoi_t57_info"
    
    2342
    +  , "stg_ctoi_t57_ret"
    
    2343
    +  , "stg_ctoi_t58_info"
    
    2344
    +  , "stg_ctoi_t58_ret"
    
    2345
    +  , "stg_ctoi_t59_info"
    
    2346
    +  , "stg_ctoi_t59_ret"
    
    2347
    +  , "stg_ctoi_t5_info"
    
    2348
    +  , "stg_ctoi_t5_ret"
    
    2349
    +  , "stg_ctoi_t60_info"
    
    2350
    +  , "stg_ctoi_t60_ret"
    
    2351
    +  , "stg_ctoi_t61_info"
    
    2352
    +  , "stg_ctoi_t61_ret"
    
    2353
    +  , "stg_ctoi_t62_info"
    
    2354
    +  , "stg_ctoi_t62_ret"
    
    2355
    +  , "stg_ctoi_t6_info"
    
    2356
    +  , "stg_ctoi_t6_ret"
    
    2357
    +  , "stg_ctoi_t7_info"
    
    2358
    +  , "stg_ctoi_t7_ret"
    
    2359
    +  , "stg_ctoi_t8_info"
    
    2360
    +  , "stg_ctoi_t8_ret"
    
    2361
    +  , "stg_ctoi_t9_info"
    
    2362
    +  , "stg_ctoi_t9_ret"
    
    2363
    +  , "stg_deRefStablePtrzh"
    
    2364
    +  , "stg_deRefWeakzh"
    
    2365
    +  , "stg_dead_thread_info"
    
    2366
    +  , "stg_dead_thread_ret"
    
    2367
    +  , "stg_decodeDoublezu2Intzh"
    
    2368
    +  , "stg_decodeDoublezuInt64zh"
    
    2369
    +  , "stg_decodeFloatzuIntzh"
    
    2370
    +  , "stg_delayzh"
    
    2371
    +  , "stg_dummy_ret_closure"
    
    2372
    +  , "stg_dummy_ret_entry"
    
    2373
    +  , "stg_dummy_ret_info"
    
    2374
    +  , "stg_enter_info"
    
    2375
    +  , "stg_enter_ret"
    
    2376
    +  , "stg_exit"
    
    2377
    +  , "stg_finalizzeWeakzh"
    
    2378
    +  , "stg_forceIO_closure"
    
    2379
    +  , "stg_forceIO_info"
    
    2380
    +  , "stg_forceIO_ret"
    
    2381
    +  , "stg_forkOnzh"
    
    2382
    +  , "stg_forkzh"
    
    2383
    +  , "stg_freezzeArrayzh"
    
    2384
    +  , "stg_freezzeSmallArrayzh"
    
    2385
    +  , "stg_gc_d1"
    
    2386
    +  , "stg_gc_f1"
    
    2387
    +  , "stg_gc_fun_info"
    
    2388
    +  , "stg_gc_fun_ret"
    
    2389
    +  , "stg_gc_l1"
    
    2390
    +  , "stg_gc_noregs"
    
    2391
    +  , "stg_gc_pp"
    
    2392
    +  , "stg_gc_ppp"
    
    2393
    +  , "stg_gc_pppp"
    
    2394
    +  , "stg_gc_prim"
    
    2395
    +  , "stg_gc_prim_n"
    
    2396
    +  , "stg_gc_prim_p"
    
    2397
    +  , "stg_gc_prim_p_ll"
    
    2398
    +  , "stg_gc_prim_p_ll_ret_info"
    
    2399
    +  , "stg_gc_prim_p_ll_ret_ret"
    
    2400
    +  , "stg_gc_prim_pp"
    
    2401
    +  , "stg_gc_prim_pp_ll"
    
    2402
    +  , "stg_gc_prim_pp_ll_ret_info"
    
    2403
    +  , "stg_gc_prim_pp_ll_ret_ret"
    
    2404
    +  , "stg_gc_unbx_r1"
    
    2405
    +  , "stg_gc_unpt_r1"
    
    2406
    +  , "stg_getApStackValzh"
    
    2407
    +  , "stg_getMaskingStatezh"
    
    2408
    +  , "stg_getOtherThreadAllocationCounterzh"
    
    2409
    +  , "stg_getSparkzh"
    
    2410
    +  , "stg_getThreadAllocationCounterzh"
    
    2411
    +  , "stg_isByteArrayPinnedzh"
    
    2412
    +  , "stg_isByteArrayWeaklyPinnedzh"
    
    2413
    +  , "stg_isCurrentThreadBoundzh"
    
    2414
    +  , "stg_isEmptyMVarzh"
    
    2415
    +  , "stg_isMutableByteArrayPinnedzh"
    
    2416
    +  , "stg_isMutableByteArrayWeaklyPinnedzh"
    
    2417
    +  , "stg_keepAlive_frame_info"
    
    2418
    +  , "stg_keepAlive_frame_ret"
    
    2419
    +  , "stg_keepAlivezh"
    
    2420
    +  , "stg_killMyself"
    
    2421
    +  , "stg_killThreadzh"
    
    2422
    +  , "stg_labelThreadzh"
    
    2423
    +  , "stg_listThreadszh"
    
    2424
    +  , "stg_makeStableNamezh"
    
    2425
    +  , "stg_makeStablePtrzh"
    
    2426
    +  , "stg_marked_upd_frame_info"
    
    2427
    +  , "stg_marked_upd_frame_ret"
    
    2428
    +  , "stg_maskAsyncExceptionszh"
    
    2429
    +  , "stg_maskAsyncExceptionszh_ret_info"
    
    2430
    +  , "stg_maskAsyncExceptionszh_ret_ret"
    
    2431
    +  , "stg_maskUninterruptiblezh"
    
    2432
    +  , "stg_maskUninterruptiblezh_ret_info"
    
    2433
    +  , "stg_maskUninterruptiblezh_ret_ret"
    
    2434
    +  , "stg_mkApUpd0zh"
    
    2435
    +  , "stg_mkWeakForeignzh"
    
    2436
    +  , "stg_mkWeakNoFinalizzerzh"
    
    2437
    +  , "stg_mkWeakzh"
    
    2438
    +  , "stg_myThreadIdzh"
    
    2439
    +  , "stg_newAlignedPinnedByteArrayzh"
    
    2440
    +  , "stg_newArrayzh"
    
    2441
    +  , "stg_newBCOzh"
    
    2442
    +  , "stg_newByteArrayzh"
    
    2443
    +  , "stg_newMVarzh"
    
    2444
    +  , "stg_newMutVarzh"
    
    2445
    +  , "stg_newPinnedByteArrayzh"
    
    2446
    +  , "stg_newPromptTagzh"
    
    2447
    +  , "stg_newSmallArrayzh"
    
    2448
    +  , "stg_newTVarzh"
    
    2449
    +  , "stg_noDuplicate_entry"
    
    2450
    +  , "stg_noDuplicate_info"
    
    2451
    +  , "stg_noDuplicatezh"
    
    2452
    +  , "stg_noforceIO_info"
    
    2453
    +  , "stg_noforceIO_ret"
    
    2454
    +  , "stg_noupd_frame_info"
    
    2455
    +  , "stg_noupd_frame_ret"
    
    2456
    +  , "stg_numSparkszh"
    
    2457
    +  , "stg_orig_thunk_info_frame_info"
    
    2458
    +  , "stg_orig_thunk_info_frame_ret"
    
    2459
    +  , "stg_overwritingClosure"
    
    2460
    +  , "stg_overwritingClosureSize"
    
    2461
    +  , "stg_overwritingMutableClosureOfs"
    
    2462
    +  , "stg_paniczh"
    
    2463
    +  , "stg_pending_events"
    
    2464
    +  , "stg_primcall_info"
    
    2465
    +  , "stg_primcall_ret"
    
    2466
    +  , "stg_prompt_frame_info"
    
    2467
    +  , "stg_prompt_frame_ret"
    
    2468
    +  , "stg_promptzh"
    
    2469
    +  , "stg_putMVarzh"
    
    2470
    +  , "stg_raiseDivZZerozh"
    
    2471
    +  , "stg_raiseIOzh"
    
    2472
    +  , "stg_raiseOverflowzh"
    
    2473
    +  , "stg_raiseUnderflowzh"
    
    2474
    +  , "stg_raise_entry"
    
    2475
    +  , "stg_raise_info"
    
    2476
    +  , "stg_raise_ret_entry"
    
    2477
    +  , "stg_raise_ret_info"
    
    2478
    +  , "stg_raisezh"
    
    2479
    +  , "stg_readMVarzh"
    
    2480
    +  , "stg_readTVarIOzh"
    
    2481
    +  , "stg_readTVarzh"
    
    2482
    +  , "stg_resizzeMutableByteArrayzh"
    
    2483
    +  , "stg_restore_cccs_d_info"
    
    2484
    +  , "stg_restore_cccs_d_ret"
    
    2485
    +  , "stg_restore_cccs_eval_info"
    
    2486
    +  , "stg_restore_cccs_eval_ret"
    
    2487
    +  , "stg_restore_cccs_v16_info"
    
    2488
    +  , "stg_restore_cccs_v16_ret"
    
    2489
    +  , "stg_restore_cccs_v32_info"
    
    2490
    +  , "stg_restore_cccs_v32_ret"
    
    2491
    +  , "stg_restore_cccs_v64_info"
    
    2492
    +  , "stg_restore_cccs_v64_ret"
    
    2493
    +  , "stg_ret_d_info"
    
    2494
    +  , "stg_ret_d_ret"
    
    2495
    +  , "stg_ret_f_info"
    
    2496
    +  , "stg_ret_f_ret"
    
    2497
    +  , "stg_ret_l_info"
    
    2498
    +  , "stg_ret_l_ret"
    
    2499
    +  , "stg_ret_n_info"
    
    2500
    +  , "stg_ret_n_ret"
    
    2501
    +  , "stg_ret_p_info"
    
    2502
    +  , "stg_ret_p_ret"
    
    2503
    +  , "stg_ret_t_info"
    
    2504
    +  , "stg_ret_t_ret"
    
    2505
    +  , "stg_ret_v_info"
    
    2506
    +  , "stg_ret_v_ret"
    
    2507
    +  , "stg_retryzh"
    
    2508
    +  , "stg_returnToSched"
    
    2509
    +  , "stg_returnToSchedButFirst"
    
    2510
    +  , "stg_returnToSchedNotPaused"
    
    2511
    +  , "stg_returnToStackTop"
    
    2512
    +  , "stg_runRWzh"
    
    2513
    +  , "stg_sel_0_noupd_entry"
    
    2514
    +  , "stg_sel_0_noupd_info"
    
    2515
    +  , "stg_sel_0_upd_entry"
    
    2516
    +  , "stg_sel_0_upd_info"
    
    2517
    +  , "stg_sel_10_noupd_entry"
    
    2518
    +  , "stg_sel_10_noupd_info"
    
    2519
    +  , "stg_sel_10_upd_entry"
    
    2520
    +  , "stg_sel_10_upd_info"
    
    2521
    +  , "stg_sel_11_noupd_entry"
    
    2522
    +  , "stg_sel_11_noupd_info"
    
    2523
    +  , "stg_sel_11_upd_entry"
    
    2524
    +  , "stg_sel_11_upd_info"
    
    2525
    +  , "stg_sel_12_noupd_entry"
    
    2526
    +  , "stg_sel_12_noupd_info"
    
    2527
    +  , "stg_sel_12_upd_entry"
    
    2528
    +  , "stg_sel_12_upd_info"
    
    2529
    +  , "stg_sel_13_noupd_entry"
    
    2530
    +  , "stg_sel_13_noupd_info"
    
    2531
    +  , "stg_sel_13_upd_entry"
    
    2532
    +  , "stg_sel_13_upd_info"
    
    2533
    +  , "stg_sel_14_noupd_entry"
    
    2534
    +  , "stg_sel_14_noupd_info"
    
    2535
    +  , "stg_sel_14_upd_entry"
    
    2536
    +  , "stg_sel_14_upd_info"
    
    2537
    +  , "stg_sel_15_noupd_entry"
    
    2538
    +  , "stg_sel_15_noupd_info"
    
    2539
    +  , "stg_sel_15_upd_entry"
    
    2540
    +  , "stg_sel_15_upd_info"
    
    2541
    +  , "stg_sel_1_noupd_entry"
    
    2542
    +  , "stg_sel_1_noupd_info"
    
    2543
    +  , "stg_sel_1_upd_entry"
    
    2544
    +  , "stg_sel_1_upd_info"
    
    2545
    +  , "stg_sel_2_noupd_entry"
    
    2546
    +  , "stg_sel_2_noupd_info"
    
    2547
    +  , "stg_sel_2_upd_entry"
    
    2548
    +  , "stg_sel_2_upd_info"
    
    2549
    +  , "stg_sel_3_noupd_entry"
    
    2550
    +  , "stg_sel_3_noupd_info"
    
    2551
    +  , "stg_sel_3_upd_entry"
    
    2552
    +  , "stg_sel_3_upd_info"
    
    2553
    +  , "stg_sel_4_noupd_entry"
    
    2554
    +  , "stg_sel_4_noupd_info"
    
    2555
    +  , "stg_sel_4_upd_entry"
    
    2556
    +  , "stg_sel_4_upd_info"
    
    2557
    +  , "stg_sel_5_noupd_entry"
    
    2558
    +  , "stg_sel_5_noupd_info"
    
    2559
    +  , "stg_sel_5_upd_entry"
    
    2560
    +  , "stg_sel_5_upd_info"
    
    2561
    +  , "stg_sel_6_noupd_entry"
    
    2562
    +  , "stg_sel_6_noupd_info"
    
    2563
    +  , "stg_sel_6_upd_entry"
    
    2564
    +  , "stg_sel_6_upd_info"
    
    2565
    +  , "stg_sel_7_noupd_entry"
    
    2566
    +  , "stg_sel_7_noupd_info"
    
    2567
    +  , "stg_sel_7_upd_entry"
    
    2568
    +  , "stg_sel_7_upd_info"
    
    2569
    +  , "stg_sel_8_noupd_entry"
    
    2570
    +  , "stg_sel_8_noupd_info"
    
    2571
    +  , "stg_sel_8_upd_entry"
    
    2572
    +  , "stg_sel_8_upd_info"
    
    2573
    +  , "stg_sel_9_noupd_entry"
    
    2574
    +  , "stg_sel_9_noupd_info"
    
    2575
    +  , "stg_sel_9_upd_entry"
    
    2576
    +  , "stg_sel_9_upd_info"
    
    2577
    +  , "stg_setOtherThreadAllocationCounterzh"
    
    2578
    +  , "stg_setThreadAllocationCounterzh"
    
    2579
    +  , "stg_shrinkMutableByteArrayzh"
    
    2580
    +  , "stg_shrinkSmallMutableArrayzh"
    
    2581
    +  , "stg_sig_install"
    
    2582
    +  , "stg_stack_save_entries"
    
    2583
    +  , "stg_stack_underflow_frame_d_info"
    
    2584
    +  , "stg_stack_underflow_frame_d_ret"
    
    2585
    +  , "stg_stack_underflow_frame_v16_info"
    
    2586
    +  , "stg_stack_underflow_frame_v16_ret"
    
    2587
    +  , "stg_stack_underflow_frame_v32_info"
    
    2588
    +  , "stg_stack_underflow_frame_v32_ret"
    
    2589
    +  , "stg_stack_underflow_frame_v64_info"
    
    2590
    +  , "stg_stack_underflow_frame_v64_ret"
    
    2591
    +  , "stg_stk_save_v16"
    
    2592
    +  , "stg_stk_save_v32"
    
    2593
    +  , "stg_stk_save_v64"
    
    2594
    +  , "stg_stop_thread_info"
    
    2595
    +  , "stg_stop_thread_ret"
    
    2596
    +  , "stg_takeMVarzh"
    
    2597
    +  , "stg_thawArrayzh"
    
    2598
    +  , "stg_thawSmallArrayzh"
    
    2599
    +  , "stg_threadFinished"
    
    2600
    +  , "stg_threadLabelzh"
    
    2601
    +  , "stg_threadStatuszh"
    
    2602
    +  , "stg_traceBinaryEventzh"
    
    2603
    +  , "stg_traceEventzh"
    
    2604
    +  , "stg_traceMarkerzh"
    
    2605
    +  , "stg_tryPutMVarzh"
    
    2606
    +  , "stg_tryReadMVarzh"
    
    2607
    +  , "stg_tryTakeMVarzh"
    
    2608
    +  , "stg_unmaskAsyncExceptionszh"
    
    2609
    +  , "stg_unmaskAsyncExceptionszh_ret_info"
    
    2610
    +  , "stg_unmaskAsyncExceptionszh_ret_ret"
    
    2611
    +  , "stg_unpackClosurezh"
    
    2612
    +  , "stg_unpack_cstring_entry"
    
    2613
    +  , "stg_unpack_cstring_info"
    
    2614
    +  , "stg_unpack_cstring_utf8_entry"
    
    2615
    +  , "stg_unpack_cstring_utf8_info"
    
    2616
    +  , "stg_unsafeThawArrayzh"
    
    2617
    +  , "stg_unsafeThawSmallArrayzh"
    
    2618
    +  , "stg_upd_frame_info"
    
    2619
    +  , "stg_upd_frame_ret"
    
    2620
    +  , "stg_waitReadzh"
    
    2621
    +  , "stg_waitWritezh"
    
    2622
    +  , "stg_whereFromzh"
    
    2623
    +  , "stg_writeTVarzh"
    
    2624
    +  , "stg_yield_noregs"
    
    2625
    +  , "stg_yield_to_interpreter"
    
    2626
    +  , "stg_yieldzh"
    
    2627
    +  , "stmAbortTransaction"
    
    2628
    +  , "stmCommitNestedTransaction"
    
    2629
    +  , "stmCommitTransaction"
    
    2630
    +  , "stmCondemnTransaction"
    
    2631
    +  , "stmFreeAbortedTRec"
    
    2632
    +  , "stmPreGCHook"
    
    2633
    +  , "stmReWait"
    
    2634
    +  , "stmReadTVar"
    
    2635
    +  , "stmStartNestedTransaction"
    
    2636
    +  , "stmStartTransaction"
    
    2637
    +  , "stmValidateNestOfTransactions"
    
    2638
    +  , "stmWait"
    
    2639
    +  , "stmWaitUnlock"
    
    2640
    +  , "stmWriteTVar"
    
    2641
    +  , "stopCapability"
    
    2642
    +  , "stopHeapProfTimer"
    
    2643
    +  , "stopIOManager"
    
    2644
    +  , "stopProfTimer"
    
    2645
    +  , "stopTicker"
    
    2646
    +  , "stopTimer"
    
    2647
    +  , "storageAddCapabilities"
    
    2648
    +  , "stpcpy"
    
    2649
    +  , "stpncpy"
    
    2650
    +  , "strMatchesSelector"
    
    2651
    +  , "strcasecmp"
    
    2652
    +  , "strcasestr"
    
    2653
    +  , "strcat"
    
    2654
    +  , "strchr"
    
    2655
    +  , "strcmp"
    
    2656
    +  , "strcoll"
    
    2657
    +  , "strcpy"
    
    2658
    +  , "strcspn"
    
    2659
    +  , "strdup"
    
    2660
    +  , "strerror"
    
    2661
    +  , "strerror_r"
    
    2662
    +  , "strftime"
    
    2663
    +  , "strlcat"
    
    2664
    +  , "strlcpy"
    
    2665
    +  , "strlen"
    
    2666
    +  , "strmode"
    
    2667
    +  , "strncasecmp"
    
    2668
    +  , "strncat"
    
    2669
    +  , "strncmp"
    
    2670
    +  , "strncpy"
    
    2671
    +  , "strndup"
    
    2672
    +  , "strnlen"
    
    2673
    +  , "strnstr"
    
    2674
    +  , "strpbrk"
    
    2675
    +  , "strptime"
    
    2676
    +  , "strrchr"
    
    2677
    +  , "strsep"
    
    2678
    +  , "strsignal"
    
    2679
    +  , "strsignal_r"
    
    2680
    +  , "strspn"
    
    2681
    +  , "strstr"
    
    2682
    +  , "strtod"
    
    2683
    +  , "strtof"
    
    2684
    +  , "strtoimax"
    
    2685
    +  , "strtok"
    
    2686
    +  , "strtok_r"
    
    2687
    +  , "strtol"
    
    2688
    +  , "strtold"
    
    2689
    +  , "strtoll"
    
    2690
    +  , "strtonum"
    
    2691
    +  , "strtoq"
    
    2692
    +  , "strtoul"
    
    2693
    +  , "strtoull"
    
    2694
    +  , "strtoumax"
    
    2695
    +  , "strtouq"
    
    2696
    +  , "strxfrm"
    
    2697
    +  , "suboptarg"
    
    2698
    +  , "suspendComputation"
    
    2699
    +  , "suspendThread"
    
    2700
    +  , "swab"
    
    2701
    +  , "sweep"
    
    2702
    +  , "symhash"
    
    2703
    +  , "syncDelay"
    
    2704
    +  , "syncDelayCancel"
    
    2705
    +  , "syncDelayCancelTimeout"
    
    2706
    +  , "syncDelayTimeout"
    
    2707
    +  , "syncIOCancel"
    
    2708
    +  , "syncIOWaitReady"
    
    2709
    +  , "sysErrorBelch"
    
    2710
    +  , "sys_errlist"
    
    2711
    +  , "sys_nerr"
    
    2712
    +  , "system"
    
    2713
    +  , "tan"
    
    2714
    +  , "tanf"
    
    2715
    +  , "tanh"
    
    2716
    +  , "tanhf"
    
    2717
    +  , "tanhl"
    
    2718
    +  , "tanl"
    
    2719
    +  , "taskCount"
    
    2720
    +  , "tempnam"
    
    2721
    +  , "tgamma"
    
    2722
    +  , "tgammaf"
    
    2723
    +  , "tgammal"
    
    2724
    +  , "the_gc_thread"
    
    2725
    +  , "threadPaused"
    
    2726
    +  , "threadStableNameTable"
    
    2727
    +  , "threadStablePtrTable"
    
    2728
    +  , "threadStackOverflow"
    
    2729
    +  , "threadStackUnderflow"
    
    2730
    +  , "throwTo"
    
    2731
    +  , "throwToMsg"
    
    2732
    +  , "throwToSelf"
    
    2733
    +  , "throwToSingleThreaded"
    
    2734
    +  , "throwToSingleThreaded_"
    
    2735
    +  , "thunk_selector_depth"
    
    2736
    +  , "ticky_entry_ctrs"
    
    2737
    +  , "ticky_slow_call_unevald"
    
    2738
    +  , "time"
    
    2739
    +  , "time2posix"
    
    2740
    +  , "time_str"
    
    2741
    +  , "timedWaitCondition"
    
    2742
    +  , "timegm"
    
    2743
    +  , "timelocal"
    
    2744
    +  , "timeoutInMilliseconds"
    
    2745
    +  , "timespec_get"
    
    2746
    +  , "timezone"
    
    2747
    +  , "timingsafe_bcmp"
    
    2748
    +  , "tmpfile"
    
    2749
    +  , "tmpnam"
    
    2750
    +  , "todo_block_full"
    
    2751
    +  , "top_ct"
    
    2752
    +  , "totalArgumentSize"
    
    2753
    +  , "traceCapCreate"
    
    2754
    +  , "traceCapDelete"
    
    2755
    +  , "traceCapDisable"
    
    2756
    +  , "traceCapEnable"
    
    2757
    +  , "traceCapsetAssignCap"
    
    2758
    +  , "traceCapsetCreate"
    
    2759
    +  , "traceCapsetDelete"
    
    2760
    +  , "traceCapsetRemoveCap"
    
    2761
    +  , "traceEventBlocksSize"
    
    2762
    +  , "traceEventCreateSparkThread"
    
    2763
    +  , "traceEventCreateThread"
    
    2764
    +  , "traceEventGcDone"
    
    2765
    +  , "traceEventGcEnd"
    
    2766
    +  , "traceEventGcEndAtT"
    
    2767
    +  , "traceEventGcGlobalSync"
    
    2768
    +  , "traceEventGcIdle"
    
    2769
    +  , "traceEventGcStart"
    
    2770
    +  , "traceEventGcStartAtT"
    
    2771
    +  , "traceEventGcStats"
    
    2772
    +  , "traceEventGcWork"
    
    2773
    +  , "traceEventHeapAllocated"
    
    2774
    +  , "traceEventHeapInfo"
    
    2775
    +  , "traceEventHeapLive"
    
    2776
    +  , "traceEventHeapSize"
    
    2777
    +  , "traceEventMemReturn"
    
    2778
    +  , "traceEventMigrateThread"
    
    2779
    +  , "traceEventRequestParGc"
    
    2780
    +  , "traceEventRequestSeqGc"
    
    2781
    +  , "traceEventRunThread"
    
    2782
    +  , "traceEventSparkCreate"
    
    2783
    +  , "traceEventSparkDud"
    
    2784
    +  , "traceEventSparkFizzle"
    
    2785
    +  , "traceEventSparkGC"
    
    2786
    +  , "traceEventSparkOverflow"
    
    2787
    +  , "traceEventSparkRun"
    
    2788
    +  , "traceEventSparkSteal"
    
    2789
    +  , "traceEventStopThread"
    
    2790
    +  , "traceEventThreadWakeup"
    
    2791
    +  , "traceOSProcessInfo"
    
    2792
    +  , "traceSparkCounters"
    
    2793
    +  , "traceTaskCreate"
    
    2794
    +  , "traceTaskDelete"
    
    2795
    +  , "traceTaskMigrate"
    
    2796
    +  , "traceThreadLabel"
    
    2797
    +  , "traceWallClockTime"
    
    2798
    +  , "traverseSparkQueues"
    
    2799
    +  , "traverseWeakPtrList"
    
    2800
    +  , "trunc"
    
    2801
    +  , "truncateRunQueue"
    
    2802
    +  , "truncf"
    
    2803
    +  , "truncl"
    
    2804
    +  , "tryWakeupThread"
    
    2805
    +  , "tzname"
    
    2806
    +  , "tzset"
    
    2807
    +  , "tzsetwall"
    
    2808
    +  , "uint16_t"
    
    2809
    +  , "uint32_t"
    
    2810
    +  , "uint8_t"
    
    2811
    +  , "unblockOne"
    
    2812
    +  , "unblockOne_"
    
    2813
    +  , "unblockUserSignals"
    
    2814
    +  , "ungetc"
    
    2815
    +  , "unloadNativeObj"
    
    2816
    +  , "unloadObj"
    
    2817
    +  , "unload_mark_needed"
    
    2818
    +  , "unlockClosure"
    
    2819
    +  , "unlockFile"
    
    2820
    +  , "unlockpt"
    
    2821
    +  , "unsetenv"
    
    2822
    +  , "upd_rem_set_block_list"
    
    2823
    +  , "updateNurseriesStats"
    
    2824
    +  , "updateRemembSetPushClosure"
    
    2825
    +  , "updateRemembSetPushClosure_"
    
    2826
    +  , "updateRemembSetPushMessageThrowTo"
    
    2827
    +  , "updateRemembSetPushStack"
    
    2828
    +  , "updateRemembSetPushTSO"
    
    2829
    +  , "updateRemembSetPushThunk"
    
    2830
    +  , "updateRemembSetPushThunkEager"
    
    2831
    +  , "updateRemembSetPushThunk_"
    
    2832
    +  , "updateStableNameTable"
    
    2833
    +  , "updateThunk"
    
    2834
    +  , "updateWithIndirection"
    
    2835
    +  , "update_MVAR"
    
    2836
    +  , "valloc"
    
    2837
    +  , "vasprintf"
    
    2838
    +  , "vbarf"
    
    2839
    +  , "vdebugBelch"
    
    2840
    +  , "vdprintf"
    
    2841
    +  , "vectorSupportGlobalVar"
    
    2842
    +  , "verifyCompact"
    
    2843
    +  , "verrorBelch"
    
    2844
    +  , "vfprintf"
    
    2845
    +  , "vfscanf"
    
    2846
    +  , "vprintf"
    
    2847
    +  , "vscanf"
    
    2848
    +  , "vsnprintf"
    
    2849
    +  , "vsprintf"
    
    2850
    +  , "vsscanf"
    
    2851
    +  , "vsysErrorBelch"
    
    2852
    +  , "wait"
    
    2853
    +  , "wait3"
    
    2854
    +  , "wait4"
    
    2855
    +  , "waitCondition"
    
    2856
    +  , "waitForCapability"
    
    2857
    +  , "waitid"
    
    2858
    +  , "waitpid"
    
    2859
    +  , "wakeupIOManager"
    
    2860
    +  , "walk_large_bitmap"
    
    2861
    +  , "warnMissingKBLibraryPaths"
    
    2862
    +  , "wcstoimax"
    
    2863
    +  , "wcstombs"
    
    2864
    +  , "wcstoumax"
    
    2865
    +  , "wctomb"
    
    2866
    +  , "work_stealing"
    
    2867
    +  , "workerCount"
    
    2868
    +  , "xchg_ptr"
    
    2869
    +  , "y0"
    
    2870
    +  , "y1"
    
    2871
    +  , "yieldThread"
    
    2872
    +  , "yn"
    
    2873
    +  , "zeroSlop"
    
    2874
    +  , "zopen"
    
    2875
    +  ]
    
    2876
    +

  • utils/hsc2hs
    1
    -Subproject commit fe3990b9f35000427b016a79330d9f195587cad8
    1
    +Subproject commit 3863f81b72d1c5877505e840fd203193c50d2e0f

  • utils/parse-rts-symbols/README.md
    1
    +# TODO

  • utils/parse-rts-symbols/main.py
    1
    +#!/usr/bin/env nix-shell
    
    2
    +#!nix-shell -i python3 -p python3Packages.libclang python3
    
    3
    +import os
    
    4
    +from clang.cindex import Index, CursorKind, LinkageKind, Config
    
    5
    +
    
    6
    +# RELATIVE TO ROOT!
    
    7
    +HEADER_DIR = "rts/"  # directory to scan
    
    8
    +
    
    9
    +# Recursively find all .h files
    
    10
    +def find_headers(root):
    
    11
    +    headers = []
    
    12
    +    for dirpath, _, filenames in os.walk(root):
    
    13
    +        for f in filenames:
    
    14
    +            if f.endswith(".h"):
    
    15
    +                headers.append(os.path.join(dirpath, f))
    
    16
    +    return headers
    
    17
    +
    
    18
    +# Parse a single header
    
    19
    +def parse_header(header_file, index):
    
    20
    +    try:
    
    21
    +        tu = index.parse(header_file, args=[f"-I{HEADER_DIR}"])
    
    22
    +    except Exception as e:
    
    23
    +        print(f"Failed to parse {header_file}: {e}", file=sys.stderr)
    
    24
    +        return []
    
    25
    +
    
    26
    +    symbols = []
    
    27
    +
    
    28
    +    def walk(node):
    
    29
    +        for c in node.get_children():
    
    30
    +            # Only external-linkage functions or global vars
    
    31
    +            if c.linkage == LinkageKind.EXTERNAL and \
    
    32
    +                c.kind in (CursorKind.FUNCTION_DECL, CursorKind.VAR_DECL): # and \
    
    33
    +               # c.visibility() != VisibilityKind.HIDDEN: # don't include #include "BeginPrivate.h" symbols
    
    34
    +                symbols.append(c.spelling)
    
    35
    +            walk(c)
    
    36
    +
    
    37
    +    walk(tu.cursor)
    
    38
    +    return symbols
    
    39
    +
    
    40
    +def main():
    
    41
    +    index = Index.create()
    
    42
    +    # If not in root directory, abort with error
    
    43
    +    if not os.path.isdir(HEADER_DIR):
    
    44
    +        print(f"Error: Directory {HEADER_DIR} does not exist. Are you running this script from the root directory as ./utils/parse-rts-symbols/main.py ?")
    
    45
    +        return
    
    46
    +    all_headers = find_headers(HEADER_DIR)
    
    47
    +    all_symbols = set()
    
    48
    +    for h in all_headers:
    
    49
    +        syms = parse_header(h, index)
    
    50
    +        all_symbols.update(syms)
    
    51
    +
    
    52
    +    print("# This list was automatically generated by utils/parse-rts-symbols/.")
    
    53
    +    print("# Please consult the README there for information about this file.")
    
    54
    +
    
    55
    +    for i, s in enumerate(sorted(all_symbols)):
    
    56
    +        if i == 0:
    
    57
    +            print("[ " + "\"" + s + "\"")
    
    58
    +        else:
    
    59
    +            print(", " + "\"" + s + "\"")
    
    60
    +    print("]")
    
    61
    +
    
    62
    +if __name__ == "__main__":
    
    63
    +    main()