search for: objcruntimeref

Displaying 4 results from an estimated 4 matches for "objcruntimeref".

2012 May 08
3
[LLVMdev] Running Objective-C in the JIT
...; > My guess is that as you are using JIT, the runtime hook used to detect loading of new module is never called, and your classes are not registered. > You can try to load them manually by using the runtime functions (see https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html ) and if it's not enough, you may have to download the runtime source code (http://opensource.apple.com/source/objc4/objc4-493.11/) to see what it does when a new module is loaded. > > > -- Jean-Daniel > > > >
2012 May 07
0
[LLVMdev] Running Objective-C in the JIT
...segments. My guess is that as you are using JIT, the runtime hook used to detect loading of new module is never called, and your classes are not registered. You can try to load them manually by using the runtime functions (see https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html ) and if it's not enough, you may have to download the runtime source code (http://opensource.apple.com/source/objc4/objc4-493.11/) to see what it does when a new module is loaded. -- Jean-Daniel
2012 May 07
2
[LLVMdev] Running Objective-C in the JIT
Hello, I've been trying to get some OSX code to execute within the JIT, and it's been causing me some major headaches! I'm attempting to JIT-compile some code which uses external OSX obj-C classes (Cocoa, etc), and also contains its own embedded obj-C classes. My first hurdle in doing this was that when the code tried to call Cocoa classes, the obj-C selectors weren't being
2012 May 08
0
[LLVMdev] Running Objective-C in the JIT
...t; My guess is that as you are using JIT, the runtime hook used to detect loading of new module is never called, and your classes are not registered. >> You can try to load them manually by using the runtime functions (see https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html ) and if it's not enough, you may have to download the runtime source code (http://opensource.apple.com/source/objc4/objc4-493.11/) to see what it does when a new module is loaded. >> >> >> -- Jean-Daniel >> >> >> >> -- J...