summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineInstr.cpp
diff options
context:
space:
mode:
authorPreston Gurd <preston.gurd@intel.com>2012-09-04 18:22:17 +0000
committerPreston Gurd <preston.gurd@intel.com>2012-09-04 18:22:17 +0000
commitcdf540d5d660383ce3ab2bcca5ec9ffe6422f108 (patch)
treefd80e8022658f3b76c3fd530dd9711411fb4251a /llvm/lib/CodeGen/MachineInstr.cpp
parent566359c0bf805b41c0f9f13cac3b70135581a10a (diff)
downloadbcm5719-llvm-cdf540d5d660383ce3ab2bcca5ec9ffe6422f108.tar.gz
bcm5719-llvm-cdf540d5d660383ce3ab2bcca5ec9ffe6422f108.zip
Generic Bypass Slow Div
- CodeGenPrepare pass for identifying div/rem ops - Backend specifies the type mapping using addBypassSlowDivType - Enabled only for Intel Atom with O2 32-bit -> 8-bit - Replace IDIV with instructions which test its value and use DIVB if the value is positive and less than 256. - In the case when the quotient and remainder of a divide are used a DIV and a REM instruction will be present in the IR. In the non-Atom case they are both lowered to IDIVs and CSE removes the redundant IDIV instruction, using the quotient and remainder from the first IDIV. However, due to this optimization CSE is not able to eliminate redundant IDIV instructions because they are located in different basic blocks. This is overcome by calculating both the quotient (DIV) and remainder (REM) in each basic block that is inserted by the optimization and reusing the result values when a subsequent DIV or REM instruction uses the same operands. - Test cases check for the presents of the optimization when calculating either the quotient, remainder, or both. Patch by Tyler Nowicki! llvm-svn: 163150
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud