1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test
James Molloy fe6bb5c6e4 [LV] Never widen an induction variable.
There's no need to widen canonical induction variables. It's just as efficient to create a *new*, wide, induction variable.

Consider, if we widen an indvar, then we'll have to truncate it before its uses anyway (1 trunc). If we create a new indvar instead, we'll have to truncate that instead (1 trunc) [besides which IndVars should go and clean up our mess after us anyway on principle].

This lets us remove a ton of special-casing code.

llvm-svn: 246631
2015-09-02 10:15:05 +00:00
..
Analysis [BasicAA] Fix the handling of sext and zext in the analysis of GEPs. 2015-08-31 22:32:47 +00:00
Assembler Fix bug in method LLLexer::FP80HexToIntPair 2015-08-31 21:36:14 +00:00
Bindings
Bitcode [BitcodeReader] Ensure we can read constant vector selects with an i1 condition 2015-08-31 18:00:30 +00:00
BugPoint DI: Require subprogram definitions to be distinct 2015-08-28 20:26:49 +00:00
CodeGen AVX-512: store <4 x i1> and <2 x i1> values in memory 2015-09-02 09:20:58 +00:00
DebugInfo AsmPrinter: Allow null subroutine type 2015-08-28 21:38:24 +00:00
Examples Disable llvm/test/Examples/ for now while investigating. 2015-08-28 03:32:43 +00:00
ExecutionEngine [mips64][mcjit] Add N64R6 relocations tests and fix N64R2 tests 2015-08-28 18:02:53 +00:00
Feature [WinEH] Require token linkage in EH pad/ret signatures 2015-08-23 00:26:33 +00:00
FileCheck
Instrumentation DI: Require subprogram definitions to be distinct 2015-08-28 20:26:49 +00:00
Integer
JitListener DI: Require subprogram definitions to be distinct 2015-08-28 20:26:49 +00:00
LibDriver
Linker New bitcode linker flags: 2015-09-01 17:55:55 +00:00
LTO Use UNSUPPORTED instead of XFAIL to disable this test, as it passes on one AArch64 bot. 2015-08-28 22:17:29 +00:00
MC [MC] Generate a timestamp for COFF object files 2015-09-01 23:46:11 +00:00
Object Object: Fix COFF import file's symbols. 2015-09-01 06:01:53 +00:00
Other Update test suite to make "ninja check" succeed without native backend builtin 2015-08-04 06:32:54 +00:00
SymbolRewriter
TableGen TableGen: Support folding casts from bits to int 2015-07-31 01:12:06 +00:00
tools gold-plugin: Implement parallel LTO code generation using llvm::splitCodeGen. 2015-09-01 20:40:22 +00:00
Transforms [LV] Never widen an induction variable. 2015-09-02 10:15:05 +00:00
Unit
Verifier DI: Add Function::getSubprogram() 2015-08-28 21:55:35 +00:00
YAMLParser
.clang-format
CMakeLists.txt Recommit r246175 - Add Kaleidoscope regression tests, with a fix to make sure 2015-08-27 20:31:44 +00:00
lit.cfg Force the locale when executing ld gold 2015-08-31 07:10:05 +00:00
lit.site.cfg.in Recommit r246175 - Add Kaleidoscope regression tests, with a fix to make sure 2015-08-27 20:31:44 +00:00
Makefile Recommit r246175 - Add Kaleidoscope regression tests, with a fix to make sure 2015-08-27 20:31:44 +00:00
Makefile.tests
TestRunner.sh