Last active
February 28, 2023 15:38
-
-
Save dankogai/b03319ce427544beb5a4 to your computer and use it in GitHub Desktop.
Get the internal function pointer in swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// See | |
/// https://github.com/rodionovd/SWRoute/wiki/Function-hooking-in-Swift | |
/// https://github.com/rodionovd/SWRoute/blob/master/SWRoute/rd_get_func_impl.c | |
/// to find why this works | |
func peekFunc<A,R>(f:A->R)->(fp:Int, ctx:Int) { | |
let (hi, lo):(Int, Int) = reinterpretCast(f) | |
let offset = sizeof(Int) == 8 ? 16 : 12 | |
let ptr = UnsafePointer<Int>(lo+offset) | |
return (ptr.memory, ptr.successor().memory) | |
} | |
@infix func === <A,R>(lhs:A->R,rhs:A->R)->Bool { | |
let (tl, tr) = (peekFunc(lhs), peekFunc(rhs)) | |
return tl.0 == tr.0 && tl.1 == tr.1 | |
} | |
// simple functions | |
func genericId<T>(t:T)->T { return t } | |
func incr(i:Int)->Int { return i + 1 } | |
var f:Int->Int = genericId | |
var g = f; println("(f === g) == \(f === g)") | |
f = genericId; println("(f === g) == \(f === g)") | |
f = g; println("(f === g) == \(f === g)") | |
// closures | |
func mkcounter()->()->Int { | |
var count = 0; | |
return { count++ } | |
} | |
var c0 = mkcounter() | |
var c1 = mkcounter() | |
var c2 = c0 | |
println("peekFunc(c0) == \(peekFunc(c0))") | |
println("peekFunc(c1) == \(peekFunc(c1))") | |
println("peekFunc(c2) == \(peekFunc(c2))") | |
println("(c0() == c1()) == \(c0() == c1())") // true : both are called once | |
println("(c0() == c2()) == \(c0() == c2())") // false: because c0() means c2() | |
println("(c0 === c1) == \(c0 === c1)") | |
println("(c0 === c2) == \(c0 === c2)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fixed for Xcode 10