search for: divs_l3r

Displaying 4 results from an estimated 4 matches for "divs_l3r".

2011 Jan 13
3
[LLVMdev] llc linkage problem
...e of instruction on XXXInstrInfo.td ( Sparc, X86 and XCore). I looked into XXXGenAsmWriter.inc and I have seen the new instruction name. But when I run llc for the three targets it prints out the old instruction name. For example for XCore I change “divs” to “sdiv” like >From => def DIVS_l3r : FL3R<"divs", sdiv>;// divs To => def DIVS_l3r : FL3R<"sdiv", sdiv>;//sdiv But I can see the effect of my change when I run llc test1.bc –march=xcore –o asmXcore.s If this is linkage problem how can I solve it? -------------- next part ----------...
2011 Jan 12
0
[LLVMdev] Assembly Printer
...0. I change name of instruction on XXXInstrInfo.td ( Sparc, X86 and XCore). I looked into XXXGenAsmWriter.inc and I have seen the new instruction name. But when I run llc for the three targets it prints out the old instruction name. For example for XCore I change “divs” to “sdiv” like def DIVS_l3r : FL3R<"divs", sdiv>;// divs def DIVS_l3r : FL3R<"sdiv", sdiv>;//sdiv If this is linkage problem how can I solve it? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/2011011...
2011 Jan 13
0
[LLVMdev] llc linkage problem
On 13 January 2011 19:20, Atse Zeriakob <atsezeriakob at gmail.com> wrote: > For example in XCoreInstrInfo.td I change the name of one of the instruction > let say "divs" to "newdivs", > > like > def DIVS_l3r : FL3R<"newdivs", sdiv>; > > When I run llc with option -march=xcore, after I make the modification, it > still outputs "divs", not "newdivs". I looked into XCoreGenAsmWriter.inc, > and made sure that string AsmStrs includes "newdivs". I do...
2011 Jan 13
1
[LLVMdev] need help on llc option -march=?
...I looked into XXXGenAsmWriter.inc and I have seen the new instruction name. But when I run llc for the three targets it prints out the old instruction name. For example in XCoreInstrInfo.td I change the name of one of the instruction let say "divs" to "newdivs", like def DIVS_l3r : FL3R<"newdivs", sdiv>; When I run llc with option -march=xcore, after I make the modification, it still outputs "divs", not "newdivs". I looked into XCoreGenAsmWriter.inc, and made sure that string AsmStrs includes "newdivs". If this is link...