search for: computacao

Displaying 20 results from an estimated 50 matches for "computacao".

2011 Sep 06
2
[LLVMdev] Fwd: LLVM IR Branchs
Ok! I do understand. Thanks by help! 2011/9/5 Justin Holewinski <justin.holewinski at gmail.com> > On Mon, Sep 5, 2011 at 8:37 PM, Rafael Baldiati Parizi < > parizi.computacao at gmail.com> wrote: > >> Yes, that's how I'm doing now ... create a new block where the execution >> flow will continue after the shift, following the basics of basic blocks. >> But, I want to find a way to reduce the number of block of my code. > > > Why d...
2011 Sep 14
0
[LLVMdev] Fwd: LLVM IR Branchs
...r, align 4 %2 = and i32 %1, 1 * %3* = icmp eq i32 %2, 0 ..... br label %new_block new_block: %4 = call i32 (i8*, ...)* @printf(i8* noalias getelementptr inbounds ([10 x i8]* @.str1, i32 0, i32 0), i32 *%4*) nounwind ... How to solve this? 2011/9/5 Rafael Baldiati Parizi <parizi.computacao at gmail.com> > Ok! I do understand. > Thanks by help! > > > 2011/9/5 Justin Holewinski <justin.holewinski at gmail.com> > >> On Mon, Sep 5, 2011 at 8:37 PM, Rafael Baldiati Parizi < >> parizi.computacao at gmail.com> wrote: >> >>> Yes,...
2011 Sep 06
2
[LLVMdev] Fwd: LLVM IR Branchs
...t; notion of basic blocks making up a control flow graph. > > Nick > > 2011/9/5 Eli Friedman <eli.friedman at gmail.com >> <mailto:eli.friedman at gmail.com**>> >> >> >> On Mon, Sep 5, 2011 at 4:47 PM, Rafael Baldiati Parizi >> <parizi.computacao at gmail.com <mailto:parizi.computacao@**gmail.com<parizi.computacao at gmail.com> >> >> >> >> wrote: >> > Hello, >> > I would know how can I make a branch in llvm ir without a label of >> > destination? >> > Fo...
2011 Sep 06
5
[LLVMdev] Fwd: LLVM IR Branchs
...Then, I would a instruction like if Value1 != Value2, error without create a new block, continuing the execution in the same block, forcing the LLI to execute this. 2011/9/5 Eli Friedman <eli.friedman at gmail.com> > On Mon, Sep 5, 2011 at 4:47 PM, Rafael Baldiati Parizi > <parizi.computacao at gmail.com> wrote: > > Hello, > > I would know how can I make a branch in llvm ir without a label of > > destination? > > For example: > > br i1 %1, label %bb, NO LABEL HERE > > What are you trying to do? > > -Eli > -- *Rafael Parizi* ---------...
2011 Sep 14
1
[LLVMdev] Fwd: LLVM IR Branchs
Sorry, %3 instead of %4. 2011/9/14 Rafael Baldiati Parizi <parizi.computacao at gmail.com> > Hello, > I created a new block for execution to continue, but I got the case in > which a statement defined in a block is used in another, not dominate all > uses. > For example: > > entry: > %n_addr = alloca i32, align 4 > %retval = alloca i32 &...
2011 Sep 06
0
[LLVMdev] Fwd: LLVM IR Branchs
On Mon, Sep 5, 2011 at 8:37 PM, Rafael Baldiati Parizi < parizi.computacao at gmail.com> wrote: > Yes, that's how I'm doing now ... create a new block where the execution > flow will continue after the shift, following the basics of basic blocks. > But, I want to find a way to reduce the number of block of my code. Why do you want to reduce the numb...
2012 Feb 24
2
[LLVMdev] Generate Executable to Mips
...llo.bc -o hello.s mips-linux-gnu-gcc hello.s -o hello -mips32 -EL You can also generate object code with this command: llc -march=mipsel hello.bc -o hello.o -filetype=obj Then run the linker: mips-linux-gnu-gcc hello.o -o hello -mips32 -EL On Thu, Feb 23, 2012 at 4:18 PM, Rafael BP <parizi.computacao at gmail.com> wrote: > This is true? > clang/llvm cannot produce mips object code or executable (yet). > from: > http://old.nabble.com/How-to-get-MIPS-from-clang-%2B-llvm---td32822926.html > > > On Thu, Feb 23, 2012 at 8:37 PM, Rafael BP <parizi.computacao at gmail.com&gt...
2012 Feb 27
0
[LLVMdev] Generate Executable to Mips
...lo.s -o hello -mips32 -EL > > You can also generate object code with this command: > > llc -march=mipsel hello.bc -o hello.o -filetype=obj > > Then run the linker: > mips-linux-gnu-gcc hello.o -o hello -mips32 -EL > > On Thu, Feb 23, 2012 at 4:18 PM, Rafael BP <parizi.computacao at gmail.com> > wrote: > > This is true? > > clang/llvm cannot produce mips object code or executable (yet). > > from: > > > http://old.nabble.com/How-to-get-MIPS-from-clang-%2B-llvm---td32822926.html > > > > > > On Thu, Feb 23, 2012 at 8:37 PM, Ra...
2011 Sep 06
0
[LLVMdev] Fwd: LLVM IR Branchs
...ence in compiler design built around the notion of basic blocks making up a control flow graph. Nick > 2011/9/5 Eli Friedman <eli.friedman at gmail.com > <mailto:eli.friedman at gmail.com>> > > On Mon, Sep 5, 2011 at 4:47 PM, Rafael Baldiati Parizi > <parizi.computacao at gmail.com <mailto:parizi.computacao at gmail.com>> > wrote: > > Hello, > > I would know how can I make a branch in llvm ir without a label of > > destination? > > For example: > > br i1 %1, label %bb, NO LABEL HERE > >...
2012 Feb 28
3
[LLVMdev] Generate Executable to Mips
...; > You can also generate object code with this command: > > llc -march=mipsel hello.bc -o hello.o -filetype=obj > > Then run the linker: > mips-linux-gnu-gcc hello.o -o hello -mips32 -EL > > On Thu, Feb 23, 2012 at 4:18 PM, Rafael BP > <parizi.computacao at gmail.com <mailto:parizi.computacao at gmail.com>> > wrote: > > This is true? > > clang/llvm cannot produce mips object code or executable (yet). > > from: > > > http://old.nabble.com/How-to-get-MIPS-from-clang-%2B-llvm---td32822926....
2012 Jun 12
1
[LLVMdev] output -stats to file.txt
...-------------------------------------------------------=== > **** > > ** ** > > 1 cgscc-passmgr - Maximum CGSCCPassMgr iterations on one SCC**** > > 3 reassociate - Number of insts reassociated**** > > ** ** > > ** ** > > *From:* Rafael Parizi [mailto:parizi.computacao at gmail.com] > *Sent:* Tuesday, June 12, 2012 1:27 PM > *To:* Villmow, Micah > *Cc:* llvmdev at cs.uiuc.edu > *Subject:* Re: [LLVMdev] output -stats to file.txt**** > > ** ** > > Yes, I've tried and it did not work **** > > On Tue, Jun 12, 2012 at 4:03 PM, Villmow...
2011 Jul 01
2
Initiating in BNArray
...ld a similar structure, but need to know what are the meaning of these things.. Sorry for noobing here... Very thanks! -- Regards, || ------ || Sergio Henrique Bento de Mira || Computer Science | Class of 2008/2 || Federal University Of Lavras | UFLA || Lavras, MG, Brasil || --- || sergiohbmira@computacao.ufla.br || Cell: (+55) (35) 9128-4240 || ------ "Be the change you want to see in the world" [[alternative HTML version deleted]]
2012 Feb 24
0
[LLVMdev] Generate Executable to Mips
This is true? *clang*/*llvm* *cannot* produce *mips* object *code* or executable (yet). from: http://old.nabble.com/How-to-get-MIPS-from-clang-%2B-llvm---td32822926.html On Thu, Feb 23, 2012 at 8:37 PM, Rafael BP <parizi.computacao at gmail.com>wrote: > Hi, > How can I generate executable to mips with llvm-gcc. > I'm using Ilvm-2.9, X86PC and the following commands: > > llvm-gcc -emit-llvm hello.c -c -o hello.bc (OK) > llc -march=mips hello.bc -o hello.s (OK) > > gcc hello.s -o hello (does not...
2011 Sep 06
0
[LLVMdev] Fwd: LLVM IR Branchs
On Mon, Sep 5, 2011 at 5:13 PM, Rafael Baldiati Parizi <parizi.computacao at gmail.com> wrote: > I have two values and I want see if them are equals. Then, I would a > instruction like > if Value1 != Value2, error > without create a new block, continuing the execution in the same block, > forcing the LLI to execute this. You can't do that; a br ins...
2012 Feb 23
2
[LLVMdev] Generate Executable to Mips
Hi, How can I generate executable to mips with llvm-gcc. I'm using Ilvm-2.9, X86PC and the following commands: llvm-gcc -emit-llvm hello.c -c -o hello.bc (OK) llc -march=mips hello.bc -o hello.s (OK) gcc hello.s -o hello (does not work). Thanks, -- *Rafael Parizi* -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Feb 28
0
[LLVMdev] Generate Executable to Mips
...gt;> You can also generate object code with this command: >> >> llc -march=mipsel hello.bc  -o hello.o -filetype=obj >> >> Then run the linker: >> mips-linux-gnu-gcc hello.o -o hello -mips32 -EL >> >> On Thu, Feb 23, 2012 at 4:18 PM, Rafael BP <parizi.computacao at gmail.com> >> wrote: >> > This is true? >> > clang/llvm cannot produce mips object code or executable (yet). >> > from: >> > >> > http://old.nabble.com/How-to-get-MIPS-from-clang-%2B-llvm---td32822926.html >> > >> > >>...
2011 Sep 05
3
[LLVMdev] Fwd: LLVM IR Branchs
Hello, I would know how can I make a branch in llvm ir without a label of destination? For example: br i1 %1, label %bb, *NO LABEL HERE* * * Thanks! -- *Rafael Parizi* -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110905/5be7271c/attachment.html>
2011 Sep 06
0
[LLVMdev] Fwd: LLVM IR Branchs
On Mon, Sep 5, 2011 at 4:47 PM, Rafael Baldiati Parizi <parizi.computacao at gmail.com> wrote: > Hello, > I would know how can I make a branch in llvm ir without a label of > destination? > For example: > br i1 %1, label %bb,  NO LABEL HERE What are you trying to do? -Eli
2011 Sep 30
2
[LLVMdev] New entry Block
Hi, I'd like to know if is possible to create a new entry block and a branch to old entry block? How can i make this? Thanks -- *Rafael Parizi* -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110930/a7c133f9/attachment.html>
2011 Sep 30
0
[LLVMdev] New entry Block
On Fri, Sep 30, 2011 at 12:40 PM, Rafael Baldiati Parizi <parizi.computacao at gmail.com> wrote: > Hi, > I'd like to know if is possible to create a new entry block and a branch to > old entry block? > How can i make this? Try BasicBlock::splitBasicBlock. -Eli