- d4f268b make ExtractValueInst derived from UnaryInstruction by Gabor Greif · 17 years ago
- 877333b Enable stack coloring by default. by Evan Cheng · 17 years ago
- 6b4a65f PPC preferred loop alignment is 16. by Evan Cheng · 17 years ago
- 4c37c07 LoopSimplify preserves AA. by Devang Patel · 17 years ago
- 8fb6a94 Print debug message only if there are dead passes. by Devang Patel · 17 years ago
- 30073ff Include loop deletion and the ADCE rewrite in the release notes. by Owen Anderson · 17 years ago
- 7aa8d44 Testcase for PR2418 by Anton Korobeynikov · 17 years ago
- 001c73e Handle assembler identifiers specially in CBE. This fixes PR2418. by Anton Korobeynikov · 17 years ago
- 3b3adbb Tighten up the abstraction slightly. by Duncan Sands · 17 years ago
- 83ec4b6 Wrap MVT::ValueType in a struct to get type safety by Duncan Sands · 17 years ago
- cc41940 As Chris suggested, handle the situation if ShAmt larger than BitWidth, by Zhou Sheng · 17 years ago
- 9c3c221 Refine stack slot interval weight computation. by Evan Cheng · 17 years ago
- b0a882f Turn stdout into binary mode during bitcode emission. by Anton Korobeynikov · 17 years ago
- 232a4ab Provide hooks for libgcc symbols' address resolution inside lli on mingw32. by Anton Korobeynikov · 17 years ago
- 0af5e09 Added custom isel for MUL, SDIVREM, UDIVREM, SMUL_LOHI and UMUL_LOHI nodes by Bruno Cardoso Lopes · 17 years ago
- 07cec75 Added custom SELECT_CC lowering by Bruno Cardoso Lopes · 17 years ago
- 836bfcd Revert 52002. by Dan Gohman · 17 years ago
- 5c49061 Expose a public interface to this pass. by Chris Lattner · 17 years ago
- 15ccbf5 Let libcall semantics decide whether it knows about functions by Chris Lattner · 17 years ago
- 6fc5b48 Warn of potential violations of strict aliasing rules. by Evan Cheng · 17 years ago
- 1b022cf Don't break strict aliasing. by Evan Cheng · 17 years ago
- 83a15d7 Describe loop index split. by Devang Patel · 17 years ago
- 6e60ea4 Wording fixes. Thanks Bill! by Dan Gohman · 17 years ago
- 417dc2f Remove debugging code. by Owen Anderson · 17 years ago
- 96a89c7 fix typos, tweak stuff, make it to validate by Gabor Greif · 17 years ago
- a9efb26 Use the newly created helper on LiveIntervals. by Owen Anderson · 17 years ago
- c4dc132 Add a helper for constructing new live ranges that ended from an instruction to the end of its MBB. by Owen Anderson · 17 years ago
- 4e16d40 Move i128 on x86-64 from the codegen section to the x86-specific section. by Dan Gohman · 17 years ago
- 9c39926 Add a note about improved alignment detection. by Dan Gohman · 17 years ago
- 809d91e Add a note mentioning --view-sunit-dags improvements. by Dan Gohman · 17 years ago
- 85765e6 Expand the bullet item about i128 support and APInt usage in codegen. by Dan Gohman · 17 years ago
- b73afcf Add a test case for opt -instcombine bug fix in revision 52003. by Zhou Sheng · 17 years ago
- 17183ab If BitWidth equals to ShtAmt, the RHSKnownZero[BitWidth-ShiftAmt-1] will by Zhou Sheng · 17 years ago
- 411e6a5 Change the Verifier to support returning first class aggregrates. by Matthijs Kooijman · 17 years ago
- b499c86 Add a test case for APInt bug fix in r51999. by Zhou Sheng · 17 years ago
- bfde7d6 As comments said, for negative value, the arithmetic by Zhou Sheng · 17 years ago
- ef7d2bb Escape "$#". by Nick Lewycky · 17 years ago
- 0251814 Learn ScalarReplAggregrates how stores and loads of first class aggregrates by Matthijs Kooijman · 17 years ago
- 1494bcc Move this to the proper section. by Gordon Henriksen · 17 years ago
- 4ca93d0 Adding release notes for bindings improvements. by Gordon Henriksen · 17 years ago
- 47c6fd7 Let StructRetPromotion check if all if its users are really calls or invokesn, by Matthijs Kooijman · 17 years ago
- 257da0a Let StructRetPromotion check if it's users are really calling it and not by Matthijs Kooijman · 17 years ago
- 4133541 Use use_iterator::getOperandNo instead of CallSite::hasArgument to check if a by Matthijs Kooijman · 17 years ago
- 045b3f7 * Make CallSite::hasArgument const and let it take a const parameter. by Matthijs Kooijman · 17 years ago
- 77d29b1 more updates and random notes, including changes up through Week-of-Mon-20080324. by Chris Lattner · 17 years ago
- 845f524 Update comments and documentation to reflect that GCSE and ValueNumbering are by Matthijs Kooijman · 17 years ago
- 67944fc Cast because I think I know what I'm doing. There are warnings about converting by Bill Wendling · 17 years ago
- cfd5b7d Fix 80 column violations. by Matthijs Kooijman · 17 years ago
- 12c846f Remove unused parameter. Some clients might use -Werror when compiling and by Bill Wendling · 17 years ago
- bc5786b add llvmc2 notes, stack realignment. by Chris Lattner · 17 years ago
- 5733b27 various status updates. by Chris Lattner · 17 years ago
- 791f77b Start adding 2.3 content. by Chris Lattner · 17 years ago
- fb4db31 Fix a memcpy lowering bug. Even though the memcpy alignment is smaller than the desired alignment, the frame destination alignment may still be larger than the desired alignment. Don't change its alignment to something smaller. by Evan Cheng · 17 years ago
- 10a05bf Remove unneeded #include. by Owen Anderson · 17 years ago
- da021aa Fix inst_iterator example. by Chris Lattner · 17 years ago
- 75bb734 Oops. Should not be enabled by default. by Evan Cheng · 17 years ago
- 67f631d Rewrite a bunch of the CBE's inline asm code, giving it the by Chris Lattner · 17 years ago
- 38b4250 Correctly construct live intervals for the copies we inserted into the predecessors of a block containing a PHI. by Owen Anderson · 17 years ago
- 7a315e8 Revert this. by Evan Cheng · 17 years ago
- 227c27d Replace two manual loops with calls to CallSite::hasArguments (no functional changes). by Matthijs Kooijman · 17 years ago
- 9515a8f Add CallSite::hasArgument to allow for seeing if a call passes a certain value as an argument quickly. by Matthijs Kooijman · 17 years ago
- 338169d Add a Name parameter to two of the init methods of GetElementPointer to make the name setting more consistent. by Matthijs Kooijman · 17 years ago
- 61399af Fix example to be valid LLVM assembly. by Matthijs Kooijman · 17 years ago
- 444099f6 Implement the two constructors in InsertValueInst and ExtractValueInst. by Matthijs Kooijman · 17 years ago
- 3f32d65 Add a stack slot coloring pass. Not yet enabled. by Evan Cheng · 17 years ago
- d8a46e3 LowerSubregs should not clobber any analysis. by Evan Cheng · 17 years ago
- cb74266 Move #include to right place. by Evan Cheng · 17 years ago
- b3dd264 Register if-converter pass for -debug-pass. by Evan Cheng · 17 years ago
- 7c9b652 More pass manager debugging outputs. by Evan Cheng · 17 years ago
- a0fcc08 Change packed struct layout so that field sizes by Duncan Sands · 17 years ago
- 32a9e7a Add #includes required by GCC 4.3, thanks for Zhongxing Xu for reporting this. by Chris Lattner · 17 years ago
- d2947ee Some Mips minor fixes Added support for mips little endian arch => mipsel by Bruno Cardoso Lopes · 17 years ago
- 3094a4c We need to subtract one from this index because live ranges are open at the end. by Owen Anderson · 17 years ago
- ba12f57 Fix spellnig error by Scott Michel · 17 years ago
- 3637981 Testcase for LoopIndexSplit and DomFrontier. by Owen Anderson · 17 years ago
- 269db29 LoopIndexSplit can sometimes result in cases where a block in its own domfrontier. by Owen Anderson · 17 years ago
- bd44c2e3 Expand documentation of StringConstantPrefix. by Dale Johannesen · 17 years ago
- 24f07dc Prevent a crash in debug dumps. by Dale Johannesen · 17 years ago
- 428ac54 Add StringConstantPrefix to control what the by Dale Johannesen · 17 years ago
- eefc845 Find a better place to output hex constants corresponding to integers. by Scott Michel · 17 years ago
- a8c63f0 Fixed bug in bad behavior in calculateFrameObjectOffsets, by Bruno Cardoso Lopes · 17 years ago
- f73ff3a Do not run loop-aligner at -fast (e.g. -O0). by Evan Cheng · 17 years ago
- 4315eee Revert this patch by Scott Michel · 17 years ago
- 6d98611 nounwindify. by Dan Gohman · 17 years ago
- c0c33f5 "Unable to schedule <A> required by <B>" is more helpful then by Devang Patel · 17 years ago
- e62f750 Add debugging aid. by Devang Patel · 17 years ago
- c702a9e Fix whitespace in whitespace-significant pseudocode in a comment. by Dan Gohman · 17 years ago
- 6e68f59 Constant folding for insertvalue and extractvalue. by Dan Gohman · 17 years ago
- 2f17099 Update dom tree. Fix PR 2372. by Devang Patel · 17 years ago
- 33b625b Fold adds and subtracts of zero immediately, instead of waiting by Dan Gohman · 17 years ago
- 83ccc0a Minor cosmetic patch so that the hex equivalent of a decimal by Scott Michel · 17 years ago
- 8bf61e8 Add necessary 64-bit support so that gcc frontend compiles (mostly). Current by Scott Michel · 17 years ago
- 193c235 Implement CBE support for first-class structs and array values, by Dan Gohman · 17 years ago
- 34e71fe Update the polygen grammer for the new insertvalue and extractvalue syntax. by Dan Gohman · 17 years ago
- d82e511 Remove unneeded code I added. by Chris Lattner · 17 years ago
- 37cdad3 Fix the position of MemOperands in nodes that use variadic_ops by Dan Gohman · 17 years ago
- e3abb0a Correctly handle removed instructions at the beginning of MBBs when renumbering. by Owen Anderson · 17 years ago
- 98e3a68 Fixes PR2395. Looking for a constant in a GEP tail (when the first GEP by Wojciech Matyjewicz · 17 years ago
- 370a25c update vc configure project for renaming of by Steve Naroff · 17 years ago
- da5860f Don't use the GOT for symbols that are not externally visible. by Rafael Espindola · 17 years ago