Displaying 3 results from an estimated 3 matches for "languagekit".
Did you mean:
language_id
2013 Apr 25
0
[LLVMdev] Dynamic Type Lookup ...
...upports Objective-C with two Apple and three GNU-like Objective-C runtimes. This includes four (I think, possibly more now) ways of representing class structures and at least four ways of doing message sending.
You choice is to either define a new object model and ABI, or follow the approach of LanguageKit and reuse an existing one (in our case, the GNUstep Objective-C runtime). These choices are orthogonal to your choice to use LLVM for code generation.
David
2013 Apr 24
3
[LLVMdev] Dynamic Type Lookup ...
Hello everyone, I would like to implement functionality something like the
following in my sample language.....
class A {
Object attrA1
}
class B {
int attrB1
bool method methTestB ( .... )
}
main () {
bool test
Object a
a = new Class A()
a.attr1 = new Class B()
a.attrB1 = 5
test = a.methTestB(...)
}
I assume that I will need:
- some type of runtime lookup table to store
2013 Apr 25
1
[LLVMdev] Dynamic Type Lookup ...
...o Apple and three GNU-like
> Objective-C runtimes. This includes four (I think, possibly more now) ways
> of representing class structures and at least four ways of doing message
> sending.
>
> You choice is to either define a new object model and ABI, or follow the
> approach of LanguageKit and reuse an existing one (in our case, the GNUstep
> Objective-C runtime). These choices are orthogonal to your choice to use
> LLVM for code generation.
>
> David
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/piper...