Displaying 12 results from an estimated 12 matches for "theonemorpheus".
2009 Dec 14
3
[LLVMdev] clang and static functions
...gt;> }
>>
>> Is there any way to make clang generate llvm code for the static
>> functions?
>>
>> Thanks
>> Sincerely
>> Arvind
>>
>> --
>> Arvind Sudarsanam
>> Utah State University
>> Phone: (435) 512-7769
>> E-mail: theonemorpheus at gmail.com
>> Web-site: http://cc.usu.edu/~asudarsanam
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
>
--
A...
2009 Dec 14
0
[LLVMdev] clang and static functions
...ang generate llvm code for the static
> >> functions?
> >>
> >> Thanks
> >> Sincerely
> >> Arvind
> >>
> >> --
> >> Arvind Sudarsanam
> >> Utah State University
> >> Phone: (435) 512-7769
> >> E-mail: theonemorpheus at gmail.com
> >> Web-site: http://cc.usu.edu/~asudarsanam<http://cc.usu.edu/%7Easudarsanam>
> >> _______________________________________________
> >> LLVM Developers mailing list
> >> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> >> htt...
2009 Dec 14
2
[LLVMdev] clang and static functions
...f the functions is:
static void innerloop(double a, const double* b, double* c, double beta)
{
*b = a*beta;
return;
}
Is there any way to make clang generate llvm code for the static functions?
Thanks
Sincerely
Arvind
--
Arvind Sudarsanam
Utah State University
Phone: (435) 512-7769
E-mail: theonemorpheus at gmail.com
Web-site: http://cc.usu.edu/~asudarsanam
2009 Dec 14
0
[LLVMdev] clang and static functions
...e* c, double beta)
> {
> *b = a*beta;
> return;
> }
>
> Is there any way to make clang generate llvm code for the static functions?
>
> Thanks
> Sincerely
> Arvind
>
> --
> Arvind Sudarsanam
> Utah State University
> Phone: (435) 512-7769
> E-mail: theonemorpheus at gmail.com
> Web-site: http://cc.usu.edu/~asudarsanam<http://cc.usu.edu/%7Easudarsanam>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmde...
2009 Dec 04
2
[LLVMdev] regarding getelementptr
...32]* @k, i32 0, i32 0), i32 %tmp2 ; <i32*> [#uses=1]
I am unable to get a handle on the second "getelementptr" in this instruction.
Can anyone plee let me know if I am missing something here?
Thanks
Arvind
--
Arvind Sudarsanam
Utah State University
Phone: (435) 512-7769
E-mail: theonemorpheus at gmail.com
Web-site: http://cc.usu.edu/~asudarsanam
2010 Jul 15
2
[LLVMdev] Trying to access the user defined variable name
...ata !{i32 %add}, i64 0, metadata !10), !dbg !8
>
> First parameter is the compiler generated temp. and 3rd parameter
> provides info about the variable, including its name 'u'.
>
> -
> Devang
>
--
Arvind Sudarsanam
Utah State University
Phone: (435) 512-7769
E-mail: theonemorpheus at gmail.com
Web-site: http://cc.usu.edu/~asudarsanam
2009 Dec 04
0
[LLVMdev] regarding getelementptr
Hi Arvind,
> I have been working towards generating my own IR code from llvm IR. I
> have hit a stumbling block with respect to "getelementptr" used inside
> another llvm instruction.
>
> Example: %arrayidx = getelementptr inbounds i32* getelementptr
> inbounds ([10 x i32]* @k, i32 0, i32 0), i32 %tmp2 ; <i32*> [#uses=1]
>
> I am unable to get a handle on
2009 Dec 04
2
[LLVMdev] regarding getelementptr
...; in this
>> instruction.
>
> I'm not sure what you are asking, but the inner getelementptr is a constant
> (ConstantExpr), only constants turn up nested like this.
>
> Ciao,
>
> Duncan.
>
--
Arvind Sudarsanam
Utah State University
Phone: (435) 512-7769
E-mail: theonemorpheus at gmail.com
Web-site: http://cc.usu.edu/~asudarsanam
2010 Jul 15
0
[LLVMdev] Trying to access the user defined variable name
On Thu, Jul 15, 2010 at 1:19 PM, Arvind Sudarsanam
<arvind.sudarsanam at aggiemail.usu.edu> wrote:
> Hi Devang,
>
> Thanks for your reply. You mentioned
> " First parameter is the compiler generated temp. and 3rd parameter
> provides info about the variable, including its name 'u'."
>
> I did manage to get this far. But, I am finding it difficult to
2010 Mar 25
4
[LLVMdev] source code information in LLVM IR
Hi,
I am generating llvm IR code for C source code using clang as the
front end. I am wondering if there is any way of mapping an llvm IR
line number back to its C source code line number.
Thanks
Sincerely
Arvind
--
Arvind Sudarsanam
Utah State University
Phone: (435) 512-7769
E-mail: theonemorpheus at gmail.com
Web-site: http://cc.usu.edu/~asudarsanam
2010 Jul 15
0
[LLVMdev] Trying to access the user defined variable name
On Wed, Jul 14, 2010 at 3:03 PM, Arvind Sudarsanam
<arvind.sudarsanam at aggiemail.usu.edu> wrote:
> Dear all,
>
> I have the following source code:
>
> long f(long x, long y)
> {
> long u;
>
> u = x+y;
> return u;
> };
>
> After clang (with debug option set) and llvm opt using mem2reg, I get
> the following .ll file
>
2010 Jul 14
2
[LLVMdev] Trying to access the user defined variable name
Dear all,
I have the following source code:
long f(long x, long y)
{
long u;
u = x+y;
return u;
};
After clang (with debug option set) and llvm opt using mem2reg, I get
the following .ll file
***************************************************************************
; ModuleID = '<stdin>'
target datalayout =