[frida-gum] Add Memory.findPointers#75066
Conversation
802b8b2 to
a44515a
Compare
a44515a to
2fefb5d
Compare
|
@oleavr Thank you for submitting this PR! This is a live comment that I will keep updated. 1 package in this PRCode ReviewsBecause you edited one package and updated the tests (👏), I can help you merge this PR once someone else signs off on it. You can test the changes of this PR in the Playground. Status
All of the items on the list are green. To merge, you need to post a comment including the string "Ready to merge" to bring in your changes. Diagnostic Information: What the bot saw about this PR{
"type": "info",
"now": "-",
"pr_number": 75066,
"author": "oleavr",
"headCommitOid": "2fefb5dd705a05b26398143043e3726bf7782ca8",
"mergeBaseOid": "49ed2e3d3a1d88c397f0d40ea84f47f768823bf0",
"lastPushDate": "2026-06-01T18:38:34.000Z",
"lastActivityDate": "2026-06-01T20:48:55.000Z",
"mergeOfferDate": "2026-06-01T20:13:11.000Z",
"mergeRequestDate": "2026-06-01T20:48:55.000Z",
"mergeRequestUser": "oleavr",
"hasMergeConflict": false,
"isFirstContribution": false,
"tooManyFiles": false,
"hugeChange": false,
"tooManyCommits": false,
"tooManyReviews": false,
"popularityLevel": "Well-liked by everyone",
"pkgInfo": [
{
"name": "frida-gum",
"kind": "edit",
"files": [
{
"path": "types/frida-gum/frida-gum-tests.ts",
"kind": "test"
},
{
"path": "types/frida-gum/index.d.ts",
"kind": "definition"
},
{
"path": "types/frida-gum/package.json",
"kind": "package-meta-ok"
}
],
"owners": [
"oleavr",
"mrmacete",
"hsorbo"
],
"addedOwners": [],
"deletedOwners": [],
"popularityLevel": "Well-liked by everyone"
}
],
"reviews": [
{
"type": "approved",
"reviewer": "hsorbo",
"date": "2026-06-01T20:10:47.000Z",
"isMaintainer": false
}
],
"mainBotCommentID": 4596077527,
"ciResult": "pass"
} |
|
🔔 @mrmacete @hsorbo — please review this PR in the next few days. Be sure to explicitly select |
|
@oleavr: Everything looks good here. I am ready to merge this PR (at 2fefb5d) on your behalf whenever you think it's ready. If you'd like that to happen, please post a comment saying:
and I'll merge this PR almost instantly. Thanks for helping out! ❤️ |
|
Ready to merge |
Adds typings for
Memory.findPointers(), a focused, SIMD-accelerated alternative toMemory.scan()for finding pointer-aligned words matching one or more values (e.g. references to a given address). Matches are collected and returned sorted by address.maskis applied to each scanned word and each value before comparing; it defaults to an exact match. Pass e.g.ptr("0x00007ffffffffff8")to strip arm64e PAC and non-pointer-isa bits.This is owned by me (frida-gum maintainer).