aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
Commit message (Expand)AuthorAgeFilesLines
* [ms-inline asm] Use the asm dialect from the MI to set the parser dialect.Chad Rosier2012-09-051-2/+4
* Cleanup a few magic numbers.Chad Rosier2012-09-052-2/+2
* Stop casting away const qualifier needlessly.Roman Divacky2012-09-055-7/+7
* [ms-inline asm] We only need one bit to represent the AsmDialect in theChad Rosier2012-09-052-11/+5
* Constify this properly. Found by gcc48 -Wcast-qual.Roman Divacky2012-09-051-4/+4
* Constify SDNodeIterator an stop its only non-const user being cast strippedRoman Divacky2012-09-051-1/+1
* [ms-inline asm] Propagate the asm dialect into the MachineInstr representation.Chad Rosier2012-09-052-1/+19
* Remove unused typedefs gcc4.8 warns about.Roman Divacky2012-09-051-1/+0
* Fixed the DAG combiner to better handle the folding of AND nodes for vector t...Silviu Baranga2012-09-051-1/+11
* Reorder the comments of EmitExceptionTable.Logan Chien2012-09-051-20/+20
* Convert vextracti128/vextractf128 intrinsics to extract_subvector at DAG buil...Craig Topper2012-09-051-1/+15
* Search the whole instruction for tied operands.Jakob Stoklund Olesen2012-09-041-2/+1
* Typo.Jakob Stoklund Olesen2012-09-041-1/+1
* Actually use the MachineOperand field for isRegTiedToDefOperand().Jakob Stoklund Olesen2012-09-041-103/+0
* Move tie checks into MachineVerifier::visitMachineOperand.Jakob Stoklund Olesen2012-09-041-36/+26
* Allow tied uses and defs in different orders.Jakob Stoklund Olesen2012-09-041-30/+91
* Generic Bypass Slow DivPreston Gurd2012-09-041-1/+0
* IRBuilderify the SjlLjEHPrepare pass.Benjamin Kramer2012-09-031-57/+25
* When updating live range endpoints, make sure to preserve the early clobber bit.Lang Hames2012-09-031-2/+2
* Fix a typo.Nadav Rotem2012-09-021-1/+1
* Generate better select code by allowing the target to use scalar select, and ...Nadav Rotem2012-09-021-4/+3
* Only legalise a VSELECT in to bitwise operations if the vector mask bool is z...Pete Cooper2012-09-011-1/+6
* Revert "Take account of boolean vector contents when promoting a build vector...Pete Cooper2012-09-011-17/+1
* Fix typo.Logan Chien2012-09-011-1/+1
* Teach DAG combine a number of tricks to simplify FMA expressions in fast-math...Owen Anderson2012-09-011-0/+64
* Fix typoMichael Liao2012-09-011-1/+1
* Add MachineInstr::tieOperands, remove setIsTied().Jakob Stoklund Olesen2012-08-312-12/+18
* Use CloneMachineInstr to make a new MI in commuteInstruction to make the code...Craig Topper2012-08-311-10/+1
* Don't enforce ordered inline asm operands.Jakob Stoklund Olesen2012-08-311-10/+0
* Take account of boolean vector contents when promoting a build vector from i1...Pete Cooper2012-08-301-1/+17
* Teach the DAG combiner to turn chains of FADDs (x+x+x+x+...) into FMULs by co...Owen Anderson2012-08-301-1/+122
* Currently targets that do not support selects with scalar conditions and vect...Nadav Rotem2012-08-301-1/+65
* Don't use MCInstrDesc flags for implicit operands.Jakob Stoklund Olesen2012-08-301-11/+16
* Add FMA to switch statement in VectorLegalizer::LegalizeOp so that it can be ...Craig Topper2012-08-301-0/+1
* Add support for FMA to WidenVectorResult.Craig Topper2012-08-302-0/+14
* Verify the order of tied operands in inline asm.Jakob Stoklund Olesen2012-08-291-0/+12
* Set the isTied flags when building INLINEASM MachineInstrs.Jakob Stoklund Olesen2012-08-291-4/+21
* Rename hasVolatileMemoryRef() to hasOrderedMemoryRef().Jakob Stoklund Olesen2012-08-292-9/+9
* Don't move normal loads across volatile/atomic loads.Jakob Stoklund Olesen2012-08-291-3/+8
* Verify the consistency of inline asm operands.Jakob Stoklund Olesen2012-08-291-16/+72
* Clean this up slightly, doesn't really fall through.Eric Christopher2012-08-291-2/+1
* Verify the tied operand flags.Jakob Stoklund Olesen2012-08-291-0/+37
* Maintain a vaild isTied bit as operands are added and removed.Jakob Stoklund Olesen2012-08-291-1/+39
* Add a MachineOperand::isTied() flag.Jakob Stoklund Olesen2012-08-281-21/+34
* Don't allow TargetFlags on MO_Register MachineOperands.Jakob Stoklund Olesen2012-08-281-2/+2
* Remove extra MayLoad/MayStore flags from atomic_load/store.Jakob Stoklund Olesen2012-08-281-18/+23
* Fix bug 13532.Akira Hatanaka2012-08-281-1/+1
* Fix integer undefined behavior due to signed left shift overflow in LLVM.Richard Smith2012-08-242-7/+5
* Avoid including explicit uses when counting SDNode imp-uses.Jakob Stoklund Olesen2012-08-241-3/+6
* BranchProb: modify the definition of an edge in BranchProbabilityInfo to handleManman Ren2012-08-243-28/+60