summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add #include <cstdlib> and abort() to silence a warningMisha Brukman2004-08-021-5/+6
| | | | llvm-svn: 15413
* * ceil() requires #include <cmath> for compilationMisha Brukman2004-08-021-3/+4
| | | | | | | * Alphabetize #includes * Fix some lines to fit within 80 cols llvm-svn: 15412
* This pass has proven its metal, remove -disable option.Chris Lattner2004-08-021-5/+1
| | | | llvm-svn: 15411
* Fix a regression in InstCombine/xor.llChris Lattner2004-08-011-2/+2
| | | | llvm-svn: 15410
* Fix a warningChris Lattner2004-08-011-2/+1
| | | | llvm-svn: 15409
* Adding ModuloScheduling so that it compiles for everyone.Tanya Lattner2004-08-011-1/+1
| | | | llvm-svn: 15408
* Adding friend MSSchedule for ModuloScheduling pass.Tanya Lattner2004-08-011-0/+1
| | | | llvm-svn: 15407
* Fix warningChris Lattner2004-08-011-0/+2
| | | | llvm-svn: 15406
* Initial testcase for bytecode compatibility regression test.Chris Lattner2004-08-012-0/+97
| | | | llvm-svn: 15405
* Update.Reid Spencer2004-08-011-1/+2
| | | | llvm-svn: 15404
* Convert all I<> instructions to asmformat.Chris Lattner2004-08-011-224/+302
| | | | | | Delete the 'name' field of all instructions that have asmformats. llvm-svn: 15403
* Dereferencing end() is bad.Chris Lattner2004-08-011-1/+1
| | | | llvm-svn: 15402
* Add some immediate forms, make name optionalChris Lattner2004-08-011-2/+5
| | | | llvm-svn: 15401
* Be pickyChris Lattner2004-08-011-1/+5
| | | | llvm-svn: 15400
* Instructions no longer need to have names.Chris Lattner2004-08-011-1/+6
| | | | llvm-svn: 15399
* Eliminate 3 of the X86 printImplicit* flags.Chris Lattner2004-08-013-25/+3
| | | | llvm-svn: 15398
* Get rid of 3 of the 4 'printimplicit' flags. Implicit operands are nowChris Lattner2004-08-011-79/+1
| | | | | | explicitly listed in the asm string. llvm-svn: 15397
* Convert more instructions over to the asmprinterChris Lattner2004-08-011-50/+66
| | | | llvm-svn: 15396
* Handle registers a bit more efficientlyChris Lattner2004-08-011-1/+7
| | | | llvm-svn: 15395
* give FP stack registers namesChris Lattner2004-08-011-2/+5
| | | | llvm-svn: 15394
* Switch more instructions over to using the asmprinter. Fix bugs in the emissionChris Lattner2004-08-011-36/+47
| | | | | | of in/out instructions (missing %'s on registers). llvm-svn: 15393
* The tblgen'erated asmparser wants a way to print operands.Chris Lattner2004-08-011-0/+6
| | | | llvm-svn: 15392
* Add support for asm printing machine instructions that have operands.Chris Lattner2004-08-011-2/+48
| | | | llvm-svn: 15391
* Parse the operand list of the instruction. We currently support register ↵Chris Lattner2004-08-013-7/+54
| | | | | | and immediate operands. llvm-svn: 15390
* Rename the Printer class -> X86AsmPrinter.Chris Lattner2004-08-011-34/+46
| | | | | | Include the tablegenerated assembly writer. llvm-svn: 15389
* Factor a bunch of the rules and add support for generating the asmwriter.Chris Lattner2004-08-011-21/+23
| | | | llvm-svn: 15388
* Specify an asm string and operands lists for a bunch of instructions.Chris Lattner2004-08-011-38/+75
| | | | | | This only really covers no-operand instructions so far. llvm-svn: 15387
* Initial cut at an asm writer emitter. So far, this only handles emission ofChris Lattner2004-08-014-3/+99
| | | | | | instructions, and only instructions that take no operands at that! llvm-svn: 15386
* Add, and start using, the CodeGenInstruction class. This class representsChris Lattner2004-08-015-47/+144
| | | | | | an instance of the Instruction tablegen class. llvm-svn: 15385
* Add the 'ops' marker, add an AsmString initializerChris Lattner2004-08-011-1/+6
| | | | llvm-svn: 15383
* Rename CodeGenWrappers.(cpp|h) -> CodeGenTarget.(cpp|h)Chris Lattner2004-08-016-14/+13
| | | | llvm-svn: 15382
* Finegrainify namespacificationChris Lattner2004-08-018-41/+21
| | | | llvm-svn: 15381
* Completely disable the pattern isel until it is more substantial.Chris Lattner2004-08-011-0/+4
| | | | llvm-svn: 15380
* Entirely eliminate all patterns and expanders from this file. We shall goChris Lattner2004-08-011-82/+45
| | | | | | with an incremental approach rather than a revolutionary approach. llvm-svn: 15379
* Move the 'Expander' node to later in the file, with the other experimentalChris Lattner2004-08-011-15/+23
| | | | | | stuff. The pattern becomes a list, add some stuff, add some comments. llvm-svn: 15378
* Remove obsolete fileChris Lattner2004-08-011-393/+0
| | | | llvm-svn: 15377
* Make OptimizeBlock take a MachineFunction::iterator instead of aAlkis Evlogimenos2004-07-311-4/+4
| | | | | | | MachineBasicBlock* as a parameter so that nxext() and prior() helper functions can work naturally on it. llvm-svn: 15376
* Next on a pointer increments the pointer, not an iteratorChris Lattner2004-07-311-1/+1
| | | | llvm-svn: 15375
* Use next() helper to make code more readable. UseAlkis Evlogimenos2004-07-311-4/+6
| | | | | | | MachineFunction::iterator instead of MachineBasicBlock* to avoid dereferencing end iterators. llvm-svn: 15373
* Use MachineFunction::iterator instead of a MachineBasicBlock* becauseAlkis Evlogimenos2004-07-311-2/+3
| | | | | | FallThrough maybe == to MF.end(). llvm-svn: 15372
* Align breaks.Alkis Evlogimenos2004-07-311-6/+6
| | | | llvm-svn: 15371
* Expose breakcriticaledges as a functionpassChris Lattner2004-07-311-1/+1
| | | | llvm-svn: 15370
* Expose this as a functionpassChris Lattner2004-07-311-1/+3
| | | | llvm-svn: 15369
* Implement a simple target-independent CFG cleanup passChris Lattner2004-07-311-0/+201
| | | | llvm-svn: 15368
* New passChris Lattner2004-07-311-0/+6
| | | | llvm-svn: 15367
* Expose some helpful methodsChris Lattner2004-07-311-0/+8
| | | | llvm-svn: 15366
* Add breaksChris Lattner2004-07-311-12/+12
| | | | llvm-svn: 15365
* Simplify code a bit.Alkis Evlogimenos2004-07-311-3/+1
| | | | llvm-svn: 15364
* Correctly spell 'unconditional'.Alkis Evlogimenos2004-07-311-1/+1
| | | | llvm-svn: 15363
* Implement insertGoto and reverseBranchCondition for the X86.Alkis Evlogimenos2004-07-312-0/+43
| | | | llvm-svn: 15362
OpenPOWER on IntegriCloud