Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More bundle related API additions. | Evan Cheng | 2012-01-19 | 1 | -1/+52 |
| | | | | llvm-svn: 148465 | ||||
* | Enhance finalizeBundle to return end of bundle iterator because it makes sense. | Evan Cheng | 2012-01-19 | 1 | -3/+6 |
| | | | | llvm-svn: 148462 | ||||
* | - Slight change to finalizeBundle() interface. LastMI is not exclusive (pointing | Evan Cheng | 2012-01-19 | 1 | -3/+18 |
| | | | | | | | | | | | to instruction right after the last instruction in the bundle. - Add a finalizeBundle() variant that doesn't specify LastMI. Instead, the code will find the last instruction in the bundle by following the 'InsideBundle' marker. This is useful in case bundles are formed early (i.e. during MI scheduling) but finalized later (i.e. after register allocator has finished rewriting virtual registers with physical registers). llvm-svn: 148444 | ||||
* | Rename Finalizebundle to finalizeBundle to conform to coding guideline. | Evan Cheng | 2012-01-19 | 1 | -2/+2 |
| | | | | llvm-svn: 148440 | ||||
* | - Add MachineInstrBundle.h and MachineInstrBundle.cpp. This includes a function | Evan Cheng | 2011-12-14 | 1 | -0/+180 |
to finalize MI bundles (i.e. add BUNDLE instruction and computing register def and use lists of the BUNDLE instruction) and a pass to unpack bundles. - Teach more of MachineBasic and MachineInstr methods to be bundle aware. - Switch Thumb2 IT block to MI bundles and delete the hazard recognizer hack to prevent IT blocks from being broken apart. llvm-svn: 146542 |