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