From: <fa...@us...> - 2012-07-09 01:28:46
|
Revision: 201 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=201&view=rev Author: faluco Date: 2012-07-09 01:28:40 +0000 (Mon, 09 Jul 2012) Log Message: ----------- - More random cleanups. - Marked some instructions where SP and SREG is clobbered. - Re-audited all BuildMIs to include all kill markers. - Factored out all stack manipulation code to use the SPREAD and SPWRITE pseudos. - Propagate MI flags for some instrs in the pseudo expander. Modified Paths: -------------- llvm/trunk/AVR/AVRExpandPseudoInsts.cpp llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRInstrInfo.td llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRTargetMachine.h llvm/trunk/AVR/InstPrinter/AVRInstPrinter.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-07-10 22:22:59
|
Revision: 204 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=204&view=rev Author: faluco Date: 2012-07-10 22:22:53 +0000 (Tue, 10 Jul 2012) Log Message: ----------- Don't preallocate call frame memory when it is greater than 63bytes. Modified Paths: -------------- llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRRegisterInfo.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-07-16 00:23:34
|
Revision: 206 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=206&view=rev Author: faluco Date: 2012-07-16 00:23:28 +0000 (Mon, 16 Jul 2012) Log Message: ----------- sync with llvm Modified Paths: -------------- llvm/trunk/AVR/AVRAsmPrinter.cpp llvm/trunk/AVR/AVRMCInstLower.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-07-16 00:43:46
|
Revision: 207 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=207&view=rev Author: faluco Date: 2012-07-16 00:43:39 +0000 (Mon, 16 Jul 2012) Log Message: ----------- Prune include files Modified Paths: -------------- llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRTargetMachine.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-07-16 23:59:28
|
Revision: 209 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=209&view=rev Author: faluco Date: 2012-07-16 23:59:20 +0000 (Mon, 16 Jul 2012) Log Message: ----------- - Add the earlyclobber flag to instructions that cannot have the same register in the source and destination operands like postinc/predec memory instrs. This change exposed a bug in llvm's spiller, so include a workaround until it gets fixed. - Implement register masks for call instructions. - Add more asserts to the instruction pseudo expander. - Implement 8bit push/pop for saving/restoring callee-saved registers. This means that there's no need anymore to save a whole register pair when only one part is used. Modified Paths: -------------- llvm/trunk/AVR/AVRCallingConv.td llvm/trunk/AVR/AVRExpandPseudoInsts.cpp llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRInstrInfo.cpp llvm/trunk/AVR/AVRInstrInfo.td llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRRegisterInfo.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-08-14 13:54:12
|
Revision: 214 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=214&view=rev Author: faluco Date: 2012-08-14 13:54:04 +0000 (Tue, 14 Aug 2012) Log Message: ----------- Improve setcc codegen for i32/i64 types, optimal codegen will come when optimizing the compiler. Modified Paths: -------------- llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRISelLowering.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-08-22 14:48:45
|
Revision: 221 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=221&view=rev Author: faluco Date: 2012-08-22 14:48:36 +0000 (Wed, 22 Aug 2012) Log Message: ----------- Fixed a mis-compilation where pushed arguments in a varargs function call where being passed with an incorrect order. This removes the FIXME introduced yesterday. Modified Paths: -------------- llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRRegisterInfo.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-08-22 22:49:09
|
Revision: 222 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=222&view=rev Author: faluco Date: 2012-08-22 22:49:03 +0000 (Wed, 22 Aug 2012) Log Message: ----------- Random code and style cleanups. Modified Paths: -------------- llvm/trunk/AVR/AVRBranchSelector.cpp llvm/trunk/AVR/AVRCallingConv.td llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRISelDAGToDAG.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRTargetObjectFile.cpp llvm/trunk/AVR/InstPrinter/AVRInstPrinter.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-08-28 22:41:23
|
Revision: 225 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=225&view=rev Author: faluco Date: 2012-08-28 22:41:15 +0000 (Tue, 28 Aug 2012) Log Message: ----------- - Disable jump tables for now. - Introduce a workaround for an shl node getting introduced by DAGCombiner after legalization. With the above changes I'm able to compile the paranoia floating point test suite. - Rename register pairs to match the gcc convention. Modified Paths: -------------- llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRInstrInfo.td llvm/trunk/AVR/AVRRegisterInfo.td llvm/trunk/AVR/InstPrinter/AVRInstPrinter.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-10-12 00:39:08
|
Revision: 230 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=230&view=rev Author: faluco Date: 2012-10-12 00:39:01 +0000 (Fri, 12 Oct 2012) Log Message: ----------- sync with llvm Modified Paths: -------------- llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRISelLowering.h llvm/trunk/AVR/AVRTargetMachine.cpp llvm/trunk/AVR/AVRTargetMachine.h llvm/trunk/AVR/MCTargetDesc/AVRMCExpr.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-12-11 23:18:05
|
Revision: 235 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=235&view=rev Author: faluco Date: 2012-12-11 23:17:54 +0000 (Tue, 11 Dec 2012) Log Message: ----------- - Fix pc relative operand printer. - Configure some aspects of the asm printer. Modified Paths: -------------- llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/InstPrinter/AVRInstPrinter.cpp llvm/trunk/AVR/MCTargetDesc/AVRMCAsmInfo.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2012-12-13 00:31:57
|
Revision: 242 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=242&view=rev Author: faluco Date: 2012-12-13 00:31:49 +0000 (Thu, 13 Dec 2012) Log Message: ----------- Reorder include files to match coding standards Modified Paths: -------------- llvm/trunk/AVR/AVRAsmPrinter.cpp llvm/trunk/AVR/AVRBranchSelector.cpp llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRMCInstLower.cpp llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRTargetMachine.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-01-11 23:37:05
|
Revision: 247 http://avr-llvm.svn.sourceforge.net/avr-llvm/?rev=247&view=rev Author: faluco Date: 2013-01-11 23:36:55 +0000 (Fri, 11 Jan 2013) Log Message: ----------- Implement getLargestLegalSuperClass(). This functions allows the regalloc to inflate register classes decreasing register pressure. Modified Paths: -------------- llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRRegisterInfo.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ato...@us...> - 2013-06-10 05:15:42
|
Revision: 246 http://sourceforge.net/p/avr-llvm/code/246 Author: atomicdog407 Date: 2013-06-10 05:15:40 +0000 (Mon, 10 Jun 2013) Log Message: ----------- Re-commit Borja's 'sync with llvm' that got lost because of the sourceforge repo move Modified Paths: -------------- llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRTargetMachine.cpp llvm/trunk/AVR/AVRTargetMachine.h llvm/trunk/AVR/AVRTargetObjectFile.cpp llvm/trunk/AVR/TargetInfo/AVRTargetInfo.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ato...@us...> - 2013-06-11 02:41:42
|
Revision: 248 http://sourceforge.net/p/avr-llvm/code/248 Author: atomicdog407 Date: 2013-06-11 02:41:40 +0000 (Tue, 11 Jun 2013) Log Message: ----------- Re-commit Borja's patch: 'Implement getLargestLegalSuperClass(). This function allows the regalloc to inflate register classes, decreasing register pressure' Modified Paths: -------------- llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRRegisterInfo.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-06-14 01:57:08
|
Revision: 251 http://sourceforge.net/p/avr-llvm/code/251 Author: faluco Date: 2013-06-14 01:57:04 +0000 (Fri, 14 Jun 2013) Log Message: ----------- Sync with llvm ToT again. All tests passed. Modified Paths: -------------- llvm/trunk/AVR/AVRBranchSelector.cpp llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRFrameLowering.h llvm/trunk/AVR/AVRISelDAGToDAG.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRISelLowering.h llvm/trunk/AVR/AVRInstrInfo.cpp llvm/trunk/AVR/AVRInstrInfo.td llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRRegisterInfo.h llvm/trunk/AVR/AVRRegisterInfo.td llvm/trunk/AVR/AVRTargetMachine.cpp llvm/trunk/AVR/MCTargetDesc/AVRMCAsmInfo.cpp llvm/trunk/AVR/MCTargetDesc/AVRMCAsmInfo.h llvm/trunk/AVR/MCTargetDesc/AVRMCExpr.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kao...@us...> - 2013-06-19 10:49:40
|
Revision: 256 http://sourceforge.net/p/avr-llvm/code/256 Author: kaomoneus Date: 2013-06-19 10:49:37 +0000 (Wed, 19 Jun 2013) Log Message: ----------- Partial inline asm support: all constraints except 'Q', the memory constraint. Modified Paths: -------------- llvm/trunk/AVR/AVRAsmPrinter.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRISelLowering.h llvm/trunk/AVR/AVRRegisterInfo.td This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-06-20 00:03:11
|
Revision: 257 http://sourceforge.net/p/avr-llvm/code/257 Author: faluco Date: 2013-06-20 00:03:02 +0000 (Thu, 20 Jun 2013) Log Message: ----------- - Check for integer ranges in getSingleConstraintMatchWeight. - Some cosmetic and style fixes. Modified Paths: -------------- llvm/trunk/AVR/AVRAsmPrinter.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRISelLowering.h llvm/trunk/AVR/AVRRegisterInfo.td This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-06-25 22:27:25
|
Revision: 261 http://sourceforge.net/p/avr-llvm/code/261 Author: faluco Date: 2013-06-25 22:27:24 +0000 (Tue, 25 Jun 2013) Log Message: ----------- sync with llvm Modified Paths: -------------- llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRISelLowering.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-06-28 22:40:30
|
Revision: 263 http://sourceforge.net/p/avr-llvm/code/263 Author: faluco Date: 2013-06-28 22:40:28 +0000 (Fri, 28 Jun 2013) Log Message: ----------- Cosmetic fixes from last commit. Modified Paths: -------------- llvm/trunk/AVR/AVRAsmPrinter.cpp llvm/trunk/AVR/AVRISelDAGToDAG.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRRegisterInfo.cpp llvm/trunk/AVR/AVRRegisterInfo.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-07-18 22:38:13
|
Revision: 272 http://sourceforge.net/p/avr-llvm/code/272 Author: faluco Date: 2013-07-18 22:38:09 +0000 (Thu, 18 Jul 2013) Log Message: ----------- Fix assembly printing of complex symbol expressions. This should help getting more programs assembled by avr-as. Modified Paths: -------------- llvm/trunk/AVR/AVRMCInstLower.cpp llvm/trunk/AVR/MCTargetDesc/AVRMCExpr.cpp llvm/trunk/AVR/MCTargetDesc/AVRMCExpr.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-07-23 18:22:57
|
Revision: 283 http://sourceforge.net/p/avr-llvm/code/283 Author: faluco Date: 2013-07-23 18:22:54 +0000 (Tue, 23 Jul 2013) Log Message: ----------- Fix to pass Generic/overflow.ll Modified Paths: -------------- llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRISelLowering.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-07-24 00:11:08
|
Revision: 285 http://sourceforge.net/p/avr-llvm/code/285 Author: faluco Date: 2013-07-24 00:11:05 +0000 (Wed, 24 Jul 2013) Log Message: ----------- Fixed a serious codegen bug where some pseudo instructions used to pass arguments through the stack that were spreaded out in various BB's were not converted to real instructions. Modified Paths: -------------- llvm/trunk/AVR/AVRExpandPseudoInsts.cpp llvm/trunk/AVR/AVRFrameLowering.cpp llvm/trunk/AVR/AVRISelLowering.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2013-07-25 15:42:44
|
Revision: 288 http://sourceforge.net/p/avr-llvm/code/288 Author: faluco Date: 2013-07-25 15:42:41 +0000 (Thu, 25 Jul 2013) Log Message: ----------- Comestic and style fixes (clean trailing white spaces, comments, and compiler warnings) Modified Paths: -------------- llvm/trunk/AVR/AVRAsmPrinter.cpp llvm/trunk/AVR/AVRISelLowering.cpp llvm/trunk/AVR/AVRRegisterInfo.td This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |