Displaying 2 results from an estimated 2 matches for "classinst".
Did you mean:
classinit
2008 Feb 22
2
[LLVMdev] Calling functions
...ion.
And another question:
is it possible to call a function of an instance of a C++ class? Which are the limits of interaction between generated code and "precompiled" code (I mean any library for example)?
I want to generate code able to use functionality from c/c++ libraries...
like:
classinstance.memberFunction()
Thank you very much,
.alvaro.castro.
______________________________________________
¿Con Mascota por primera vez? Sé un mejor Amigo. Entra en Yahoo! Respuestas http://es.answers.yahoo.com/info/welcome
2011 Aug 24
1
[LLVMdev] proposal: add macro expansion of for-loop to TableGen
Hi folks,
TableGen provides sufficiently rich syntax for expressing target
instruction set. Nevertheless, when I wrote the PTX backend, I
observed that some redundancy in TableGen can be further eliminated
through macro expansion of for-loops.
The semantics of a for-loop is expanding the for-loop body, and so it
is equivalent to manually unroll the loop (see example #1).
I believe the for-loop