Displaying 5 results from an estimated 5 matches for "bourhis".
Did you mean:
boris
2007 Apr 05
2
[LLVMdev] For a small help
....TestClass* %
> obj, int 1 ) ; <int> [#uses=0]
> ret void
> }
>
> declare int %_ZN9TestClass10testMethodEi(%struct.TestClass*, int)
The name mangling is not very pretty though and it is specific to the
C++ front-end. What is the best manner to deal with that problem?
Luc Bourhis
2007 Apr 05
0
[LLVMdev] For a small help
Luc Bourhis wrote:
> On 4 Apr 2007, at 20:10, Jeff Cohen wrote:
>
>
>> […]
>> %obj = alloca %struct.TestClass, align 1 ; <%struct.TestClass*>
>> [#uses=1]
>> %tmp1 = call int %_ZN9TestClass10testMethodEi( %struct.TestClass* %
>> obj, int 1 ) ; <int>...
2007 Apr 04
0
[LLVMdev] For a small help
Ferad Zyulkyarov wrote:
> Hi,
>
> I want to ask for a small help for creating an instruction that calls
> e member method of an object. I suppose that this is not a headache
> but I am impatient in learning :) I would be very thankful if you can
> show me an example snippet code that does this in LLVM. Below is
> described my case.
>
> Let's say I have a class
2006 Oct 29
1
[LLVMdev] LLVM for numerical computations
Hello there,
I am considering to use LLVM as part of a numerical software. I have
never used LLVM, but I have tried to thoroughly read the material
available on llvm.org. I would appreciate some early pointers. Please
bare with me as I explained the matter as concisely as possible! And
you can already see this is not going to be that concise…
The part of our project LLVM could be
2007 Apr 04
4
[LLVMdev] For a small help
Hi,
I want to ask for a small help for creating an instruction that calls
e member method of an object. I suppose that this is not a headache
but I am impatient in learning :) I would be very thankful if you can
show me an example snippet code that does this in LLVM. Below is
described my case.
Let's say I have a class TestClass
class TestClass
{
int testMethod(int a);
}
and I want to