aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Expand)Author
2010-11-28Add support for NEON VLD2-dup instructions.Bob Wilson
2010-11-27Lower TLS_addr32 and TLS_addr64.Rafael Espindola
2010-11-27Implement the data16 prefix.Rafael Espindola
2010-11-27CMake: lit(check.vcproj) can run with multiple configurations on Visual Studio.NAKAMURA Takumi
2010-11-27Add NEON VLD1-dup instructions (load 1 element to all lanes).Bob Wilson
2010-11-27macho-dump: Fix typo.Daniel Dunbar
2010-11-26test/site.exp.in: Add "emitir", for now, fixing up r120156. CMake depends on ...NAKAMURA Takumi
2010-11-25Remove explicit uses of -emit-llvm, the test infrastructure adds itDuncan Sands
2010-11-25Remove explicit uses of -emit-llvm, the test infrastructure adds itDuncan Sands
2010-11-25Use -S rather than -c for the benefit of dragonegg.Duncan Sands
2010-11-25Remove explicit uses of -emit-llvm, the test infrastructure adds itDuncan Sands
2010-11-25Judging from the comment, the system assembler is supposed to assembleDuncan Sands
2010-11-25Remove explicit uses of -emit-llvm, the test infrastructure adds itDuncan Sands
2010-11-25Dragonegg cannot output bitcode, only human readable IR, so use -S ratherDuncan Sands
2010-11-25Use LLVMCC_EMITIR_FLAG rather than hard-coding "-emit-llvm".Duncan Sands
2010-11-25Use multiple 0x66 prefixes so that all nops up to 15 bytes are a single instr...Rafael Espindola
2010-11-25Factor some code to parseSectionFlags and fix the default type of a section.Rafael Espindola
2010-11-24Treat a call of function pointer like a load of the pointer when consideringNick Lewycky
2010-11-24Behave a bit more like gnu as and use the symbol (instead of the section)Rafael Espindola
2010-11-24Relocate with the symbol if the relocation is of kind NTPOFF.Rafael Espindola
2010-11-24Fix and add tests for all cases in x86 and x86_64 where gnu as implicitlyRafael Espindola
2010-11-24Testcase for r120017.Rafael Espindola
2010-11-24Allow for 'fcmp ogt' in SPU.Kalle Raiskila
2010-11-24If a symbol is used as tls, mark it as tls even if not declare as so. ProbablyRafael Espindola
2010-11-23The srem -> urem transform is not safe for any divisor that's not a power of ...Benjamin Kramer
2010-11-23Recognize sign/zero-extended constant BUILD_VECTORs for VMULL operations.Bob Wilson
2010-11-23InstCombine: Reduce "X shift (A srem B)" to "X shift (A urem B)" iff B is pos...Benjamin Kramer
2010-11-23Exploit distributive laws (eg: And distributes over Or, Mul over Add, etc) in aDuncan Sands
2010-11-23Division by pow-of-2 is not cheap on SPU, do it with Kalle Raiskila
2010-11-23Produce a relocation for pcrel absolute values. Based on a patch by David Meyer.Rafael Espindola
2010-11-23duncan's spider sense was right, I completely reversed the conditionChris Lattner
2010-11-23filecheckizeChris Lattner
2010-11-22InstCombine: Implement X - A*-B -> X + A*B.Benjamin Kramer
2010-11-22Fix epilogue codegen to avoid leaving the stack pointer in an invalidEvan Cheng
2010-11-22If a GEP index simply advances by multiples of a type of zero size,Duncan Sands
2010-11-22Fix a bug with extractelement on SPU.Kalle Raiskila
2010-11-22Implement the "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" optimization.Benjamin Kramer
2010-11-21Implement branch analysis in the MBlaze backend.Wesley Peck
2010-11-21Add a rather pointless InstructionSimplify transform, inspired by recent cons...Duncan Sands
2010-11-21Add encoding for ARM "trap" instruction.Bill Wendling
2010-11-21implement PR8524, apparently mainline gas accepts movq as an alias for movdChris Lattner
2010-11-21implement PR8576, deleting dead stores with intervening may-alias stores.Chris Lattner
2010-11-21file checkizeChris Lattner
2010-11-21optimize:Chris Lattner
2010-11-21Handle PCRel relocations with absolute values. Fixes PR8656.Rafael Espindola
2010-11-21Implement PR8644: forwarding a memcpy value to a byval,Chris Lattner
2010-11-20Removing the useless test that I added recently. It was meant as an example, ...Andrew Trick
2010-11-19Add a test for CodeGenPrepare's ability to look through PHI nodes when perfor...Owen Anderson
2010-11-19Prefetch has a MemOperand now. FileCheckize a test.Dale Johannesen
2010-11-19Make isScalarToVector to return false if the node is a scalar. This will preventMon P Wang