llvm-6502/lib/Transforms/IPO
Reid Spencer a54b7cbd45 For PR1064:
Implement the arbitrary bit-width integer feature. The feature allows
integers of any bitwidth (up to 64) to be defined instead of just 1, 8,
16, 32, and 64 bit integers.

This change does several things:
1. Introduces a new Derived Type, IntegerType, to represent the number of
   bits in an integer. The Type classes SubclassData field is used to
   store the number of bits. This allows 2^23 bits in an integer type.
2. Removes the five integer Type::TypeID values for the 1, 8, 16, 32 and
   64-bit integers. These are replaced with just IntegerType which is not
   a primitive any more.
3. Adjust the rest of LLVM to account for this change.

Note that while this incremental change lays the foundation for arbitrary
bit-width integers, LLVM has not yet been converted to actually deal with
them in any significant way. Most optimization passes, for example, will
still only deal with the byte-width integer types.  Future increments
will rectify this situation.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33113 91177308-0d34-0410-b5e6-96231b3b80d8
2007-01-12 07:05:14 +00:00
..
ArgumentPromotion.cpp For PR950: 2006-12-31 05:48:39 +00:00
ConstantMerge.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
DeadArgumentElimination.cpp For PR950: 2006-12-31 05:48:39 +00:00
DeadTypeElimination.cpp For PR1064: 2007-01-12 07:05:14 +00:00
ExtractFunction.cpp llvm-extract should remove module-level asm 2006-10-20 21:35:41 +00:00
FunctionResolution.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
GlobalDCE.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
GlobalOpt.cpp Implement review feedback for the ConstantBool->ConstantInt merge. Chris 2007-01-12 04:24:46 +00:00
IndMemRemoval.cpp For PR950: 2006-12-31 05:48:39 +00:00
Inliner.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
Inliner.h Remove trailing whitespace 2005-04-21 23:48:37 +00:00
InlineSimple.cpp For PR950: 2006-11-27 01:05:10 +00:00
Internalize.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
IPConstantPropagation.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
LoopExtractor.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
LowerSetJmp.cpp Rename BoolTy as Int1Ty. Patch by Sheng Zhou. 2007-01-11 18:21:29 +00:00
Makefile DONT_BUILD_RELINKED is gone and implied by BUILD_ARCHIVE now 2005-10-24 02:26:13 +00:00
PruneEH.cpp Eliminate static ctors due to Statistic objects 2006-12-19 22:09:18 +00:00
RaiseAllocations.cpp For PR950: 2006-12-31 05:48:39 +00:00
SimplifyLibCalls.cpp For PR1064: 2007-01-12 07:05:14 +00:00
StripSymbols.cpp For PR411: 2007-01-06 07:24:44 +00:00