Displaying 14 results from an estimated 14 matches for "93scar_fuentes".
2012 Jun 13
2
[LLVMdev] [cfe-dev] Ninja build available for Visual Studio users
Wow, this is seriously fast on Windows! I've been using Ninja on Linux/Mac
for awhile now, I'm glad to see it working on Windows now.
On Wed, Jun 13, 2012 at 5:09 PM, =?utf-8?Q?=C3=93scar_Fuentes?= <
ofv at wanadoo.es> wrote:
> Nikola Smiljanic <popizdeh at gmail.com> writes:
>
> > Could somebody please provide more info. What exactly is ninja (I'm
> > guessing it's a build system) and how to set it up in combination with
> > Visual Studio?
>...
2012 May 09
0
[LLVMdev] How can I get the destination operand of an instruction?
Launcher <st.liucheng at gmail.com> writes:
> I am able to access the source operands of an instruction using either
> getOperand() or op_iterator, However, I can't find any method available for
> destination operand. Someone suggests that instruction itself can represent
> the destination operand.
> http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-January/037518.html
2012 Jun 13
0
[LLVMdev] [cfe-dev] Ninja build available for Visual Studio users
...Visual Studio?
2012/6/13 Justin Holewinski <justin.holewinski at gmail.com>
> Wow, this is seriously fast on Windows! I've been using Ninja on
> Linux/Mac for awhile now, I'm glad to see it working on Windows now.
>
>
> On Wed, Jun 13, 2012 at 5:09 PM, =?utf-8?Q?=C3=93scar_Fuentes?= <
> ofv at wanadoo.es> wrote:
>
>> Nikola Smiljanic <popizdeh at gmail.com> writes:
>>
>> > Could somebody please provide more info. What exactly is ninja (I'm
>> > guessing it's a build system) and how to set it up in combination with
>&...
2012 May 09
4
[LLVMdev] How can I get the destination operand of an instruction?
I am able to access the source operands of an instruction using either
getOperand() or op_iterator, However, I can't find any method available for
destination operand. Someone suggests that instruction itself can represent
the destination operand.
http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-January/037518.html
The getOperand() returns an unsigned value like 0x9063498, while I can't
2012 Jun 13
2
[LLVMdev] The porting issue from llvm-2.8 to llvm-3.0
I try to port our project from llvm-2.8 to llvm-3.0, but some issue
exist on the following code:
#define getIntegerType(x) (IntegerType::get(_CTX(), x))
Value *int_enable = BinaryOperator::Create(Instruction::And,
v_cpsr, ConstantInt::get(getIntegerType(4), 0x80), "", bb_dispatch)
The llvm complains the following error message:
error: incomplete type 'llvm::ConstantInt'
2012 Jun 13
0
[LLVMdev] The porting issue from llvm-2.8 to llvm-3.0
"Michael.Kang" <blackfin.kang at gmail.com> writes:
> error: incomplete type 'llvm::ConstantInt' used in nested name specifier
>
> So who can give me some hints for the issue?
Maybe you are not including the relevant headers?
ConstantInt is defined in Constants.h
2012 Jun 18
1
[LLVMdev] The porting issue from llvm-2.8 to llvm-3.0
...from Vector to llvm::ArrayRef, such as
CallInst::Create, FunctionType::get etc.
Until now , our project is running fine except some minor issue. I
still need to look into if the current issues is related to llvm 3.0
Thanks all your help.
Thanks
MK
On Wed, Jun 13, 2012 at 10:20 PM, =?utf-8?Q?=C3=93scar_Fuentes?=
<ofv at wanadoo.es> wrote:
> The following message is a courtesy copy of an article
> that has been posted to gmane.comp.compilers.llvm.devel as well.
>
> "Michael.Kang" <blackfin.kang at gmail.com> writes:
>
>> error: incomplete type 'llvm::Constan...
2012 May 09
0
[LLVMdev] Calling C-language variadic functions
Gregory Junker <gjunker at dayark.com> writes:
> Such as printf, etc., from IR created using the API (IRBuilder).
>
> Google hasn't provided much help, and I can't find anything relevant in
> the docs (the docs talk about how to do varargs in LLVM ASM, but not how
> to call an external vararg function that exists in a library that gets
> linked to the LLVM
2012 Mar 14
0
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
Jun-qi Deng <dengjunqi06323011 at gmail.com> writes:
> I got your point. Thank you, and I'd like to provide the relative message
> now. But firstly, what do you mean by the "relevant command generated by
> your makefile"? What I can tell you now is:
>
> The Error Message:
> make[3]: Entering directory `/home/tang.kk/ppcg/ppcg/isl/interface'
> CXXLD
2012 May 09
2
[LLVMdev] Calling C-language variadic functions
Such as printf, etc., from IR created using the API (IRBuilder).
Google hasn't provided much help, and I can't find anything relevant in
the docs (the docs talk about how to do varargs in LLVM ASM, but not how
to call an external vararg function that exists in a library that gets
linked to the LLVM module).
Is there something special I need to do? Simply calling
2012 May 09
2
[LLVMdev] How can I get the destination operand of an instruction?
...rrs()<<it->getOperand(k)<<" ";
}
I find that
%b->0x90
%c->0x91
%d->0x92
%a->0x93
but I do not know
%a->?
%e->?
Actually I am expecting that %a->0x93, and then I can declare that
instruction10 depends instruction1.
On 5/9/2012 11:14 AM, =?utf-8?Q?=C3=93scar_Fuentes?= wrote:
> ::getValueID, don't you?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120509/19879381/attachment.html>
2012 Mar 14
2
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
I got your point. Thank you, and I'd like to provide the relative message
now. But firstly, what do you mean by the "relevant command generated by
your makefile"? What I can tell you now is:
The Error Message:
make[3]: Entering directory `/home/tang.kk/ppcg/ppcg/isl/interface'
CXXLD extract_interface
extract_interface.o:(.data.rel.ro._ZTI13MyASTConsumer[typeinfo for
2012 Apr 10
0
[LLVMdev] Building LLVM+clang on Windows
"Paul J. Lucas" <paul at lucasmail.org> writes:
> I am using LLVM 3.0 because I want a stable version. There doesn't
> seem to be an equivalent clang 3.0 -- is there?
Is you use a Clang source tree that is more than a few days (or hours!)
off from LLVM, chances are that it won't work.
Clang sources for release 3.0 is right there along with LLVM:
2012 Mar 14
0
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
Jun-qi Deng <dengjunqi06323011 at gmail.com> writes:
>> Is it? In my experience, it isn't. Please show the relevant command
>> generated by your makefile and the associated error message(s).
>>
>
>> RTTI is an on/off option that changes per LLVM library, so setting
>> -fno-rtti for using LLVM makes no sense. VMCore and Support have -frtti
>> while