search for: xcoregenasmwrit

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

Did you mean: xcoregenasmwriter
2011 Jan 13
3
[LLVMdev] llc linkage problem
I am using LLVM 2.8 on Ubuntu 10.10. (new to both) 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 >From => def DIVS_l3r :
2011 Jan 13
0
[LLVMdev] llc linkage problem
...nstruction > 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 don't know if the tablegen gets rebuilt when you re-compile llvm, but it could also be that you are changing the wrong rule... I'll leave the tablegen experts answer that... ;) cheers, --renato
2011 Jan 13
1
[LLVMdev] need help on llc option -march=?
...nge 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 linkage problem how can I solve it? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110113/91503e71/attachment.html>
2012 Nov 13
2
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
...rTables.inc +X86GenEDInfo.inc +X86GenFastISel.inc +X86GenInstrInfo.inc +X86GenRegisterInfo.inc +X86GenSubtargetInfo.inc diff --git a/lib/Target/XCore/.gitignore b/lib/Target/XCore/.gitignore new file mode 100644 index 0000000..9541ccb --- /dev/null +++ b/lib/Target/XCore/.gitignore @@ -0,0 +1,6 @@ +XCoreGenAsmWriter.inc +XCoreGenCallingConv.inc +XCoreGenDAGISel.inc +XCoreGenInstrInfo.inc +XCoreGenRegisterInfo.inc +XCoreGenSubtargetInfo.inc diff --git a/projects/sample/.gitignore b/projects/sample/.gitignore new file mode 100644 index 0000000..be7f5ff --- /dev/null +++ b/projects/sample/.gitignore @@ -0,0 +1,...