Convert more assert(0)+abort() -> LLVM_UNREACHABLE,
[oota-llvm.git] / lib /
2009-07-11 Torok EdwinConvert more assert(0)+abort() -> LLVM_UNREACHABLE,
2009-07-11 Evan ChengDon't put IT instruction before conditional branches.
2009-07-11 Evan ChengSmarter isel of ldrsb / ldrsh. Only make use of these...
2009-07-11 Evan ChengMajor changes to Thumb (not Thumb2). Many 16-bit instru...
2009-07-11 Evan Cheng80 col violation.
2009-07-11 Nick LewyckyMove a method that creates constant ranges relative...
2009-07-11 Evan ChengFix up support for OptionalDefOperand when it defaults...
2009-07-11 Eli FriedmanUse CreateStackStoreLoad helper in more places.
2009-07-11 Evan ChengTwo-address pass should use findCommutedOpIndices to...
2009-07-10 Evan ChengUse findCommutedOpIndices to find the operands to commute.
2009-07-10 Bob WilsonAdd superclasses of ARM Neon quad registers. The Q2PR...
2009-07-10 Bob WilsonAdd new vector types for 192-bit, 348-bit and 512-bit...
2009-07-10 Chris Lattnerremove the "debug" modifier, it is only used by one...
2009-07-10 Chris Lattneradd support for .zerofill, patch by Kevin Enderby!
2009-07-10 Jeffrey YasskinOops. s/#if defined(USE_OPROFILE)/#if USE_OPROFILE...
2009-07-10 Chris Lattnermake pcrel and non-pcrel global printing more similar.
2009-07-10 Evan ChengUndo my brain cramp.
2009-07-10 David GreeneMake changes suggested by Chris and eliminate newly...
2009-07-10 Jeffrey YasskinAdd a --with-oprofile flag to configure, which uses...
2009-07-10 Chris Lattnercode model is never set to default.
2009-07-10 Chris Lattnerfix indentation
2009-07-10 Chris Lattnerremove the now-dead TM argument to these methods.
2009-07-10 Chris Lattnermake PIC vs DynamicNoPIC be explicit in PICStyles.
2009-07-10 Chris Lattnersome minor simplifications.
2009-07-10 Chris Lattneradd a couple of predicates to test for "stub style...
2009-07-10 Dan GohmanRemove ScalarEvolution::hasSCEV, which isn't being...
2009-07-10 Duncan SandsAvoid compiler warnings when assertions are turned...
2009-07-10 Duncan SandsAvoid compiler warnings if assertions turned off.
2009-07-10 Evan ChengCMOVxx doesn't swap operands which it's commuted.
2009-07-10 Evan ChengRemove TargetInstrInfo::CommuteChangesDestination and...
2009-07-10 David GreeneEliminate an unnecessary include.
2009-07-10 Owen AndersonPush LLVMContext through the PatternMatch API.
2009-07-10 David GoodwinPredicate VFP instructions on HasVFP2 instead of IsARM...
2009-07-10 Dan GohmanGeneralize ScalarEvolution's cast-folding code to suppo...
2009-07-10 Owen AndersonUpdate for GlobalVariables ctor change.
2009-07-10 David Goodwint2LDM_RET does not fall-through.
2009-07-10 Duncan SandsAdd Thumb2ITBlockPass.cpp to CMakeLists.txt, fixing
2009-07-10 Chris Lattnermake this more like printOperand. Perhaps some merging...
2009-07-10 Chris Lattnersimplify fast isel by using ClassifyGlobalReference...
2009-07-10 Chris Lattnereliminate GVRequiresRegister, replacing it with predica...
2009-07-10 Chris Lattnerchange a bunch of logic in LowerGlobalAddress to levera...
2009-07-10 Chris Lattneradd a predicate to determine if a global var reference...
2009-07-10 Chris Lattnermove some classification logic around. Now GVRequiresE...
2009-07-10 Chris Lattnerchange isGlobalStubReference to take target flags inste...
2009-07-10 Chris Lattnerconvert some late code (called by regalloc and code...
2009-07-10 Chris Lattneradd a new predicate method that says whether a GlobalValue
2009-07-10 Chris LattnerGVRequiresExtraLoad is now never used for calls, simpli...
2009-07-10 Chris Lattneractually, just eliminate PCRelGVRequiresExtraLoad....
2009-07-10 Chris LattnerThere is only one case where GVRequiresExtraLoad return...
2009-07-10 Chris Lattnerthe "isDirectCall" operand of GVRequiresRegister is...
2009-07-10 Chris Lattnersplit call handling out of X86SelectAddress into X86Sel...
2009-07-10 Chris Lattnerconvert a helper method to be a static function instead...
2009-07-10 Evan ChengMore info about Thumb1 predication support.
2009-07-10 Evan ChengWe don't need separate thumb1 instructions tADDSi3...
2009-07-10 Evan ChengAdd a thumb2 pass to insert IT blocks.
2009-07-10 Evan ChengMove isPredicated from .cpp to .h
2009-07-10 Evan Cheng80 col violation.
2009-07-10 Evan ChengRemove a bogus assertion.
2009-07-10 Bob WilsonReplace TM.getRegisterInfo() calls by TRI instance...
2009-07-09 David GreeneRedesign this to avoid standard stream classes. This...
2009-07-09 Bob WilsonHandle 'a' modifier on inline assembly operands.
2009-07-09 Owen AndersonThis started as a small change, I swear. Unfortunately...
2009-07-09 David GreeneAdd some hooks that a redesigned AsmStream needs to...
2009-07-09 Evan ChengAdded Thumb IT instruction.
2009-07-09 Bob WilsonFix an apparent copy-and-paste problem in an error...
2009-07-09 Evan ChengAnother todo entry.
2009-07-09 Dan GohmanRevert the part of 75177 that split ConstantRange into...
2009-07-09 Evan ChengInitial support for load / store multiple opt pass...
2009-07-09 Evan ChengFix ldm / stm unified syntax; add t2LDM_RET.
2009-07-09 Evan ChengLDM_RET should be marked mayLoad.
2009-07-09 Bill WendlingIf -fomit-frame-pointer is used, we still need to recor...
2009-07-09 Evan ChengFix ldrd / strd address mode matching code. It allows...
2009-07-09 Dan GohmanAdd a ConstantSignedRange class, which does for signed...
2009-07-09 Eli FriedmanMake EXTRACT_VECTOR_ELT a bit more flexible in terms...
2009-07-09 Evan ChengAdd a Thumb readme entry.
2009-07-09 Evan ChengCorrect comment.
2009-07-09 Richard Penningtonbug 4524: Add MSP430 to the cmake build.
2009-07-09 Dale JohannesenHandle 'A' modifier in inline asms.
2009-07-09 Mikhail GlushenkovRemove some duplication.
2009-07-09 Mikhail GlushenkovRename -t to --temp-dir.
2009-07-09 Owen AndersonAs Chris pointed out, we don't actually need to pass...
2009-07-09 Chris Lattnerback out r75156 for now.
2009-07-09 Owen AndersonA little bit more LLVMContextification.
2009-07-09 David GoodwinHandle Thumb-2 addressing modes during FP elimination.
2009-07-09 David GreeneAdd some classes to produce pretty-printed asm. We...
2009-07-09 Sanjiv GuptaFixed handling of -t. It gets the prirority for temp...
2009-07-09 Owen AndersonThread LLVMContext through MVT and related parts of...
2009-07-09 Chris Lattneradd llvm-mc support for parsing the .lcomm directive...
2009-07-09 David GreeneAdd support for other GraphViz display tools. This...
2009-07-09 Chris Lattnerremove dead function.
2009-07-09 Eli FriedmanMisc encoding fixes; reported on llvmdev.
2009-07-09 Chris LattnereraseFromDisk no longer throws.
2009-07-09 Nick LewyckyThere's no need to consider PHI nodes in the same block...
2009-07-09 Nick LewyckyAdd some statistics to SSI so we can see what it's...
2009-07-09 Bill WendlingMissing )
2009-07-09 Sanjiv GuptaAdd a -t="dir" option to the driver. This can be used...
2009-07-09 Chris Lattnersimplify this logic a bit more.
2009-07-09 Chris Lattnermove reasoning about darwin $non_lazy_ptr stubs from...
2009-07-09 Evan ChengTargets sometimes assign fixed stack object to spill...
2009-07-09 Evan ChengReorg includes.
next