Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 1 | //===- IfConversion.cpp - Machine code if conversion pass -----------------===// |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
Justin Lebar | acc4710 | 2016-04-01 01:09:03 +0000 | [diff] [blame] | 9 | // This file implements the machine instruction level if-conversion pass, which |
| 10 | // tries to convert conditional branches into predicated instructions. |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "BranchFolding.h" |
| 15 | #include "llvm/ADT/STLExtras.h" |
Kyle Butt | d76755e | 2016-08-18 22:09:23 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/ScopeExit.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallSet.h" |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallVector.h" |
| 19 | #include "llvm/ADT/SparseSet.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/Statistic.h" |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/iterator_range.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/LivePhysRegs.h" |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Akira Hatanaka | bbd33f6 | 2014-08-07 19:30:13 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
Jakub Staszak | 3ef20e3 | 2011-08-03 22:53:41 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineBranchProbabilityInfo.h" |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineFunction.h" |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineInstr.h" |
Jakob Stoklund Olesen | f623e98 | 2012-12-20 18:08:06 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineOperand.h" |
Evan Cheng | c5adcca | 2012-06-08 21:53:50 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/TargetLowering.h" |
| 35 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/TargetSchedule.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 38 | #include "llvm/IR/DebugLoc.h" |
| 39 | #include "llvm/MC/MCRegisterInfo.h" |
| 40 | #include "llvm/Pass.h" |
| 41 | #include "llvm/Support/BranchProbability.h" |
Evan Cheng | e93ccc0 | 2007-06-08 19:10:51 +0000 | [diff] [blame] | 42 | #include "llvm/Support/CommandLine.h" |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 43 | #include "llvm/Support/Debug.h" |
Torok Edwin | ccb29cd | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 44 | #include "llvm/Support/ErrorHandling.h" |
| 45 | #include "llvm/Support/raw_ostream.h" |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 46 | #include <algorithm> |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 47 | #include <cassert> |
| 48 | #include <functional> |
| 49 | #include <iterator> |
| 50 | #include <memory> |
Benjamin Kramer | 82de7d3 | 2016-05-27 14:27:24 +0000 | [diff] [blame] | 51 | #include <utility> |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 52 | #include <vector> |
Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 53 | |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 54 | using namespace llvm; |
| 55 | |
Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 56 | #define DEBUG_TYPE "if-converter" |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 57 | |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 58 | // Hidden options for help debugging. |
| 59 | static cl::opt<int> IfCvtFnStart("ifcvt-fn-start", cl::init(-1), cl::Hidden); |
| 60 | static cl::opt<int> IfCvtFnStop("ifcvt-fn-stop", cl::init(-1), cl::Hidden); |
| 61 | static cl::opt<int> IfCvtLimit("ifcvt-limit", cl::init(-1), cl::Hidden); |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 62 | static cl::opt<bool> DisableSimple("disable-ifcvt-simple", |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 63 | cl::init(false), cl::Hidden); |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 64 | static cl::opt<bool> DisableSimpleF("disable-ifcvt-simple-false", |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 65 | cl::init(false), cl::Hidden); |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 66 | static cl::opt<bool> DisableTriangle("disable-ifcvt-triangle", |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 67 | cl::init(false), cl::Hidden); |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 68 | static cl::opt<bool> DisableTriangleR("disable-ifcvt-triangle-rev", |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 69 | cl::init(false), cl::Hidden); |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 70 | static cl::opt<bool> DisableTriangleF("disable-ifcvt-triangle-false", |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 71 | cl::init(false), cl::Hidden); |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 72 | static cl::opt<bool> DisableTriangleFR("disable-ifcvt-triangle-false-rev", |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 73 | cl::init(false), cl::Hidden); |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 74 | static cl::opt<bool> DisableDiamond("disable-ifcvt-diamond", |
Chris Lattner | 769c86b | 2008-01-07 05:40:58 +0000 | [diff] [blame] | 75 | cl::init(false), cl::Hidden); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 76 | static cl::opt<bool> DisableForkedDiamond("disable-ifcvt-forked-diamond", |
| 77 | cl::init(false), cl::Hidden); |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 78 | static cl::opt<bool> IfCvtBranchFold("ifcvt-branch-fold", |
| 79 | cl::init(true), cl::Hidden); |
Evan Cheng | e93ccc0 | 2007-06-08 19:10:51 +0000 | [diff] [blame] | 80 | |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 81 | STATISTIC(NumSimple, "Number of simple if-conversions performed"); |
| 82 | STATISTIC(NumSimpleFalse, "Number of simple (F) if-conversions performed"); |
| 83 | STATISTIC(NumTriangle, "Number of triangle if-conversions performed"); |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 84 | STATISTIC(NumTriangleRev, "Number of triangle (R) if-conversions performed"); |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 85 | STATISTIC(NumTriangleFalse,"Number of triangle (F) if-conversions performed"); |
| 86 | STATISTIC(NumTriangleFRev, "Number of triangle (F/R) if-conversions performed"); |
| 87 | STATISTIC(NumDiamonds, "Number of diamond if-conversions performed"); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 88 | STATISTIC(NumForkedDiamonds, "Number of forked-diamond if-conversions performed"); |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 89 | STATISTIC(NumIfConvBBs, "Number of if-converted blocks"); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 90 | STATISTIC(NumDupBBs, "Number of duplicated blocks"); |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 91 | STATISTIC(NumUnpred, "Number of true blocks of diamonds unpredicated"); |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 92 | |
| 93 | namespace { |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 94 | |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 95 | class IfConverter : public MachineFunctionPass { |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 96 | enum IfcvtKind { |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 97 | ICNotClassfied, // BB data valid, but not classified. |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 98 | ICSimpleFalse, // Same as ICSimple, but on the false path. |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 99 | ICSimple, // BB is entry of an one split, no rejoin sub-CFG. |
| 100 | ICTriangleFRev, // Same as ICTriangleFalse, but false path rev condition. |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 101 | ICTriangleRev, // Same as ICTriangle, but true path rev condition. |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 102 | ICTriangleFalse, // Same as ICTriangle, but on the false path. |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 103 | ICTriangle, // BB is entry of a triangle sub-CFG. |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 104 | ICDiamond, // BB is entry of a diamond sub-CFG. |
| 105 | ICForkedDiamond // BB is entry of an almost diamond sub-CFG, with a |
| 106 | // common tail that can be shared. |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 107 | }; |
| 108 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 109 | /// One per MachineBasicBlock, this is used to cache the result |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 110 | /// if-conversion feasibility analysis. This includes results from |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 111 | /// TargetInstrInfo::analyzeBranch() (i.e. TBB, FBB, and Cond), and its |
Evan Cheng | 0f745da | 2007-05-18 00:20:58 +0000 | [diff] [blame] | 112 | /// classification, and common tail block of its successors (if it's a |
Evan Cheng | 2e82cef | 2007-05-18 18:14:37 +0000 | [diff] [blame] | 113 | /// diamond shape), its size, whether it's predicable, and whether any |
| 114 | /// instruction can clobber the 'would-be' predicate. |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 115 | /// |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 116 | /// IsDone - True if BB is not to be considered for ifcvt. |
| 117 | /// IsBeingAnalyzed - True if BB is currently being analyzed. |
| 118 | /// IsAnalyzed - True if BB has been analyzed (info is still valid). |
| 119 | /// IsEnqueued - True if BB has been enqueued to be ifcvt'ed. |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 120 | /// IsBrAnalyzable - True if analyzeBranch() returns false. |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 121 | /// HasFallThrough - True if BB may fallthrough to the following BB. |
| 122 | /// IsUnpredicable - True if BB is known to be unpredicable. |
Evan Cheng | fbc7309 | 2007-07-10 17:50:43 +0000 | [diff] [blame] | 123 | /// ClobbersPred - True if BB could modify predicates (e.g. has |
Evan Cheng | 9030b98 | 2007-06-06 10:16:17 +0000 | [diff] [blame] | 124 | /// cmp, call, etc.) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 125 | /// NonPredSize - Number of non-predicated instructions. |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 126 | /// ExtraCost - Extra cost for multi-cycle instructions. |
| 127 | /// ExtraCost2 - Some instructions are slower when predicated |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 128 | /// BB - Corresponding MachineBasicBlock. |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 129 | /// TrueBB / FalseBB- See analyzeBranch(). |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 130 | /// BrCond - Conditions for end of block conditional branches. |
| 131 | /// Predicate - Predicate used in the BB. |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 132 | struct BBInfo { |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 133 | bool IsDone : 1; |
| 134 | bool IsBeingAnalyzed : 1; |
| 135 | bool IsAnalyzed : 1; |
| 136 | bool IsEnqueued : 1; |
| 137 | bool IsBrAnalyzable : 1; |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 138 | bool IsBrReversible : 1; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 139 | bool HasFallThrough : 1; |
| 140 | bool IsUnpredicable : 1; |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 141 | bool CannotBeCopied : 1; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 142 | bool ClobbersPred : 1; |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 143 | unsigned NonPredSize = 0; |
| 144 | unsigned ExtraCost = 0; |
| 145 | unsigned ExtraCost2 = 0; |
| 146 | MachineBasicBlock *BB = nullptr; |
| 147 | MachineBasicBlock *TrueBB = nullptr; |
| 148 | MachineBasicBlock *FalseBB = nullptr; |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 149 | SmallVector<MachineOperand, 4> BrCond; |
| 150 | SmallVector<MachineOperand, 4> Predicate; |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 151 | |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 152 | BBInfo() : IsDone(false), IsBeingAnalyzed(false), |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 153 | IsAnalyzed(false), IsEnqueued(false), IsBrAnalyzable(false), |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 154 | IsBrReversible(false), HasFallThrough(false), |
| 155 | IsUnpredicable(false), CannotBeCopied(false), |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 156 | ClobbersPred(false) {} |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 157 | }; |
| 158 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 159 | /// Record information about pending if-conversions to attempt: |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 160 | /// BBI - Corresponding BBInfo. |
| 161 | /// Kind - Type of block. See IfcvtKind. |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 162 | /// NeedSubsumption - True if the to-be-predicated BB has already been |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 163 | /// predicated. |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 164 | /// NumDups - Number of instructions that would be duplicated due |
| 165 | /// to this if-conversion. (For diamonds, the number of |
| 166 | /// identical instructions at the beginnings of both |
| 167 | /// paths). |
| 168 | /// NumDups2 - For diamonds, the number of identical instructions |
| 169 | /// at the ends of both paths. |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 170 | struct IfcvtToken { |
| 171 | BBInfo &BBI; |
| 172 | IfcvtKind Kind; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 173 | unsigned NumDups; |
| 174 | unsigned NumDups2; |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 175 | bool NeedSubsumption : 1; |
| 176 | bool TClobbersPred : 1; |
| 177 | bool FClobbersPred : 1; |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 178 | |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 179 | IfcvtToken(BBInfo &b, IfcvtKind k, bool s, unsigned d, unsigned d2 = 0, |
| 180 | bool tc = false, bool fc = false) |
| 181 | : BBI(b), Kind(k), NumDups(d), NumDups2(d2), NeedSubsumption(s), |
| 182 | TClobbersPred(tc), FClobbersPred(fc) {} |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 183 | }; |
| 184 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 185 | /// Results of if-conversion feasibility analysis indexed by basic block |
| 186 | /// number. |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 187 | std::vector<BBInfo> BBAnalysis; |
Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 188 | TargetSchedModel SchedModel; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 189 | |
Benjamin Kramer | 56b31bd | 2013-01-11 20:05:37 +0000 | [diff] [blame] | 190 | const TargetLoweringBase *TLI; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 191 | const TargetInstrInfo *TII; |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 192 | const TargetRegisterInfo *TRI; |
Jakub Staszak | 15e5b74 | 2011-08-03 22:34:43 +0000 | [diff] [blame] | 193 | const MachineBranchProbabilityInfo *MBPI; |
Evan Cheng | c5adcca | 2012-06-08 21:53:50 +0000 | [diff] [blame] | 194 | MachineRegisterInfo *MRI; |
Jakub Staszak | 15e5b74 | 2011-08-03 22:34:43 +0000 | [diff] [blame] | 195 | |
Juergen Ributzka | 310034e | 2013-12-14 06:52:56 +0000 | [diff] [blame] | 196 | LivePhysRegs Redefs; |
Andrew Trick | 276dd45 | 2013-10-14 20:45:17 +0000 | [diff] [blame] | 197 | |
Evan Cheng | c5adcca | 2012-06-08 21:53:50 +0000 | [diff] [blame] | 198 | bool PreRegAlloc; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 199 | bool MadeChange; |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 200 | int FnNum = -1; |
Matthias Braun | 8b38ffa | 2016-10-24 23:23:02 +0000 | [diff] [blame] | 201 | std::function<bool(const MachineFunction &)> PredicateFtor; |
Akira Hatanaka | 4a61619 | 2015-06-08 18:50:43 +0000 | [diff] [blame] | 202 | |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 203 | public: |
| 204 | static char ID; |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 205 | |
Matthias Braun | 8b38ffa | 2016-10-24 23:23:02 +0000 | [diff] [blame] | 206 | IfConverter(std::function<bool(const MachineFunction &)> Ftor = nullptr) |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 207 | : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 208 | initializeIfConverterPass(*PassRegistry::getPassRegistry()); |
| 209 | } |
Jakub Staszak | 15e5b74 | 2011-08-03 22:34:43 +0000 | [diff] [blame] | 210 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 211 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Akira Hatanaka | bbd33f6 | 2014-08-07 19:30:13 +0000 | [diff] [blame] | 212 | AU.addRequired<MachineBlockFrequencyInfo>(); |
Jakub Staszak | 15e5b74 | 2011-08-03 22:34:43 +0000 | [diff] [blame] | 213 | AU.addRequired<MachineBranchProbabilityInfo>(); |
Owen Anderson | 1b35f4c | 2010-09-28 20:42:15 +0000 | [diff] [blame] | 214 | MachineFunctionPass::getAnalysisUsage(AU); |
| 215 | } |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 216 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 217 | bool runOnMachineFunction(MachineFunction &MF) override; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 218 | |
Derek Schuff | 1dbf7a5 | 2016-04-04 17:09:25 +0000 | [diff] [blame] | 219 | MachineFunctionProperties getRequiredProperties() const override { |
| 220 | return MachineFunctionProperties().set( |
Matthias Braun | 1eb4736 | 2016-08-25 01:27:13 +0000 | [diff] [blame] | 221 | MachineFunctionProperties::Property::NoVRegs); |
Derek Schuff | 1dbf7a5 | 2016-04-04 17:09:25 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 224 | private: |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 225 | bool reverseBranchCondition(BBInfo &BBI) const; |
Owen Anderson | f31f33e | 2010-10-01 22:45:50 +0000 | [diff] [blame] | 226 | bool ValidSimple(BBInfo &TrueBBI, unsigned &Dups, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 227 | BranchProbability Prediction) const; |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 228 | bool ValidTriangle(BBInfo &TrueBBI, BBInfo &FalseBBI, |
Owen Anderson | f31f33e | 2010-10-01 22:45:50 +0000 | [diff] [blame] | 229 | bool FalseBranch, unsigned &Dups, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 230 | BranchProbability Prediction) const; |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 231 | bool CountDuplicatedInstructions( |
| 232 | MachineBasicBlock::iterator &TIB, MachineBasicBlock::iterator &FIB, |
| 233 | MachineBasicBlock::iterator &TIE, MachineBasicBlock::iterator &FIE, |
| 234 | unsigned &Dups1, unsigned &Dups2, |
| 235 | MachineBasicBlock &TBB, MachineBasicBlock &FBB, |
| 236 | bool SkipUnconditionalBranches) const; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 237 | bool ValidDiamond(BBInfo &TrueBBI, BBInfo &FalseBBI, |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 238 | unsigned &Dups1, unsigned &Dups2, |
| 239 | BBInfo &TrueBBICalc, BBInfo &FalseBBICalc) const; |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 240 | bool ValidForkedDiamond(BBInfo &TrueBBI, BBInfo &FalseBBI, |
| 241 | unsigned &Dups1, unsigned &Dups2, |
| 242 | BBInfo &TrueBBICalc, BBInfo &FalseBBICalc) const; |
Kyle Butt | 54bf3ce | 2016-08-06 01:52:34 +0000 | [diff] [blame] | 243 | void AnalyzeBranches(BBInfo &BBI); |
| 244 | void ScanInstructions(BBInfo &BBI, |
| 245 | MachineBasicBlock::iterator &Begin, |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 246 | MachineBasicBlock::iterator &End, |
| 247 | bool BranchUnpredicable = false) const; |
| 248 | bool RescanInstructions( |
| 249 | MachineBasicBlock::iterator &TIB, MachineBasicBlock::iterator &FIB, |
| 250 | MachineBasicBlock::iterator &TIE, MachineBasicBlock::iterator &FIE, |
| 251 | BBInfo &TrueBBI, BBInfo &FalseBBI) const; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 252 | void AnalyzeBlock(MachineBasicBlock &MBB, |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 253 | std::vector<std::unique_ptr<IfcvtToken>> &Tokens); |
Fangrui Song | cb0bab8 | 2018-07-16 18:51:40 +0000 | [diff] [blame] | 254 | bool FeasibilityAnalysis(BBInfo &BBI, SmallVectorImpl<MachineOperand> &Pred, |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 255 | bool isTriangle = false, bool RevBranch = false, |
| 256 | bool hasCommonTail = false); |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 257 | void AnalyzeBlocks(MachineFunction &MF, |
| 258 | std::vector<std::unique_ptr<IfcvtToken>> &Tokens); |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 259 | void InvalidatePreds(MachineBasicBlock &MBB); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 260 | bool IfConvertSimple(BBInfo &BBI, IfcvtKind Kind); |
| 261 | bool IfConvertTriangle(BBInfo &BBI, IfcvtKind Kind); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 262 | bool IfConvertDiamondCommon(BBInfo &BBI, BBInfo &TrueBBI, BBInfo &FalseBBI, |
| 263 | unsigned NumDups1, unsigned NumDups2, |
| 264 | bool TClobbersPred, bool FClobbersPred, |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 265 | bool RemoveBranch, bool MergeAddEdges); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 266 | bool IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind, |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 267 | unsigned NumDups1, unsigned NumDups2, |
| 268 | bool TClobbers, bool FClobbers); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 269 | bool IfConvertForkedDiamond(BBInfo &BBI, IfcvtKind Kind, |
| 270 | unsigned NumDups1, unsigned NumDups2, |
| 271 | bool TClobbers, bool FClobbers); |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 272 | void PredicateBlock(BBInfo &BBI, |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 273 | MachineBasicBlock::iterator E, |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 274 | SmallVectorImpl<MachineOperand> &Cond, |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 275 | SmallSet<MCPhysReg, 4> *LaterRedefs = nullptr); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 276 | void CopyAndPredicateBlock(BBInfo &ToBBI, BBInfo &FromBBI, |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 277 | SmallVectorImpl<MachineOperand> &Cond, |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 278 | bool IgnoreBr = false); |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 279 | void MergeBlocks(BBInfo &ToBBI, BBInfo &FromBBI, bool AddEdges = true); |
Evan Cheng | 20e0599 | 2007-06-01 00:12:12 +0000 | [diff] [blame] | 280 | |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 281 | bool MeetIfcvtSizeLimit(MachineBasicBlock &BB, |
| 282 | unsigned Cycle, unsigned Extra, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 283 | BranchProbability Prediction) const { |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 284 | return Cycle > 0 && TII->isProfitableToIfCvt(BB, Cycle, Extra, |
Jakub Staszak | 9b07c0a | 2011-07-10 02:58:07 +0000 | [diff] [blame] | 285 | Prediction); |
Evan Cheng | 02b184d | 2010-06-25 22:42:03 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 288 | bool MeetIfcvtSizeLimit(MachineBasicBlock &TBB, |
| 289 | unsigned TCycle, unsigned TExtra, |
| 290 | MachineBasicBlock &FBB, |
| 291 | unsigned FCycle, unsigned FExtra, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 292 | BranchProbability Prediction) const { |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 293 | return TCycle > 0 && FCycle > 0 && |
| 294 | TII->isProfitableToIfCvt(TBB, TCycle, TExtra, FBB, FCycle, FExtra, |
Jakub Staszak | 9b07c0a | 2011-07-10 02:58:07 +0000 | [diff] [blame] | 295 | Prediction); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 296 | } |
| 297 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 298 | /// Returns true if Block ends without a terminator. |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 299 | bool blockAlwaysFallThrough(BBInfo &BBI) const { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 300 | return BBI.IsBrAnalyzable && BBI.TrueBB == nullptr; |
Evan Cheng | 9030b98 | 2007-06-06 10:16:17 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 303 | /// Used to sort if-conversion candidates. |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 304 | static bool IfcvtTokenCmp(const std::unique_ptr<IfcvtToken> &C1, |
| 305 | const std::unique_ptr<IfcvtToken> &C2) { |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 306 | int Incr1 = (C1->Kind == ICDiamond) |
| 307 | ? -(int)(C1->NumDups + C1->NumDups2) : (int)C1->NumDups; |
| 308 | int Incr2 = (C2->Kind == ICDiamond) |
| 309 | ? -(int)(C2->NumDups + C2->NumDups2) : (int)C2->NumDups; |
| 310 | if (Incr1 > Incr2) |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 311 | return true; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 312 | else if (Incr1 == Incr2) { |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 313 | // Favors subsumption. |
David Blaikie | dc3f01e | 2015-03-09 01:57:13 +0000 | [diff] [blame] | 314 | if (!C1->NeedSubsumption && C2->NeedSubsumption) |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 315 | return true; |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 316 | else if (C1->NeedSubsumption == C2->NeedSubsumption) { |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 317 | // Favors diamond over triangle, etc. |
| 318 | if ((unsigned)C1->Kind < (unsigned)C2->Kind) |
| 319 | return true; |
| 320 | else if (C1->Kind == C2->Kind) |
| 321 | return C1->BBI.BB->getNumber() < C2->BBI.BB->getNumber(); |
| 322 | } |
| 323 | } |
| 324 | return false; |
Evan Cheng | 20e0599 | 2007-06-01 00:12:12 +0000 | [diff] [blame] | 325 | } |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 326 | }; |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 327 | |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 328 | } // end anonymous namespace |
| 329 | |
| 330 | char IfConverter::ID = 0; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 331 | |
Andrew Trick | 1fa5bcb | 2012-02-08 21:23:13 +0000 | [diff] [blame] | 332 | char &llvm::IfConverterID = IfConverter::ID; |
| 333 | |
Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 334 | INITIALIZE_PASS_BEGIN(IfConverter, DEBUG_TYPE, "If Converter", false, false) |
Jakub Staszak | 15e5b74 | 2011-08-03 22:34:43 +0000 | [diff] [blame] | 335 | INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo) |
Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 336 | INITIALIZE_PASS_END(IfConverter, DEBUG_TYPE, "If Converter", false, false) |
Bob Wilson | 97b9312 | 2009-10-28 20:46:46 +0000 | [diff] [blame] | 337 | |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 338 | bool IfConverter::runOnMachineFunction(MachineFunction &MF) { |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 339 | if (skipFunction(MF.getFunction()) || (PredicateFtor && !PredicateFtor(MF))) |
Akira Hatanaka | 4a61619 | 2015-06-08 18:50:43 +0000 | [diff] [blame] | 340 | return false; |
| 341 | |
Eric Christopher | 3d4276f | 2015-01-27 07:31:29 +0000 | [diff] [blame] | 342 | const TargetSubtargetInfo &ST = MF.getSubtarget(); |
| 343 | TLI = ST.getTargetLowering(); |
| 344 | TII = ST.getInstrInfo(); |
| 345 | TRI = ST.getRegisterInfo(); |
Haicheng Wu | 5b458cc | 2016-06-09 15:24:29 +0000 | [diff] [blame] | 346 | BranchFolder::MBFIWrapper MBFI(getAnalysis<MachineBlockFrequencyInfo>()); |
Jakub Staszak | 15e5b74 | 2011-08-03 22:34:43 +0000 | [diff] [blame] | 347 | MBPI = &getAnalysis<MachineBranchProbabilityInfo>(); |
Evan Cheng | c5adcca | 2012-06-08 21:53:50 +0000 | [diff] [blame] | 348 | MRI = &MF.getRegInfo(); |
Sanjay Patel | 0d7df36 | 2018-04-08 19:56:04 +0000 | [diff] [blame] | 349 | SchedModel.init(&ST); |
Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 350 | |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 351 | if (!TII) return false; |
| 352 | |
Evan Cheng | c5adcca | 2012-06-08 21:53:50 +0000 | [diff] [blame] | 353 | PreRegAlloc = MRI->isSSA(); |
| 354 | |
| 355 | bool BFChange = false; |
| 356 | if (!PreRegAlloc) { |
| 357 | // Tail merge tend to expose more if-conversion opportunities. |
Haicheng Wu | 5b458cc | 2016-06-09 15:24:29 +0000 | [diff] [blame] | 358 | BranchFolder BF(true, false, MBFI, *MBPI); |
Eric Christopher | 3d4276f | 2015-01-27 07:31:29 +0000 | [diff] [blame] | 359 | BFChange = BF.OptimizeFunction(MF, TII, ST.getRegisterInfo(), |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 360 | getAnalysisIfAvailable<MachineModuleInfo>()); |
Evan Cheng | c5adcca | 2012-06-08 21:53:50 +0000 | [diff] [blame] | 361 | } |
Evan Cheng | 2d51c7c | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 362 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 363 | LLVM_DEBUG(dbgs() << "\nIfcvt: function (" << ++FnNum << ") \'" |
| 364 | << MF.getName() << "\'"); |
Evan Cheng | e93ccc0 | 2007-06-08 19:10:51 +0000 | [diff] [blame] | 365 | |
| 366 | if (FnNum < IfCvtFnStart || (IfCvtFnStop != -1 && FnNum > IfCvtFnStop)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 367 | LLVM_DEBUG(dbgs() << " skipped\n"); |
Evan Cheng | e93ccc0 | 2007-06-08 19:10:51 +0000 | [diff] [blame] | 368 | return false; |
| 369 | } |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 370 | LLVM_DEBUG(dbgs() << "\n"); |
Evan Cheng | 20e0599 | 2007-06-01 00:12:12 +0000 | [diff] [blame] | 371 | |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 372 | MF.RenumberBlocks(); |
Evan Cheng | 20e0599 | 2007-06-01 00:12:12 +0000 | [diff] [blame] | 373 | BBAnalysis.resize(MF.getNumBlockIDs()); |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 374 | |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 375 | std::vector<std::unique_ptr<IfcvtToken>> Tokens; |
Evan Cheng | 478b805 | 2007-05-18 01:55:58 +0000 | [diff] [blame] | 376 | MadeChange = false; |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 377 | unsigned NumIfCvts = NumSimple + NumSimpleFalse + NumTriangle + |
| 378 | NumTriangleRev + NumTriangleFalse + NumTriangleFRev + NumDiamonds; |
| 379 | while (IfCvtLimit == -1 || (int)NumIfCvts < IfCvtLimit) { |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 380 | // Do an initial analysis for each basic block and find all the potential |
| 381 | // candidates to perform if-conversion. |
Bob Wilson | fc7d739 | 2010-06-15 18:57:15 +0000 | [diff] [blame] | 382 | bool Change = false; |
| 383 | AnalyzeBlocks(MF, Tokens); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 384 | while (!Tokens.empty()) { |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 385 | std::unique_ptr<IfcvtToken> Token = std::move(Tokens.back()); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 386 | Tokens.pop_back(); |
| 387 | BBInfo &BBI = Token->BBI; |
| 388 | IfcvtKind Kind = Token->Kind; |
Nuno Lopes | 57c6594 | 2008-11-04 13:02:59 +0000 | [diff] [blame] | 389 | unsigned NumDups = Token->NumDups; |
Duncan Sands | dd571d3 | 2008-11-04 18:05:30 +0000 | [diff] [blame] | 390 | unsigned NumDups2 = Token->NumDups2; |
Nuno Lopes | 57c6594 | 2008-11-04 13:02:59 +0000 | [diff] [blame] | 391 | |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 392 | // If the block has been evicted out of the queue or it has already been |
| 393 | // marked dead (due to it being predicated), then skip it. |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 394 | if (BBI.IsDone) |
| 395 | BBI.IsEnqueued = false; |
| 396 | if (!BBI.IsEnqueued) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 397 | continue; |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 398 | |
Evan Cheng | 1e6f08b | 2007-06-14 20:28:52 +0000 | [diff] [blame] | 399 | BBI.IsEnqueued = false; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 400 | |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 401 | bool RetVal = false; |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 402 | switch (Kind) { |
Craig Topper | ee4dab5 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 403 | default: llvm_unreachable("Unexpected!"); |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 404 | case ICSimple: |
Evan Cheng | b30a894 | 2007-06-06 01:12:44 +0000 | [diff] [blame] | 405 | case ICSimpleFalse: { |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 406 | bool isFalse = Kind == ICSimpleFalse; |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 407 | if ((isFalse && DisableSimpleF) || (!isFalse && DisableSimple)) break; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 408 | LLVM_DEBUG(dbgs() << "Ifcvt (Simple" |
| 409 | << (Kind == ICSimpleFalse ? " false" : "") |
| 410 | << "): " << printMBBReference(*BBI.BB) << " (" |
| 411 | << ((Kind == ICSimpleFalse) ? BBI.FalseBB->getNumber() |
| 412 | : BBI.TrueBB->getNumber()) |
| 413 | << ") "); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 414 | RetVal = IfConvertSimple(BBI, Kind); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 415 | LLVM_DEBUG(dbgs() << (RetVal ? "succeeded!" : "failed!") << "\n"); |
Anton Korobeynikov | 035eaac | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 416 | if (RetVal) { |
Dan Gohman | d2d1ae1 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 417 | if (isFalse) ++NumSimpleFalse; |
| 418 | else ++NumSimple; |
Anton Korobeynikov | 035eaac | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 419 | } |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 420 | break; |
Evan Cheng | b30a894 | 2007-06-06 01:12:44 +0000 | [diff] [blame] | 421 | } |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 422 | case ICTriangle: |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 423 | case ICTriangleRev: |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 424 | case ICTriangleFalse: |
Reid Spencer | 14b62a5 | 2007-06-10 00:19:17 +0000 | [diff] [blame] | 425 | case ICTriangleFRev: { |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 426 | bool isFalse = Kind == ICTriangleFalse; |
| 427 | bool isRev = (Kind == ICTriangleRev || Kind == ICTriangleFRev); |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 428 | if (DisableTriangle && !isFalse && !isRev) break; |
| 429 | if (DisableTriangleR && !isFalse && isRev) break; |
| 430 | if (DisableTriangleF && isFalse && !isRev) break; |
| 431 | if (DisableTriangleFR && isFalse && isRev) break; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 432 | LLVM_DEBUG(dbgs() << "Ifcvt (Triangle"); |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 433 | if (isFalse) |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 434 | LLVM_DEBUG(dbgs() << " false"); |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 435 | if (isRev) |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 436 | LLVM_DEBUG(dbgs() << " rev"); |
| 437 | LLVM_DEBUG(dbgs() << "): " << printMBBReference(*BBI.BB) |
| 438 | << " (T:" << BBI.TrueBB->getNumber() |
| 439 | << ",F:" << BBI.FalseBB->getNumber() << ") "); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 440 | RetVal = IfConvertTriangle(BBI, Kind); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 441 | LLVM_DEBUG(dbgs() << (RetVal ? "succeeded!" : "failed!") << "\n"); |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 442 | if (RetVal) { |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 443 | if (isFalse) { |
Dan Gohman | d2d1ae1 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 444 | if (isRev) ++NumTriangleFRev; |
| 445 | else ++NumTriangleFalse; |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 446 | } else { |
Dan Gohman | d2d1ae1 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 447 | if (isRev) ++NumTriangleRev; |
| 448 | else ++NumTriangle; |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 449 | } |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 450 | } |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 451 | break; |
Reid Spencer | 14b62a5 | 2007-06-10 00:19:17 +0000 | [diff] [blame] | 452 | } |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 453 | case ICDiamond: |
Evan Cheng | e93ccc0 | 2007-06-08 19:10:51 +0000 | [diff] [blame] | 454 | if (DisableDiamond) break; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 455 | LLVM_DEBUG(dbgs() << "Ifcvt (Diamond): " << printMBBReference(*BBI.BB) |
| 456 | << " (T:" << BBI.TrueBB->getNumber() |
| 457 | << ",F:" << BBI.FalseBB->getNumber() << ") "); |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 458 | RetVal = IfConvertDiamond(BBI, Kind, NumDups, NumDups2, |
| 459 | Token->TClobbersPred, |
| 460 | Token->FClobbersPred); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 461 | LLVM_DEBUG(dbgs() << (RetVal ? "succeeded!" : "failed!") << "\n"); |
Dan Gohman | d2d1ae1 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 462 | if (RetVal) ++NumDiamonds; |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 463 | break; |
Eugene Zelenko | f193332 | 2017-09-22 23:46:57 +0000 | [diff] [blame] | 464 | case ICForkedDiamond: |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 465 | if (DisableForkedDiamond) break; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 466 | LLVM_DEBUG(dbgs() << "Ifcvt (Forked Diamond): " |
| 467 | << printMBBReference(*BBI.BB) |
| 468 | << " (T:" << BBI.TrueBB->getNumber() |
| 469 | << ",F:" << BBI.FalseBB->getNumber() << ") "); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 470 | RetVal = IfConvertForkedDiamond(BBI, Kind, NumDups, NumDups2, |
| 471 | Token->TClobbersPred, |
| 472 | Token->FClobbersPred); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 473 | LLVM_DEBUG(dbgs() << (RetVal ? "succeeded!" : "failed!") << "\n"); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 474 | if (RetVal) ++NumForkedDiamonds; |
| 475 | break; |
| 476 | } |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 477 | |
Krzysztof Parzyszek | 6ca02b2 | 2017-09-14 15:53:11 +0000 | [diff] [blame] | 478 | if (RetVal && MRI->tracksLiveness()) |
| 479 | recomputeLivenessFlags(*BBI.BB); |
| 480 | |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 481 | Change |= RetVal; |
Evan Cheng | e93ccc0 | 2007-06-08 19:10:51 +0000 | [diff] [blame] | 482 | |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 483 | NumIfCvts = NumSimple + NumSimpleFalse + NumTriangle + NumTriangleRev + |
| 484 | NumTriangleFalse + NumTriangleFRev + NumDiamonds; |
| 485 | if (IfCvtLimit != -1 && (int)NumIfCvts >= IfCvtLimit) |
Evan Cheng | e93ccc0 | 2007-06-08 19:10:51 +0000 | [diff] [blame] | 486 | break; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 487 | } |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 488 | |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 489 | if (!Change) |
| 490 | break; |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 491 | MadeChange |= Change; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 492 | } |
Evan Cheng | 478b805 | 2007-05-18 01:55:58 +0000 | [diff] [blame] | 493 | |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 494 | Tokens.clear(); |
Evan Cheng | 478b805 | 2007-05-18 01:55:58 +0000 | [diff] [blame] | 495 | BBAnalysis.clear(); |
| 496 | |
Evan Cheng | cf9e8a9 | 2010-06-18 22:17:13 +0000 | [diff] [blame] | 497 | if (MadeChange && IfCvtBranchFold) { |
Haicheng Wu | 5b458cc | 2016-06-09 15:24:29 +0000 | [diff] [blame] | 498 | BranchFolder BF(false, false, MBFI, *MBPI); |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 499 | BF.OptimizeFunction(MF, TII, MF.getSubtarget().getRegisterInfo(), |
Evan Cheng | 3d2fce0 | 2009-09-04 07:47:40 +0000 | [diff] [blame] | 500 | getAnalysisIfAvailable<MachineModuleInfo>()); |
| 501 | } |
| 502 | |
Evan Cheng | 2d51c7c | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 503 | MadeChange |= BFChange; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 504 | return MadeChange; |
| 505 | } |
| 506 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 507 | /// BB has a fallthrough. Find its 'false' successor given its 'true' successor. |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 508 | static MachineBasicBlock *findFalseBlock(MachineBasicBlock *BB, |
Evan Cheng | 0f745da | 2007-05-18 00:20:58 +0000 | [diff] [blame] | 509 | MachineBasicBlock *TrueBB) { |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 510 | for (MachineBasicBlock *SuccBB : BB->successors()) { |
Evan Cheng | 0f745da | 2007-05-18 00:20:58 +0000 | [diff] [blame] | 511 | if (SuccBB != TrueBB) |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 512 | return SuccBB; |
| 513 | } |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 514 | return nullptr; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 517 | /// Reverse the condition of the end of the block branch. Swap block's 'true' |
| 518 | /// and 'false' successors. |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 519 | bool IfConverter::reverseBranchCondition(BBInfo &BBI) const { |
Stuart Hastings | 0125b64 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 520 | DebugLoc dl; // FIXME: this is nowhere |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 521 | if (!TII->reverseBranchCondition(BBI.BrCond)) { |
| 522 | TII->removeBranch(*BBI.BB); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 523 | TII->insertBranch(*BBI.BB, BBI.FalseBB, BBI.TrueBB, BBI.BrCond, dl); |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 524 | std::swap(BBI.TrueBB, BBI.FalseBB); |
| 525 | return true; |
| 526 | } |
| 527 | return false; |
| 528 | } |
| 529 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 530 | /// Returns the next block in the function blocks ordering. If it is the end, |
| 531 | /// returns NULL. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 532 | static inline MachineBasicBlock *getNextBlock(MachineBasicBlock &MBB) { |
| 533 | MachineFunction::iterator I = MBB.getIterator(); |
| 534 | MachineFunction::iterator E = MBB.getParent()->end(); |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 535 | if (++I == E) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 536 | return nullptr; |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 537 | return &*I; |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 538 | } |
| 539 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 540 | /// Returns true if the 'true' block (along with its predecessor) forms a valid |
| 541 | /// simple shape for ifcvt. It also returns the number of instructions that the |
| 542 | /// ifcvt would need to duplicate if performed in Dups. |
Owen Anderson | 1b35f4c | 2010-09-28 20:42:15 +0000 | [diff] [blame] | 543 | bool IfConverter::ValidSimple(BBInfo &TrueBBI, unsigned &Dups, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 544 | BranchProbability Prediction) const { |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 545 | Dups = 0; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 546 | if (TrueBBI.IsBeingAnalyzed || TrueBBI.IsDone) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 547 | return false; |
| 548 | |
Evan Cheng | a955c02 | 2007-06-19 21:45:13 +0000 | [diff] [blame] | 549 | if (TrueBBI.IsBrAnalyzable) |
| 550 | return false; |
| 551 | |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 552 | if (TrueBBI.BB->pred_size() > 1) { |
| 553 | if (TrueBBI.CannotBeCopied || |
Owen Anderson | 1b35f4c | 2010-09-28 20:42:15 +0000 | [diff] [blame] | 554 | !TII->isProfitableToDupForIfCvt(*TrueBBI.BB, TrueBBI.NonPredSize, |
Jakub Staszak | 9b07c0a | 2011-07-10 02:58:07 +0000 | [diff] [blame] | 555 | Prediction)) |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 556 | return false; |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 557 | Dups = TrueBBI.NonPredSize; |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 558 | } |
| 559 | |
Evan Cheng | a955c02 | 2007-06-19 21:45:13 +0000 | [diff] [blame] | 560 | return true; |
Evan Cheng | 9030b98 | 2007-06-06 10:16:17 +0000 | [diff] [blame] | 561 | } |
| 562 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 563 | /// Returns true if the 'true' and 'false' blocks (along with their common |
| 564 | /// predecessor) forms a valid triangle shape for ifcvt. If 'FalseBranch' is |
| 565 | /// true, it checks if 'true' block's false branch branches to the 'false' block |
| 566 | /// rather than the other way around. It also returns the number of instructions |
| 567 | /// that the ifcvt would need to duplicate if performed in 'Dups'. |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 568 | bool IfConverter::ValidTriangle(BBInfo &TrueBBI, BBInfo &FalseBBI, |
Owen Anderson | f31f33e | 2010-10-01 22:45:50 +0000 | [diff] [blame] | 569 | bool FalseBranch, unsigned &Dups, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 570 | BranchProbability Prediction) const { |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 571 | Dups = 0; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 572 | if (TrueBBI.IsBeingAnalyzed || TrueBBI.IsDone) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 573 | return false; |
| 574 | |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 575 | if (TrueBBI.BB->pred_size() > 1) { |
| 576 | if (TrueBBI.CannotBeCopied) |
| 577 | return false; |
| 578 | |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 579 | unsigned Size = TrueBBI.NonPredSize; |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 580 | if (TrueBBI.IsBrAnalyzable) { |
Dan Gohman | 70de4cb | 2008-01-29 13:02:09 +0000 | [diff] [blame] | 581 | if (TrueBBI.TrueBB && TrueBBI.BrCond.empty()) |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 582 | // Ends with an unconditional branch. It will be removed. |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 583 | --Size; |
| 584 | else { |
| 585 | MachineBasicBlock *FExit = FalseBranch |
| 586 | ? TrueBBI.TrueBB : TrueBBI.FalseBB; |
| 587 | if (FExit) |
| 588 | // Require a conditional branch |
| 589 | ++Size; |
| 590 | } |
| 591 | } |
Jakub Staszak | 9b07c0a | 2011-07-10 02:58:07 +0000 | [diff] [blame] | 592 | if (!TII->isProfitableToDupForIfCvt(*TrueBBI.BB, Size, Prediction)) |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 593 | return false; |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 594 | Dups = Size; |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 595 | } |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 596 | |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 597 | MachineBasicBlock *TExit = FalseBranch ? TrueBBI.FalseBB : TrueBBI.TrueBB; |
| 598 | if (!TExit && blockAlwaysFallThrough(TrueBBI)) { |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 599 | MachineFunction::iterator I = TrueBBI.BB->getIterator(); |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 600 | if (++I == TrueBBI.BB->getParent()->end()) |
| 601 | return false; |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 602 | TExit = &*I; |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 603 | } |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 604 | return TExit && TExit == FalseBBI.BB; |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Kyle Butt | 4f0e287 | 2016-08-06 01:52:33 +0000 | [diff] [blame] | 607 | /// Count duplicated instructions and move the iterators to show where they |
| 608 | /// are. |
| 609 | /// @param TIB True Iterator Begin |
| 610 | /// @param FIB False Iterator Begin |
| 611 | /// These two iterators initially point to the first instruction of the two |
| 612 | /// blocks, and finally point to the first non-shared instruction. |
| 613 | /// @param TIE True Iterator End |
| 614 | /// @param FIE False Iterator End |
| 615 | /// These two iterators initially point to End() for the two blocks() and |
| 616 | /// finally point to the first shared instruction in the tail. |
| 617 | /// Upon return [TIB, TIE), and [FIB, FIE) mark the un-duplicated portions of |
| 618 | /// two blocks. |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 619 | /// @param Dups1 count of duplicated instructions at the beginning of the 2 |
| 620 | /// blocks. |
| 621 | /// @param Dups2 count of duplicated instructions at the end of the 2 blocks. |
| 622 | /// @param SkipUnconditionalBranches if true, Don't make sure that |
| 623 | /// unconditional branches at the end of the blocks are the same. True is |
| 624 | /// passed when the blocks are analyzable to allow for fallthrough to be |
| 625 | /// handled. |
| 626 | /// @return false if the shared portion prevents if conversion. |
| 627 | bool IfConverter::CountDuplicatedInstructions( |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 628 | MachineBasicBlock::iterator &TIB, |
| 629 | MachineBasicBlock::iterator &FIB, |
| 630 | MachineBasicBlock::iterator &TIE, |
| 631 | MachineBasicBlock::iterator &FIE, |
| 632 | unsigned &Dups1, unsigned &Dups2, |
| 633 | MachineBasicBlock &TBB, MachineBasicBlock &FBB, |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 634 | bool SkipUnconditionalBranches) const { |
Bob Wilson | e1961fe | 2010-10-26 00:02:24 +0000 | [diff] [blame] | 635 | while (TIB != TIE && FIB != FIE) { |
Evan Cheng | c0e0d85 | 2010-06-18 21:52:57 +0000 | [diff] [blame] | 636 | // Skip dbg_value instructions. These do not count. |
Florian Hahn | 3c8b8c9 | 2016-12-16 11:10:26 +0000 | [diff] [blame] | 637 | TIB = skipDebugInstructionsForward(TIB, TIE); |
Florian Hahn | 3c8b8c9 | 2016-12-16 11:10:26 +0000 | [diff] [blame] | 638 | FIB = skipDebugInstructionsForward(FIB, FIE); |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 639 | if (TIB == TIE || FIB == FIE) |
Kyle Butt | fe91682 | 2016-08-06 01:52:31 +0000 | [diff] [blame] | 640 | break; |
Duncan P. N. Exon Smith | fd8cc23 | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 641 | if (!TIB->isIdenticalTo(*FIB)) |
Bob Wilson | e1961fe | 2010-10-26 00:02:24 +0000 | [diff] [blame] | 642 | break; |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 643 | // A pred-clobbering instruction in the shared portion prevents |
| 644 | // if-conversion. |
| 645 | std::vector<MachineOperand> PredDefs; |
| 646 | if (TII->DefinesPredicate(*TIB, PredDefs)) |
| 647 | return false; |
Kyle Butt | 93e94e8 | 2016-09-02 01:20:06 +0000 | [diff] [blame] | 648 | // If we get all the way to the branch instructions, don't count them. |
| 649 | if (!TIB->isBranch()) |
| 650 | ++Dups1; |
Bob Wilson | e1961fe | 2010-10-26 00:02:24 +0000 | [diff] [blame] | 651 | ++TIB; |
| 652 | ++FIB; |
| 653 | } |
| 654 | |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 655 | // Check for already containing all of the block. |
| 656 | if (TIB == TIE || FIB == FIE) |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 657 | return true; |
Kyle Butt | d76755e | 2016-08-18 22:09:23 +0000 | [diff] [blame] | 658 | // Now, in preparation for counting duplicate instructions at the ends of the |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 659 | // blocks, switch to reverse_iterators. Note that getReverse() returns an |
| 660 | // iterator that points to the same instruction, unlike std::reverse_iterator. |
| 661 | // We have to do our own shifting so that we get the same range. |
| 662 | MachineBasicBlock::reverse_iterator RTIE = std::next(TIE.getReverse()); |
| 663 | MachineBasicBlock::reverse_iterator RFIE = std::next(FIE.getReverse()); |
| 664 | const MachineBasicBlock::reverse_iterator RTIB = std::next(TIB.getReverse()); |
| 665 | const MachineBasicBlock::reverse_iterator RFIB = std::next(FIB.getReverse()); |
Kyle Butt | d76755e | 2016-08-18 22:09:23 +0000 | [diff] [blame] | 666 | |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 667 | if (!TBB.succ_empty() || !FBB.succ_empty()) { |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 668 | if (SkipUnconditionalBranches) { |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 669 | while (RTIE != RTIB && RTIE->isUnconditionalBranch()) |
| 670 | ++RTIE; |
| 671 | while (RFIE != RFIB && RFIE->isUnconditionalBranch()) |
| 672 | ++RFIE; |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 673 | } |
Bob Wilson | e1961fe | 2010-10-26 00:02:24 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Bob Wilson | e1961fe | 2010-10-26 00:02:24 +0000 | [diff] [blame] | 676 | // Count duplicate instructions at the ends of the blocks. |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 677 | while (RTIE != RTIB && RFIE != RFIB) { |
Bob Wilson | e1961fe | 2010-10-26 00:02:24 +0000 | [diff] [blame] | 678 | // Skip dbg_value instructions. These do not count. |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 679 | // Note that these are reverse iterators going forward. |
| 680 | RTIE = skipDebugInstructionsForward(RTIE, RTIB); |
| 681 | RFIE = skipDebugInstructionsForward(RFIE, RFIB); |
| 682 | if (RTIE == RTIB || RFIE == RFIB) |
Kyle Butt | fe91682 | 2016-08-06 01:52:31 +0000 | [diff] [blame] | 683 | break; |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 684 | if (!RTIE->isIdenticalTo(*RFIE)) |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 685 | break; |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 686 | // We have to verify that any branch instructions are the same, and then we |
| 687 | // don't count them toward the # of duplicate instructions. |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 688 | if (!RTIE->isBranch()) |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 689 | ++Dups2; |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 690 | ++RTIE; |
| 691 | ++RFIE; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 692 | } |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 693 | TIE = std::next(RTIE.getReverse()); |
| 694 | FIE = std::next(RFIE.getReverse()); |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 695 | return true; |
| 696 | } |
| 697 | |
| 698 | /// RescanInstructions - Run ScanInstructions on a pair of blocks. |
| 699 | /// @param TIB - True Iterator Begin, points to first non-shared instruction |
| 700 | /// @param FIB - False Iterator Begin, points to first non-shared instruction |
| 701 | /// @param TIE - True Iterator End, points past last non-shared instruction |
| 702 | /// @param FIE - False Iterator End, points past last non-shared instruction |
| 703 | /// @param TrueBBI - BBInfo to update for the true block. |
| 704 | /// @param FalseBBI - BBInfo to update for the false block. |
| 705 | /// @returns - false if either block cannot be predicated or if both blocks end |
| 706 | /// with a predicate-clobbering instruction. |
| 707 | bool IfConverter::RescanInstructions( |
| 708 | MachineBasicBlock::iterator &TIB, MachineBasicBlock::iterator &FIB, |
| 709 | MachineBasicBlock::iterator &TIE, MachineBasicBlock::iterator &FIE, |
| 710 | BBInfo &TrueBBI, BBInfo &FalseBBI) const { |
| 711 | bool BranchUnpredicable = true; |
| 712 | TrueBBI.IsUnpredicable = FalseBBI.IsUnpredicable = false; |
| 713 | ScanInstructions(TrueBBI, TIB, TIE, BranchUnpredicable); |
| 714 | if (TrueBBI.IsUnpredicable) |
| 715 | return false; |
| 716 | ScanInstructions(FalseBBI, FIB, FIE, BranchUnpredicable); |
| 717 | if (FalseBBI.IsUnpredicable) |
| 718 | return false; |
| 719 | if (TrueBBI.ClobbersPred && FalseBBI.ClobbersPred) |
| 720 | return false; |
| 721 | return true; |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 722 | } |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 723 | |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 724 | #ifndef NDEBUG |
| 725 | static void verifySameBranchInstructions( |
| 726 | MachineBasicBlock *MBB1, |
| 727 | MachineBasicBlock *MBB2) { |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 728 | const MachineBasicBlock::reverse_iterator B1 = MBB1->rend(); |
| 729 | const MachineBasicBlock::reverse_iterator B2 = MBB2->rend(); |
| 730 | MachineBasicBlock::reverse_iterator E1 = MBB1->rbegin(); |
| 731 | MachineBasicBlock::reverse_iterator E2 = MBB2->rbegin(); |
| 732 | while (E1 != B1 && E2 != B2) { |
| 733 | skipDebugInstructionsForward(E1, B1); |
| 734 | skipDebugInstructionsForward(E2, B2); |
| 735 | if (E1 == B1 && E2 == B2) |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 736 | break; |
| 737 | |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 738 | if (E1 == B1) { |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 739 | assert(!E2->isBranch() && "Branch mis-match, one block is empty."); |
| 740 | break; |
| 741 | } |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 742 | if (E2 == B2) { |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 743 | assert(!E1->isBranch() && "Branch mis-match, one block is empty."); |
| 744 | break; |
| 745 | } |
| 746 | |
| 747 | if (E1->isBranch() || E2->isBranch()) |
| 748 | assert(E1->isIdenticalTo(*E2) && |
| 749 | "Branch mis-match, branch instructions don't match."); |
| 750 | else |
| 751 | break; |
Kyle Butt | c4614b3 | 2017-01-26 20:02:47 +0000 | [diff] [blame] | 752 | ++E1; |
| 753 | ++E2; |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 754 | } |
| 755 | } |
| 756 | #endif |
| 757 | |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 758 | /// ValidForkedDiamond - Returns true if the 'true' and 'false' blocks (along |
| 759 | /// with their common predecessor) form a diamond if a common tail block is |
| 760 | /// extracted. |
| 761 | /// While not strictly a diamond, this pattern would form a diamond if |
| 762 | /// tail-merging had merged the shared tails. |
| 763 | /// EBB |
| 764 | /// _/ \_ |
| 765 | /// | | |
| 766 | /// TBB FBB |
| 767 | /// / \ / \ |
| 768 | /// FalseBB TrueBB FalseBB |
| 769 | /// Currently only handles analyzable branches. |
| 770 | /// Specifically excludes actual diamonds to avoid overlap. |
| 771 | bool IfConverter::ValidForkedDiamond( |
| 772 | BBInfo &TrueBBI, BBInfo &FalseBBI, |
| 773 | unsigned &Dups1, unsigned &Dups2, |
| 774 | BBInfo &TrueBBICalc, BBInfo &FalseBBICalc) const { |
| 775 | Dups1 = Dups2 = 0; |
| 776 | if (TrueBBI.IsBeingAnalyzed || TrueBBI.IsDone || |
| 777 | FalseBBI.IsBeingAnalyzed || FalseBBI.IsDone) |
| 778 | return false; |
| 779 | |
| 780 | if (!TrueBBI.IsBrAnalyzable || !FalseBBI.IsBrAnalyzable) |
| 781 | return false; |
| 782 | // Don't IfConvert blocks that can't be folded into their predecessor. |
| 783 | if (TrueBBI.BB->pred_size() > 1 || FalseBBI.BB->pred_size() > 1) |
| 784 | return false; |
| 785 | |
| 786 | // This function is specifically looking for conditional tails, as |
| 787 | // unconditional tails are already handled by the standard diamond case. |
| 788 | if (TrueBBI.BrCond.size() == 0 || |
| 789 | FalseBBI.BrCond.size() == 0) |
| 790 | return false; |
| 791 | |
| 792 | MachineBasicBlock *TT = TrueBBI.TrueBB; |
| 793 | MachineBasicBlock *TF = TrueBBI.FalseBB; |
| 794 | MachineBasicBlock *FT = FalseBBI.TrueBB; |
| 795 | MachineBasicBlock *FF = FalseBBI.FalseBB; |
| 796 | |
| 797 | if (!TT) |
| 798 | TT = getNextBlock(*TrueBBI.BB); |
| 799 | if (!TF) |
| 800 | TF = getNextBlock(*TrueBBI.BB); |
| 801 | if (!FT) |
| 802 | FT = getNextBlock(*FalseBBI.BB); |
| 803 | if (!FF) |
| 804 | FF = getNextBlock(*FalseBBI.BB); |
| 805 | |
| 806 | if (!TT || !TF) |
| 807 | return false; |
| 808 | |
| 809 | // Check successors. If they don't match, bail. |
| 810 | if (!((TT == FT && TF == FF) || (TF == FT && TT == FF))) |
| 811 | return false; |
| 812 | |
| 813 | bool FalseReversed = false; |
| 814 | if (TF == FT && TT == FF) { |
| 815 | // If the branches are opposing, but we can't reverse, don't do it. |
| 816 | if (!FalseBBI.IsBrReversible) |
| 817 | return false; |
| 818 | FalseReversed = true; |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 819 | reverseBranchCondition(FalseBBI); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 820 | } |
| 821 | auto UnReverseOnExit = make_scope_exit([&]() { |
| 822 | if (FalseReversed) |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 823 | reverseBranchCondition(FalseBBI); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 824 | }); |
| 825 | |
| 826 | // Count duplicate instructions at the beginning of the true and false blocks. |
| 827 | MachineBasicBlock::iterator TIB = TrueBBI.BB->begin(); |
| 828 | MachineBasicBlock::iterator FIB = FalseBBI.BB->begin(); |
| 829 | MachineBasicBlock::iterator TIE = TrueBBI.BB->end(); |
| 830 | MachineBasicBlock::iterator FIE = FalseBBI.BB->end(); |
| 831 | if(!CountDuplicatedInstructions(TIB, FIB, TIE, FIE, Dups1, Dups2, |
| 832 | *TrueBBI.BB, *FalseBBI.BB, |
| 833 | /* SkipUnconditionalBranches */ true)) |
| 834 | return false; |
| 835 | |
| 836 | TrueBBICalc.BB = TrueBBI.BB; |
| 837 | FalseBBICalc.BB = FalseBBI.BB; |
| 838 | if (!RescanInstructions(TIB, FIB, TIE, FIE, TrueBBICalc, FalseBBICalc)) |
| 839 | return false; |
| 840 | |
| 841 | // The size is used to decide whether to if-convert, and the shared portions |
| 842 | // are subtracted off. Because of the subtraction, we just use the size that |
| 843 | // was calculated by the original ScanInstructions, as it is correct. |
| 844 | TrueBBICalc.NonPredSize = TrueBBI.NonPredSize; |
| 845 | FalseBBICalc.NonPredSize = FalseBBI.NonPredSize; |
| 846 | return true; |
| 847 | } |
| 848 | |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 849 | /// ValidDiamond - Returns true if the 'true' and 'false' blocks (along |
| 850 | /// with their common predecessor) forms a valid diamond shape for ifcvt. |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 851 | bool IfConverter::ValidDiamond( |
| 852 | BBInfo &TrueBBI, BBInfo &FalseBBI, |
| 853 | unsigned &Dups1, unsigned &Dups2, |
| 854 | BBInfo &TrueBBICalc, BBInfo &FalseBBICalc) const { |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 855 | Dups1 = Dups2 = 0; |
| 856 | if (TrueBBI.IsBeingAnalyzed || TrueBBI.IsDone || |
| 857 | FalseBBI.IsBeingAnalyzed || FalseBBI.IsDone) |
| 858 | return false; |
| 859 | |
| 860 | MachineBasicBlock *TT = TrueBBI.TrueBB; |
| 861 | MachineBasicBlock *FT = FalseBBI.TrueBB; |
| 862 | |
| 863 | if (!TT && blockAlwaysFallThrough(TrueBBI)) |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 864 | TT = getNextBlock(*TrueBBI.BB); |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 865 | if (!FT && blockAlwaysFallThrough(FalseBBI)) |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 866 | FT = getNextBlock(*FalseBBI.BB); |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 867 | if (TT != FT) |
| 868 | return false; |
| 869 | if (!TT && (TrueBBI.IsBrAnalyzable || FalseBBI.IsBrAnalyzable)) |
| 870 | return false; |
| 871 | if (TrueBBI.BB->pred_size() > 1 || FalseBBI.BB->pred_size() > 1) |
| 872 | return false; |
| 873 | |
| 874 | // FIXME: Allow true block to have an early exit? |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 875 | if (TrueBBI.FalseBB || FalseBBI.FalseBB) |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 876 | return false; |
| 877 | |
| 878 | // Count duplicate instructions at the beginning and end of the true and |
| 879 | // false blocks. |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 880 | // Skip unconditional branches only if we are considering an analyzable |
| 881 | // diamond. Otherwise the branches must be the same. |
| 882 | bool SkipUnconditionalBranches = |
| 883 | TrueBBI.IsBrAnalyzable && FalseBBI.IsBrAnalyzable; |
Kyle Butt | 9b6d99b | 2016-07-27 20:19:33 +0000 | [diff] [blame] | 884 | MachineBasicBlock::iterator TIB = TrueBBI.BB->begin(); |
| 885 | MachineBasicBlock::iterator FIB = FalseBBI.BB->begin(); |
| 886 | MachineBasicBlock::iterator TIE = TrueBBI.BB->end(); |
| 887 | MachineBasicBlock::iterator FIE = FalseBBI.BB->end(); |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 888 | if(!CountDuplicatedInstructions(TIB, FIB, TIE, FIE, Dups1, Dups2, |
| 889 | *TrueBBI.BB, *FalseBBI.BB, |
| 890 | SkipUnconditionalBranches)) |
| 891 | return false; |
| 892 | |
| 893 | TrueBBICalc.BB = TrueBBI.BB; |
| 894 | FalseBBICalc.BB = FalseBBI.BB; |
| 895 | if (!RescanInstructions(TIB, FIB, TIE, FIE, TrueBBICalc, FalseBBICalc)) |
| 896 | return false; |
| 897 | // The size is used to decide whether to if-convert, and the shared portions |
| 898 | // are subtracted off. Because of the subtraction, we just use the size that |
| 899 | // was calculated by the original ScanInstructions, as it is correct. |
| 900 | TrueBBICalc.NonPredSize = TrueBBI.NonPredSize; |
| 901 | FalseBBICalc.NonPredSize = FalseBBI.NonPredSize; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 902 | return true; |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 903 | } |
| 904 | |
Kyle Butt | 54bf3ce | 2016-08-06 01:52:34 +0000 | [diff] [blame] | 905 | /// AnalyzeBranches - Look at the branches at the end of a block to determine if |
| 906 | /// the block is predicable. |
| 907 | void IfConverter::AnalyzeBranches(BBInfo &BBI) { |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 908 | if (BBI.IsDone) |
| 909 | return; |
| 910 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 911 | BBI.TrueBB = BBI.FalseBB = nullptr; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 912 | BBI.BrCond.clear(); |
| 913 | BBI.IsBrAnalyzable = |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 914 | !TII->analyzeBranch(*BBI.BB, BBI.TrueBB, BBI.FalseBB, BBI.BrCond); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 915 | SmallVector<MachineOperand, 4> RevCond(BBI.BrCond.begin(), BBI.BrCond.end()); |
| 916 | BBI.IsBrReversible = (RevCond.size() == 0) || |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 917 | !TII->reverseBranchCondition(RevCond); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 918 | BBI.HasFallThrough = BBI.IsBrAnalyzable && BBI.FalseBB == nullptr; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 919 | |
| 920 | if (BBI.BrCond.size()) { |
| 921 | // No false branch. This BB must end with a conditional branch and a |
| 922 | // fallthrough. |
| 923 | if (!BBI.FalseBB) |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 924 | BBI.FalseBB = findFalseBlock(BBI.BB, BBI.TrueBB); |
Evan Cheng | b9bff58 | 2009-06-15 21:24:34 +0000 | [diff] [blame] | 925 | if (!BBI.FalseBB) { |
| 926 | // Malformed bcc? True and false blocks are the same? |
| 927 | BBI.IsUnpredicable = true; |
Evan Cheng | b9bff58 | 2009-06-15 21:24:34 +0000 | [diff] [blame] | 928 | } |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 929 | } |
Kyle Butt | 54bf3ce | 2016-08-06 01:52:34 +0000 | [diff] [blame] | 930 | } |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 931 | |
Kyle Butt | 54bf3ce | 2016-08-06 01:52:34 +0000 | [diff] [blame] | 932 | /// ScanInstructions - Scan all the instructions in the block to determine if |
| 933 | /// the block is predicable. In most cases, that means all the instructions |
| 934 | /// in the block are isPredicable(). Also checks if the block contains any |
| 935 | /// instruction which can clobber a predicate (e.g. condition code register). |
| 936 | /// If so, the block is not predicable unless it's the last instruction. |
| 937 | void IfConverter::ScanInstructions(BBInfo &BBI, |
| 938 | MachineBasicBlock::iterator &Begin, |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 939 | MachineBasicBlock::iterator &End, |
| 940 | bool BranchUnpredicable) const { |
Kyle Butt | 54bf3ce | 2016-08-06 01:52:34 +0000 | [diff] [blame] | 941 | if (BBI.IsDone || BBI.IsUnpredicable) |
| 942 | return; |
| 943 | |
| 944 | bool AlreadyPredicated = !BBI.Predicate.empty(); |
| 945 | |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 946 | BBI.NonPredSize = 0; |
Bob Wilson | efd360c | 2010-10-26 00:02:21 +0000 | [diff] [blame] | 947 | BBI.ExtraCost = 0; |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 948 | BBI.ExtraCost2 = 0; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 949 | BBI.ClobbersPred = false; |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 950 | for (MachineInstr &MI : make_range(Begin, End)) { |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 951 | if (MI.isDebugInstr()) |
Jim Grosbach | a1e08fb | 2010-06-04 23:01:26 +0000 | [diff] [blame] | 952 | continue; |
| 953 | |
Justin Lebar | 7dba2e0 | 2016-04-15 01:38:41 +0000 | [diff] [blame] | 954 | // It's unsafe to duplicate convergent instructions in this context, so set |
| 955 | // BBI.CannotBeCopied to true if MI is convergent. To see why, consider the |
| 956 | // following CFG, which is subject to our "simple" transformation. |
| 957 | // |
| 958 | // BB0 // if (c1) goto BB1; else goto BB2; |
| 959 | // / \ |
| 960 | // BB1 | |
| 961 | // | BB2 // if (c2) goto TBB; else goto FBB; |
| 962 | // | / | |
| 963 | // | / | |
| 964 | // TBB | |
| 965 | // | | |
| 966 | // | FBB |
| 967 | // | |
| 968 | // exit |
| 969 | // |
| 970 | // Suppose we want to move TBB's contents up into BB1 and BB2 (in BB1 they'd |
| 971 | // be unconditional, and in BB2, they'd be predicated upon c2), and suppose |
| 972 | // TBB contains a convergent instruction. This is safe iff doing so does |
| 973 | // not add a control-flow dependency to the convergent instruction -- i.e., |
| 974 | // it's safe iff the set of control flows that leads us to the convergent |
| 975 | // instruction does not get smaller after the transformation. |
| 976 | // |
| 977 | // Originally we executed TBB if c1 || c2. After the transformation, there |
| 978 | // are two copies of TBB's instructions. We get to the first if c1, and we |
| 979 | // get to the second if !c1 && c2. |
| 980 | // |
| 981 | // There are clearly fewer ways to satisfy the condition "c1" than |
| 982 | // "c1 || c2". Since we've shrunk the set of control flows which lead to |
| 983 | // our convergent instruction, the transformation is unsafe. |
| 984 | if (MI.isNotDuplicable() || MI.isConvergent()) |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 985 | BBI.CannotBeCopied = true; |
| 986 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 987 | bool isPredicated = TII->isPredicated(MI); |
| 988 | bool isCondBr = BBI.IsBrAnalyzable && MI.isConditionalBranch(); |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 989 | |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 990 | if (BranchUnpredicable && MI.isBranch()) { |
| 991 | BBI.IsUnpredicable = true; |
| 992 | return; |
| 993 | } |
| 994 | |
Joey Gouly | a5153cb | 2013-09-09 14:21:49 +0000 | [diff] [blame] | 995 | // A conditional branch is not predicable, but it may be eliminated. |
| 996 | if (isCondBr) |
| 997 | continue; |
| 998 | |
| 999 | if (!isPredicated) { |
| 1000 | BBI.NonPredSize++; |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 1001 | unsigned ExtraPredCost = TII->getPredicationCost(MI); |
| 1002 | unsigned NumCycles = SchedModel.computeInstrLatency(&MI, false); |
Joey Gouly | a5153cb | 2013-09-09 14:21:49 +0000 | [diff] [blame] | 1003 | if (NumCycles > 1) |
| 1004 | BBI.ExtraCost += NumCycles-1; |
| 1005 | BBI.ExtraCost2 += ExtraPredCost; |
| 1006 | } else if (!AlreadyPredicated) { |
| 1007 | // FIXME: This instruction is already predicated before the |
| 1008 | // if-conversion pass. It's probably something like a conditional move. |
| 1009 | // Mark this block unpredicable for now. |
| 1010 | BBI.IsUnpredicable = true; |
| 1011 | return; |
Evan Cheng | 96c1457 | 2007-07-06 23:24:39 +0000 | [diff] [blame] | 1012 | } |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1013 | |
| 1014 | if (BBI.ClobbersPred && !isPredicated) { |
| 1015 | // Predicate modification instruction should end the block (except for |
| 1016 | // already predicated instructions and end of block branches). |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1017 | // Predicate may have been modified, the subsequent (currently) |
Evan Cheng | 96c1457 | 2007-07-06 23:24:39 +0000 | [diff] [blame] | 1018 | // unpredicated instructions cannot be correctly predicated. |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1019 | BBI.IsUnpredicable = true; |
| 1020 | return; |
| 1021 | } |
| 1022 | |
Evan Cheng | fbc7309 | 2007-07-10 17:50:43 +0000 | [diff] [blame] | 1023 | // FIXME: Make use of PredDefs? e.g. ADDC, SUBC sets predicates but are |
| 1024 | // still potentially predicable. |
| 1025 | std::vector<MachineOperand> PredDefs; |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 1026 | if (TII->DefinesPredicate(MI, PredDefs)) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1027 | BBI.ClobbersPred = true; |
| 1028 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 1029 | if (!TII->isPredicable(MI)) { |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1030 | BBI.IsUnpredicable = true; |
| 1031 | return; |
| 1032 | } |
| 1033 | } |
| 1034 | } |
| 1035 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1036 | /// Determine if the block is a suitable candidate to be predicated by the |
| 1037 | /// specified predicate. |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1038 | /// @param BBI BBInfo for the block to check |
| 1039 | /// @param Pred Predicate array for the branch that leads to BBI |
| 1040 | /// @param isTriangle true if the Analysis is for a triangle |
| 1041 | /// @param RevBranch true if Reverse(Pred) leads to BBI (e.g. BBI is the false |
| 1042 | /// case |
| 1043 | /// @param hasCommonTail true if BBI shares a tail with a sibling block that |
| 1044 | /// contains any instruction that would make the block unpredicable. |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1045 | bool IfConverter::FeasibilityAnalysis(BBInfo &BBI, |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 1046 | SmallVectorImpl<MachineOperand> &Pred, |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1047 | bool isTriangle, bool RevBranch, |
| 1048 | bool hasCommonTail) { |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1049 | // If the block is dead or unpredicable, then it cannot be predicated. |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1050 | // Two blocks may share a common unpredicable tail, but this doesn't prevent |
| 1051 | // them from being if-converted. The non-shared portion is assumed to have |
| 1052 | // been checked |
| 1053 | if (BBI.IsDone || (BBI.IsUnpredicable && !hasCommonTail)) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1054 | return false; |
| 1055 | |
Ahmed Bougacha | 7173b66 | 2015-03-21 01:23:15 +0000 | [diff] [blame] | 1056 | // If it is already predicated but we couldn't analyze its terminator, the |
| 1057 | // latter might fallthrough, but we can't determine where to. |
| 1058 | // Conservatively avoid if-converting again. |
| 1059 | if (BBI.Predicate.size() && !BBI.IsBrAnalyzable) |
| 1060 | return false; |
| 1061 | |
Quentin Colombet | bdab227 | 2013-07-24 20:20:37 +0000 | [diff] [blame] | 1062 | // If it is already predicated, check if the new predicate subsumes |
| 1063 | // its predicate. |
| 1064 | if (BBI.Predicate.size() && !TII->SubsumesPredicate(Pred, BBI.Predicate)) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1065 | return false; |
| 1066 | |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1067 | if (!hasCommonTail && BBI.BrCond.size()) { |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1068 | if (!isTriangle) |
| 1069 | return false; |
| 1070 | |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 1071 | // Test predicate subsumption. |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 1072 | SmallVector<MachineOperand, 4> RevPred(Pred.begin(), Pred.end()); |
| 1073 | SmallVector<MachineOperand, 4> Cond(BBI.BrCond.begin(), BBI.BrCond.end()); |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1074 | if (RevBranch) { |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1075 | if (TII->reverseBranchCondition(Cond)) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1076 | return false; |
| 1077 | } |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1078 | if (TII->reverseBranchCondition(RevPred) || |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1079 | !TII->SubsumesPredicate(Cond, RevPred)) |
| 1080 | return false; |
| 1081 | } |
| 1082 | |
| 1083 | return true; |
| 1084 | } |
| 1085 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1086 | /// Analyze the structure of the sub-CFG starting from the specified block. |
| 1087 | /// Record its successors and whether it looks like an if-conversion candidate. |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1088 | void IfConverter::AnalyzeBlock( |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1089 | MachineBasicBlock &MBB, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) { |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1090 | struct BBState { |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1091 | BBState(MachineBasicBlock &MBB) : MBB(&MBB), SuccsAnalyzed(false) {} |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1092 | MachineBasicBlock *MBB; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 1093 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1094 | /// This flag is true if MBB's successors have been analyzed. |
| 1095 | bool SuccsAnalyzed; |
| 1096 | }; |
Evan Cheng | 0f745da | 2007-05-18 00:20:58 +0000 | [diff] [blame] | 1097 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1098 | // Push MBB to the stack. |
| 1099 | SmallVector<BBState, 16> BBStack(1, MBB); |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1100 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1101 | while (!BBStack.empty()) { |
| 1102 | BBState &State = BBStack.back(); |
| 1103 | MachineBasicBlock *BB = State.MBB; |
| 1104 | BBInfo &BBI = BBAnalysis[BB->getNumber()]; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1105 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1106 | if (!State.SuccsAnalyzed) { |
| 1107 | if (BBI.IsAnalyzed || BBI.IsBeingAnalyzed) { |
| 1108 | BBStack.pop_back(); |
| 1109 | continue; |
| 1110 | } |
Evan Cheng | 9030b98 | 2007-06-06 10:16:17 +0000 | [diff] [blame] | 1111 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1112 | BBI.BB = BB; |
| 1113 | BBI.IsBeingAnalyzed = true; |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1114 | |
Kyle Butt | 54bf3ce | 2016-08-06 01:52:34 +0000 | [diff] [blame] | 1115 | AnalyzeBranches(BBI); |
| 1116 | MachineBasicBlock::iterator Begin = BBI.BB->begin(); |
| 1117 | MachineBasicBlock::iterator End = BBI.BB->end(); |
| 1118 | ScanInstructions(BBI, Begin, End); |
Evan Cheng | b9bff58 | 2009-06-15 21:24:34 +0000 | [diff] [blame] | 1119 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1120 | // Unanalyzable or ends with fallthrough or unconditional branch, or if is |
| 1121 | // not considered for ifcvt anymore. |
| 1122 | if (!BBI.IsBrAnalyzable || BBI.BrCond.empty() || BBI.IsDone) { |
| 1123 | BBI.IsBeingAnalyzed = false; |
| 1124 | BBI.IsAnalyzed = true; |
| 1125 | BBStack.pop_back(); |
| 1126 | continue; |
| 1127 | } |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1128 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1129 | // Do not ifcvt if either path is a back edge to the entry block. |
| 1130 | if (BBI.TrueBB == BB || BBI.FalseBB == BB) { |
| 1131 | BBI.IsBeingAnalyzed = false; |
| 1132 | BBI.IsAnalyzed = true; |
| 1133 | BBStack.pop_back(); |
| 1134 | continue; |
| 1135 | } |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1136 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1137 | // Do not ifcvt if true and false fallthrough blocks are the same. |
| 1138 | if (!BBI.FalseBB) { |
| 1139 | BBI.IsBeingAnalyzed = false; |
| 1140 | BBI.IsAnalyzed = true; |
| 1141 | BBStack.pop_back(); |
| 1142 | continue; |
| 1143 | } |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 1144 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1145 | // Push the False and True blocks to the stack. |
| 1146 | State.SuccsAnalyzed = true; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1147 | BBStack.push_back(*BBI.FalseBB); |
| 1148 | BBStack.push_back(*BBI.TrueBB); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1149 | continue; |
| 1150 | } |
Benjamin Kramer | 2016f0e | 2010-09-29 22:38:50 +0000 | [diff] [blame] | 1151 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1152 | BBInfo &TrueBBI = BBAnalysis[BBI.TrueBB->getNumber()]; |
| 1153 | BBInfo &FalseBBI = BBAnalysis[BBI.FalseBB->getNumber()]; |
Jakub Staszak | 15e5b74 | 2011-08-03 22:34:43 +0000 | [diff] [blame] | 1154 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1155 | if (TrueBBI.IsDone && FalseBBI.IsDone) { |
| 1156 | BBI.IsBeingAnalyzed = false; |
| 1157 | BBI.IsAnalyzed = true; |
| 1158 | BBStack.pop_back(); |
| 1159 | continue; |
| 1160 | } |
| 1161 | |
| 1162 | SmallVector<MachineOperand, 4> |
| 1163 | RevCond(BBI.BrCond.begin(), BBI.BrCond.end()); |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1164 | bool CanRevCond = !TII->reverseBranchCondition(RevCond); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1165 | |
| 1166 | unsigned Dups = 0; |
| 1167 | unsigned Dups2 = 0; |
| 1168 | bool TNeedSub = !TrueBBI.Predicate.empty(); |
| 1169 | bool FNeedSub = !FalseBBI.Predicate.empty(); |
| 1170 | bool Enqueued = false; |
| 1171 | |
| 1172 | BranchProbability Prediction = MBPI->getEdgeProbability(BB, TrueBBI.BB); |
| 1173 | |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1174 | if (CanRevCond) { |
| 1175 | BBInfo TrueBBICalc, FalseBBICalc; |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1176 | auto feasibleDiamond = [&]() { |
| 1177 | bool MeetsSize = MeetIfcvtSizeLimit( |
| 1178 | *TrueBBI.BB, (TrueBBICalc.NonPredSize - (Dups + Dups2) + |
| 1179 | TrueBBICalc.ExtraCost), TrueBBICalc.ExtraCost2, |
| 1180 | *FalseBBI.BB, (FalseBBICalc.NonPredSize - (Dups + Dups2) + |
| 1181 | FalseBBICalc.ExtraCost), FalseBBICalc.ExtraCost2, |
| 1182 | Prediction); |
| 1183 | bool TrueFeasible = FeasibilityAnalysis(TrueBBI, BBI.BrCond, |
| 1184 | /* IsTriangle */ false, /* RevCond */ false, |
| 1185 | /* hasCommonTail */ true); |
| 1186 | bool FalseFeasible = FeasibilityAnalysis(FalseBBI, RevCond, |
| 1187 | /* IsTriangle */ false, /* RevCond */ false, |
| 1188 | /* hasCommonTail */ true); |
| 1189 | return MeetsSize && TrueFeasible && FalseFeasible; |
| 1190 | }; |
| 1191 | |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1192 | if (ValidDiamond(TrueBBI, FalseBBI, Dups, Dups2, |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1193 | TrueBBICalc, FalseBBICalc)) { |
| 1194 | if (feasibleDiamond()) { |
| 1195 | // Diamond: |
| 1196 | // EBB |
| 1197 | // / \_ |
| 1198 | // | | |
| 1199 | // TBB FBB |
| 1200 | // \ / |
| 1201 | // TailBB |
| 1202 | // Note TailBB can be empty. |
| 1203 | Tokens.push_back(llvm::make_unique<IfcvtToken>( |
| 1204 | BBI, ICDiamond, TNeedSub | FNeedSub, Dups, Dups2, |
| 1205 | (bool) TrueBBICalc.ClobbersPred, (bool) FalseBBICalc.ClobbersPred)); |
| 1206 | Enqueued = true; |
| 1207 | } |
| 1208 | } else if (ValidForkedDiamond(TrueBBI, FalseBBI, Dups, Dups2, |
| 1209 | TrueBBICalc, FalseBBICalc)) { |
| 1210 | if (feasibleDiamond()) { |
| 1211 | // ForkedDiamond: |
| 1212 | // if TBB and FBB have a common tail that includes their conditional |
| 1213 | // branch instructions, then we can If Convert this pattern. |
| 1214 | // EBB |
| 1215 | // _/ \_ |
| 1216 | // | | |
| 1217 | // TBB FBB |
| 1218 | // / \ / \ |
| 1219 | // FalseBB TrueBB FalseBB |
| 1220 | // |
| 1221 | Tokens.push_back(llvm::make_unique<IfcvtToken>( |
| 1222 | BBI, ICForkedDiamond, TNeedSub | FNeedSub, Dups, Dups2, |
| 1223 | (bool) TrueBBICalc.ClobbersPred, (bool) FalseBBICalc.ClobbersPred)); |
| 1224 | Enqueued = true; |
| 1225 | } |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1226 | } |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1227 | } |
| 1228 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1229 | if (ValidTriangle(TrueBBI, FalseBBI, false, Dups, Prediction) && |
| 1230 | MeetIfcvtSizeLimit(*TrueBBI.BB, TrueBBI.NonPredSize + TrueBBI.ExtraCost, |
| 1231 | TrueBBI.ExtraCost2, Prediction) && |
| 1232 | FeasibilityAnalysis(TrueBBI, BBI.BrCond, true)) { |
| 1233 | // Triangle: |
| 1234 | // EBB |
| 1235 | // | \_ |
| 1236 | // | | |
| 1237 | // | TBB |
| 1238 | // | / |
| 1239 | // FBB |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1240 | Tokens.push_back( |
| 1241 | llvm::make_unique<IfcvtToken>(BBI, ICTriangle, TNeedSub, Dups)); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1242 | Enqueued = true; |
| 1243 | } |
| 1244 | |
| 1245 | if (ValidTriangle(TrueBBI, FalseBBI, true, Dups, Prediction) && |
| 1246 | MeetIfcvtSizeLimit(*TrueBBI.BB, TrueBBI.NonPredSize + TrueBBI.ExtraCost, |
| 1247 | TrueBBI.ExtraCost2, Prediction) && |
| 1248 | FeasibilityAnalysis(TrueBBI, BBI.BrCond, true, true)) { |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1249 | Tokens.push_back( |
| 1250 | llvm::make_unique<IfcvtToken>(BBI, ICTriangleRev, TNeedSub, Dups)); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1251 | Enqueued = true; |
| 1252 | } |
| 1253 | |
| 1254 | if (ValidSimple(TrueBBI, Dups, Prediction) && |
| 1255 | MeetIfcvtSizeLimit(*TrueBBI.BB, TrueBBI.NonPredSize + TrueBBI.ExtraCost, |
| 1256 | TrueBBI.ExtraCost2, Prediction) && |
| 1257 | FeasibilityAnalysis(TrueBBI, BBI.BrCond)) { |
| 1258 | // Simple (split, no rejoin): |
| 1259 | // EBB |
| 1260 | // | \_ |
| 1261 | // | | |
| 1262 | // | TBB---> exit |
| 1263 | // | |
| 1264 | // FBB |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1265 | Tokens.push_back( |
| 1266 | llvm::make_unique<IfcvtToken>(BBI, ICSimple, TNeedSub, Dups)); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1267 | Enqueued = true; |
| 1268 | } |
| 1269 | |
| 1270 | if (CanRevCond) { |
| 1271 | // Try the other path... |
| 1272 | if (ValidTriangle(FalseBBI, TrueBBI, false, Dups, |
| 1273 | Prediction.getCompl()) && |
| 1274 | MeetIfcvtSizeLimit(*FalseBBI.BB, |
| 1275 | FalseBBI.NonPredSize + FalseBBI.ExtraCost, |
| 1276 | FalseBBI.ExtraCost2, Prediction.getCompl()) && |
| 1277 | FeasibilityAnalysis(FalseBBI, RevCond, true)) { |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1278 | Tokens.push_back(llvm::make_unique<IfcvtToken>(BBI, ICTriangleFalse, |
| 1279 | FNeedSub, Dups)); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1280 | Enqueued = true; |
| 1281 | } |
| 1282 | |
| 1283 | if (ValidTriangle(FalseBBI, TrueBBI, true, Dups, |
| 1284 | Prediction.getCompl()) && |
| 1285 | MeetIfcvtSizeLimit(*FalseBBI.BB, |
| 1286 | FalseBBI.NonPredSize + FalseBBI.ExtraCost, |
Jakub Staszak | 9b07c0a | 2011-07-10 02:58:07 +0000 | [diff] [blame] | 1287 | FalseBBI.ExtraCost2, Prediction.getCompl()) && |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1288 | FeasibilityAnalysis(FalseBBI, RevCond, true, true)) { |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1289 | Tokens.push_back( |
| 1290 | llvm::make_unique<IfcvtToken>(BBI, ICTriangleFRev, FNeedSub, Dups)); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1291 | Enqueued = true; |
| 1292 | } |
| 1293 | |
| 1294 | if (ValidSimple(FalseBBI, Dups, Prediction.getCompl()) && |
| 1295 | MeetIfcvtSizeLimit(*FalseBBI.BB, |
| 1296 | FalseBBI.NonPredSize + FalseBBI.ExtraCost, |
| 1297 | FalseBBI.ExtraCost2, Prediction.getCompl()) && |
| 1298 | FeasibilityAnalysis(FalseBBI, RevCond)) { |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1299 | Tokens.push_back( |
| 1300 | llvm::make_unique<IfcvtToken>(BBI, ICSimpleFalse, FNeedSub, Dups)); |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1301 | Enqueued = true; |
| 1302 | } |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1303 | } |
| 1304 | |
Akira Hatanaka | 14348aa | 2015-06-24 20:34:35 +0000 | [diff] [blame] | 1305 | BBI.IsEnqueued = Enqueued; |
| 1306 | BBI.IsBeingAnalyzed = false; |
| 1307 | BBI.IsAnalyzed = true; |
| 1308 | BBStack.pop_back(); |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 1309 | } |
Evan Cheng | 2e82cef | 2007-05-18 18:14:37 +0000 | [diff] [blame] | 1310 | } |
| 1311 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1312 | /// Analyze all blocks and find entries for all if-conversion candidates. |
Justin Lebar | 3a7bc57 | 2016-02-22 17:51:28 +0000 | [diff] [blame] | 1313 | void IfConverter::AnalyzeBlocks( |
| 1314 | MachineFunction &MF, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) { |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 1315 | for (MachineBasicBlock &MBB : MF) |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1316 | AnalyzeBlock(MBB, Tokens); |
Evan Cheng | 905a8f4 | 2007-05-30 19:49:19 +0000 | [diff] [blame] | 1317 | |
Evan Cheng | 20e0599 | 2007-06-01 00:12:12 +0000 | [diff] [blame] | 1318 | // Sort to favor more complex ifcvt scheme. |
Fangrui Song | efd94c5 | 2019-04-23 14:51:27 +0000 | [diff] [blame] | 1319 | llvm::stable_sort(Tokens, IfcvtTokenCmp); |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 1320 | } |
| 1321 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1322 | /// Returns true either if ToMBB is the next block after MBB or that all the |
| 1323 | /// intervening blocks are empty (given MBB can fall through to its next block). |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1324 | static bool canFallThroughTo(MachineBasicBlock &MBB, MachineBasicBlock &ToMBB) { |
| 1325 | MachineFunction::iterator PI = MBB.getIterator(); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1326 | MachineFunction::iterator I = std::next(PI); |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1327 | MachineFunction::iterator TI = ToMBB.getIterator(); |
| 1328 | MachineFunction::iterator E = MBB.getParent()->end(); |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 1329 | while (I != TI) { |
| 1330 | // Check isSuccessor to avoid case where the next block is empty, but |
| 1331 | // it's not a successor. |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 1332 | if (I == E || !I->empty() || !PI->isSuccessor(&*I)) |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 1333 | return false; |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 1334 | PI = I++; |
| 1335 | } |
Mikael Holmen | 21c867c | 2017-05-10 13:06:13 +0000 | [diff] [blame] | 1336 | // Finally see if the last I is indeed a successor to PI. |
| 1337 | return PI->isSuccessor(&*I); |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1340 | /// Invalidate predecessor BB info so it would be re-analyzed to determine if it |
| 1341 | /// can be if-converted. If predecessor is already enqueued, dequeue it! |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1342 | void IfConverter::InvalidatePreds(MachineBasicBlock &MBB) { |
| 1343 | for (const MachineBasicBlock *Predecessor : MBB.predecessors()) { |
Saleem Abdulrasool | f158ca3 | 2014-08-09 17:21:29 +0000 | [diff] [blame] | 1344 | BBInfo &PBBI = BBAnalysis[Predecessor->getNumber()]; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1345 | if (PBBI.IsDone || PBBI.BB == &MBB) |
Evan Cheng | 9fc56c0 | 2007-06-14 23:13:19 +0000 | [diff] [blame] | 1346 | continue; |
Evan Cheng | add9776 | 2007-06-14 23:34:09 +0000 | [diff] [blame] | 1347 | PBBI.IsAnalyzed = false; |
| 1348 | PBBI.IsEnqueued = false; |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 1349 | } |
| 1350 | } |
| 1351 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1352 | /// Inserts an unconditional branch from \p MBB to \p ToMBB. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1353 | static void InsertUncondBranch(MachineBasicBlock &MBB, MachineBasicBlock &ToMBB, |
Evan Cheng | c2237ce | 2007-05-29 22:31:16 +0000 | [diff] [blame] | 1354 | const TargetInstrInfo *TII) { |
Stuart Hastings | 0125b64 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 1355 | DebugLoc dl; // FIXME: this is nowhere |
Dan Gohman | 14714cb | 2008-08-22 16:07:55 +0000 | [diff] [blame] | 1356 | SmallVector<MachineOperand, 0> NoCond; |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 1357 | TII->insertBranch(MBB, &ToMBB, nullptr, NoCond, dl); |
Evan Cheng | c2237ce | 2007-05-29 22:31:16 +0000 | [diff] [blame] | 1358 | } |
| 1359 | |
Matthias Braun | d616ccc | 2013-10-11 19:04:37 +0000 | [diff] [blame] | 1360 | /// Behaves like LiveRegUnits::StepForward() but also adds implicit uses to all |
Jonas Paulsson | 196986c | 2016-08-03 05:46:35 +0000 | [diff] [blame] | 1361 | /// values defined in MI which are also live/used by MI. |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 1362 | static void UpdatePredRedefs(MachineInstr &MI, LivePhysRegs &Redefs) { |
Justin Bogner | fdf9bf4 | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 1363 | const TargetRegisterInfo *TRI = MI.getMF()->getSubtarget().getRegisterInfo(); |
Jonas Paulsson | 196986c | 2016-08-03 05:46:35 +0000 | [diff] [blame] | 1364 | |
| 1365 | // Before stepping forward past MI, remember which regs were live |
| 1366 | // before MI. This is needed to set the Undef flag only when reg is |
| 1367 | // dead. |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 1368 | SparseSet<MCPhysReg, identity<MCPhysReg>> LiveBeforeMI; |
Jonas Paulsson | 196986c | 2016-08-03 05:46:35 +0000 | [diff] [blame] | 1369 | LiveBeforeMI.setUniverse(TRI->getNumRegs()); |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 1370 | for (unsigned Reg : Redefs) |
Jonas Paulsson | 196986c | 2016-08-03 05:46:35 +0000 | [diff] [blame] | 1371 | LiveBeforeMI.insert(Reg); |
| 1372 | |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 1373 | SmallVector<std::pair<MCPhysReg, const MachineOperand*>, 4> Clobbers; |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 1374 | Redefs.stepForward(MI, Clobbers); |
Matthias Braun | d616ccc | 2013-10-11 19:04:37 +0000 | [diff] [blame] | 1375 | |
Pete Cooper | 7605e37 | 2015-05-05 20:14:22 +0000 | [diff] [blame] | 1376 | // Now add the implicit uses for each of the clobbered values. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1377 | for (auto Clobber : Clobbers) { |
Pete Cooper | 7605e37 | 2015-05-05 20:14:22 +0000 | [diff] [blame] | 1378 | // FIXME: Const cast here is nasty, but better than making StepForward |
| 1379 | // take a mutable instruction instead of const. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1380 | unsigned Reg = Clobber.first; |
| 1381 | MachineOperand &Op = const_cast<MachineOperand&>(*Clobber.second); |
Pete Cooper | 2748391 | 2015-05-06 22:51:04 +0000 | [diff] [blame] | 1382 | MachineInstr *OpMI = Op.getParent(); |
Justin Bogner | fdf9bf4 | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 1383 | MachineInstrBuilder MIB(*OpMI->getMF(), OpMI); |
Pete Cooper | ce9ad75 | 2015-05-05 22:09:41 +0000 | [diff] [blame] | 1384 | if (Op.isRegMask()) { |
| 1385 | // First handle regmasks. They clobber any entries in the mask which |
| 1386 | // means that we need a def for those registers. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1387 | if (LiveBeforeMI.count(Reg)) |
| 1388 | MIB.addReg(Reg, RegState::Implicit); |
Pete Cooper | ce9ad75 | 2015-05-05 22:09:41 +0000 | [diff] [blame] | 1389 | |
| 1390 | // We also need to add an implicit def of this register for the later |
| 1391 | // use to read from. |
| 1392 | // For the register allocator to have allocated a register clobbered |
| 1393 | // by the call which is used later, it must be the case that |
| 1394 | // the call doesn't return. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1395 | MIB.addReg(Reg, RegState::Implicit | RegState::Define); |
Pete Cooper | ce9ad75 | 2015-05-05 22:09:41 +0000 | [diff] [blame] | 1396 | continue; |
| 1397 | } |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1398 | if (LiveBeforeMI.count(Reg)) |
| 1399 | MIB.addReg(Reg, RegState::Implicit); |
Krzysztof Parzyszek | dcb1bca | 2016-09-28 20:07:41 +0000 | [diff] [blame] | 1400 | else { |
| 1401 | bool HasLiveSubReg = false; |
| 1402 | for (MCSubRegIterator S(Reg, TRI); S.isValid(); ++S) { |
| 1403 | if (!LiveBeforeMI.count(*S)) |
| 1404 | continue; |
| 1405 | HasLiveSubReg = true; |
| 1406 | break; |
| 1407 | } |
| 1408 | if (HasLiveSubReg) |
| 1409 | MIB.addReg(Reg, RegState::Implicit); |
| 1410 | } |
Matthias Braun | d616ccc | 2013-10-11 19:04:37 +0000 | [diff] [blame] | 1411 | } |
| 1412 | } |
| 1413 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1414 | /// If convert a simple (split, no rejoin) sub-CFG. |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1415 | bool IfConverter::IfConvertSimple(BBInfo &BBI, IfcvtKind Kind) { |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1416 | BBInfo &TrueBBI = BBAnalysis[BBI.TrueBB->getNumber()]; |
| 1417 | BBInfo &FalseBBI = BBAnalysis[BBI.FalseBB->getNumber()]; |
| 1418 | BBInfo *CvtBBI = &TrueBBI; |
| 1419 | BBInfo *NextBBI = &FalseBBI; |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 1420 | |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 1421 | SmallVector<MachineOperand, 4> Cond(BBI.BrCond.begin(), BBI.BrCond.end()); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1422 | if (Kind == ICSimpleFalse) |
Evan Cheng | 4dcf1e8 | 2007-06-01 20:29:21 +0000 | [diff] [blame] | 1423 | std::swap(CvtBBI, NextBBI); |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1424 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1425 | MachineBasicBlock &CvtMBB = *CvtBBI->BB; |
| 1426 | MachineBasicBlock &NextMBB = *NextBBI->BB; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1427 | if (CvtBBI->IsDone || |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1428 | (CvtBBI->CannotBeCopied && CvtMBB.pred_size() > 1)) { |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1429 | // Something has changed. It's no longer safe to predicate this block. |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1430 | BBI.IsAnalyzed = false; |
| 1431 | CvtBBI->IsAnalyzed = false; |
| 1432 | return false; |
Evan Cheng | 4dcf1e8 | 2007-06-01 20:29:21 +0000 | [diff] [blame] | 1433 | } |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 1434 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1435 | if (CvtMBB.hasAddressTaken()) |
Evan Cheng | 8b8e8d8 | 2013-05-05 18:03:49 +0000 | [diff] [blame] | 1436 | // Conservatively abort if-conversion if BB's address is taken. |
| 1437 | return false; |
| 1438 | |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1439 | if (Kind == ICSimpleFalse) |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1440 | if (TII->reverseBranchCondition(Cond)) |
Craig Topper | ee4dab5 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 1441 | llvm_unreachable("Unable to reverse branch condition!"); |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1442 | |
Matthias Braun | 0c989a8 | 2016-12-08 00:15:51 +0000 | [diff] [blame] | 1443 | Redefs.init(*TRI); |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1444 | |
| 1445 | if (MRI->tracksLiveness()) { |
Hiroshi Inoue | dad8c6a | 2019-01-09 05:11:10 +0000 | [diff] [blame] | 1446 | // Initialize liveins to the first BB. These are potentially redefined by |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1447 | // predicated instructions. |
| 1448 | Redefs.addLiveIns(CvtMBB); |
| 1449 | Redefs.addLiveIns(NextMBB); |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1450 | } |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 1451 | |
Mikael Holmen | 45bd32f | 2017-06-26 09:33:04 +0000 | [diff] [blame] | 1452 | // Remove the branches from the entry so we can add the contents of the true |
| 1453 | // block to it. |
| 1454 | BBI.NonPredSize -= TII->removeBranch(*BBI.BB); |
| 1455 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1456 | if (CvtMBB.pred_size() > 1) { |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 1457 | // Copy instructions in the true block, predicate them, and add them to |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 1458 | // the entry block. |
Andrew Trick | 276dd45 | 2013-10-14 20:45:17 +0000 | [diff] [blame] | 1459 | CopyAndPredicateBlock(BBI, *CvtBBI, Cond); |
Hal Finkel | 95081bf | 2013-04-10 22:05:25 +0000 | [diff] [blame] | 1460 | |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 1461 | // Keep the CFG updated. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1462 | BBI.BB->removeSuccessor(&CvtMBB, true); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 1463 | } else { |
Mikael Holmen | 45bd32f | 2017-06-26 09:33:04 +0000 | [diff] [blame] | 1464 | // Predicate the instructions in the true block. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1465 | PredicateBlock(*CvtBBI, CvtMBB.end(), Cond); |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1466 | |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 1467 | // Merge converted block into entry block. The BB to Cvt edge is removed |
| 1468 | // by MergeBlocks. |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 1469 | MergeBlocks(BBI, *CvtBBI); |
| 1470 | } |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 1471 | |
Evan Cheng | e4ec918 | 2007-06-06 02:08:52 +0000 | [diff] [blame] | 1472 | bool IterIfcvt = true; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1473 | if (!canFallThroughTo(*BBI.BB, NextMBB)) { |
| 1474 | InsertUncondBranch(*BBI.BB, NextMBB, TII); |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 1475 | BBI.HasFallThrough = false; |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 1476 | // Now ifcvt'd block will look like this: |
| 1477 | // BB: |
| 1478 | // ... |
| 1479 | // t, f = cmp |
| 1480 | // if t op |
| 1481 | // b BBf |
| 1482 | // |
| 1483 | // We cannot further ifcvt this block because the unconditional branch |
| 1484 | // will have to be predicated on the new condition, that will not be |
| 1485 | // available if cmp executes. |
| 1486 | IterIfcvt = false; |
Evan Cheng | e4ec918 | 2007-06-06 02:08:52 +0000 | [diff] [blame] | 1487 | } |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1488 | |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 1489 | // Update block info. BB can be iteratively if-converted. |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1490 | if (!IterIfcvt) |
| 1491 | BBI.IsDone = true; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1492 | InvalidatePreds(*BBI.BB); |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1493 | CvtBBI->IsDone = true; |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1494 | |
| 1495 | // FIXME: Must maintain LiveIns. |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1496 | return true; |
| 1497 | } |
| 1498 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1499 | /// If convert a triangle sub-CFG. |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1500 | bool IfConverter::IfConvertTriangle(BBInfo &BBI, IfcvtKind Kind) { |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 1501 | BBInfo &TrueBBI = BBAnalysis[BBI.TrueBB->getNumber()]; |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 1502 | BBInfo &FalseBBI = BBAnalysis[BBI.FalseBB->getNumber()]; |
| 1503 | BBInfo *CvtBBI = &TrueBBI; |
| 1504 | BBInfo *NextBBI = &FalseBBI; |
Stuart Hastings | 0125b64 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 1505 | DebugLoc dl; // FIXME: this is nowhere |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 1506 | |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 1507 | SmallVector<MachineOperand, 4> Cond(BBI.BrCond.begin(), BBI.BrCond.end()); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1508 | if (Kind == ICTriangleFalse || Kind == ICTriangleFRev) |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 1509 | std::swap(CvtBBI, NextBBI); |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1510 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1511 | MachineBasicBlock &CvtMBB = *CvtBBI->BB; |
| 1512 | MachineBasicBlock &NextMBB = *NextBBI->BB; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1513 | if (CvtBBI->IsDone || |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1514 | (CvtBBI->CannotBeCopied && CvtMBB.pred_size() > 1)) { |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1515 | // Something has changed. It's no longer safe to predicate this block. |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1516 | BBI.IsAnalyzed = false; |
| 1517 | CvtBBI->IsAnalyzed = false; |
| 1518 | return false; |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 1519 | } |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1520 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1521 | if (CvtMBB.hasAddressTaken()) |
Evan Cheng | 8b8e8d8 | 2013-05-05 18:03:49 +0000 | [diff] [blame] | 1522 | // Conservatively abort if-conversion if BB's address is taken. |
| 1523 | return false; |
| 1524 | |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1525 | if (Kind == ICTriangleFalse || Kind == ICTriangleFRev) |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1526 | if (TII->reverseBranchCondition(Cond)) |
Craig Topper | ee4dab5 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 1527 | llvm_unreachable("Unable to reverse branch condition!"); |
Evan Cheng | 23402fc | 2007-06-15 21:18:05 +0000 | [diff] [blame] | 1528 | |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1529 | if (Kind == ICTriangleRev || Kind == ICTriangleFRev) { |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1530 | if (reverseBranchCondition(*CvtBBI)) { |
Dan Gohman | 97d95d6 | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 1531 | // BB has been changed, modify its predecessors (except for this |
| 1532 | // one) so they don't get ifcvt'ed based on bad intel. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1533 | for (MachineBasicBlock *PBB : CvtMBB.predecessors()) { |
Dan Gohman | 97d95d6 | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 1534 | if (PBB == BBI.BB) |
| 1535 | continue; |
| 1536 | BBInfo &PBBI = BBAnalysis[PBB->getNumber()]; |
| 1537 | if (PBBI.IsEnqueued) { |
| 1538 | PBBI.IsAnalyzed = false; |
| 1539 | PBBI.IsEnqueued = false; |
| 1540 | } |
Evan Cheng | add9776 | 2007-06-14 23:34:09 +0000 | [diff] [blame] | 1541 | } |
Evan Cheng | 9acfa7b | 2007-06-12 23:54:05 +0000 | [diff] [blame] | 1542 | } |
| 1543 | } |
Evan Cheng | 6a2cf07 | 2007-06-01 07:41:07 +0000 | [diff] [blame] | 1544 | |
Bob Wilson | 4581434 | 2010-06-19 05:33:57 +0000 | [diff] [blame] | 1545 | // Initialize liveins to the first BB. These are potentially redefined by |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 1546 | // predicated instructions. |
Matthias Braun | 0c989a8 | 2016-12-08 00:15:51 +0000 | [diff] [blame] | 1547 | Redefs.init(*TRI); |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1548 | if (MRI->tracksLiveness()) { |
| 1549 | Redefs.addLiveIns(CvtMBB); |
| 1550 | Redefs.addLiveIns(NextMBB); |
| 1551 | } |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 1552 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1553 | bool HasEarlyExit = CvtBBI->FalseBB != nullptr; |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1554 | BranchProbability CvtNext, CvtFalse, BBNext, BBCvt; |
Saleem Abdulrasool | f158ca3 | 2014-08-09 17:21:29 +0000 | [diff] [blame] | 1555 | |
Manman Ren | b681918 | 2014-01-29 23:18:47 +0000 | [diff] [blame] | 1556 | if (HasEarlyExit) { |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1557 | // Get probabilities before modifying CvtMBB and BBI.BB. |
| 1558 | CvtNext = MBPI->getEdgeProbability(&CvtMBB, &NextMBB); |
| 1559 | CvtFalse = MBPI->getEdgeProbability(&CvtMBB, CvtBBI->FalseBB); |
| 1560 | BBNext = MBPI->getEdgeProbability(BBI.BB, &NextMBB); |
| 1561 | BBCvt = MBPI->getEdgeProbability(BBI.BB, &CvtMBB); |
Manman Ren | b681918 | 2014-01-29 23:18:47 +0000 | [diff] [blame] | 1562 | } |
Saleem Abdulrasool | f158ca3 | 2014-08-09 17:21:29 +0000 | [diff] [blame] | 1563 | |
Mikael Holmen | 45bd32f | 2017-06-26 09:33:04 +0000 | [diff] [blame] | 1564 | // Remove the branches from the entry so we can add the contents of the true |
| 1565 | // block to it. |
| 1566 | BBI.NonPredSize -= TII->removeBranch(*BBI.BB); |
| 1567 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1568 | if (CvtMBB.pred_size() > 1) { |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 1569 | // Copy instructions in the true block, predicate them, and add them to |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 1570 | // the entry block. |
Andrew Trick | 276dd45 | 2013-10-14 20:45:17 +0000 | [diff] [blame] | 1571 | CopyAndPredicateBlock(BBI, *CvtBBI, Cond, true); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 1572 | } else { |
| 1573 | // Predicate the 'true' block after removing its branch. |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1574 | CvtBBI->NonPredSize -= TII->removeBranch(CvtMBB); |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1575 | PredicateBlock(*CvtBBI, CvtMBB.end(), Cond); |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1576 | |
Mikael Holmen | ce3ec45 | 2017-05-12 06:28:58 +0000 | [diff] [blame] | 1577 | // Now merge the entry of the triangle with the true block. |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 1578 | MergeBlocks(BBI, *CvtBBI, false); |
Evan Cheng | 0598b2d | 2007-06-18 22:44:57 +0000 | [diff] [blame] | 1579 | } |
| 1580 | |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 1581 | // Keep the CFG updated. |
| 1582 | BBI.BB->removeSuccessor(&CvtMBB, true); |
| 1583 | |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 1584 | // If 'true' block has a 'false' successor, add an exit branch to it. |
Evan Cheng | 6e4babe | 2007-06-05 01:31:40 +0000 | [diff] [blame] | 1585 | if (HasEarlyExit) { |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 1586 | SmallVector<MachineOperand, 4> RevCond(CvtBBI->BrCond.begin(), |
| 1587 | CvtBBI->BrCond.end()); |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1588 | if (TII->reverseBranchCondition(RevCond)) |
Craig Topper | ee4dab5 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 1589 | llvm_unreachable("Unable to reverse branch condition!"); |
Hans Wennborg | 1dbaf67 | 2015-12-01 03:49:42 +0000 | [diff] [blame] | 1590 | |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1591 | // Update the edge probability for both CvtBBI->FalseBB and NextBBI. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1592 | // NewNext = New_Prob(BBI.BB, NextMBB) = |
| 1593 | // Prob(BBI.BB, NextMBB) + |
| 1594 | // Prob(BBI.BB, CvtMBB) * Prob(CvtMBB, NextMBB) |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1595 | // NewFalse = New_Prob(BBI.BB, CvtBBI->FalseBB) = |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1596 | // Prob(BBI.BB, CvtMBB) * Prob(CvtMBB, CvtBBI->FalseBB) |
| 1597 | auto NewTrueBB = getNextBlock(*BBI.BB); |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1598 | auto NewNext = BBNext + BBCvt * CvtNext; |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 1599 | auto NewTrueBBIter = find(BBI.BB->successors(), NewTrueBB); |
Cong Hou | cb07d70 | 2015-12-01 21:50:20 +0000 | [diff] [blame] | 1600 | if (NewTrueBBIter != BBI.BB->succ_end()) |
| 1601 | BBI.BB->setSuccProbability(NewTrueBBIter, NewNext); |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1602 | |
| 1603 | auto NewFalse = BBCvt * CvtFalse; |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 1604 | TII->insertBranch(*BBI.BB, CvtBBI->FalseBB, nullptr, RevCond, dl); |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1605 | BBI.BB->addSuccessor(CvtBBI->FalseBB, NewFalse); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 1606 | } |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 1607 | |
| 1608 | // Merge in the 'false' block if the 'false' block has no other |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 1609 | // predecessors. Otherwise, add an unconditional branch to 'false'. |
Evan Cheng | 17aad816 | 2007-06-05 00:07:37 +0000 | [diff] [blame] | 1610 | bool FalseBBDead = false; |
Evan Cheng | e4ec918 | 2007-06-06 02:08:52 +0000 | [diff] [blame] | 1611 | bool IterIfcvt = true; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1612 | bool isFallThrough = canFallThroughTo(*BBI.BB, NextMBB); |
Evan Cheng | d3f3f0a | 2007-06-07 08:13:00 +0000 | [diff] [blame] | 1613 | if (!isFallThrough) { |
| 1614 | // Only merge them if the true block does not fallthrough to the false |
| 1615 | // block. By not merging them, we make it possible to iteratively |
| 1616 | // ifcvt the blocks. |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1617 | if (!HasEarlyExit && |
Tobias Grosser | 8cf785f | 2017-05-29 06:12:18 +0000 | [diff] [blame] | 1618 | NextMBB.pred_size() == 1 && !NextBBI->HasFallThrough && |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1619 | !NextMBB.hasAddressTaken()) { |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 1620 | MergeBlocks(BBI, *NextBBI); |
Evan Cheng | d3f3f0a | 2007-06-07 08:13:00 +0000 | [diff] [blame] | 1621 | FalseBBDead = true; |
Evan Cheng | d3f3f0a | 2007-06-07 08:13:00 +0000 | [diff] [blame] | 1622 | } else { |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1623 | InsertUncondBranch(*BBI.BB, NextMBB, TII); |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 1624 | BBI.HasFallThrough = false; |
Evan Cheng | d3f3f0a | 2007-06-07 08:13:00 +0000 | [diff] [blame] | 1625 | } |
Evan Cheng | 7783f82 | 2007-06-08 09:36:04 +0000 | [diff] [blame] | 1626 | // Mixed predicated and unpredicated code. This cannot be iteratively |
| 1627 | // predicated. |
| 1628 | IterIfcvt = false; |
Evan Cheng | e4ec918 | 2007-06-06 02:08:52 +0000 | [diff] [blame] | 1629 | } |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1630 | |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 1631 | // Update block info. BB can be iteratively if-converted. |
Bob Wilson | 8105144 | 2010-06-15 22:18:54 +0000 | [diff] [blame] | 1632 | if (!IterIfcvt) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1633 | BBI.IsDone = true; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1634 | InvalidatePreds(*BBI.BB); |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1635 | CvtBBI->IsDone = true; |
Evan Cheng | 17aad816 | 2007-06-05 00:07:37 +0000 | [diff] [blame] | 1636 | if (FalseBBDead) |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1637 | NextBBI->IsDone = true; |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1638 | |
| 1639 | // FIXME: Must maintain LiveIns. |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1640 | return true; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 1641 | } |
| 1642 | |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1643 | /// Common code shared between diamond conversions. |
| 1644 | /// \p BBI, \p TrueBBI, and \p FalseBBI form the diamond shape. |
| 1645 | /// \p NumDups1 - number of shared instructions at the beginning of \p TrueBBI |
| 1646 | /// and FalseBBI |
| 1647 | /// \p NumDups2 - number of shared instructions at the end of \p TrueBBI |
| 1648 | /// and \p FalseBBI |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1649 | /// \p RemoveBranch - Remove the common branch of the two blocks before |
| 1650 | /// predicating. Only false for unanalyzable fallthrough |
| 1651 | /// cases. The caller will replace the branch if necessary. |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1652 | /// \p MergeAddEdges - Add successor edges when merging blocks. Only false for |
| 1653 | /// unanalyzable fallthrough |
| 1654 | bool IfConverter::IfConvertDiamondCommon( |
| 1655 | BBInfo &BBI, BBInfo &TrueBBI, BBInfo &FalseBBI, |
| 1656 | unsigned NumDups1, unsigned NumDups2, |
| 1657 | bool TClobbersPred, bool FClobbersPred, |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1658 | bool RemoveBranch, bool MergeAddEdges) { |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1659 | |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1660 | if (TrueBBI.IsDone || FalseBBI.IsDone || |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1661 | TrueBBI.BB->pred_size() > 1 || FalseBBI.BB->pred_size() > 1) { |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1662 | // Something has changed. It's no longer safe to predicate these blocks. |
| 1663 | BBI.IsAnalyzed = false; |
| 1664 | TrueBBI.IsAnalyzed = false; |
| 1665 | FalseBBI.IsAnalyzed = false; |
| 1666 | return false; |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1667 | } |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1668 | |
Evan Cheng | 8b8e8d8 | 2013-05-05 18:03:49 +0000 | [diff] [blame] | 1669 | if (TrueBBI.BB->hasAddressTaken() || FalseBBI.BB->hasAddressTaken()) |
| 1670 | // Conservatively abort if-conversion if either BB has its address taken. |
| 1671 | return false; |
| 1672 | |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 1673 | // Put the predicated instructions from the 'true' block before the |
| 1674 | // instructions from the 'false' block, unless the true block would clobber |
| 1675 | // the predicate, in which case, do the opposite. |
Evan Cheng | 7948422 | 2007-06-05 23:46:14 +0000 | [diff] [blame] | 1676 | BBInfo *BBI1 = &TrueBBI; |
| 1677 | BBInfo *BBI2 = &FalseBBI; |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 1678 | SmallVector<MachineOperand, 4> RevCond(BBI.BrCond.begin(), BBI.BrCond.end()); |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1679 | if (TII->reverseBranchCondition(RevCond)) |
Craig Topper | ee4dab5 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 1680 | llvm_unreachable("Unable to reverse branch condition!"); |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 1681 | SmallVector<MachineOperand, 4> *Cond1 = &BBI.BrCond; |
| 1682 | SmallVector<MachineOperand, 4> *Cond2 = &RevCond; |
Evan Cheng | 3056599 | 2007-06-06 00:57:55 +0000 | [diff] [blame] | 1683 | |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1684 | // Figure out the more profitable ordering. |
| 1685 | bool DoSwap = false; |
Kyle Butt | 6262ca3 | 2016-08-24 21:34:24 +0000 | [diff] [blame] | 1686 | if (TClobbersPred && !FClobbersPred) |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1687 | DoSwap = true; |
Kyle Butt | e31cc84 | 2016-09-02 18:29:28 +0000 | [diff] [blame] | 1688 | else if (!TClobbersPred && !FClobbersPred) { |
Evan Cheng | 0598b2d | 2007-06-18 22:44:57 +0000 | [diff] [blame] | 1689 | if (TrueBBI.NonPredSize > FalseBBI.NonPredSize) |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1690 | DoSwap = true; |
Kyle Butt | e31cc84 | 2016-09-02 18:29:28 +0000 | [diff] [blame] | 1691 | } else if (TClobbersPred && FClobbersPred) |
| 1692 | llvm_unreachable("Predicate info cannot be clobbered by both sides."); |
Evan Cheng | 3a51c85 | 2007-06-16 09:34:52 +0000 | [diff] [blame] | 1693 | if (DoSwap) { |
Evan Cheng | 3056599 | 2007-06-06 00:57:55 +0000 | [diff] [blame] | 1694 | std::swap(BBI1, BBI2); |
| 1695 | std::swap(Cond1, Cond2); |
Evan Cheng | 3056599 | 2007-06-06 00:57:55 +0000 | [diff] [blame] | 1696 | } |
Evan Cheng | 7948422 | 2007-06-05 23:46:14 +0000 | [diff] [blame] | 1697 | |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1698 | // Remove the conditional branch from entry to the blocks. |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1699 | BBI.NonPredSize -= TII->removeBranch(*BBI.BB); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1700 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1701 | MachineBasicBlock &MBB1 = *BBI1->BB; |
| 1702 | MachineBasicBlock &MBB2 = *BBI2->BB; |
| 1703 | |
Krzysztof Parzyszek | a003b76 | 2016-08-11 18:42:06 +0000 | [diff] [blame] | 1704 | // Initialize the Redefs: |
| 1705 | // - BB2 live-in regs need implicit uses before being redefined by BB1 |
| 1706 | // instructions. |
| 1707 | // - BB1 live-out regs need implicit uses before being redefined by BB2 |
| 1708 | // instructions. We start with BB1 live-ins so we have the live-out regs |
| 1709 | // after tracking the BB1 instructions. |
Matthias Braun | 0c989a8 | 2016-12-08 00:15:51 +0000 | [diff] [blame] | 1710 | Redefs.init(*TRI); |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1711 | if (MRI->tracksLiveness()) { |
| 1712 | Redefs.addLiveIns(MBB1); |
| 1713 | Redefs.addLiveIns(MBB2); |
| 1714 | } |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 1715 | |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1716 | // Remove the duplicated instructions at the beginnings of both paths. |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1717 | // Skip dbg_value instructions. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1718 | MachineBasicBlock::iterator DI1 = MBB1.getFirstNonDebugInstr(); |
| 1719 | MachineBasicBlock::iterator DI2 = MBB2.getFirstNonDebugInstr(); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1720 | BBI1->NonPredSize -= NumDups1; |
| 1721 | BBI2->NonPredSize -= NumDups1; |
Jim Grosbach | ee6e29a | 2010-06-28 20:26:00 +0000 | [diff] [blame] | 1722 | |
| 1723 | // Skip past the dups on each side separately since there may be |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1724 | // differing dbg_value entries. NumDups1 can include a "return" |
| 1725 | // instruction, if it's not marked as "branch". |
Jim Grosbach | ee6e29a | 2010-06-28 20:26:00 +0000 | [diff] [blame] | 1726 | for (unsigned i = 0; i < NumDups1; ++DI1) { |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1727 | if (DI1 == MBB1.end()) |
| 1728 | break; |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1729 | if (!DI1->isDebugInstr()) |
Jim Grosbach | ee6e29a | 2010-06-28 20:26:00 +0000 | [diff] [blame] | 1730 | ++i; |
| 1731 | } |
Jim Grosbach | c34befc | 2010-06-25 23:05:46 +0000 | [diff] [blame] | 1732 | while (NumDups1 != 0) { |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1733 | ++DI2; |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1734 | if (DI2 == MBB2.end()) |
| 1735 | break; |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1736 | if (!DI2->isDebugInstr()) |
Jim Grosbach | ee6e29a | 2010-06-28 20:26:00 +0000 | [diff] [blame] | 1737 | --NumDups1; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1738 | } |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 1739 | |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1740 | if (MRI->tracksLiveness()) { |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1741 | for (const MachineInstr &MI : make_range(MBB1.begin(), DI1)) { |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 1742 | SmallVector<std::pair<MCPhysReg, const MachineOperand*>, 4> Dummy; |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1743 | Redefs.stepForward(MI, Dummy); |
| 1744 | } |
Matthias Braun | d616ccc | 2013-10-11 19:04:37 +0000 | [diff] [blame] | 1745 | } |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1746 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1747 | BBI.BB->splice(BBI.BB->end(), &MBB1, MBB1.begin(), DI1); |
| 1748 | MBB2.erase(MBB2.begin(), DI2); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1749 | |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1750 | // The branches have been checked to match, so it is safe to remove the |
| 1751 | // branch in BB1 and rely on the copy in BB2. The complication is that |
| 1752 | // the blocks may end with a return instruction, which may or may not |
| 1753 | // be marked as "branch". If it's not, then it could be included in |
| 1754 | // "dups1", leaving the blocks potentially empty after moving the common |
| 1755 | // duplicates. |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1756 | #ifndef NDEBUG |
| 1757 | // Unanalyzable branches must match exactly. Check that now. |
| 1758 | if (!BBI1->IsBrAnalyzable) |
| 1759 | verifySameBranchInstructions(&MBB1, &MBB2); |
| 1760 | #endif |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1761 | BBI1->NonPredSize -= TII->removeBranch(*BBI1->BB); |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 1762 | // Remove duplicated instructions. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1763 | DI1 = MBB1.end(); |
Jim Grosbach | 412800d | 2010-06-14 21:30:32 +0000 | [diff] [blame] | 1764 | for (unsigned i = 0; i != NumDups2; ) { |
| 1765 | // NumDups2 only counted non-dbg_value instructions, so this won't |
| 1766 | // run off the head of the list. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1767 | assert(DI1 != MBB1.begin()); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1768 | --DI1; |
Jim Grosbach | 412800d | 2010-06-14 21:30:32 +0000 | [diff] [blame] | 1769 | // skip dbg_value instructions |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1770 | if (!DI1->isDebugInstr()) |
Jim Grosbach | 412800d | 2010-06-14 21:30:32 +0000 | [diff] [blame] | 1771 | ++i; |
| 1772 | } |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1773 | MBB1.erase(DI1, MBB1.end()); |
Evan Cheng | 7948422 | 2007-06-05 23:46:14 +0000 | [diff] [blame] | 1774 | |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1775 | DI2 = BBI2->BB->end(); |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1776 | // The branches have been checked to match. Skip over the branch in the false |
| 1777 | // block so that we don't try to predicate it. |
| 1778 | if (RemoveBranch) |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 1779 | BBI2->NonPredSize -= TII->removeBranch(*BBI2->BB); |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1780 | else { |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1781 | // Make DI2 point to the end of the range where the common "tail" |
| 1782 | // instructions could be found. |
| 1783 | while (DI2 != MBB2.begin()) { |
| 1784 | MachineBasicBlock::iterator Prev = std::prev(DI2); |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1785 | if (!Prev->isBranch() && !Prev->isDebugInstr()) |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1786 | break; |
| 1787 | DI2 = Prev; |
| 1788 | } |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1789 | } |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1790 | while (NumDups2 != 0) { |
Jim Grosbach | 412800d | 2010-06-14 21:30:32 +0000 | [diff] [blame] | 1791 | // NumDups2 only counted non-dbg_value instructions, so this won't |
| 1792 | // run off the head of the list. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1793 | assert(DI2 != MBB2.begin()); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1794 | --DI2; |
Jim Grosbach | 412800d | 2010-06-14 21:30:32 +0000 | [diff] [blame] | 1795 | // skip dbg_value instructions |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1796 | if (!DI2->isDebugInstr()) |
Jim Grosbach | 412800d | 2010-06-14 21:30:32 +0000 | [diff] [blame] | 1797 | --NumDups2; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1798 | } |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1799 | |
| 1800 | // Remember which registers would later be defined by the false block. |
| 1801 | // This allows us not to predicate instructions in the true block that would |
| 1802 | // later be re-defined. That is, rather than |
| 1803 | // subeq r0, r1, #1 |
| 1804 | // addne r0, r1, #1 |
| 1805 | // generate: |
| 1806 | // sub r0, r1, #1 |
| 1807 | // addne r0, r1, #1 |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 1808 | SmallSet<MCPhysReg, 4> RedefsByFalse; |
| 1809 | SmallSet<MCPhysReg, 4> ExtUses; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1810 | if (TII->isProfitableToUnpredicate(MBB1, MBB2)) { |
| 1811 | for (const MachineInstr &FI : make_range(MBB2.begin(), DI2)) { |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1812 | if (FI.isDebugInstr()) |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1813 | continue; |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 1814 | SmallVector<MCPhysReg, 4> Defs; |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 1815 | for (const MachineOperand &MO : FI.operands()) { |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1816 | if (!MO.isReg()) |
| 1817 | continue; |
| 1818 | unsigned Reg = MO.getReg(); |
| 1819 | if (!Reg) |
| 1820 | continue; |
| 1821 | if (MO.isDef()) { |
| 1822 | Defs.push_back(Reg); |
| 1823 | } else if (!RedefsByFalse.count(Reg)) { |
| 1824 | // These are defined before ctrl flow reach the 'false' instructions. |
| 1825 | // They cannot be modified by the 'true' instructions. |
Chad Rosier | abdb1d6 | 2013-05-22 23:17:36 +0000 | [diff] [blame] | 1826 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 1827 | SubRegs.isValid(); ++SubRegs) |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1828 | ExtUses.insert(*SubRegs); |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1829 | } |
| 1830 | } |
| 1831 | |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 1832 | for (MCPhysReg Reg : Defs) { |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1833 | if (!ExtUses.count(Reg)) { |
Chad Rosier | abdb1d6 | 2013-05-22 23:17:36 +0000 | [diff] [blame] | 1834 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 1835 | SubRegs.isValid(); ++SubRegs) |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1836 | RedefsByFalse.insert(*SubRegs); |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1837 | } |
| 1838 | } |
| 1839 | } |
| 1840 | } |
| 1841 | |
| 1842 | // Predicate the 'true' block. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1843 | PredicateBlock(*BBI1, MBB1.end(), *Cond1, &RedefsByFalse); |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1844 | |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 1845 | // After predicating BBI1, if there is a predicated terminator in BBI1 and |
| 1846 | // a non-predicated in BBI2, then we don't want to predicate the one from |
| 1847 | // BBI2. The reason is that if we merged these blocks, we would end up with |
| 1848 | // two predicated terminators in the same block. |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1849 | // Also, if the branches in MBB1 and MBB2 were non-analyzable, then don't |
| 1850 | // predicate them either. They were checked to be identical, and so the |
| 1851 | // same branch would happen regardless of which path was taken. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1852 | if (!MBB2.empty() && (DI2 == MBB2.end())) { |
| 1853 | MachineBasicBlock::iterator BBI1T = MBB1.getFirstTerminator(); |
| 1854 | MachineBasicBlock::iterator BBI2T = MBB2.getFirstTerminator(); |
Krzysztof Parzyszek | fbee857 | 2018-04-19 17:26:46 +0000 | [diff] [blame] | 1855 | bool BB1Predicated = BBI1T != MBB1.end() && TII->isPredicated(*BBI1T); |
| 1856 | bool BB2NonPredicated = BBI2T != MBB2.end() && !TII->isPredicated(*BBI2T); |
| 1857 | if (BB2NonPredicated && (BB1Predicated || !BBI2->IsBrAnalyzable)) |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 1858 | --DI2; |
| 1859 | } |
| 1860 | |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1861 | // Predicate the 'false' block. |
Andrew Trick | 276dd45 | 2013-10-14 20:45:17 +0000 | [diff] [blame] | 1862 | PredicateBlock(*BBI2, DI2, *Cond2); |
Evan Cheng | 7948422 | 2007-06-05 23:46:14 +0000 | [diff] [blame] | 1863 | |
Evan Cheng | 0598b2d | 2007-06-18 22:44:57 +0000 | [diff] [blame] | 1864 | // Merge the true block into the entry of the diamond. |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1865 | MergeBlocks(BBI, *BBI1, MergeAddEdges); |
| 1866 | MergeBlocks(BBI, *BBI2, MergeAddEdges); |
| 1867 | return true; |
| 1868 | } |
| 1869 | |
| 1870 | /// If convert an almost-diamond sub-CFG where the true |
| 1871 | /// and false blocks share a common tail. |
| 1872 | bool IfConverter::IfConvertForkedDiamond( |
| 1873 | BBInfo &BBI, IfcvtKind Kind, |
| 1874 | unsigned NumDups1, unsigned NumDups2, |
| 1875 | bool TClobbersPred, bool FClobbersPred) { |
| 1876 | BBInfo &TrueBBI = BBAnalysis[BBI.TrueBB->getNumber()]; |
| 1877 | BBInfo &FalseBBI = BBAnalysis[BBI.FalseBB->getNumber()]; |
| 1878 | |
| 1879 | // Save the debug location for later. |
| 1880 | DebugLoc dl; |
| 1881 | MachineBasicBlock::iterator TIE = TrueBBI.BB->getFirstTerminator(); |
| 1882 | if (TIE != TrueBBI.BB->end()) |
| 1883 | dl = TIE->getDebugLoc(); |
| 1884 | // Removing branches from both blocks is safe, because we have already |
| 1885 | // determined that both blocks have the same branch instructions. The branch |
| 1886 | // will be added back at the end, unpredicated. |
| 1887 | if (!IfConvertDiamondCommon( |
| 1888 | BBI, TrueBBI, FalseBBI, |
| 1889 | NumDups1, NumDups2, |
| 1890 | TClobbersPred, FClobbersPred, |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1891 | /* RemoveBranch */ true, /* MergeAddEdges */ true)) |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1892 | return false; |
| 1893 | |
| 1894 | // Add back the branch. |
| 1895 | // Debug location saved above when removing the branch from BBI2 |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 1896 | TII->insertBranch(*BBI.BB, TrueBBI.TrueBB, TrueBBI.FalseBB, |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1897 | TrueBBI.BrCond, dl); |
| 1898 | |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1899 | // Update block info. |
| 1900 | BBI.IsDone = TrueBBI.IsDone = FalseBBI.IsDone = true; |
| 1901 | InvalidatePreds(*BBI.BB); |
| 1902 | |
| 1903 | // FIXME: Must maintain LiveIns. |
| 1904 | return true; |
| 1905 | } |
| 1906 | |
| 1907 | /// If convert a diamond sub-CFG. |
| 1908 | bool IfConverter::IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind, |
| 1909 | unsigned NumDups1, unsigned NumDups2, |
| 1910 | bool TClobbersPred, bool FClobbersPred) { |
| 1911 | BBInfo &TrueBBI = BBAnalysis[BBI.TrueBB->getNumber()]; |
| 1912 | BBInfo &FalseBBI = BBAnalysis[BBI.FalseBB->getNumber()]; |
| 1913 | MachineBasicBlock *TailBB = TrueBBI.TrueBB; |
| 1914 | |
| 1915 | // True block must fall through or end with an unanalyzable terminator. |
| 1916 | if (!TailBB) { |
| 1917 | if (blockAlwaysFallThrough(TrueBBI)) |
| 1918 | TailBB = FalseBBI.TrueBB; |
| 1919 | assert((TailBB || !TrueBBI.IsBrAnalyzable) && "Unexpected!"); |
| 1920 | } |
| 1921 | |
| 1922 | if (!IfConvertDiamondCommon( |
| 1923 | BBI, TrueBBI, FalseBBI, |
| 1924 | NumDups1, NumDups2, |
Kyle Butt | 8699921 | 2016-09-02 18:29:26 +0000 | [diff] [blame] | 1925 | TClobbersPred, FClobbersPred, |
Kyle Butt | 092c4dd | 2016-08-29 18:27:12 +0000 | [diff] [blame] | 1926 | /* RemoveBranch */ TrueBBI.IsBrAnalyzable, |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1927 | /* MergeAddEdges */ TailBB == nullptr)) |
| 1928 | return false; |
Evan Cheng | 3056599 | 2007-06-06 00:57:55 +0000 | [diff] [blame] | 1929 | |
Bob Wilson | 2371f4f | 2009-05-13 23:25:24 +0000 | [diff] [blame] | 1930 | // If the if-converted block falls through or unconditionally branches into |
| 1931 | // the tail block, and the tail block does not have other predecessors, then |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1932 | // fold the tail block in as well. Otherwise, unless it falls through to the |
| 1933 | // tail, add a unconditional branch to it. |
| 1934 | if (TailBB) { |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 1935 | // We need to remove the edges to the true and false blocks manually since |
| 1936 | // we didn't let IfConvertDiamondCommon update the CFG. |
| 1937 | BBI.BB->removeSuccessor(TrueBBI.BB); |
| 1938 | BBI.BB->removeSuccessor(FalseBBI.BB, true); |
| 1939 | |
Pete Cooper | 77c703f | 2011-11-04 23:49:14 +0000 | [diff] [blame] | 1940 | BBInfo &TailBBI = BBAnalysis[TailBB->getNumber()]; |
Evan Cheng | 8b8e8d8 | 2013-05-05 18:03:49 +0000 | [diff] [blame] | 1941 | bool CanMergeTail = !TailBBI.HasFallThrough && |
| 1942 | !TailBBI.BB->hasAddressTaken(); |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 1943 | // The if-converted block can still have a predicated terminator |
| 1944 | // (e.g. a predicated return). If that is the case, we cannot merge |
| 1945 | // it with the tail block. |
| 1946 | MachineBasicBlock::const_iterator TI = BBI.BB->getFirstTerminator(); |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 1947 | if (TI != BBI.BB->end() && TII->isPredicated(*TI)) |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 1948 | CanMergeTail = false; |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 1949 | // There may still be a fall-through edge from BBI1 or BBI2 to TailBB; |
| 1950 | // check if there are any other predecessors besides those. |
| 1951 | unsigned NumPreds = TailBB->pred_size(); |
| 1952 | if (NumPreds > 1) |
| 1953 | CanMergeTail = false; |
| 1954 | else if (NumPreds == 1 && CanMergeTail) { |
| 1955 | MachineBasicBlock::pred_iterator PI = TailBB->pred_begin(); |
Kyle Butt | a8c7371 | 2016-08-24 21:34:27 +0000 | [diff] [blame] | 1956 | if (*PI != TrueBBI.BB && *PI != FalseBBI.BB) |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 1957 | CanMergeTail = false; |
| 1958 | } |
| 1959 | if (CanMergeTail) { |
Evan Cheng | 0598b2d | 2007-06-18 22:44:57 +0000 | [diff] [blame] | 1960 | MergeBlocks(BBI, TailBBI); |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1961 | TailBBI.IsDone = true; |
| 1962 | } else { |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1963 | BBI.BB->addSuccessor(TailBB, BranchProbability::getOne()); |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1964 | InsertUncondBranch(*BBI.BB, *TailBB, TII); |
Evan Cheng | 0598b2d | 2007-06-18 22:44:57 +0000 | [diff] [blame] | 1965 | BBI.HasFallThrough = false; |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1966 | } |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1967 | } |
| 1968 | |
Evan Cheng | 7948422 | 2007-06-05 23:46:14 +0000 | [diff] [blame] | 1969 | // Update block info. |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 1970 | BBI.IsDone = TrueBBI.IsDone = FalseBBI.IsDone = true; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 1971 | InvalidatePreds(*BBI.BB); |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1972 | |
| 1973 | // FIXME: Must maintain LiveIns. |
Evan Cheng | e26c091 | 2007-05-21 22:22:58 +0000 | [diff] [blame] | 1974 | return true; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 1975 | } |
| 1976 | |
Duncan P. N. Exon Smith | 0490cde | 2016-06-30 23:04:51 +0000 | [diff] [blame] | 1977 | static bool MaySpeculate(const MachineInstr &MI, |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 1978 | SmallSet<MCPhysReg, 4> &LaterRedefs) { |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1979 | bool SawStore = true; |
Duncan P. N. Exon Smith | 0490cde | 2016-06-30 23:04:51 +0000 | [diff] [blame] | 1980 | if (!MI.isSafeToMove(nullptr, SawStore)) |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1981 | return false; |
| 1982 | |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 1983 | for (const MachineOperand &MO : MI.operands()) { |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 1984 | if (!MO.isReg()) |
| 1985 | continue; |
| 1986 | unsigned Reg = MO.getReg(); |
| 1987 | if (!Reg) |
| 1988 | continue; |
| 1989 | if (MO.isDef() && !LaterRedefs.count(Reg)) |
| 1990 | return false; |
| 1991 | } |
| 1992 | |
| 1993 | return true; |
| 1994 | } |
| 1995 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 1996 | /// Predicate instructions from the start of the block to the specified end with |
| 1997 | /// the specified condition. |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 1998 | void IfConverter::PredicateBlock(BBInfo &BBI, |
Evan Cheng | 51eb2c3 | 2007-06-18 08:37:25 +0000 | [diff] [blame] | 1999 | MachineBasicBlock::iterator E, |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 2000 | SmallVectorImpl<MachineOperand> &Cond, |
Matthias Braun | c661387 | 2018-11-06 19:00:11 +0000 | [diff] [blame] | 2001 | SmallSet<MCPhysReg, 4> *LaterRedefs) { |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 2002 | bool AnyUnpred = false; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2003 | bool MaySpec = LaterRedefs != nullptr; |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 2004 | for (MachineInstr &I : make_range(BBI.BB->begin(), E)) { |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 2005 | if (I.isDebugInstr() || TII->isPredicated(I)) |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 2006 | continue; |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 2007 | // It may be possible not to predicate an instruction if it's the 'true' |
| 2008 | // side of a diamond and the 'false' side may re-define the instruction's |
| 2009 | // defs. |
Matthias Braun | 07066cc | 2015-05-19 21:22:20 +0000 | [diff] [blame] | 2010 | if (MaySpec && MaySpeculate(I, *LaterRedefs)) { |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 2011 | AnyUnpred = true; |
| 2012 | continue; |
| 2013 | } |
| 2014 | // If any instruction is predicated, then every instruction after it must |
| 2015 | // be predicated. |
| 2016 | MaySpec = false; |
Duncan P. N. Exon Smith | 0490cde | 2016-06-30 23:04:51 +0000 | [diff] [blame] | 2017 | if (!TII->PredicateInstruction(I, Cond)) { |
Torok Edwin | 08954aa | 2009-07-12 20:07:01 +0000 | [diff] [blame] | 2018 | #ifndef NDEBUG |
Duncan P. N. Exon Smith | 0490cde | 2016-06-30 23:04:51 +0000 | [diff] [blame] | 2019 | dbgs() << "Unable to predicate " << I << "!\n"; |
Torok Edwin | 08954aa | 2009-07-12 20:07:01 +0000 | [diff] [blame] | 2020 | #endif |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2021 | llvm_unreachable(nullptr); |
Evan Cheng | af71610 | 2007-05-16 21:54:37 +0000 | [diff] [blame] | 2022 | } |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 2023 | |
Bob Wilson | 4581434 | 2010-06-19 05:33:57 +0000 | [diff] [blame] | 2024 | // If the predicated instruction now redefines a register as the result of |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 2025 | // if-conversion, add an implicit kill. |
Duncan P. N. Exon Smith | 0490cde | 2016-06-30 23:04:51 +0000 | [diff] [blame] | 2026 | UpdatePredRedefs(I, Redefs); |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 2027 | } |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 2028 | |
Benjamin Kramer | 4f6ac16 | 2015-02-28 10:11:12 +0000 | [diff] [blame] | 2029 | BBI.Predicate.append(Cond.begin(), Cond.end()); |
Evan Cheng | df1a429 | 2007-06-08 19:17:12 +0000 | [diff] [blame] | 2030 | |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2031 | BBI.IsAnalyzed = false; |
| 2032 | BBI.NonPredSize = 0; |
| 2033 | |
Dan Gohman | d2d1ae1 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 2034 | ++NumIfConvBBs; |
Evan Cheng | 4266a79 | 2011-12-19 22:01:30 +0000 | [diff] [blame] | 2035 | if (AnyUnpred) |
| 2036 | ++NumUnpred; |
Evan Cheng | 312b723 | 2007-06-04 06:47:22 +0000 | [diff] [blame] | 2037 | } |
| 2038 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 2039 | /// Copy and predicate instructions from source BB to the destination block. |
| 2040 | /// Skip end of block branches if IgnoreBr is true. |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2041 | void IfConverter::CopyAndPredicateBlock(BBInfo &ToBBI, BBInfo &FromBBI, |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 2042 | SmallVectorImpl<MachineOperand> &Cond, |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2043 | bool IgnoreBr) { |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 2044 | MachineFunction &MF = *ToBBI.BB->getParent(); |
| 2045 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2046 | MachineBasicBlock &FromMBB = *FromBBI.BB; |
| 2047 | for (MachineInstr &I : FromMBB) { |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2048 | // Do not copy the end of the block branches. |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 2049 | if (IgnoreBr && I.isBranch()) |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2050 | break; |
| 2051 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 2052 | MachineInstr *MI = MF.CloneMachineInstr(&I); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2053 | ToBBI.BB->insert(ToBBI.BB->end(), MI); |
Bob Wilson | efd360c | 2010-10-26 00:02:21 +0000 | [diff] [blame] | 2054 | ToBBI.NonPredSize++; |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 2055 | unsigned ExtraPredCost = TII->getPredicationCost(I); |
| 2056 | unsigned NumCycles = SchedModel.computeInstrLatency(&I, false); |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 2057 | if (NumCycles > 1) |
| 2058 | ToBBI.ExtraCost += NumCycles-1; |
| 2059 | ToBBI.ExtraCost2 += ExtraPredCost; |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2060 | |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 2061 | if (!TII->isPredicated(I) && !MI->isDebugInstr()) { |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 2062 | if (!TII->PredicateInstruction(*MI, Cond)) { |
Torok Edwin | 08954aa | 2009-07-12 20:07:01 +0000 | [diff] [blame] | 2063 | #ifndef NDEBUG |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 2064 | dbgs() << "Unable to predicate " << I << "!\n"; |
Torok Edwin | 08954aa | 2009-07-12 20:07:01 +0000 | [diff] [blame] | 2065 | #endif |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2066 | llvm_unreachable(nullptr); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2067 | } |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 2068 | } |
| 2069 | |
Bob Wilson | 4581434 | 2010-06-19 05:33:57 +0000 | [diff] [blame] | 2070 | // If the predicated instruction now redefines a register as the result of |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 2071 | // if-conversion, add an implicit kill. |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 2072 | UpdatePredRedefs(*MI, Redefs); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2073 | } |
| 2074 | |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 2075 | if (!IgnoreBr) { |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2076 | std::vector<MachineBasicBlock *> Succs(FromMBB.succ_begin(), |
| 2077 | FromMBB.succ_end()); |
| 2078 | MachineBasicBlock *NBB = getNextBlock(FromMBB); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2079 | MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; |
Evan Cheng | 0598b2d | 2007-06-18 22:44:57 +0000 | [diff] [blame] | 2080 | |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 2081 | for (MachineBasicBlock *Succ : Succs) { |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 2082 | // Fallthrough edge can't be transferred. |
| 2083 | if (Succ == FallThrough) |
| 2084 | continue; |
| 2085 | ToBBI.BB->addSuccessor(Succ); |
| 2086 | } |
Evan Cheng | 0598b2d | 2007-06-18 22:44:57 +0000 | [diff] [blame] | 2087 | } |
| 2088 | |
Benjamin Kramer | 4f6ac16 | 2015-02-28 10:11:12 +0000 | [diff] [blame] | 2089 | ToBBI.Predicate.append(FromBBI.Predicate.begin(), FromBBI.Predicate.end()); |
| 2090 | ToBBI.Predicate.append(Cond.begin(), Cond.end()); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2091 | |
| 2092 | ToBBI.ClobbersPred |= FromBBI.ClobbersPred; |
| 2093 | ToBBI.IsAnalyzed = false; |
| 2094 | |
Dan Gohman | d2d1ae1 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 2095 | ++NumDupBBs; |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2096 | } |
| 2097 | |
Matthias Braun | 2c93179 | 2016-08-17 02:51:57 +0000 | [diff] [blame] | 2098 | /// Move all instructions from FromBB to the end of ToBB. This will leave |
| 2099 | /// FromBB as an empty block, so remove all of its successor edges except for |
| 2100 | /// the fall-through edge. If AddEdges is true, i.e., when FromBBI's branch is |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 2101 | /// being moved, add those successor edges to ToBBI and remove the old edge |
| 2102 | /// from ToBBI to FromBBI. |
Bob Wilson | 1e5da55 | 2010-06-29 00:55:23 +0000 | [diff] [blame] | 2103 | void IfConverter::MergeBlocks(BBInfo &ToBBI, BBInfo &FromBBI, bool AddEdges) { |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2104 | MachineBasicBlock &FromMBB = *FromBBI.BB; |
| 2105 | assert(!FromMBB.hasAddressTaken() && |
Evan Cheng | 8b8e8d8 | 2013-05-05 18:03:49 +0000 | [diff] [blame] | 2106 | "Removing a BB whose address is taken!"); |
| 2107 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2108 | // In case FromMBB contains terminators (e.g. return instruction), |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 2109 | // first move the non-terminator instructions, then the terminators. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2110 | MachineBasicBlock::iterator FromTI = FromMBB.getFirstTerminator(); |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 2111 | MachineBasicBlock::iterator ToTI = ToBBI.BB->getFirstTerminator(); |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2112 | ToBBI.BB->splice(ToTI, &FromMBB, FromMBB.begin(), FromTI); |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 2113 | |
| 2114 | // If FromBB has non-predicated terminator we should copy it at the end. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2115 | if (FromTI != FromMBB.end() && !TII->isPredicated(*FromTI)) |
Krzysztof Parzyszek | 2451c48 | 2016-01-20 13:14:52 +0000 | [diff] [blame] | 2116 | ToTI = ToBBI.BB->end(); |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2117 | ToBBI.BB->splice(ToTI, &FromMBB, FromTI, FromMBB.end()); |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 2118 | |
Cong Hou | b9e8d48 | 2015-12-17 01:29:08 +0000 | [diff] [blame] | 2119 | // Force normalizing the successors' probabilities of ToBBI.BB to convert all |
| 2120 | // unknown probabilities into known ones. |
| 2121 | // FIXME: This usage is too tricky and in the future we would like to |
| 2122 | // eliminate all unknown probabilities in MBB. |
Krzysztof Parzyszek | 5b8fae5 | 2017-03-06 19:12:42 +0000 | [diff] [blame] | 2123 | if (ToBBI.IsBrAnalyzable) |
| 2124 | ToBBI.BB->normalizeSuccProbs(); |
Cong Hou | b9e8d48 | 2015-12-17 01:29:08 +0000 | [diff] [blame] | 2125 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2126 | SmallVector<MachineBasicBlock *, 4> FromSuccs(FromMBB.succ_begin(), |
| 2127 | FromMBB.succ_end()); |
| 2128 | MachineBasicBlock *NBB = getNextBlock(FromMBB); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2129 | MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2130 | // The edge probability from ToBBI.BB to FromMBB, which is only needed when |
| 2131 | // AddEdges is true and FromMBB is a successor of ToBBI.BB. |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2132 | auto To2FromProb = BranchProbability::getZero(); |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2133 | if (AddEdges && ToBBI.BB->isSuccessor(&FromMBB)) { |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 2134 | // Remove the old edge but remember the edge probability so we can calculate |
| 2135 | // the correct weights on the new edges being added further down. |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2136 | To2FromProb = MBPI->getEdgeProbability(ToBBI.BB, &FromMBB); |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 2137 | ToBBI.BB->removeSuccessor(&FromMBB); |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2138 | } |
| 2139 | |
Matthias Braun | b1e0558 | 2016-08-17 02:51:59 +0000 | [diff] [blame] | 2140 | for (MachineBasicBlock *Succ : FromSuccs) { |
Evan Cheng | 288f154 | 2007-06-08 22:01:07 +0000 | [diff] [blame] | 2141 | // Fallthrough edge can't be transferred. |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 2142 | if (Succ == FallThrough) |
| 2143 | continue; |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2144 | |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2145 | auto NewProb = BranchProbability::getZero(); |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2146 | if (AddEdges) { |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2147 | // Calculate the edge probability for the edge from ToBBI.BB to Succ, |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2148 | // which is a portion of the edge probability from FromMBB to Succ. The |
| 2149 | // portion ratio is the edge probability from ToBBI.BB to FromMBB (if |
Hiroshi Inoue | dad8c6a | 2019-01-09 05:11:10 +0000 | [diff] [blame] | 2150 | // FromBBI is a successor of ToBBI.BB. See comment below for exception). |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2151 | NewProb = MBPI->getEdgeProbability(&FromMBB, Succ); |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2152 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2153 | // To2FromProb is 0 when FromMBB is not a successor of ToBBI.BB. This |
| 2154 | // only happens when if-converting a diamond CFG and FromMBB is the |
| 2155 | // tail BB. In this case FromMBB post-dominates ToBBI.BB and hence we |
| 2156 | // could just use the probabilities on FromMBB's out-edges when adding |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2157 | // new successors. |
| 2158 | if (!To2FromProb.isZero()) |
| 2159 | NewProb *= To2FromProb; |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2160 | } |
| 2161 | |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2162 | FromMBB.removeSuccessor(Succ); |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2163 | |
| 2164 | if (AddEdges) { |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2165 | // If the edge from ToBBI.BB to Succ already exists, update the |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 2166 | // probability of this edge by adding NewProb to it. An example is shown |
Matthias Braun | 08f4704 | 2016-08-17 02:52:01 +0000 | [diff] [blame] | 2167 | // below, in which A is ToBBI.BB and B is FromMBB. In this case we |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2168 | // don't have to set C as A's successor as it already is. We only need to |
| 2169 | // update the edge probability on A->C. Note that B will not be |
| 2170 | // immediately removed from A's successors. It is possible that B->D is |
| 2171 | // not removed either if D is a fallthrough of B. Later the edge A->D |
| 2172 | // (generated here) and B->D will be combined into one edge. To maintain |
| 2173 | // correct edge probability of this combined edge, we need to set the edge |
| 2174 | // probability of A->B to zero, which is already done above. The edge |
| 2175 | // probability on A->D is calculated by scaling the original probability |
| 2176 | // on A->B by the probability of B->D. |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2177 | // |
| 2178 | // Before ifcvt: After ifcvt (assume B->D is kept): |
| 2179 | // |
| 2180 | // A A |
| 2181 | // /| /|\ |
| 2182 | // / B / B| |
| 2183 | // | /| | || |
| 2184 | // |/ | | |/ |
| 2185 | // C D C D |
| 2186 | // |
| 2187 | if (ToBBI.BB->isSuccessor(Succ)) |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2188 | ToBBI.BB->setSuccProbability( |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 2189 | find(ToBBI.BB->successors(), Succ), |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2190 | MBPI->getEdgeProbability(ToBBI.BB, Succ) + NewProb); |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2191 | else |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 2192 | ToBBI.BB->addSuccessor(Succ, NewProb); |
Cong Hou | d40105d | 2015-09-18 20:22:41 +0000 | [diff] [blame] | 2193 | } |
Evan Cheng | be9859e | 2007-06-07 02:12:15 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
Mikael Holmen | 8b10680 | 2017-08-11 06:57:08 +0000 | [diff] [blame] | 2196 | // Move the now empty FromMBB out of the way to the end of the function so |
| 2197 | // it doesn't interfere with fallthrough checks done by canFallThroughTo(). |
| 2198 | MachineBasicBlock *Last = &*FromMBB.getParent()->rbegin(); |
| 2199 | if (Last != &FromMBB) |
| 2200 | FromMBB.moveAfter(Last); |
Evan Cheng | 288f154 | 2007-06-08 22:01:07 +0000 | [diff] [blame] | 2201 | |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 2202 | // Normalize the probabilities of ToBBI.BB's successors with all adjustment |
| 2203 | // we've done above. |
Krzysztof Parzyszek | 5b8fae5 | 2017-03-06 19:12:42 +0000 | [diff] [blame] | 2204 | if (ToBBI.IsBrAnalyzable && FromBBI.IsBrAnalyzable) |
| 2205 | ToBBI.BB->normalizeSuccProbs(); |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 2206 | |
Benjamin Kramer | 4f6ac16 | 2015-02-28 10:11:12 +0000 | [diff] [blame] | 2207 | ToBBI.Predicate.append(FromBBI.Predicate.begin(), FromBBI.Predicate.end()); |
Evan Cheng | 92fb545 | 2007-06-15 07:36:12 +0000 | [diff] [blame] | 2208 | FromBBI.Predicate.clear(); |
| 2209 | |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 2210 | ToBBI.NonPredSize += FromBBI.NonPredSize; |
Bob Wilson | efd360c | 2010-10-26 00:02:21 +0000 | [diff] [blame] | 2211 | ToBBI.ExtraCost += FromBBI.ExtraCost; |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 2212 | ToBBI.ExtraCost2 += FromBBI.ExtraCost2; |
Evan Cheng | d0e6691 | 2007-05-23 07:23:16 +0000 | [diff] [blame] | 2213 | FromBBI.NonPredSize = 0; |
Bob Wilson | efd360c | 2010-10-26 00:02:21 +0000 | [diff] [blame] | 2214 | FromBBI.ExtraCost = 0; |
Evan Cheng | debf9c5 | 2010-11-03 00:45:17 +0000 | [diff] [blame] | 2215 | FromBBI.ExtraCost2 = 0; |
Evan Cheng | 9030b98 | 2007-06-06 10:16:17 +0000 | [diff] [blame] | 2216 | |
Evan Cheng | 4dd31a7 | 2007-06-11 22:26:22 +0000 | [diff] [blame] | 2217 | ToBBI.ClobbersPred |= FromBBI.ClobbersPred; |
Evan Cheng | 2117d1f | 2007-06-09 01:03:43 +0000 | [diff] [blame] | 2218 | ToBBI.HasFallThrough = FromBBI.HasFallThrough; |
Evan Cheng | 1e6f08b | 2007-06-14 20:28:52 +0000 | [diff] [blame] | 2219 | ToBBI.IsAnalyzed = false; |
| 2220 | FromBBI.IsAnalyzed = false; |
Evan Cheng | f5e53a5 | 2007-05-16 02:00:57 +0000 | [diff] [blame] | 2221 | } |
Akira Hatanaka | 4a61619 | 2015-06-08 18:50:43 +0000 | [diff] [blame] | 2222 | |
| 2223 | FunctionPass * |
Matthias Braun | 8b38ffa | 2016-10-24 23:23:02 +0000 | [diff] [blame] | 2224 | llvm::createIfConverter(std::function<bool(const MachineFunction &)> Ftor) { |
Benjamin Kramer | d3f4c05 | 2016-06-12 16:13:55 +0000 | [diff] [blame] | 2225 | return new IfConverter(std::move(Ftor)); |
Akira Hatanaka | 4a61619 | 2015-06-08 18:50:43 +0000 | [diff] [blame] | 2226 | } |