-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
line 2: 42048 Illegal instruction: 4 #2009
Comments
@gorbat-o can you consistently reproduce this or reduce it to a file/sample code? Thanks! It looks it crashed on |
Hello, Unfortunately no, It's failing randomly on the last files between 50/65 et 64/65 First I thought it was the Text Encoding which was wrong .. but it is not. So, I am still trying to find the problem |
Ok, so I tried without this rule I guess there is a fix to do ? |
This one is crashing too TypeBodyLengthRule Edit: Whatever the rule I disable, it's still crashing .. |
Omg, I found the problem, |
@gorbat-o does it break for some crazy reason? You got me curious :-) |
Here the user report, maybe it's to much of Enums for SwiftLint ? 😂 Console Details
|
@gorbat-o, ce n’est qu’une conjecture, mais... J’ai eu des problèmes un peu similaire il y a quelque temps. (Voir depuis cette commentaire.) Comme pour vous, SwiftLint n’a pas toujours arrêté dans le même fichier. Les differences sont L’autre fois, j’ai du faire une copie du fichier et supprimer des sections devenant lentement plus précises jusqu’à trouver la position exacte qui est la (ou une) vraie origine du problème. Avec cet information, on peut mieux chercher quelle règle ou quelles règles touchent la position pour trouver la méthode ou les méthodes en faute. (🇬🇧 English summary for other readers: Maybe a Unicode character is triggering a string indexing bug much like here.) |
@gorbat-o, j’ai lu plus précis et le code À vrai dire, SwiftLint à terminé par (🇬🇧 English summary for other readers: The exit code is actually |
@SDGGiesbrecht J'ai adoré le "TL; DR" en anglais :D |
Hello, Nice google translate, The code was generated by SwiftGen, And yes I should have put an other issue name, |
French source code + user in France + French idioms (“informations”) + name transliterated the French way (Gorbatchev) → switch to thinking in French. Google had no part in it. I appologize if English would actually have been easier for you.
|
Gorbatchev is not french haha But still, I don't get why the french should be a problem in this SwiftLint error. |
«Горбачёв» is Russian or some other Slavic language; I know that. But « Gorbatchev » (with a T) was clearly respelled by French immigration; English immigration would have respelled it “Gorbachev” (with no T).
Exacte. J’utilise le français chaque jour, mais ce n’est pas ma langue maternelle.
French is not the problem, it is the lens that allows us to see the problem. SwiftLint often stores and passes around numeric indices ( This makes it easy to mistakenly ask for the length of a token (say It is a bug in SwiftLint and I’m not suggesting you rewrite your source code. It would just be helpful if you try removing pieces of code as an experiment to zero in on an exact character position in the file that triggers the bug. Then post the character and its context so we get an idea where to start looking for the badly behaved code. |
I'll reopen this because it looks like a legit bug. @gorbat-o it would be really helpful if you could share the generated |
Hey @marcelofabri and @SDGGiesbrecht , sorry, at first, I did not get your message :/ |
Thanks for sharing it, @gorbat-o. I was able to consistently reproduce it. It looks like it's not a specific rule bug, but somehow, In the sample file, there's a class in the last line: // .. a lot of things
private final class BundleToken {}
Note that the line range ends in
So, it looks like it's a bug in SourceKitten, not SourceKit itself, which is good because it means we can do something about it. I was able to reduce the crash to this file: // There're two U+2028 invisible characters after the colon:
class X {} It looks like those U+2028 characters trigger a bug in SourceKitten.. |
I've filled jpsim/SourceKitten#475 to handle this in SourceKitten. |
Well done, @marcelofabri! 👏 Inconsistently handle Unicode line breaks makes perfect sense. @gorbat-o, that means that if you do not want to wait for a fix, you can reasonably work around it by normalizing your newlines to the Unix style after generating the file. (Google can suggest several different ways.) |
Hey @SDGGiesbrecht, My workaround was to ignore this file, |
This should be fixed by jpsim/SourceKitten#475 which is on the latest release. |
Hello,
I have an issue with swiftlint, I have this error
Thanks for future help :)
New Issue Checklist
Bug Report
Complete output when running SwiftLint, including the stack trace and command used
Environment
swiftlint version
to be sure)? 0.24.2YML
no
xcode-select -p
)? Version 9.2 (9C40b)Done linting! Found 0 violations, 0 serious in 1 file.
Console report
```Process: swiftlint [39332]
Path: /Users/USER/*/swiftlint
Identifier: swiftlint
Version: 0
Code Type: X86-64 (Native)
Parent Process: bash [39331]
Responsible: swiftlint [39332]
User ID: 501
Date/Time: 2018-01-17 18:27:37.524 +0100
OS Version: Mac OS X 10.13.2 (17C205)
Report Version: 12
Bridge OS Version: 3.0 (14Y661)
Anonymous UUID: 2C8EDFE3-02B1-F2E4-C47F-62C4E22F352D
Sleep/Wake UUID: C8300910-9FCB-42AC-8B08-704B930BD84C
Time Awake Since Boot: 190000 seconds
Time Since Wake: 98000 seconds
System Integrity Protection: enabled
Crashed Thread: 3 Dispatch queue: com.apple.root.user-initiated-qos
Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0000000000000001, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Illegal instruction: 4
Termination Reason: Namespace SIGNAL, Code 0x4
Terminating Process: exc handler [0]
Thread 0:
0 libsystem_kernel.dylib 0x00007fff66b85072 __semwait_signal_nocancel + 10
1 libsystem_c.dylib 0x00007fff66a8b077 nanosleep$NOCANCEL + 188
2 libsystem_c.dylib 0x00007fff66ab19ec sleep$NOCANCEL + 41
3 libdispatch.dylib 0x00007fff66a07bf0 _dispatch_queue_cleanup2 + 107
4 libsystem_pthread.dylib 0x00007fff66cc227e _pthread_tsd_cleanup + 534
5 libsystem_pthread.dylib 0x00007fff66cc1fbd _pthread_exit + 79
6 libsystem_pthread.dylib 0x00007fff66cc2a15 pthread_exit + 30
7 libdispatch.dylib 0x00007fff66a07b5d dispatch_main + 110
8 swiftlint 0x000000010da6afc0 main + 192
9 libdyld.dylib 0x00007fff66a35115 start + 1
Thread 1:: Dispatch queue: com.apple.root.user-initiated-qos
0 libsystem_kernel.dylib 0x00007fff66b84d1e __psynch_mutexwait + 10
1 libsystem_pthread.dylib 0x00007fff66cc0bfe pthread_mutex_lock_wait + 83
2 libsystem_pthread.dylib 0x00007fff66cbe551 pthread_mutex_lock_slow + 253
3 swiftlint 0x000000010d7d9abb specialized Cache.get(:) + 123
4 swiftlint 0x000000010d7d80f0 specialized Cache.get(:) + 16
5 swiftlint 0x000000010d8193d7 specialized Rule.lint(file:regions:benchmark:superfluousDisableCommandRule:) + 311
6 swiftlint 0x000000010d80de8c closure #2 in Linter.getStyleViolations(benchmark:) + 284
7 swiftlint 0x000000010d81d453 partial apply for closure #2 in Linter.getStyleViolations(benchmark:) + 771
8 swiftlint 0x000000010d81d4cc partial apply for thunk for @callee_owned (@in Rule) -> (@owned LintResult?) + 60
9 swiftlint 0x000000010d7ba5a3 specialized closure #1 in Array.parallelMap(transform:) + 115
10 swiftlint 0x000000010d7bb864 partial apply for specialized + 100
11 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
12 libdispatch.dylib 0x00007fff66a06168 dispatch_client_callout2 + 8
13 libdispatch.dylib 0x00007fff66a09cbc dispatch_apply_serial + 111
14 libdispatch.dylib 0x00007fff669fbd50 dispatch_client_callout + 8
15 libdispatch.dylib 0x00007fff66a11fbe dispatch_sync_function_invoke + 54
16 libdispatch.dylib 0x00007fff66a05fb7 dispatch_apply_f + 947
17 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
18 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
19 swiftlint 0x000000010d7ba32b specialized Array.parallelMap(transform:) + 891
20 swiftlint 0x000000010d80c948 Linter.getStyleViolations(benchmark:) + 2136
21 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
22 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
23 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
24 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
25 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
26 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
27 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
28 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
29 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
30 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
31 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
32 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
33 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
34 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
35 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
36 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
37 libdispatch.dylib 0x00007fff66a06168 dispatch_client_callout2 + 8
38 libdispatch.dylib 0x00007fff66a137d9 dispatch_apply_invoke_and_wait + 159
39 libdispatch.dylib 0x00007fff66a05f38 dispatch_apply_f + 820
40 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
41 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
42 swiftlint 0x000000010da8ee92 specialized closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 6450
43 swiftlint 0x000000010da818cf closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 47
44 swiftlint 0x000000010da8b5d8 partial apply for closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 136
45 swiftlint 0x000000010da8b645 partial apply for thunk for @callee_owned (@owned [Configuration : [File]]) -> (@owned Result<[File], CommandantError<()>>) + 53
46 swiftlint 0x000000010d70b13c Result.analysis(ifSuccess:ifFailure:) + 348
47 swiftlint 0x000000010d70b6b5 protocol witness for ResultProtocol.analysis(ifSuccess:ifFailure:) in conformance <A, B> Result<A, B> + 165
48 swiftlint 0x000000010d712e69 ResultProtocol.flatMap(:) + 185
49 swiftlint 0x000000010da8b089 specialized Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1817
50 swiftlint 0x000000010da72e19 specialized LintCommand.run(:) + 2713
51 swiftlint 0x000000010da714ca protocol witness for CommandProtocol.run(:) in conformance LintCommand + 250
52 swiftlint 0x000000010d6f551a closure #1 in CommandWrapper.init(:) + 922
53 swiftlint 0x000000010d6f9713 partial apply for closure #1 in CommandWrapper.init(:) + 83
54 swiftlint 0x000000010d6f5e93 CommandRegistry.run(command:arguments:) + 243
55 swiftlint 0x000000010d6f883b specialized CommandRegistry.main(arguments:defaultVerb:errorHandler:) + 603
56 swiftlint 0x000000010d6f60b3 CommandRegistry.main(defaultVerb:errorHandler:) + 131
57 swiftlint 0x000000010da6b366 closure #1 in + 886
58 swiftlint 0x000000010d7f3570 thunk for @callee_owned () -> () + 32
59 libdispatch.dylib 0x00007fff66a03591 _dispatch_call_block_and_release + 12
60 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
61 libdispatch.dylib 0x00007fff66a08c61 _dispatch_queue_override_invoke + 880
62 libdispatch.dylib 0x00007fff669fd941 _dispatch_root_queue_drain + 515
63 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
64 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
65 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 2:: Dispatch queue: com.apple.root.default-qos.overcommit
0 libsystem_kernel.dylib 0x00007fff66b852fa __sigsuspend_nocancel + 10
1 libdispatch.dylib 0x00007fff66a07c6d _dispatch_sigsuspend + 21
2 libdispatch.dylib 0x00007fff66a07c58 _dispatch_sig_thread + 53
Thread 3 Crashed:: Dispatch queue: com.apple.root.user-initiated-qos
0 swiftlint 0x000000010d78fe9f NSString.CacheContainer.location(fromByteOffset:) + 751
1 swiftlint 0x000000010d78f8d1 NSString.byteRangeToNSRange(start:length:) + 65
2 swiftlint 0x000000010d8d224f specialized GenericTypeNameRule.genericTypesForType(in:kind:dictionary:) + 303
3 swiftlint 0x000000010d842925 specialized ASTRule.validate(file:dictionary:) + 661
4 swiftlint 0x000000010d8d06c4 protocol witness for Rule.validate(file:) in conformance GenericTypeNameRule + 292
5 swiftlint 0x000000010d8195f8 specialized Rule.lint(file:regions:benchmark:superfluousDisableCommandRule:) + 856
6 swiftlint 0x000000010d80de8c closure #2 in Linter.getStyleViolations(benchmark:) + 284
7 swiftlint 0x000000010d81d453 partial apply for closure #2 in Linter.getStyleViolations(benchmark:) + 771
8 swiftlint 0x000000010d81d4cc partial apply for thunk for @callee_owned (@in Rule) -> (@owned LintResult?) + 60
9 swiftlint 0x000000010d7ba5a3 specialized closure #1 in Array.parallelMap(transform:) + 115
10 swiftlint 0x000000010d7bb864 partial apply for specialized + 100
11 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
12 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
13 libdispatch.dylib 0x00007fff66a09cbc _dispatch_apply_serial + 111
14 libdispatch.dylib 0x00007fff669fbd50 dispatch_client_callout + 8
15 libdispatch.dylib 0x00007fff66a11fbe dispatch_sync_function_invoke + 54
16 libdispatch.dylib 0x00007fff66a05fb7 dispatch_apply_f + 947
17 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
18 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
19 swiftlint 0x000000010d7ba32b specialized Array.parallelMap(transform:) + 891
20 swiftlint 0x000000010d80c948 Linter.getStyleViolations(benchmark:) + 2136
21 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
22 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
23 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
24 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
25 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
26 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
27 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
28 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
29 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
30 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
31 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
32 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
33 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
34 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
35 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
36 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
37 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
38 libdispatch.dylib 0x00007fff66a060a4 _dispatch_apply_invoke + 159
39 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
40 libdispatch.dylib 0x00007fff669fdac4 _dispatch_root_queue_drain + 902
41 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
42 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
43 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 4:: Dispatch queue: com.apple.root.user-initiated-qos
0 libsystem_kernel.dylib 0x00007fff66b84d1e __psynch_mutexwait + 10
1 libsystem_pthread.dylib 0x00007fff66cc0bfe pthread_mutex_lock_wait + 83
2 libsystem_pthread.dylib 0x00007fff66cbe551 pthread_mutex_lock_slow + 253
3 swiftlint 0x000000010d7d9abb specialized Cache.get(:) + 123
4 swiftlint 0x000000010d7d80f0 specialized Cache.get(:) + 16
5 swiftlint 0x000000010d8193d7 specialized Rule.lint(file:regions:benchmark:superfluousDisableCommandRule:) + 311
6 swiftlint 0x000000010d80de8c closure #2 in Linter.getStyleViolations(benchmark:) + 284
7 swiftlint 0x000000010d81d453 partial apply for closure #2 in Linter.getStyleViolations(benchmark:) + 771
8 swiftlint 0x000000010d81d4cc partial apply for thunk for @callee_owned (@in Rule) -> (@owned LintResult?) + 60
9 swiftlint 0x000000010d7ba5a3 specialized closure #1 in Array.parallelMap(transform:) + 115
10 swiftlint 0x000000010d7bb864 partial apply for specialized + 100
11 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
12 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
13 libdispatch.dylib 0x00007fff66a09cbc _dispatch_apply_serial + 111
14 libdispatch.dylib 0x00007fff669fbd50 dispatch_client_callout + 8
15 libdispatch.dylib 0x00007fff66a11fbe dispatch_sync_function_invoke + 54
16 libdispatch.dylib 0x00007fff66a05fb7 dispatch_apply_f + 947
17 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
18 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
19 swiftlint 0x000000010d7ba32b specialized Array.parallelMap(transform:) + 891
20 swiftlint 0x000000010d80c948 Linter.getStyleViolations(benchmark:) + 2136
21 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
22 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
23 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
24 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
25 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
26 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
27 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
28 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
29 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
30 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
31 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
32 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
33 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
34 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
35 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
36 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
37 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
38 libdispatch.dylib 0x00007fff66a060a4 _dispatch_apply_invoke + 159
39 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
40 libdispatch.dylib 0x00007fff669fdac4 _dispatch_root_queue_drain + 902
41 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
42 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
43 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 5:: Dispatch queue: com.apple.root.user-initiated-qos
0 libsystem_kernel.dylib 0x00007fff66b84d1e __psynch_mutexwait + 10
1 libsystem_pthread.dylib 0x00007fff66cc0bfe pthread_mutex_lock_wait + 83
2 libsystem_pthread.dylib 0x00007fff66cbe551 pthread_mutex_lock_slow + 253
3 swiftlint 0x000000010d7d9abb specialized Cache.get(:) + 123
4 swiftlint 0x000000010d7d80f0 specialized Cache.get(:) + 16
5 swiftlint 0x000000010d8193d7 specialized Rule.lint(file:regions:benchmark:superfluousDisableCommandRule:) + 311
6 swiftlint 0x000000010d80de8c closure #2 in Linter.getStyleViolations(benchmark:) + 284
7 swiftlint 0x000000010d81d453 partial apply for closure #2 in Linter.getStyleViolations(benchmark:) + 771
8 swiftlint 0x000000010d81d4cc partial apply for thunk for @callee_owned (@in Rule) -> (@owned LintResult?) + 60
9 swiftlint 0x000000010d7ba5a3 specialized closure #1 in Array.parallelMap(transform:) + 115
10 swiftlint 0x000000010d7bb864 partial apply for specialized + 100
11 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
12 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
13 libdispatch.dylib 0x00007fff66a09cbc _dispatch_apply_serial + 111
14 libdispatch.dylib 0x00007fff669fbd50 dispatch_client_callout + 8
15 libdispatch.dylib 0x00007fff66a11fbe dispatch_sync_function_invoke + 54
16 libdispatch.dylib 0x00007fff66a05fb7 dispatch_apply_f + 947
17 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
18 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
19 swiftlint 0x000000010d7ba32b specialized Array.parallelMap(transform:) + 891
20 swiftlint 0x000000010d80c948 Linter.getStyleViolations(benchmark:) + 2136
21 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
22 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
23 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
24 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
25 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
26 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
27 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
28 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
29 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
30 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
31 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
32 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
33 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
34 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
35 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
36 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
37 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
38 libdispatch.dylib 0x00007fff66a060a4 _dispatch_apply_invoke + 159
39 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
40 libdispatch.dylib 0x00007fff669fdac4 _dispatch_root_queue_drain + 902
41 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
42 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
43 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 6:: Dispatch queue: com.apple.root.user-initiated-qos
0 libsystem_kernel.dylib 0x00007fff66b84d1e __psynch_mutexwait + 10
1 libsystem_pthread.dylib 0x00007fff66cc0bfe pthread_mutex_lock_wait + 83
2 libsystem_pthread.dylib 0x00007fff66cbe551 pthread_mutex_lock_slow + 253
3 swiftlint 0x000000010d7d9abb specialized Cache.get(:) + 123
4 swiftlint 0x000000010d7d80f0 specialized Cache.get(:) + 16
5 swiftlint 0x000000010d8193d7 specialized Rule.lint(file:regions:benchmark:superfluousDisableCommandRule:) + 311
6 swiftlint 0x000000010d80de8c closure #2 in Linter.getStyleViolations(benchmark:) + 284
7 swiftlint 0x000000010d81d453 partial apply for closure #2 in Linter.getStyleViolations(benchmark:) + 771
8 swiftlint 0x000000010d81d4cc partial apply for thunk for @callee_owned (@in Rule) -> (@owned LintResult?) + 60
9 swiftlint 0x000000010d7ba5a3 specialized closure #1 in Array.parallelMap(transform:) + 115
10 swiftlint 0x000000010d7bb864 partial apply for specialized + 100
11 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
12 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
13 libdispatch.dylib 0x00007fff66a09cbc _dispatch_apply_serial + 111
14 libdispatch.dylib 0x00007fff669fbd50 dispatch_client_callout + 8
15 libdispatch.dylib 0x00007fff66a11fbe dispatch_sync_function_invoke + 54
16 libdispatch.dylib 0x00007fff66a05fb7 dispatch_apply_f + 947
17 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
18 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
19 swiftlint 0x000000010d7ba32b specialized Array.parallelMap(transform:) + 891
20 swiftlint 0x000000010d80c948 Linter.getStyleViolations(benchmark:) + 2136
21 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
22 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
23 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
24 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
25 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
26 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
27 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
28 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
29 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
30 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
31 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
32 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
33 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
34 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
35 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
36 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
37 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
38 libdispatch.dylib 0x00007fff66a060a4 _dispatch_apply_invoke + 159
39 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
40 libdispatch.dylib 0x00007fff669fdac4 _dispatch_root_queue_drain + 902
41 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
42 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
43 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 7:: Dispatch queue: com.apple.root.user-initiated-qos
0 com.apple.CoreFoundation 0x00007fff3f20ad44 CFRelease + 180
1 swiftlint 0x000000010dde9b57 specialized String.init(cocoaString:) + 279
2 swiftlint 0x000000010dd7d343 String.init(cocoaString:) + 19
3 swiftlint 0x000000010dbcbc5a String.init(bytesNoCopy:length:encoding:freeWhenDone:) + 90
4 swiftlint 0x000000010d76f274 specialized String.init(bytes:length:) + 148
5 swiftlint 0x000000010d769510 closure #1 in closure #2 in fromSourceKit(:) + 144
6 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
7 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
8 com.apple.sourcekitd 0x000000010e75a387 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 1431
9 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
10 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
11 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
12 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
13 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
14 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
15 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
16 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
17 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
18 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
19 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
20 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
21 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
22 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
23 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
24 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
25 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
26 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
27 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
28 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
29 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
30 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
31 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
32 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
33 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
34 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
35 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
36 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
37 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
38 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
39 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
40 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
41 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
42 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
43 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
44 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
45 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
46 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
47 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
48 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
49 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
50 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
51 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
52 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
53 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
54 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
55 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
56 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
57 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
58 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
59 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
60 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
61 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
62 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
63 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
64 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
65 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
66 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
67 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
68 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
69 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
70 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
71 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
72 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
73 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
74 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
75 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
76 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
77 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
78 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
79 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
80 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
81 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
82 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
83 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
84 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
85 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
86 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
87 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
88 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
89 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
90 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
91 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
92 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
93 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
94 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
95 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
96 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
97 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
98 com.apple.sourcekitd 0x000000010e75a8a7 sourcekitd::CompactVariantFuncs<(anonymous namespace)::DocStructureReader>::dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 2743
99 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
100 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
101 swiftlint 0x000000010d76939c closure #1 in closure #1 in fromSourceKit(:) + 44
102 swiftlint 0x000000010d76947b @objc closure #1 in closure #1 in fromSourceKit(:) + 27
103 com.apple.sourcekitd 0x000000010e75f3d7 sourcekitd_variant_array_apply_f + 375
104 swiftlint 0x000000010d768f4f fromSourceKit(:) + 479
105 swiftlint 0x000000010d769550 closure #1 in closure #2 in fromSourceKit(:) + 208
106 swiftlint 0x000000010d76966b @objc closure #1 in closure #2 in fromSourceKit(:) + 27
107 com.apple.sourcekitd 0x000000010e75ebd4 bool llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>::callback_fn<sourcekitd_variant_dictionary_apply_f::$2>(long, sourcekitd_uid_s*, sourcekitd_variant_t) + 68
108 com.apple.sourcekitd 0x000000010e763202 invocation function for block in XPCVar_dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 162
109 libxpc.dylib 0x00007fff66cf9944 xpc_dictionary_apply_apply + 44
110 libxpc.dylib 0x00007fff66cf7c5d xpc_dictionary_apply_node_f + 133
111 libxpc.dylib 0x00007fff66cf97dc xpc_dictionary_apply + 88
112 com.apple.sourcekitd 0x000000010e762e7f XPCVar_dictionary_apply(sourcekitd_variant_t, llvm::function_ref<bool (sourcekitd_uid_s*, sourcekitd_variant_t)>) + 79
113 com.apple.sourcekitd 0x000000010e75eb7b sourcekitd_variant_dictionary_apply_f + 107
114 swiftlint 0x000000010d768e79 fromSourceKit(:) + 265
115 swiftlint 0x000000010d76d022 Request.failableSend() + 546
116 swiftlint 0x000000010d7d7ec0 specialized closure #1 in variable initialization expression of responseCache + 128
117 swiftlint 0x000000010d7d21f6 specialized thunk for @callee_owned (@owned File) -> (@owned [String : SourceKitRepresentable]?) + 22
118 swiftlint 0x000000010d7d9d6f specialized Cache.get(:) + 815
119 swiftlint 0x000000010d7d80f0 specialized Cache.get(:) + 16
120 swiftlint 0x000000010d80c45d Linter.getStyleViolations(benchmark:) + 877
121 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
122 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
123 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
124 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
125 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
126 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
127 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
128 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
129 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
130 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
131 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
132 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
133 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
134 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
135 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
136 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
137 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
138 libdispatch.dylib 0x00007fff66a060a4 _dispatch_apply_invoke + 159
139 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
140 libdispatch.dylib 0x00007fff669fdac4 _dispatch_root_queue_drain + 902
141 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
142 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
143 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 8:: Dispatch queue: com.apple.root.user-initiated-qos
0 libsystem_kernel.dylib 0x00007fff66b84d1e __psynch_mutexwait + 10
1 libsystem_pthread.dylib 0x00007fff66cc0bfe pthread_mutex_lock_wait + 83
2 libsystem_pthread.dylib 0x00007fff66cbe551 pthread_mutex_lock_slow + 253
3 swiftlint 0x000000010d7d9abb specialized Cache.get(:) + 123
4 swiftlint 0x000000010d7d80f0 specialized Cache.get(:) + 16
5 swiftlint 0x000000010d8193d7 specialized Rule.lint(file:regions:benchmark:superfluousDisableCommandRule:) + 311
6 swiftlint 0x000000010d80de8c closure #2 in Linter.getStyleViolations(benchmark:) + 284
7 swiftlint 0x000000010d81d453 partial apply for closure #2 in Linter.getStyleViolations(benchmark:) + 771
8 swiftlint 0x000000010d81d4cc partial apply for thunk for @callee_owned (@in Rule) -> (@owned LintResult?) + 60
9 swiftlint 0x000000010d7ba5a3 specialized closure #1 in Array.parallelMap(transform:) + 115
10 swiftlint 0x000000010d7bb864 partial apply for specialized + 100
11 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
12 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
13 libdispatch.dylib 0x00007fff66a09cbc _dispatch_apply_serial + 111
14 libdispatch.dylib 0x00007fff669fbd50 dispatch_client_callout + 8
15 libdispatch.dylib 0x00007fff66a11fbe dispatch_sync_function_invoke + 54
16 libdispatch.dylib 0x00007fff66a05fb7 dispatch_apply_f + 947
17 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
18 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
19 swiftlint 0x000000010d7ba32b specialized Array.parallelMap(transform:) + 891
20 swiftlint 0x000000010d80c948 Linter.getStyleViolations(benchmark:) + 2136
21 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
22 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
23 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
24 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
25 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
26 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
27 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
28 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
29 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
30 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
31 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
32 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
33 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
34 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
35 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
36 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
37 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
38 libdispatch.dylib 0x00007fff66a060a4 _dispatch_apply_invoke + 159
39 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
40 libdispatch.dylib 0x00007fff669fdac4 _dispatch_root_queue_drain + 902
41 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
42 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
43 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 9:: Dispatch queue: com.apple.root.user-initiated-qos
0 libsystem_kernel.dylib 0x00007fff66b84d1e __psynch_mutexwait + 10
1 libsystem_pthread.dylib 0x00007fff66cc0bfe pthread_mutex_lock_wait + 83
2 libsystem_pthread.dylib 0x00007fff66cbe551 pthread_mutex_lock_slow + 253
3 swiftlint 0x000000010d7d9abb specialized Cache.get(:) + 123
4 swiftlint 0x000000010d7d80f0 specialized Cache.get(:) + 16
5 swiftlint 0x000000010d8193d7 specialized Rule.lint(file:regions:benchmark:superfluousDisableCommandRule:) + 311
6 swiftlint 0x000000010d80de8c closure #2 in Linter.getStyleViolations(benchmark:) + 284
7 swiftlint 0x000000010d81d453 partial apply for closure #2 in Linter.getStyleViolations(benchmark:) + 771
8 swiftlint 0x000000010d81d4cc partial apply for thunk for @callee_owned (@in Rule) -> (@owned LintResult?) + 60
9 swiftlint 0x000000010d7ba5a3 specialized closure #1 in Array.parallelMap(transform:) + 115
10 swiftlint 0x000000010d7bb864 partial apply for specialized + 100
11 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
12 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
13 libdispatch.dylib 0x00007fff66a09cbc _dispatch_apply_serial + 111
14 libdispatch.dylib 0x00007fff669fbd50 dispatch_client_callout + 8
15 libdispatch.dylib 0x00007fff66a11fbe dispatch_sync_function_invoke + 54
16 libdispatch.dylib 0x00007fff66a05fb7 dispatch_apply_f + 947
17 swiftlint 0x000000010dacf8b2 swift_dispatch_apply_current + 98
18 swiftlint 0x000000010dab76ac static DispatchQueue.concurrentPerform(iterations:execute:) + 140
19 swiftlint 0x000000010d7ba32b specialized Array.parallelMap(transform:) + 891
20 swiftlint 0x000000010d80c948 Linter.getStyleViolations(benchmark:) + 2136
21 swiftlint 0x000000010d80c0c6 Linter.styleViolations.getter + 278
22 swiftlint 0x000000010da74218 specialized closure #1 in LintCommand.run(:) + 2248
23 swiftlint 0x000000010da70d02 closure #1 in LintCommand.run(:) + 706
24 swiftlint 0x000000010da78a89 partial apply for closure #1 in LintCommand.run(:) + 377
25 swiftlint 0x000000010da8208d closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1069
26 swiftlint 0x000000010da8fdb0 partial apply for closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 704
27 swiftlint 0x000000010da908c9 closure #2 in closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:)partial apply + 9
28 swiftlint 0x000000010da8fdef partial apply for thunk for @callee_owned () -> (@error @owned Error) + 47
29 swiftlint 0x000000010da908d9 thunk for @callee_owned () -> (@error @owned Error)partial apply + 9
30 swiftlint 0x000000010da98ec8 autoreleasepool(invoking:) + 56
31 swiftlint 0x000000010da90470 specialized closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 1248
32 swiftlint 0x000000010da81b84 closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 548
33 swiftlint 0x000000010da8f9e6 partial apply for closure #2 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 198
34 swiftlint 0x000000010da828ed closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 781
35 swiftlint 0x000000010da8fe5b partial apply for closure #4 in closure #2 in Configuration.visitLintableFiles(path:action:useSTDIN:quiet:useScriptInputFiles:cache:parallel:visitorBlock:) + 59
36 swiftlint 0x000000010dab8167 thunk for @callee_owned (@unowned Int) -> () + 39
37 libdispatch.dylib 0x00007fff66a06168 _dispatch_client_callout2 + 8
38 libdispatch.dylib 0x00007fff66a060a4 _dispatch_apply_invoke + 159
39 libdispatch.dylib 0x00007fff669fbd50 _dispatch_client_callout + 8
40 libdispatch.dylib 0x00007fff669fdac4 _dispatch_root_queue_drain + 902
41 libdispatch.dylib 0x00007fff669fd6ed _dispatch_worker_thread3 + 101
42 libsystem_pthread.dylib 0x00007fff66cc01ca _pthread_wqthread + 1387
43 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 10:
0 libsystem_pthread.dylib 0x00007fff66cbfc40 start_wqthread + 0
Thread 11:
0 libsystem_kernel.dylib 0x00007fff66b85562 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff66cc006a _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff66cbfc4d start_wqthread + 13
Thread 3 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000029 rcx: 0x0000000000000100 rdx: 0x0000000000000000
rdi: 0x4000000000000022 rsi: 0x0000000000000022 rbp: 0x000070000d58c200 rsp: 0x000070000d58c160
r8: 0x0000000000000088 r9: 0x00007fca3683b8f1 r10: 0x0000000000000000 r11: 0x00007fca340082a0
r12: 0x0000000000000088 r13: 0x000070000d58c1b0 r14: 0x00007fca3683b8e0 r15: 0x00000000000006da
rip: 0x000000010d78fe9f rfl: 0x0000000000010202 cr2: 0x00007fca345f3000
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 6
Binary Images:
0x10d6cb000 - 0x10e017fff +swiftlint (0) <62D0FDFC-FD61-3120-9CDD-BD65A5CF4AD4> /Users/USER/*/swiftlint
0x10e751000 - 0x10e78ffff com.apple.sourcekitd (1.0 - 900.0.74.1) <6D9D1E7E-7E6B-3727-8942-8C9EFC1E5570> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/sourcekitd.framework/Versions/A/sourcekitd
0x11d275000 - 0x11d2bf98f dyld (519.2.2) <6695F30B-4E88-3C0B-9867-7D738C44A3E6> /usr/lib/dyld
0x7fff3b694000 - 0x7fff3b694fff com.apple.Accelerate (1.11 - Accelerate 1.11) <5AA750F5-D633-32BA-B7F3-4F651FB1761E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff3b6ac000 - 0x7fff3bbaafc3 com.apple.vImage (8.1 - ???) <310976EE-E12D-39D7-8F58-6EE924E08576> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff3bbab000 - 0x7fff3bd05fcb libBLAS.dylib (1211.30.1) <0DB0D952-BCF4-3479-BA2F-785FB1A57479> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff3bd06000 - 0x7fff3bd34fef libBNNS.dylib (37) <49EB4DBA-877C-3D41-90A2-C3D982C72A54> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff3bd35000 - 0x7fff3c0f5ff7 libLAPACK.dylib (1211.30.1) <2D4E4446-6B63-350C-BD68-A1B8FBE99539> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff3c0f6000 - 0x7fff3c10bff7 libLinearAlgebra.dylib (1211.30.1) <6C68F41D-1398-3AFE-BE72-C0ECA1B24BDC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff3c10c000 - 0x7fff3c111ff3 libQuadrature.dylib (3) <3D6BF66A-55B2-3692-BAC7-DEB0C676ED29> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff3c112000 - 0x7fff3c170fff libSparse.dylib (79.1.1) <7AD0F8A8-FD36-36FE-B83D-58648EBD0027> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff3c171000 - 0x7fff3c184fff libSparseBLAS.dylib (1211.30.1) <42506F6F-0F38-322E-9903-C1DB66E4DA05> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff3c185000 - 0x7fff3c331fc3 libvDSP.dylib (622.20.8) <6FFCA52B-7D60-326A-ADF2-601F39A8685A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff3c332000 - 0x7fff3c3e2fef libvMisc.dylib (622.20.8) <54F90047-879F-3260-8604-6E453149B49E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff3c3e3000 - 0x7fff3c3e3fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <8A96A8ED-7B88-3D17-8D17-41D224E0EC90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff3d582000 - 0x7fff3d582fff com.apple.ApplicationServices (48 - 50) <7627DBD6-497B-3AB7-9B63-F0532EDF09B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff3d583000 - 0x7fff3d5e9fff com.apple.ApplicationServices.ATS (377 - 445) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff3d682000 - 0x7fff3d7a4fff libFontParser.dylib (222.1.2) <11BD5EEF-AF18-33FB-B114-DD611932E822> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff3d7a5000 - 0x7fff3d7efff7 libFontRegistry.dylib (221) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff3d931000 - 0x7fff3d935ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <42C25E85-1CF3-3DEC-A434-BE69F68F4318> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff3d9d5000 - 0x7fff3da27ff7 com.apple.HIServices (1.22 - 622) <2E83CD6F-ED98-3C29-BD0A-8525E38AB5DB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff3da28000 - 0x7fff3da36fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <71A9C815-AC55-3E36-A618-F6778F5119AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff3da37000 - 0x7fff3da83fff com.apple.print.framework.PrintCore (13 - 503) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff3da84000 - 0x7fff3dabefff com.apple.QD (3.12 - 403) <38D8106A-4FFA-3FE9-9999-714CADD7EE9C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff3dabf000 - 0x7fff3dacbfff com.apple.speech.synthesis.framework (7.2.1 - 7.2.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff3dacc000 - 0x7fff3dd57ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <71699B6E-8B94-39E2-801F-8467C2B5B621> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff3e06e000 - 0x7fff3e400fff com.apple.CFNetwork (893.13.1 - 893.13.1) <567231F4-4080-3B2D-8349-9177BD358804> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff3e921000 - 0x7fff3e9daff7 com.apple.ColorSync (4.13.0 - 546) /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff3eb67000 - 0x7fff3ebfaff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <4DE794D4-F018-31E8-B3CE-CF8DBE68D14E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff3ec8b000 - 0x7fff3efdffe7 com.apple.CoreData (120 - 849.2) <4407C44B-34CC-3D23-AEDF-AD866D414EBF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff3efe0000 - 0x7fff3f0acfff com.apple.CoreDisplay (1.0 - 81.7) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff3f0ad000 - 0x7fff3f54dfff com.apple.CoreFoundation (6.9 - 1450.16) <23F8373A-FA3F-37A2-BA5B-70061BFCCD21> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff3f54f000 - 0x7fff3fb5cfef com.apple.CoreGraphics (2.0 - 1129.5) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff3fb5e000 - 0x7fff3fe4dfff com.apple.CoreImage (13.0.0 - 579.2.9) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff4020c000 - 0x7fff4020cfff com.apple.CoreServices (822.19 - 822.19) <0C60B639-4CC4-3F57-BC5E-DB71EB75F7F4> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff4020d000 - 0x7fff40281ffb com.apple.AE (735.1 - 735.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff40282000 - 0x7fff40559ff7 com.apple.CoreServices.CarbonCore (1178.2 - 1178.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff4055a000 - 0x7fff4058eff7 com.apple.DictionaryServices (1.2 - 284) <3FCEE280-8DD0-37C9-BFD4-7BA87AAFC8EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff4058f000 - 0x7fff40597ff3 com.apple.CoreServices.FSEvents (1239 - 1239) <7BBC5CB7-DBC8-316B-99B0-781827159A2F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff40598000 - 0x7fff40750ff7 com.apple.LaunchServices (822.19 - 822.19) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff40751000 - 0x7fff40800ff7 com.apple.Metadata (10.7.0 - 1191.2.6) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff40801000 - 0x7fff4085eff7 com.apple.CoreServices.OSServices (822.19 - 822.19) <408FB1A4-58E9-34D4-8022-A9EEC8502762> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff4085f000 - 0x7fff408cdfff com.apple.SearchKit (1.4.0 - 1.4.0) <14053F88-2C76-35CA-9FC1-2A9BC0B63F88> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff408ce000 - 0x7fff408f2ffb com.apple.coreservices.SharedFileList (71.4 - 71.4) <4AA6DCF5-BAF8-36FA-A8B0-EDF518EFEF14> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff40b9c000 - 0x7fff40ceaffb com.apple.CoreText (352.0 - 578.12) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff40ceb000 - 0x7fff40d25ff3 com.apple.CoreVideo (1.8 - 279.2) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff4102b000 - 0x7fff41030fff com.apple.DiskArbitration (2.7 - 2.7) <44836CE9-A9ED-3017-972A-7A0A3D6B472B> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff411f1000 - 0x7fff415b6fff com.apple.Foundation (6.9 - 1450.16) <7FEC6610-70EA-3A8D-8EC4-7E99BAF1E312> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff41626000 - 0x7fff41656fff com.apple.GSS (4.0 - 2.0) <3B4B4509-B5A3-396B-9C71-80BAE84476FA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff418cb000 - 0x7fff41966fff com.apple.framework.IOKit (2.0.2 - 1445.31.1) <7556086A-EFAF-3262-9822-6F666CFC6655> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff41968000 - 0x7fff4196fffb com.apple.IOSurface (209.2.2 - 209.2.2) <6D35A601-1C47-37BE-AD31-F8EB88F67573> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff419c6000 - 0x7fff41b3dff7 com.apple.ImageIO.framework (3.3.0 - 1713) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff41b3e000 - 0x7fff41b42ffb libGIF.dylib (1713) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff41b43000 - 0x7fff41c2afff libJP2.dylib (1713) <8323253E-278A-3486-801A-83E143C19712> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff41c2b000 - 0x7fff41c4eff7 libJPEG.dylib (1713) <2D846A18-D8AF-3573-803B-BEABCBAC38D1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff41f2a000 - 0x7fff41f50feb libPng.dylib (1713) <546F41CE-185C-31A0-B61C-1012AA932624> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff41f51000 - 0x7fff41f53ffb libRadiance.dylib (1713) <31787C46-4A2B-3CDF-95E9-EC1BD4794917> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff41f54000 - 0x7fff41fa1feb libTIFF.dylib (1713) <5319B2E1-83D2-30C7-A7BC-A0CE0B07885D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff42d30000 - 0x7fff42d49ff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff436c6000 - 0x7fff43745fff com.apple.Metal (124.7 - 124.7) /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff43762000 - 0x7fff43777fff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff43778000 - 0x7fff437e3fef com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff437e4000 - 0x7fff43807fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff43808000 - 0x7fff43888ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff43889000 - 0x7fff43889ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <2E8723FC-AA53-3596-B6A4-220A378B7A5A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff44892000 - 0x7fff4489effb com.apple.NetFS (6.0 - 4.0) <81B22AE7-7094-30F2-BF41-84CA05EDB95B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff4768f000 - 0x7fff476dcffb com.apple.opencl (2.8.12 - 2.8.12) <0AACB21D-AAC4-337C-8FF6-A8F6196614EE> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff476dd000 - 0x7fff476f9ffb com.apple.CFOpenDirectory (10.13 - 207) <7664F745-96E0-3F9F-964B-6014928902FB> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff476fa000 - 0x7fff47705fff com.apple.OpenDirectory (10.13 - 207) <1550BB27-D605-398C-8670-48700C86D674> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff48884000 - 0x7fff48886fff libCVMSPluginSupport.dylib (16.4.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff48887000 - 0x7fff4888bff7 libCoreFSCache.dylib (162.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff4888c000 - 0x7fff48890fff libCoreVMClient.dylib (162.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff48891000 - 0x7fff48899fff libGFXShared.dylib (16.4.2) <07F1D947-F79B-3608-9080-E4DBFE13AF1D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff4889a000 - 0x7fff488a5fff libGL.dylib (16.4.2) <97D6871A-BAF1-33DD-9ED7-BE7BB437F378> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff488a6000 - 0x7fff488e1fe7 libGLImage.dylib (16.4.2) <3E2802DF-4998-31DB-B3A2-65720DE919A5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff48a4f000 - 0x7fff48a8dffb libGLU.dylib (16.4.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff49405000 - 0x7fff49413ffb com.apple.opengl (16.4.2 - 16.4.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff4a25b000 - 0x7fff4a4a3fff com.apple.QuartzCore (1.11 - 584.8.94) <8D6B5735-852F-36D3-9349-C423582F743B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff4acdc000 - 0x7fff4aff3fff com.apple.security (7.0 - 58286.31.2) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff4aff4000 - 0x7fff4b07eff7 com.apple.securityfoundation (6.0 - 55185.30.4) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff4b0b0000 - 0x7fff4b0b3ffb com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff4b458000 - 0x7fff4b4c8ff3 com.apple.SystemConfiguration (1.17 - 1.17) <3C6B2BB9-43AB-39AD-8027-38E30A8A4186> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff4e0fc000 - 0x7fff4e188ff7 com.apple.APFS (1.0 - 1) <834EAD5F-0C4E-3C33-A654-8E1670CEC457> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff4ef0b000 - 0x7fff4ef53ff3 com.apple.AppleJPEG (1.0 - 1) <8BBD5180-5BF9-33DB-8B91-974B1D0AECFB> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff4ef8e000 - 0x7fff4efb6fff com.apple.applesauce (1.0 - ???) <32FF4851-2F68-35BA-835F-91856A20C323> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff4f7a2000 - 0x7fff4f7a9ff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <47B6301F-D908-3811-BB9E-DA16D9B29A34> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff511c0000 - 0x7fff511c9ff3 com.apple.CommonAuth (4.0 - 2.0) <11B2D184-36B8-3624-B1AD-7B6037D76160> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff51bd6000 - 0x7fff51be6ff7 com.apple.CoreEmoji (1.0 - 69.3) /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff52abc000 - 0x7fff52aedff3 com.apple.CoreServicesInternal (309.1 - 309.1) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff532e8000 - 0x7fff532ecffb com.apple.DSExternalDisplay (3.1 - 380) /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff5431a000 - 0x7fff54748fff com.apple.vision.FaceCore (3.3.2 - 3.3.2) <80C97AD7-D5C2-311A-B268-4AA60CAD6CED> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff5875c000 - 0x7fff5876bfff com.apple.GraphVisualizer (1.0 - 5) <0A93C5DE-0D28-312E-8764-6B0FB805ED91> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff587e3000 - 0x7fff58857fff com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff59109000 - 0x7fff59110ffb com.apple.IOAccelerator (376.6 - 376.6) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff59114000 - 0x7fff5912bfff com.apple.IOPresentment (1.0 - 32.1) /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff597af000 - 0x7fff598a4fff com.apple.LanguageModeling (1.0 - 159.3.1) <9B08E18E-69B4-3413-A03A-EF5AE4BE6277> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff598a5000 - 0x7fff598e7ff7 com.apple.Lexicon-framework (1.0 - 33.2) <5CC5E8EE-62A1-3EA5-B300-A39ABD0CF12D> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff598eb000 - 0x7fff598f2ff7 com.apple.LinguisticData (1.0 - 238.3) <228AF7CA-649A-3E24-BBC7-8A24B39B3FC4> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff5a53e000 - 0x7fff5a5a7ff7 com.apple.gpusw.MetalTools (1.0 - 1) /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff5a7bf000 - 0x7fff5a7e7fff com.apple.MultitouchSupport.framework (1204.13 - 1204.13) <6C5D778D-4AB7-39A4-989B-2E8D2D57B3A0> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff5aa4c000 - 0x7fff5aa57fff com.apple.NetAuth (6.2 - 6.2) <5C6F492A-28EF-3A0E-B573-6F3D60CFF0C7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff609eb000 - 0x7fff60c85fff com.apple.SkyLight (1.600.0 - 312.23.4) <390012E0-39E3-3D18-8271-D447990FDD21> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff6254a000 - 0x7fff62551ff3 com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff641b8000 - 0x7fff641baffb com.apple.loginsupport (1.0 - 1) <5E2C4AA7-066D-3FDB-B0E1-4CDAF287392C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff6431e000 - 0x7fff64351fff libclosured.dylib (519.2.2) <48051216-5647-3643-B979-B77D0FD20011> /usr/lib/closure/libclosured.dylib
0x7fff643f1000 - 0x7fff6442aff7 libCRFSuite.dylib (41) /usr/lib/libCRFSuite.dylib
0x7fff6442b000 - 0x7fff64436fff libChineseTokenizer.dylib (28) /usr/lib/libChineseTokenizer.dylib
0x7fff644c8000 - 0x7fff644c9ff3 libDiagnosticMessagesClient.dylib (104) <9712E980-76EE-3A89-AEA6-DF4BAF5C0574> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff64500000 - 0x7fff646caff3 libFosl_dynamic.dylib (17.7) /usr/lib/libFosl_dynamic.dylib
0x7fff64702000 - 0x7fff64702fff libOpenScriptingUtil.dylib (174) <203D2C39-61BB-3713-A502-2D17B04A42AC> /usr/lib/libOpenScriptingUtil.dylib
0x7fff64830000 - 0x7fff64831ff3 libSystem.B.dylib (1252) <5EDEEA85-0387-31EE-9D9B-DA1B75E7AEF3> /usr/lib/libSystem.B.dylib
0x7fff648c4000 - 0x7fff648c4fff libapple_crypto.dylib (109.30.8) /usr/lib/libapple_crypto.dylib
0x7fff648c5000 - 0x7fff648dbff7 libapple_nghttp2.dylib (1.24) <01402BC4-4822-3676-9C80-50D83F816424> /usr/lib/libapple_nghttp2.dylib
0x7fff648dc000 - 0x7fff64906ff3 libarchive.2.dylib (54) <8FC28DD8-E315-3C3E-95FE-D1D2CBE49888> /usr/lib/libarchive.2.dylib
0x7fff6498c000 - 0x7fff6498cff3 libauto.dylib (187) /usr/lib/libauto.dylib
0x7fff6498d000 - 0x7fff64a44ff7 libboringssl.dylib (109.30.8) /usr/lib/libboringssl.dylib
0x7fff64a45000 - 0x7fff64a55ff3 libbsm.0.dylib (39) <770B341F-3BB7-3123-B53C-F2D58868A963> /usr/lib/libbsm.0.dylib
0x7fff64a56000 - 0x7fff64a63ffb libbz2.1.0.dylib (38) <0A5086BB-4724-3C14-979D-5AD4F26B5B45> /usr/lib/libbz2.1.0.dylib
0x7fff64a64000 - 0x7fff64abafff libc++.1.dylib (400.9) /usr/lib/libc++.1.dylib
0x7fff64abb000 - 0x7fff64adfff7 libc++abi.dylib (400.7) <217656D5-BC40-37FF-B322-91CB2AAD4F34> /usr/lib/libc++abi.dylib
0x7fff64ae1000 - 0x7fff64af1fff libcmph.dylib (6) /usr/lib/libcmph.dylib
0x7fff64af2000 - 0x7fff64b08fff libcompression.dylib (47) /usr/lib/libcompression.dylib
0x7fff64db5000 - 0x7fff64dcdff7 libcoretls.dylib (155) /usr/lib/libcoretls.dylib
0x7fff64dce000 - 0x7fff64dcfffb libcoretls_cfhelpers.dylib (155) /usr/lib/libcoretls_cfhelpers.dylib
0x7fff6529f000 - 0x7fff652f5ff3 libcups.2.dylib (462.1) /usr/lib/libcups.2.dylib
0x7fff65433000 - 0x7fff65433fff libenergytrace.dylib (16) /usr/lib/libenergytrace.dylib
0x7fff6546a000 - 0x7fff6546fff3 libheimdal-asn1.dylib (520.30.1) <14DC1451-6E22-3A48-80CB-5D33DC0F8C3B> /usr/lib/libheimdal-asn1.dylib
0x7fff6549b000 - 0x7fff6558cff7 libiconv.2.dylib (51) <0772997F-4109-38A1-91ED-0F3F16AE99E5> /usr/lib/libiconv.2.dylib
0x7fff6558d000 - 0x7fff657b4ffb libicucore.A.dylib (59152.0.1) <281C39FD-0C9A-3EB2-A407-36D4CCE938E5> /usr/lib/libicucore.A.dylib
0x7fff65801000 - 0x7fff65802fff liblangid.dylib (128) <39C39393-0D05-301D-93B2-F224FC4949AA> /usr/lib/liblangid.dylib
0x7fff65803000 - 0x7fff6581cffb liblzma.5.dylib (10) <3D419A50-961F-37D2-8A01-3DC7AB7B8D18> /usr/lib/liblzma.5.dylib
0x7fff6581d000 - 0x7fff65833ff7 libmarisa.dylib (9) /usr/lib/libmarisa.dylib
0x7fff658e4000 - 0x7fff65b0cff7 libmecabra.dylib (779.7.6) <7808C544-161E-37CE-9D42-F368C82A180D> /usr/lib/libmecabra.dylib
0x7fff65b11000 - 0x7fff65b41ffb libncurses.5.4.dylib (53) <030DF747-F71B-367A-83EE-2F30B7947929> /usr/lib/libncurses.5.4.dylib
0x7fff65ce4000 - 0x7fff65dbbffb libnetwork.dylib (1229.30.11) <2A9846DE-C063-3340-89D1-D5DAC2B8A08A> /usr/lib/libnetwork.dylib
0x7fff65e31000 - 0x7fff6621f7e7 libobjc.A.dylib (723) <93A92316-DE1E-378C-8891-99720B50D075> /usr/lib/libobjc.A.dylib
0x7fff66232000 - 0x7fff66236fff libpam.2.dylib (22) <7B4D2CE2-1438-387A-9802-5CEEFBF26F86> /usr/lib/libpam.2.dylib
0x7fff66239000 - 0x7fff6626dfff libpcap.A.dylib (79.20.1) /usr/lib/libpcap.A.dylib
0x7fff662ec000 - 0x7fff66308ffb libresolv.9.dylib (65) /usr/lib/libresolv.9.dylib
0x7fff66358000 - 0x7fff664ebfe7 libsqlite3.dylib (274.5) /usr/lib/libsqlite3.dylib
0x7fff666bc000 - 0x7fff666f5fff libusrtcp.dylib (1229.30.11) <537F14D0-84DF-349F-8EA0-52BB7A241E60> /usr/lib/libusrtcp.dylib
0x7fff666f6000 - 0x7fff666f9ffb libutil.dylib (51.20.1) <216D18E5-0BAF-3EAF-A38E-F6AC37CBABD9> /usr/lib/libutil.dylib
0x7fff666fa000 - 0x7fff66707fff libxar.1.dylib (400) <0316128D-3B47-3052-995D-97B4FE5491DC> /usr/lib/libxar.1.dylib
0x7fff6670b000 - 0x7fff667f2fff libxml2.2.dylib (31.7) <49544596-BCF8-3765-8DC5-DB1A9A90EF92> /usr/lib/libxml2.2.dylib
0x7fff667f3000 - 0x7fff6681bfff libxslt.1.dylib (15.10) <66682AF6-C2D5-374C-901F-25A3E72814DC> /usr/lib/libxslt.1.dylib
0x7fff6681c000 - 0x7fff6682effb libz.1.dylib (70) <48C67CFC-940D-3857-8DAD-857774605352> /usr/lib/libz.1.dylib
0x7fff668cc000 - 0x7fff668d0ff7 libcache.dylib (80) <354F3B7D-404E-3398-9EBF-65CA2CE65211> /usr/lib/system/libcache.dylib
0x7fff668d1000 - 0x7fff668dbff3 libcommonCrypto.dylib (60118.30.2) <674286D3-7744-36A3-9AAA-49DFCD97A986> /usr/lib/system/libcommonCrypto.dylib
0x7fff668dc000 - 0x7fff668e3fff libcompiler_rt.dylib (62) <4487CFBA-A5D7-3282-9E6B-94CAD7BE507E> /usr/lib/system/libcompiler_rt.dylib
0x7fff668e4000 - 0x7fff668ecffb libcopyfile.dylib (146.30.2) <2C7C67D7-562B-3FFA-973D-BACF4C10E1EC> /usr/lib/system/libcopyfile.dylib
0x7fff668ed000 - 0x7fff66972fff libcorecrypto.dylib (562.30.10) <8A53EFE1-AFCA-3676-BEE1-FA5ED9F0E222> /usr/lib/system/libcorecrypto.dylib
0x7fff669fa000 - 0x7fff66a33ff7 libdispatch.dylib (913.30.4) <7D0E3183-282B-3FEE-A734-2C0ADC092084> /usr/lib/system/libdispatch.dylib
0x7fff66a34000 - 0x7fff66a51ff7 libdyld.dylib (519.2.2) /usr/lib/system/libdyld.dylib
0x7fff66a52000 - 0x7fff66a52ffb libkeymgr.dylib (28) <6D84A96F-C65B-38EC-BDB5-21FD2C97E7B2> /usr/lib/system/libkeymgr.dylib
0x7fff66a53000 - 0x7fff66a5fff3 libkxld.dylib (4570.31.3) /usr/lib/system/libkxld.dylib
0x7fff66a60000 - 0x7fff66a60ff7 liblaunch.dylib (1205.30.29) /usr/lib/system/liblaunch.dylib
0x7fff66a61000 - 0x7fff66a65ffb libmacho.dylib (900.0.1) <756F2553-07B6-3B42-ACEA-2F0F1A5E8D0F> /usr/lib/system/libmacho.dylib
0x7fff66a66000 - 0x7fff66a68ff3 libquarantine.dylib (86) <6AC8773F-3817-3D82-99C2-01BABB9C3CBB> /usr/lib/system/libquarantine.dylib
0x7fff66a69000 - 0x7fff66a6aff3 libremovefile.dylib (45) <912FA211-DD8C-3C92-8424-21B89F8B10FD> /usr/lib/system/libremovefile.dylib
0x7fff66a6b000 - 0x7fff66a82fff libsystem_asl.dylib (356.1.1) <94972913-9DF0-3C78-847C-43E58919E3DA> /usr/lib/system/libsystem_asl.dylib
0x7fff66a83000 - 0x7fff66a83fff libsystem_blocks.dylib (67) /usr/lib/system/libsystem_blocks.dylib
0x7fff66a84000 - 0x7fff66b0dff7 libsystem_c.dylib (1244.30.3) /usr/lib/system/libsystem_c.dylib
0x7fff66b0e000 - 0x7fff66b11ffb libsystem_configuration.dylib (963.30.1) <0F8D0B76-4F7D-34EC-AB6C-50F9465809DA> /usr/lib/system/libsystem_configuration.dylib
0x7fff66b12000 - 0x7fff66b15ffb libsystem_coreservices.dylib (51) <21A488D0-2D07-344E-8631-CC8B2A246F35> /usr/lib/system/libsystem_coreservices.dylib
0x7fff66b16000 - 0x7fff66b17fff libsystem_darwin.dylib (1244.30.3) <2F750CB1-BC26-3FA3-AE59-553EE30D451B> /usr/lib/system/libsystem_darwin.dylib
0x7fff66b18000 - 0x7fff66b1eff7 libsystem_dnssd.dylib (878.30.4) /usr/lib/system/libsystem_dnssd.dylib
0x7fff66b1f000 - 0x7fff66b68ff7 libsystem_info.dylib (517.30.1) <7D79E167-4B5C-3833-81EE-3AF3FB53616D> /usr/lib/system/libsystem_info.dylib
0x7fff66b69000 - 0x7fff66b8eff7 libsystem_kernel.dylib (4570.31.3) /usr/lib/system/libsystem_kernel.dylib
0x7fff66b8f000 - 0x7fff66bdafcb libsystem_m.dylib (3146) /usr/lib/system/libsystem_m.dylib
0x7fff66bdb000 - 0x7fff66bfafff libsystem_malloc.dylib (140.1.1) <9F0745FF-B92F-330D-8812-BB74001D1D33> /usr/lib/system/libsystem_malloc.dylib
0x7fff66bfb000 - 0x7fff66c9fff3 libsystem_network.dylib (1229.30.11) <40BAD301-8744-3AD8-A688-E7925C587B00> /usr/lib/system/libsystem_network.dylib
0x7fff66ca0000 - 0x7fff66caaffb libsystem_networkextension.dylib (767.30.7) /usr/lib/system/libsystem_networkextension.dylib
0x7fff66cab000 - 0x7fff66cb4ff3 libsystem_notify.dylib (172) <98EA3D62-7C86-30DE-8261-D020D2F1EFF3> /usr/lib/system/libsystem_notify.dylib
0x7fff66cb5000 - 0x7fff66cbcff7 libsystem_platform.dylib (161.20.1) /usr/lib/system/libsystem_platform.dylib
0x7fff66cbd000 - 0x7fff66cc8fff libsystem_pthread.dylib (301.30.1) /usr/lib/system/libsystem_pthread.dylib
0x7fff66cc9000 - 0x7fff66cccff3 libsystem_sandbox.dylib (765.30.4) /usr/lib/system/libsystem_sandbox.dylib
0x7fff66ccd000 - 0x7fff66cceff3 libsystem_secinit.dylib (30) /usr/lib/system/libsystem_secinit.dylib
0x7fff66ccf000 - 0x7fff66cd6ff7 libsystem_symptoms.dylib (820.30.7) /usr/lib/system/libsystem_symptoms.dylib
0x7fff66cd7000 - 0x7fff66ceaff7 libsystem_trace.dylib (829.30.14) <69EBF017-D40F-30D7-9B0B-BFC862D761A5> /usr/lib/system/libsystem_trace.dylib
0x7fff66cec000 - 0x7fff66cf1ff7 libunwind.dylib (35.3) <6D4FCD49-D2A9-3233-95C7-A7635CE265F2> /usr/lib/system/libunwind.dylib
0x7fff66cf2000 - 0x7fff66d1eff7 libxpc.dylib (1205.30.29) /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 164923
thread_create: 0
thread_set_state: 1883
VM Region Summary:
ReadOnly portion of Libraries: Total=303.4M resident=0K(0%) swapped_out_or_unallocated=303.4M(100%)
Writable regions: Total=116.9M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=116.9M(100%)
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 256K 2
Dispatch continuations 16.0M 2
Kernel Alloc Once 8K 2
MALLOC 86.8M 18
MALLOC guard page 32K 9
STACK GUARD 56.0M 13
Stack 13.6M 13
VM_ALLOCATE 44K 3
__DATA 14.5M 180
__FONT_DATA 4K 2
__LINKEDIT 194.2M 5
__TEXT 109.2M 182
__UNICODE 560K 2
shared memory 560K 5
=========== ======= =======
TOTAL 491.7M 424
The text was updated successfully, but these errors were encountered: