search for: ppcgendagisel

Displaying 3 results from an estimated 3 matches for "ppcgendagisel".

2008 Oct 10
3
[LLVMdev] 2.4 Pre-release (v1) Available for Testing
LLVMers, The 2.4 pre-release is available for testing: http://llvm.org/prereleases/2.4/ If you have time, I'd appreciate anyone who can help test the release. Please do the following: 1) Download/compile llvm source, and either compile llvm-gcc source or use llvm-gcc binary. 2) Run make check, send me the testrun.log 3) Run "make TEST=nightly report" and send me the
2008 May 08
1
[LLVMdev] PPC Isel complex patterns
Hi all, I have problem with specifying complex patterns in PPC Isel backend. I would like to fetch few instructions into one like that: def MatchPAT1 : Pat<(or (or (shl GPRC:$rA, (i32 imm:$imm24)), (and (shl GPRC:$rA, (i32 imm:$imm8)), 0xFF0000) ), (or (srl GPRC:$rA, (i32 imm:$imm24)), (and (shl GPRC:$rA, (i32 imm:$imm8)),0xFF00) )), (myinstr GPRC:$rA)>; That pattern
2012 Nov 13
2
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
...GenRegisterInfo.inc +NVPTXGenSubtargetInfo.inc diff --git a/lib/Target/PowerPC/.gitignore b/lib/Target/PowerPC/.gitignore new file mode 100644 index 0000000..77c439b --- /dev/null +++ b/lib/Target/PowerPC/.gitignore @@ -0,0 +1,8 @@ +PPCGenAsmWriter.inc +PPCGenCallingConv.inc +PPCGenCodeEmitter.inc +PPCGenDAGISel.inc +PPCGenInstrInfo.inc +PPCGenMCCodeEmitter.inc +PPCGenRegisterInfo.inc +PPCGenSubtargetInfo.inc diff --git a/lib/Target/Sparc/.gitignore b/lib/Target/Sparc/.gitignore new file mode 100644 index 0000000..3708810 --- /dev/null +++ b/lib/Target/Sparc/.gitignore @@ -0,0 +1,6 @@ +SparcGenAsmWriter.in...