Fix HTML violations.
[oota-llvm.git] / lib /
2009-07-20 Evan ChengModel fpscr to prevent fcmped / fcmpezs etc from being...
2009-07-20 Bill WendlingAdd plumbing for the `linker_private' linkage type...
2009-07-20 Daniel DunbarCMake support for SystemZ.
2009-07-19 Eli FriedmanDon't override LowerArguments in the SPARC backend...
2009-07-19 Evan ChengFix a regression from 76124. Thumb1 instructions defaul...
2009-07-19 Jakob Stoklund OlesenFix http://llvm.org/bugs/show_bug.cgi?id=4583
2009-07-19 Nick LewyckyFix ConstantRange::unionWith. Also make it work a littl...
2009-07-19 Daniel DunbarFix some minor MSVC compiler warnings.
2009-07-19 Daniel DunbarUnbreak build
2009-07-19 Eli FriedmanSwitch Alpha over to the new call lowering style. ...
2009-07-19 Daniel DunbarSystemZ *does* have a CodeGen/AsmPrinter split.
2009-07-19 Daniel DunbarTweak cmake files for the four targets that don't split...
2009-07-19 Daniel DunbarAdd dependencies from TargetInfo onto .td generation.
2009-07-18 Bruno Cardoso LopesUse R_X86_64_32S to handle Jump Table Index relocation...
2009-07-18 Daniel DunbarAdd some missing includes.
2009-07-18 Eli FriedmanCanonicalize bitcasts between types like <1 x i64>...
2009-07-18 Daniel DunbarPut Target definitions inside Target specific header...
2009-07-18 Mikhail GlushenkovRemove duplication in Program::Execute{And,No}Wait.
2009-07-18 Bruno Cardoso LopesUse a better name for the label relocations while emitt...
2009-07-18 Bruno Cardoso LopesAdd support to properly reference private symbols on...
2009-07-18 Eli FriedmanBack out 76300; apparently the preference is to canonic...
2009-07-18 Chris Lattneradd a fixme
2009-07-18 Anton KorobeynikovAdd carry producing / using versions of add / sub
2009-07-18 Anton KorobeynikovExpand frem
2009-07-18 Anton KorobeynikovTurn abort() into unreachable
2009-07-18 Anton KorobeynikovTurn few asserts into errors / unreachable's
2009-07-18 Anton KorobeynikovHandle vector returns
2009-07-18 Anton KorobeynikovProvide expansion for ct* intrinsics
2009-07-18 Anton KorobeynikovExpand sext_inreg for i1
2009-07-18 Eli FriedmanAdd combine: X sdiv (1 << Y) -> X udiv (1 << Y) when...
2009-07-18 Eli FriedmanRemove no-op check.
2009-07-18 Eli FriedmanRemove dead check.
2009-07-18 Eli FriedmanCanonicalize insert/extractelement from single-element...
2009-07-18 Eli FriedmanFix simplifylibcalls memset recognition to work on...
2009-07-18 Nick LewyckyReplace intersectWith with maximalIntersectWith. The...
2009-07-18 Eli FriedmanFix the inline cost calculation to take into account...
2009-07-18 Eli FriedmanAdd line breaks to make the debug output a bit more...
2009-07-18 Evan ChengCatch more coalescing opportunities.
2009-07-18 Evan ChengEnable cross register class coalescing.
2009-07-18 Dan GohmanMake GetElementPtr ConstantExprs default to having...
2009-07-18 Evan ChengRevert 76177 for now. It's messing up ARM asm printing...
2009-07-18 Dan GohmanFix this accidentally inverted condition.
2009-07-18 Reid KlecknerAdd EngineBuilder to ExecutionEngine in favor of the...
2009-07-17 Dan GohmanConvert more code to use Operator instead of explicitly...
2009-07-17 Ted KremenekUpdate CMake file.
2009-07-17 Evan ChengFix pr4552. Stack slot coloring with register must...
2009-07-17 Daniel Dunbarllvm-mc: Add -triple, and start fetching the target...
2009-07-17 Dan GohmanMake BasicAliasAnalysis and Value::getUnderlyingObject use
2009-07-17 Dan GohmanFix some typos in a comment.
2009-07-17 Evan ChengFix x86 inline ams 'q' constraint support. In 32-bit...
2009-07-17 Chris Lattnerremove AsmPrinter::findGlobalValue, just use Value...
2009-07-17 Dan GohmanAdd a GEPOperator class, and move the hasNoPointerOverflow
2009-07-17 Evan ChengSimplify some more.
2009-07-17 Chris LattnerUse more terse and precise linkage checks.
2009-07-17 Dan GohmanEliminate yet another copy of getOpcode.
2009-07-17 Chris Lattnerthese two pieces of code are the same because we always
2009-07-17 Dan GohmanFix a typo that Duncan spotted.
2009-07-17 Dan GohmanAdd a new Operator class, for handling Instructions...
2009-07-17 Chris LattnerUntangle a snarl that I discovered when updating the...
2009-07-17 Daniel DunbarSketch support for target specific assembly parser.
2009-07-17 Mikhail GlushenkovTrailing whitespace.
2009-07-17 Chris Lattnerfix include guard.
2009-07-17 Evan ChengSimplify the coalescer (finally!) by making LiveInterva...
2009-07-17 Dan GohmanGetElementPtr instructions default to having no overflow.
2009-07-17 Daniel DunbarStart generating AsmMatcher.inc for X86.
2009-07-17 Jeffrey Yasskinr76102 added the MachineCodeEmitter::processDebugLoc...
2009-07-17 Daniel DunbarFix compile warning.
2009-07-17 Anton KorobeynikovAdd missed return
2009-07-17 Anton KorobeynikovAdd support for naked functions
2009-07-17 Bruno Cardoso Lopesrevert one of the loops to use indicies over iterators...
2009-07-17 Dan GohmanAdd a SubclassOptionalData field to Value. See the...
2009-07-17 Daniel DunbarInitialize another Context, in the hopes of unbreaking...
2009-07-17 Daniel DunbarProvide slightly more refined error message when trying...
2009-07-17 David GreeneAdd logic to align instruction operands to columns...
2009-07-17 Duncan SandsAvoid a compiler warning when assertions are turned...
2009-07-17 Eli FriedmanOops, accidentally set a legal operation to expand.
2009-07-17 Eli FriedmanExpand misc operations from test/CodeGen/Generic.
2009-07-17 Eli FriedmanHandle void in XCoreTargetLowering::isLegalAddressingMo...
2009-07-17 Eli FriedmanRemove some unnecessary expansion markings. Add a...
2009-07-17 Eli FriedmanAdd operation expansion/promotion for a bunch of operat...
2009-07-17 Evan ChengFix tSUBspi operand definition. It reads and writes...
2009-07-17 Eli FriedmanSet an operation expansion, noticed while running
2009-07-17 Eli FriedmanMake promotion in operation legalization for SETCC...
2009-07-17 Eli FriedmanReplace isTrapping with a new, similar method called
2009-07-17 Eli FriedmanOne more operation expansion for MIPS, from test/CodeGe...
2009-07-17 Daniel DunbarMake sure CWriter's Context get's initialized.
2009-07-17 Eli FriedmanExpand a bunch of illegal operations on MIPS (found by
2009-07-17 Daniel DunbarFix 'may be used uninitialized' warning.
2009-07-17 Evan ChengFix my brain cramp by inverting the assertion condition.
2009-07-16 Jeffrey YasskinFix "no newline at end of file" warning from gcc.
2009-07-16 Owen AndersonPrivatize the MDNode uniquing table.
2009-07-16 Anton KorobeynikovEmit cross regclass register moves for thumb2.
2009-07-16 Daniel DunbarDisable this assert for now, it is firing on an llvm...
2009-07-16 Evan ChengGV with ghost linkage (module being lazily streamed...
2009-07-16 Dale JohannesenAssume an inline asm might be a call, so we get
2009-07-16 David GreeneEmit line numbers in asm comments when available.
2009-07-16 Owen AndersonPrivatize the MDString uniquing table.
2009-07-16 Daniel DunbarFix inverted preprocessor conditional.
2009-07-16 Daniel DunbarFix compiler warning (for -Asserts).
2009-07-16 Jakob Stoklund OlesenSilence warning in Linux builds:
next