summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMFastISel.cpp
Commit message (Expand)AuthorAge
* Add bundle aware API for querying instruction properties and switch the codeEvan Cheng2011-12-07
* [arm-fast-isel] Doublewords only require word-alignment.Chad Rosier2011-12-06
* Fix 80-column issues.Bob Wilson2011-12-04
* [arm-fast-isel] Unaligned stores of floats require special care.Chad Rosier2011-12-03
* Move global variables in TargetMachine into new TargetOptions class. As an APINick Lewycky2011-12-02
* [arm-fast-isel] After promoting a function parameter be sure to update theChad Rosier2011-12-02
* Silence wrong warnings from GCC about variables possibly being usedDuncan Sands2011-11-28
* Guard call to getRegForValue with isTypeLegal check to avoid unnecessary work...Chad Rosier2011-11-18
* Add TODO comment.Chad Rosier2011-11-17
* Dead code.Chad Rosier2011-11-17
* Don't unconditionally set the kill flag.Chad Rosier2011-11-17
* Check to make sure we can select the instruction before trying to put theChad Rosier2011-11-16
* Add FIXME comment.Chad Rosier2011-11-16
* Remove some unnecessary includes of PseudoSourceValue.h.Jay Foad2011-11-15
* Supporting inline memmove isn't going to be worthwhile. The only way to avoidChad Rosier2011-11-14
* Add support for inlining small memcpys.Chad Rosier2011-11-14
* Fix a performance regression from r144565. Positive offsets were being loweredChad Rosier2011-11-14
* Add support for Thumb load/stores with negative offsets.Chad Rosier2011-11-14
* Add support for ARM halfword load/stores and signed byte loads with negativeChad Rosier2011-11-14
* The order in which the predicate is added differs between Thumb and ARM mode....Chad Rosier2011-11-13
* Temporarily disable SelectIntrinsicCall when in ARM mode. This is causing fai...Chad Rosier2011-11-13
* Fix comments.Chad Rosier2011-11-13
* Add support for emitting both signed- and zero-extend loads. Fix Chad Rosier2011-11-13
* Add support in fast-isel for selecting memset/memcpy/memmove intrinsics.Chad Rosier2011-11-11
* Rename variables to avoid confusion. No functionallity change intended.Chad Rosier2011-11-11
* Add support for using immediates with select instructions.Chad Rosier2011-11-11
* When loading a value, treat an i1 as an i8.Chad Rosier2011-11-11
* Add support for using MVN to materialize negative constants.Chad Rosier2011-11-11
* When in ARM mode, LDRH/STRH require special handling of negative offsets.Chad Rosier2011-11-10
* For immediate encodings of icmp, zero or sign extend first. ThenChad Rosier2011-11-10
* The ARM LDRH/STRH instructions use a +/-imm8 encoding, not an imm12.Chad Rosier2011-11-09
* Add support for encoding immediates in icmp and fcmp. Hopefully, this willChad Rosier2011-11-09
* ARMFastISel doesn't support thumb1. Rename isThumb to isThumb2 to reflect this.Chad Rosier2011-11-08
* Enable support for returning i1, i8, and i16. Nothing special todo as it's theChad Rosier2011-11-08
* Add support for passing i1, i8, and i16 call parameters. Also, be sure toChad Rosier2011-11-05
* Cannot create a result register for non-legal types.Chad Rosier2011-11-04
* When materializing an i32, SExt vs ZExt doesn't matter when we're trying to fitChad Rosier2011-11-04
* Enable support for materializing i1, i8, and i16 integers via move immediate.Chad Rosier2011-11-04
* Indentation.Chad Rosier2011-11-04
* Add fast-isel support for returning i1, i8, and i16.Chad Rosier2011-11-04
* Add support for sign-extending non-legal types in SelectSIToFP().Chad Rosier2011-11-03
* Add support for comparing integer non-legal types.Chad Rosier2011-11-02
* Factor out an EmitIntExt function. No functionality change intended.Chad Rosier2011-11-02
* Factor out a SelectTrunc function. No functionality change intended.Chad Rosier2011-11-02
* A branch predicated on a constant can just FastEmit an unconditional branch.Chad Rosier2011-10-27
* Add a TODO comment. FastISel works by parsing each basic block from the bottomChad Rosier2011-10-26
* Factor a little more code into EmitCmp, which should have been done in the firstChad Rosier2011-10-26
* Use EmitCmp in SelectBranch. No functional change intended.Chad Rosier2011-10-26
* Factor out an EmitCmp function that can be used by both SelectCmp andChad Rosier2011-10-26
* Add a few FIXME comments.Chad Rosier2011-10-17