aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86ISelSimple.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix file header as it has been renamed.Misha Brukman2004-07-261-1/+1
* Fix cases where we generated horrible code like this:Chris Lattner2004-07-211-1/+7
* While I'm at it, don't break codegen of mul by 3,5,9.Chris Lattner2004-07-191-1/+1
* Generate better code for multiplies by negative constants like -4, -1, -9, etc.Chris Lattner2004-07-191-4/+42
* bug 122:Reid Spencer2004-07-181-14/+3
* Patches towards fixing PR341Chris Lattner2004-07-151-2/+2
* Improve codegen for the LLVM offsetof/sizeof "operator". Before we compiledChris Lattner2004-07-151-0/+15
* Fix a regression from r1.224. In particular, codegen a cast from double ->Chris Lattner2004-06-291-4/+11
* Move the IntrinsicLowering header into the CodeGen directory, as per PR346Chris Lattner2004-06-201-2/+3
* Codegen sub C, X a little bit better for register pressure. Instead ofChris Lattner2004-06-181-12/+27
* Fold setcc instructions into select and branches that are not in the same BB asChris Lattner2004-06-181-4/+2
* Do not fold loads into instructions if it is used more than once. In particularChris Lattner2004-06-171-1/+2
* Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner2004-06-171-4/+4
* Remove support for llvm.isnan. Alkis wins :)Chris Lattner2004-06-151-50/+0
* Add basic support for the isunordered intrinsic. The isnan stuff still needs...Chris Lattner2004-06-151-0/+9
* By far, one of the most common uses of isnan is to make 'isunordered'Chris Lattner2004-06-111-14/+59
* Now that compare instructions aren't lumped in with the other twoargfp instru...Chris Lattner2004-06-111-4/+4
* Add direct support for the isnan intrinsic, implementing test/Regression/Code...Chris Lattner2004-06-111-9/+22
* Fix for PR#366. We use getClassB() so that we can handle cast instructionsJohn Criswell2004-06-091-1/+1
* Convert to the new TargetMachine interface.Chris Lattner2004-06-021-1/+1
* Add some notes to myself, no functional changesChris Lattner2004-05-231-7/+19
* Generate branch machine instructions with MachineBasicBlock operands instead ofBrian Gaeke2004-05-141-7/+9
* Two more improvements for null pointer handling: storing a null pointerChris Lattner2004-05-131-3/+12
* Second half of my fixed-sized-alloca patch. This folds the LEA to computeChris Lattner2004-05-131-93/+179
* Substantially improve code generation for address exposed locals (aka fixedChris Lattner2004-05-131-64/+101
* Pass boolean constants into function calls more efficiently, generating:Chris Lattner2004-05-121-1/+7
* Fix a fairly serious pessimizaion that was preventing us from efficientlyChris Lattner2004-05-101-2/+3
* Fix some comments, avoid sign extending booleans when zero extend works fineChris Lattner2004-05-091-5/+5
* Generate more efficient code for casting booleans to integers (no sign extens...Chris Lattner2004-05-091-1/+1
* Codegen floating point stores of constants into integer instructions. ThisChris Lattner2004-05-071-15/+37
* Make comparisons against the null pointer as efficient as integer comparisonsChris Lattner2004-05-071-1/+8
* Remove unneeded checkChris Lattner2004-05-041-1/+0
* Improve signed division by power of 2 *dramatically* from this:Chris Lattner2004-05-041-9/+63
* Improve code generated for integer multiplications by 2,3,5,9Chris Lattner2004-05-041-2/+16
* Remove unused #includeChris Lattner2004-05-011-1/+0
* Make RequiresFPRegKill() take a MachineBasicBlock arg.Brian Gaeke2004-04-281-3/+3
* In InsertFPRegKills(), use the machine-CFG itself rather than theBrian Gaeke2004-04-281-3/+3
* Update the machine-CFG edges whenever we see a branch.Brian Gaeke2004-04-281-0/+5
* Remove code to adjust the iterator for llvm.readio and llvm.writeio.John Criswell2004-04-141-10/+0
* Added support for the llvm.readio and llvm.writeio intrinsics.John Criswell2004-04-131-0/+29
* Implement a small optimization, which papers over the problem inChris Lattner2004-04-131-3/+12
* Emit the immediate form of in/out when possible.Chris Lattner2004-04-131-49/+82
* Fix issues that the local allocator has dealing with instructions that implic...Chris Lattner2004-04-121-1/+5
* Use the fucomi[p] instructions to perform floating point comparisons insteadChris Lattner2004-04-121-3/+7
* Fix a bug in my load/cast folding patch.Chris Lattner2004-04-121-12/+14
* Adjust some comments, fix a bug in my previous patchChris Lattner2004-04-121-4/+4
* On X86, casting an integer to floating point requires going through memory.Chris Lattner2004-04-111-5/+33
* Implement folding of loads into floating point operations. This implements:Chris Lattner2004-04-111-20/+123
* Unify all of the code for floating point +,-,*,/ into one functionChris Lattner2004-04-111-151/+127
* This implements folding of constant operands into floating point operationsChris Lattner2004-04-111-9/+52