| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 1 | //===- ImplicitNullChecks.cpp - Fold null checks into memory accesses -----===// | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
|  | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
|  | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 | // | 
|  | 10 | // This pass turns explicit null checks of the form | 
|  | 11 | // | 
|  | 12 | //   test %r10, %r10 | 
|  | 13 | //   je throw_npe | 
|  | 14 | //   movl (%r10), %esi | 
|  | 15 | //   ... | 
|  | 16 | // | 
|  | 17 | // to | 
|  | 18 | // | 
|  | 19 | //   faulting_load_op("movl (%r10), %esi", throw_npe) | 
|  | 20 | //   ... | 
|  | 21 | // | 
|  | 22 | // With the help of a runtime that understands the .fault_maps section, | 
|  | 23 | // faulting_load_op branches to throw_npe if executing movl (%r10), %esi incurs | 
|  | 24 | // a page fault. | 
| Serguei Katkov | 51c220c | 2017-04-12 04:41:35 +0000 | [diff] [blame] | 25 | // Store and LoadStore are also supported. | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 26 | // | 
|  | 27 | //===----------------------------------------------------------------------===// | 
|  | 28 |  | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/ArrayRef.h" | 
|  | 30 | #include "llvm/ADT/None.h" | 
|  | 31 | #include "llvm/ADT/Optional.h" | 
|  | 32 | #include "llvm/ADT/STLExtras.h" | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/SmallVector.h" | 
| Sanjoy Das | 8ee6a30 | 2015-07-06 23:32:10 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/Statistic.h" | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 35 | #include "llvm/Analysis/AliasAnalysis.h" | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 36 | #include "llvm/Analysis/MemoryLocation.h" | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/FaultMaps.h" | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/MachineBasicBlock.h" | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/MachineFunction.h" | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/MachineFunctionPass.h" | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 41 | #include "llvm/CodeGen/MachineInstr.h" | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 42 | #include "llvm/CodeGen/MachineInstrBuilder.h" | 
| Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 43 | #include "llvm/CodeGen/MachineMemOperand.h" | 
| Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 44 | #include "llvm/CodeGen/MachineOperand.h" | 
|  | 45 | #include "llvm/CodeGen/MachineRegisterInfo.h" | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 46 | #include "llvm/CodeGen/PseudoSourceValue.h" | 
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 47 | #include "llvm/CodeGen/TargetInstrInfo.h" | 
| David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 48 | #include "llvm/CodeGen/TargetOpcodes.h" | 
|  | 49 | #include "llvm/CodeGen/TargetRegisterInfo.h" | 
|  | 50 | #include "llvm/CodeGen/TargetSubtargetInfo.h" | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 51 | #include "llvm/IR/BasicBlock.h" | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 52 | #include "llvm/IR/DebugLoc.h" | 
| Chen Li | 0003878 | 2015-08-04 04:41:34 +0000 | [diff] [blame] | 53 | #include "llvm/IR/LLVMContext.h" | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 54 | #include "llvm/MC/MCInstrDesc.h" | 
|  | 55 | #include "llvm/MC/MCRegisterInfo.h" | 
|  | 56 | #include "llvm/Pass.h" | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 57 | #include "llvm/Support/CommandLine.h" | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 58 | #include <cassert> | 
|  | 59 | #include <cstdint> | 
|  | 60 | #include <iterator> | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 61 |  | 
|  | 62 | using namespace llvm; | 
|  | 63 |  | 
| Chad Rosier | c27a18f | 2016-03-09 16:00:35 +0000 | [diff] [blame] | 64 | static cl::opt<int> PageSize("imp-null-check-page-size", | 
|  | 65 | cl::desc("The page size of the target in bytes"), | 
| Zachary Turner | 8065f0b | 2017-12-01 00:53:10 +0000 | [diff] [blame] | 66 | cl::init(4096), cl::Hidden); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 67 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 68 | static cl::opt<unsigned> MaxInstsToConsider( | 
|  | 69 | "imp-null-max-insts-to-consider", | 
|  | 70 | cl::desc("The max number of instructions to consider hoisting loads over " | 
|  | 71 | "(the algorithm is quadratic over this number)"), | 
| Zachary Turner | 8065f0b | 2017-12-01 00:53:10 +0000 | [diff] [blame] | 72 | cl::Hidden, cl::init(8)); | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 73 |  | 
| Sanjoy Das | 8ee6a30 | 2015-07-06 23:32:10 +0000 | [diff] [blame] | 74 | #define DEBUG_TYPE "implicit-null-checks" | 
|  | 75 |  | 
|  | 76 | STATISTIC(NumImplicitNullChecks, | 
|  | 77 | "Number of explicit null checks made implicit"); | 
|  | 78 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 79 | namespace { | 
|  | 80 |  | 
|  | 81 | class ImplicitNullChecks : public MachineFunctionPass { | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 82 | /// Return true if \c computeDependence can process \p MI. | 
|  | 83 | static bool canHandle(const MachineInstr *MI); | 
|  | 84 |  | 
|  | 85 | /// Helper function for \c computeDependence.  Return true if \p A | 
|  | 86 | /// and \p B do not have any dependences between them, and can be | 
|  | 87 | /// re-ordered without changing program semantics. | 
|  | 88 | bool canReorder(const MachineInstr *A, const MachineInstr *B); | 
|  | 89 |  | 
|  | 90 | /// A data type for representing the result computed by \c | 
|  | 91 | /// computeDependence.  States whether it is okay to reorder the | 
|  | 92 | /// instruction passed to \c computeDependence with at most one | 
|  | 93 | /// depednency. | 
|  | 94 | struct DependenceResult { | 
|  | 95 | /// Can we actually re-order \p MI with \p Insts (see \c | 
|  | 96 | /// computeDependence). | 
|  | 97 | bool CanReorder; | 
|  | 98 |  | 
|  | 99 | /// If non-None, then an instruction in \p Insts that also must be | 
|  | 100 | /// hoisted. | 
|  | 101 | Optional<ArrayRef<MachineInstr *>::iterator> PotentialDependence; | 
|  | 102 |  | 
|  | 103 | /*implicit*/ DependenceResult( | 
|  | 104 | bool CanReorder, | 
|  | 105 | Optional<ArrayRef<MachineInstr *>::iterator> PotentialDependence) | 
|  | 106 | : CanReorder(CanReorder), PotentialDependence(PotentialDependence) { | 
|  | 107 | assert((!PotentialDependence || CanReorder) && | 
|  | 108 | "!CanReorder && PotentialDependence.hasValue() not allowed!"); | 
|  | 109 | } | 
|  | 110 | }; | 
|  | 111 |  | 
|  | 112 | /// Compute a result for the following question: can \p MI be | 
|  | 113 | /// re-ordered from after \p Insts to before it. | 
|  | 114 | /// | 
|  | 115 | /// \c canHandle should return true for all instructions in \p | 
|  | 116 | /// Insts. | 
|  | 117 | DependenceResult computeDependence(const MachineInstr *MI, | 
|  | 118 | ArrayRef<MachineInstr *> Insts); | 
|  | 119 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 120 | /// Represents one null check that can be made implicit. | 
| Sanjoy Das | e173b9a | 2016-06-21 02:10:18 +0000 | [diff] [blame] | 121 | class NullCheck { | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 122 | // The memory operation the null check can be folded into. | 
|  | 123 | MachineInstr *MemOperation; | 
|  | 124 |  | 
|  | 125 | // The instruction actually doing the null check (Ptr != 0). | 
|  | 126 | MachineInstr *CheckOperation; | 
|  | 127 |  | 
|  | 128 | // The block the check resides in. | 
|  | 129 | MachineBasicBlock *CheckBlock; | 
|  | 130 |  | 
| Eric Christopher | 572e03a | 2015-06-19 01:53:21 +0000 | [diff] [blame] | 131 | // The block branched to if the pointer is non-null. | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 132 | MachineBasicBlock *NotNullSucc; | 
|  | 133 |  | 
| Eric Christopher | 572e03a | 2015-06-19 01:53:21 +0000 | [diff] [blame] | 134 | // The block branched to if the pointer is null. | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 135 | MachineBasicBlock *NullSucc; | 
|  | 136 |  | 
| Hiroshi Inoue | 0909ca1 | 2018-01-26 08:15:29 +0000 | [diff] [blame] | 137 | // If this is non-null, then MemOperation has a dependency on this | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 138 | // instruction; and it needs to be hoisted to execute before MemOperation. | 
|  | 139 | MachineInstr *OnlyDependency; | 
|  | 140 |  | 
| Sanjoy Das | e173b9a | 2016-06-21 02:10:18 +0000 | [diff] [blame] | 141 | public: | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 142 | explicit NullCheck(MachineInstr *memOperation, MachineInstr *checkOperation, | 
|  | 143 | MachineBasicBlock *checkBlock, | 
|  | 144 | MachineBasicBlock *notNullSucc, | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 145 | MachineBasicBlock *nullSucc, | 
|  | 146 | MachineInstr *onlyDependency) | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 147 | : MemOperation(memOperation), CheckOperation(checkOperation), | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 148 | CheckBlock(checkBlock), NotNullSucc(notNullSucc), NullSucc(nullSucc), | 
|  | 149 | OnlyDependency(onlyDependency) {} | 
| Sanjoy Das | e173b9a | 2016-06-21 02:10:18 +0000 | [diff] [blame] | 150 |  | 
|  | 151 | MachineInstr *getMemOperation() const { return MemOperation; } | 
|  | 152 |  | 
|  | 153 | MachineInstr *getCheckOperation() const { return CheckOperation; } | 
|  | 154 |  | 
|  | 155 | MachineBasicBlock *getCheckBlock() const { return CheckBlock; } | 
|  | 156 |  | 
|  | 157 | MachineBasicBlock *getNotNullSucc() const { return NotNullSucc; } | 
|  | 158 |  | 
|  | 159 | MachineBasicBlock *getNullSucc() const { return NullSucc; } | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 160 |  | 
|  | 161 | MachineInstr *getOnlyDependency() const { return OnlyDependency; } | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 162 | }; | 
|  | 163 |  | 
|  | 164 | const TargetInstrInfo *TII = nullptr; | 
|  | 165 | const TargetRegisterInfo *TRI = nullptr; | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 166 | AliasAnalysis *AA = nullptr; | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 167 | MachineFrameInfo *MFI = nullptr; | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 168 |  | 
|  | 169 | bool analyzeBlockForNullChecks(MachineBasicBlock &MBB, | 
|  | 170 | SmallVectorImpl<NullCheck> &NullCheckList); | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 171 | MachineInstr *insertFaultingInstr(MachineInstr *MI, MachineBasicBlock *MBB, | 
|  | 172 | MachineBasicBlock *HandlerMBB); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 173 | void rewriteNullChecks(ArrayRef<NullCheck> NullCheckList); | 
|  | 174 |  | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 175 | enum AliasResult { | 
|  | 176 | AR_NoAlias, | 
|  | 177 | AR_MayAlias, | 
|  | 178 | AR_WillAliasEverything | 
|  | 179 | }; | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 180 |  | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 181 | /// Returns AR_NoAlias if \p MI memory operation does not alias with | 
|  | 182 | /// \p PrevMI, AR_MayAlias if they may alias and AR_WillAliasEverything if | 
|  | 183 | /// they may alias and any further memory operation may alias with \p PrevMI. | 
|  | 184 | AliasResult areMemoryOpsAliased(MachineInstr &MI, MachineInstr *PrevMI); | 
| Sanjoy Das | 15e50b5 | 2017-02-01 02:49:25 +0000 | [diff] [blame] | 185 |  | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 186 | enum SuitabilityResult { | 
|  | 187 | SR_Suitable, | 
|  | 188 | SR_Unsuitable, | 
|  | 189 | SR_Impossible | 
|  | 190 | }; | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 191 |  | 
| Sanjoy Das | 15e50b5 | 2017-02-01 02:49:25 +0000 | [diff] [blame] | 192 | /// Return SR_Suitable if \p MI a memory operation that can be used to | 
|  | 193 | /// implicitly null check the value in \p PointerReg, SR_Unsuitable if | 
|  | 194 | /// \p MI cannot be used to null check and SR_Impossible if there is | 
|  | 195 | /// no sense to continue lookup due to any other instruction will not be able | 
|  | 196 | /// to be used. \p PrevInsts is the set of instruction seen since | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 197 | /// the explicit null check on \p PointerReg. | 
| Sanjoy Das | 15e50b5 | 2017-02-01 02:49:25 +0000 | [diff] [blame] | 198 | SuitabilityResult isSuitableMemoryOp(MachineInstr &MI, unsigned PointerReg, | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 199 | ArrayRef<MachineInstr *> PrevInsts); | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 200 |  | 
| Hiroshi Inoue | 8f976ba | 2018-01-17 12:29:38 +0000 | [diff] [blame] | 201 | /// Return true if \p FaultingMI can be hoisted from after the | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 202 | /// instructions in \p InstsSeenSoFar to before them.  Set \p Dependence to a | 
|  | 203 | /// non-null value if we also need to (and legally can) hoist a depedency. | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 204 | bool canHoistInst(MachineInstr *FaultingMI, unsigned PointerReg, | 
|  | 205 | ArrayRef<MachineInstr *> InstsSeenSoFar, | 
|  | 206 | MachineBasicBlock *NullSucc, MachineInstr *&Dependence); | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 207 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 208 | public: | 
|  | 209 | static char ID; | 
|  | 210 |  | 
|  | 211 | ImplicitNullChecks() : MachineFunctionPass(ID) { | 
|  | 212 | initializeImplicitNullChecksPass(*PassRegistry::getPassRegistry()); | 
|  | 213 | } | 
|  | 214 |  | 
|  | 215 | bool runOnMachineFunction(MachineFunction &MF) override; | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 216 |  | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 217 | void getAnalysisUsage(AnalysisUsage &AU) const override { | 
|  | 218 | AU.addRequired<AAResultsWrapperPass>(); | 
|  | 219 | MachineFunctionPass::getAnalysisUsage(AU); | 
|  | 220 | } | 
| Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 221 |  | 
|  | 222 | MachineFunctionProperties getRequiredProperties() const override { | 
|  | 223 | return MachineFunctionProperties().set( | 
| Matthias Braun | 1eb4736 | 2016-08-25 01:27:13 +0000 | [diff] [blame] | 224 | MachineFunctionProperties::Property::NoVRegs); | 
| Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 225 | } | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 226 | }; | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 227 |  | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 228 | } // end anonymous namespace | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 229 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 230 | bool ImplicitNullChecks::canHandle(const MachineInstr *MI) { | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 231 | if (MI->isCall() || MI->hasUnmodeledSideEffects()) | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 232 | return false; | 
|  | 233 | auto IsRegMask = [](const MachineOperand &MO) { return MO.isRegMask(); }; | 
|  | 234 | (void)IsRegMask; | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 235 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 236 | assert(!llvm::any_of(MI->operands(), IsRegMask) && | 
|  | 237 | "Calls were filtered out above!"); | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 238 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 239 | auto IsUnordered = [](MachineMemOperand *MMO) { return MMO->isUnordered(); }; | 
|  | 240 | return llvm::all_of(MI->memoperands(), IsUnordered); | 
|  | 241 | } | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 242 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 243 | ImplicitNullChecks::DependenceResult | 
|  | 244 | ImplicitNullChecks::computeDependence(const MachineInstr *MI, | 
|  | 245 | ArrayRef<MachineInstr *> Block) { | 
|  | 246 | assert(llvm::all_of(Block, canHandle) && "Check this first!"); | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 247 | assert(!is_contained(Block, MI) && "Block must be exclusive of MI!"); | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 248 |  | 
|  | 249 | Optional<ArrayRef<MachineInstr *>::iterator> Dep; | 
|  | 250 |  | 
|  | 251 | for (auto I = Block.begin(), E = Block.end(); I != E; ++I) { | 
|  | 252 | if (canReorder(*I, MI)) | 
|  | 253 | continue; | 
|  | 254 |  | 
|  | 255 | if (Dep == None) { | 
|  | 256 | // Found one possible dependency, keep track of it. | 
|  | 257 | Dep = I; | 
|  | 258 | } else { | 
|  | 259 | // We found two dependencies, so bail out. | 
|  | 260 | return {false, None}; | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 261 | } | 
|  | 262 | } | 
|  | 263 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 264 | return {true, Dep}; | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 265 | } | 
|  | 266 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 267 | bool ImplicitNullChecks::canReorder(const MachineInstr *A, | 
|  | 268 | const MachineInstr *B) { | 
|  | 269 | assert(canHandle(A) && canHandle(B) && "Precondition!"); | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 270 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 271 | // canHandle makes sure that we _can_ correctly analyze the dependencies | 
|  | 272 | // between A and B here -- for instance, we should not be dealing with heap | 
|  | 273 | // load-store dependencies here. | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 274 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 275 | for (auto MOA : A->operands()) { | 
|  | 276 | if (!(MOA.isReg() && MOA.getReg())) | 
|  | 277 | continue; | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 278 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 279 | unsigned RegA = MOA.getReg(); | 
|  | 280 | for (auto MOB : B->operands()) { | 
|  | 281 | if (!(MOB.isReg() && MOB.getReg())) | 
|  | 282 | continue; | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 283 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 284 | unsigned RegB = MOB.getReg(); | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 285 |  | 
| Sanjoy Das | 08da2e2 | 2017-02-01 16:04:21 +0000 | [diff] [blame] | 286 | if (TRI->regsOverlap(RegA, RegB) && (MOA.isDef() || MOB.isDef())) | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 287 | return false; | 
| Sanjoy Das | edc394f | 2015-11-12 20:51:44 +0000 | [diff] [blame] | 288 | } | 
|  | 289 | } | 
|  | 290 |  | 
|  | 291 | return true; | 
| Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 292 | } | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 293 |  | 
|  | 294 | bool ImplicitNullChecks::runOnMachineFunction(MachineFunction &MF) { | 
|  | 295 | TII = MF.getSubtarget().getInstrInfo(); | 
|  | 296 | TRI = MF.getRegInfo().getTargetRegisterInfo(); | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 297 | MFI = &MF.getFrameInfo(); | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 298 | AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 299 |  | 
|  | 300 | SmallVector<NullCheck, 16> NullCheckList; | 
|  | 301 |  | 
|  | 302 | for (auto &MBB : MF) | 
|  | 303 | analyzeBlockForNullChecks(MBB, NullCheckList); | 
|  | 304 |  | 
|  | 305 | if (!NullCheckList.empty()) | 
|  | 306 | rewriteNullChecks(NullCheckList); | 
|  | 307 |  | 
|  | 308 | return !NullCheckList.empty(); | 
|  | 309 | } | 
|  | 310 |  | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 311 | // Return true if any register aliasing \p Reg is live-in into \p MBB. | 
|  | 312 | static bool AnyAliasLiveIn(const TargetRegisterInfo *TRI, | 
|  | 313 | MachineBasicBlock *MBB, unsigned Reg) { | 
|  | 314 | for (MCRegAliasIterator AR(Reg, TRI, /*IncludeSelf*/ true); AR.isValid(); | 
|  | 315 | ++AR) | 
|  | 316 | if (MBB->isLiveIn(*AR)) | 
|  | 317 | return true; | 
|  | 318 | return false; | 
|  | 319 | } | 
|  | 320 |  | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 321 | ImplicitNullChecks::AliasResult | 
|  | 322 | ImplicitNullChecks::areMemoryOpsAliased(MachineInstr &MI, | 
|  | 323 | MachineInstr *PrevMI) { | 
|  | 324 | // If it is not memory access, skip the check. | 
|  | 325 | if (!(PrevMI->mayStore() || PrevMI->mayLoad())) | 
|  | 326 | return AR_NoAlias; | 
|  | 327 | // Load-Load may alias | 
|  | 328 | if (!(MI.mayStore() || PrevMI->mayStore())) | 
|  | 329 | return AR_NoAlias; | 
|  | 330 | // We lost info, conservatively alias. If it was store then no sense to | 
|  | 331 | // continue because we won't be able to check against it further. | 
|  | 332 | if (MI.memoperands_empty()) | 
|  | 333 | return MI.mayStore() ? AR_WillAliasEverything : AR_MayAlias; | 
|  | 334 | if (PrevMI->memoperands_empty()) | 
|  | 335 | return PrevMI->mayStore() ? AR_WillAliasEverything : AR_MayAlias; | 
|  | 336 |  | 
|  | 337 | for (MachineMemOperand *MMO1 : MI.memoperands()) { | 
|  | 338 | // MMO1 should have a value due it comes from operation we'd like to use | 
|  | 339 | // as implicit null check. | 
|  | 340 | assert(MMO1->getValue() && "MMO1 should have a Value!"); | 
|  | 341 | for (MachineMemOperand *MMO2 : PrevMI->memoperands()) { | 
|  | 342 | if (const PseudoSourceValue *PSV = MMO2->getPseudoValue()) { | 
|  | 343 | if (PSV->mayAlias(MFI)) | 
|  | 344 | return AR_MayAlias; | 
|  | 345 | continue; | 
|  | 346 | } | 
|  | 347 | llvm::AliasResult AAResult = AA->alias( | 
|  | 348 | MemoryLocation(MMO1->getValue(), MemoryLocation::UnknownSize, | 
|  | 349 | MMO1->getAAInfo()), | 
|  | 350 | MemoryLocation(MMO2->getValue(), MemoryLocation::UnknownSize, | 
|  | 351 | MMO2->getAAInfo())); | 
|  | 352 | if (AAResult != NoAlias) | 
|  | 353 | return AR_MayAlias; | 
|  | 354 | } | 
|  | 355 | } | 
|  | 356 | return AR_NoAlias; | 
|  | 357 | } | 
|  | 358 |  | 
| Sanjoy Das | 15e50b5 | 2017-02-01 02:49:25 +0000 | [diff] [blame] | 359 | ImplicitNullChecks::SuitabilityResult | 
|  | 360 | ImplicitNullChecks::isSuitableMemoryOp(MachineInstr &MI, unsigned PointerReg, | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 361 | ArrayRef<MachineInstr *> PrevInsts) { | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 362 | int64_t Offset; | 
|  | 363 | unsigned BaseReg; | 
|  | 364 |  | 
|  | 365 | if (!TII->getMemOpBaseRegImmOfs(MI, BaseReg, Offset, TRI) || | 
|  | 366 | BaseReg != PointerReg) | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 367 | return SR_Unsuitable; | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 368 |  | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 369 | // We want the mem access to be issued at a sane offset from PointerReg, | 
|  | 370 | // so that if PointerReg is null then the access reliably page faults. | 
|  | 371 | if (!((MI.mayLoad() || MI.mayStore()) && !MI.isPredicable() && | 
| Yichao Yu | a18b0b1 | 2017-10-17 11:47:36 +0000 | [diff] [blame] | 372 | -PageSize < Offset && Offset < PageSize)) | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 373 | return SR_Unsuitable; | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 374 |  | 
| Serguei Katkov | 0b0dc57 | 2017-06-21 06:38:23 +0000 | [diff] [blame] | 375 | // Finally, check whether the current memory access aliases with previous one. | 
|  | 376 | for (auto *PrevMI : PrevInsts) { | 
|  | 377 | AliasResult AR = areMemoryOpsAliased(MI, PrevMI); | 
|  | 378 | if (AR == AR_WillAliasEverything) | 
|  | 379 | return SR_Impossible; | 
|  | 380 | if (AR == AR_MayAlias) | 
|  | 381 | return SR_Unsuitable; | 
|  | 382 | } | 
|  | 383 | return SR_Suitable; | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 384 | } | 
|  | 385 |  | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 386 | bool ImplicitNullChecks::canHoistInst(MachineInstr *FaultingMI, | 
|  | 387 | unsigned PointerReg, | 
|  | 388 | ArrayRef<MachineInstr *> InstsSeenSoFar, | 
|  | 389 | MachineBasicBlock *NullSucc, | 
|  | 390 | MachineInstr *&Dependence) { | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 391 | auto DepResult = computeDependence(FaultingMI, InstsSeenSoFar); | 
|  | 392 | if (!DepResult.CanReorder) | 
|  | 393 | return false; | 
|  | 394 |  | 
|  | 395 | if (!DepResult.PotentialDependence) { | 
|  | 396 | Dependence = nullptr; | 
|  | 397 | return true; | 
|  | 398 | } | 
|  | 399 |  | 
|  | 400 | auto DependenceItr = *DepResult.PotentialDependence; | 
|  | 401 | auto *DependenceMI = *DependenceItr; | 
|  | 402 |  | 
|  | 403 | // We don't want to reason about speculating loads.  Note -- at this point | 
|  | 404 | // we should have already filtered out all of the other non-speculatable | 
|  | 405 | // things, like calls and stores. | 
| Serguei Katkov | 6ea2e81 | 2017-08-09 05:17:02 +0000 | [diff] [blame] | 406 | // We also do not want to hoist stores because it might change the memory | 
|  | 407 | // while the FaultingMI may result in faulting. | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 408 | assert(canHandle(DependenceMI) && "Should never have reached here!"); | 
| Serguei Katkov | 6ea2e81 | 2017-08-09 05:17:02 +0000 | [diff] [blame] | 409 | if (DependenceMI->mayLoadOrStore()) | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 410 | return false; | 
|  | 411 |  | 
|  | 412 | for (auto &DependenceMO : DependenceMI->operands()) { | 
|  | 413 | if (!(DependenceMO.isReg() && DependenceMO.getReg())) | 
|  | 414 | continue; | 
|  | 415 |  | 
|  | 416 | // Make sure that we won't clobber any live ins to the sibling block by | 
|  | 417 | // hoisting Dependency.  For instance, we can't hoist INST to before the | 
|  | 418 | // null check (even if it safe, and does not violate any dependencies in | 
|  | 419 | // the non_null_block) if %rdx is live in to _null_block. | 
|  | 420 | // | 
|  | 421 | //    test %rcx, %rcx | 
|  | 422 | //    je _null_block | 
|  | 423 | //  _non_null_block: | 
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 424 | //    %rdx = INST | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 425 | //    ... | 
|  | 426 | // | 
|  | 427 | // This restriction does not apply to the faulting load inst because in | 
|  | 428 | // case the pointer loaded from is in the null page, the load will not | 
|  | 429 | // semantically execute, and affect machine state.  That is, if the load | 
|  | 430 | // was loading into %rax and it faults, the value of %rax should stay the | 
|  | 431 | // same as it would have been had the load not have executed and we'd have | 
|  | 432 | // branched to NullSucc directly. | 
|  | 433 | if (AnyAliasLiveIn(TRI, NullSucc, DependenceMO.getReg())) | 
|  | 434 | return false; | 
|  | 435 |  | 
|  | 436 | // The Dependency can't be re-defining the base register -- then we won't | 
|  | 437 | // get the memory operation on the address we want.  This is already | 
|  | 438 | // checked in \c IsSuitableMemoryOp. | 
| Sanjoy Das | 08da2e2 | 2017-02-01 16:04:21 +0000 | [diff] [blame] | 439 | assert(!(DependenceMO.isDef() && | 
|  | 440 | TRI->regsOverlap(DependenceMO.getReg(), PointerReg)) && | 
| Sanjoy Das | 50fef43 | 2016-12-23 00:41:24 +0000 | [diff] [blame] | 441 | "Should have been checked before!"); | 
|  | 442 | } | 
|  | 443 |  | 
|  | 444 | auto DepDepResult = | 
|  | 445 | computeDependence(DependenceMI, {InstsSeenSoFar.begin(), DependenceItr}); | 
|  | 446 |  | 
|  | 447 | if (!DepDepResult.CanReorder || DepDepResult.PotentialDependence) | 
|  | 448 | return false; | 
|  | 449 |  | 
|  | 450 | Dependence = DependenceMI; | 
|  | 451 | return true; | 
|  | 452 | } | 
|  | 453 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 454 | /// Analyze MBB to check if its terminating branch can be turned into an | 
|  | 455 | /// implicit null check.  If yes, append a description of the said null check to | 
|  | 456 | /// NullCheckList and return true, else return false. | 
|  | 457 | bool ImplicitNullChecks::analyzeBlockForNullChecks( | 
|  | 458 | MachineBasicBlock &MBB, SmallVectorImpl<NullCheck> &NullCheckList) { | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 459 | using MachineBranchPredicate = TargetInstrInfo::MachineBranchPredicate; | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 460 |  | 
| Sanjoy Das | e8b8164 | 2015-11-12 20:51:49 +0000 | [diff] [blame] | 461 | MDNode *BranchMD = nullptr; | 
|  | 462 | if (auto *BB = MBB.getBasicBlock()) | 
|  | 463 | BranchMD = BB->getTerminator()->getMetadata(LLVMContext::MD_make_implicit); | 
|  | 464 |  | 
| Sanjoy Das | 9c41a93 | 2015-06-30 21:22:32 +0000 | [diff] [blame] | 465 | if (!BranchMD) | 
|  | 466 | return false; | 
|  | 467 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 468 | MachineBranchPredicate MBP; | 
|  | 469 |  | 
| Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 470 | if (TII->analyzeBranchPredicate(MBB, MBP, true)) | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 471 | return false; | 
|  | 472 |  | 
|  | 473 | // Is the predicate comparing an integer to zero? | 
|  | 474 | if (!(MBP.LHS.isReg() && MBP.RHS.isImm() && MBP.RHS.getImm() == 0 && | 
|  | 475 | (MBP.Predicate == MachineBranchPredicate::PRED_NE || | 
|  | 476 | MBP.Predicate == MachineBranchPredicate::PRED_EQ))) | 
|  | 477 | return false; | 
|  | 478 |  | 
|  | 479 | // If we cannot erase the test instruction itself, then making the null check | 
|  | 480 | // implicit does not buy us much. | 
|  | 481 | if (!MBP.SingleUseCondition) | 
|  | 482 | return false; | 
|  | 483 |  | 
|  | 484 | MachineBasicBlock *NotNullSucc, *NullSucc; | 
|  | 485 |  | 
|  | 486 | if (MBP.Predicate == MachineBranchPredicate::PRED_NE) { | 
|  | 487 | NotNullSucc = MBP.TrueDest; | 
|  | 488 | NullSucc = MBP.FalseDest; | 
|  | 489 | } else { | 
|  | 490 | NotNullSucc = MBP.FalseDest; | 
|  | 491 | NullSucc = MBP.TrueDest; | 
|  | 492 | } | 
|  | 493 |  | 
|  | 494 | // We handle the simplest case for now.  We can potentially do better by using | 
|  | 495 | // the machine dominator tree. | 
|  | 496 | if (NotNullSucc->pred_size() != 1) | 
|  | 497 | return false; | 
|  | 498 |  | 
|  | 499 | // Starting with a code fragment like: | 
|  | 500 | // | 
| Francis Visoiu Mistrih | 9d7bb0c | 2017-11-28 17:15:09 +0000 | [diff] [blame] | 501 | //   test %rax, %rax | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 502 | //   jne LblNotNull | 
|  | 503 | // | 
|  | 504 | //  LblNull: | 
|  | 505 | //   callq throw_NullPointerException | 
|  | 506 | // | 
|  | 507 | //  LblNotNull: | 
| Sanjoy Das | b771845 | 2015-07-09 20:13:25 +0000 | [diff] [blame] | 508 | //   Inst0 | 
|  | 509 | //   Inst1 | 
|  | 510 | //   ... | 
| Francis Visoiu Mistrih | 9d7bb0c | 2017-11-28 17:15:09 +0000 | [diff] [blame] | 511 | //   Def = Load (%rax + <offset>) | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 512 | //   ... | 
|  | 513 | // | 
|  | 514 | // | 
|  | 515 | // we want to end up with | 
|  | 516 | // | 
| Francis Visoiu Mistrih | 9d7bb0c | 2017-11-28 17:15:09 +0000 | [diff] [blame] | 517 | //   Def = FaultingLoad (%rax + <offset>), LblNull | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 518 | //   jmp LblNotNull ;; explicit or fallthrough | 
|  | 519 | // | 
|  | 520 | //  LblNotNull: | 
| Sanjoy Das | b771845 | 2015-07-09 20:13:25 +0000 | [diff] [blame] | 521 | //   Inst0 | 
|  | 522 | //   Inst1 | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 523 | //   ... | 
|  | 524 | // | 
|  | 525 | //  LblNull: | 
|  | 526 | //   callq throw_NullPointerException | 
|  | 527 | // | 
| Sanjoy Das | ac9c5b1 | 2015-11-13 08:14:00 +0000 | [diff] [blame] | 528 | // | 
|  | 529 | // To see why this is legal, consider the two possibilities: | 
|  | 530 | // | 
| Francis Visoiu Mistrih | 9d7bb0c | 2017-11-28 17:15:09 +0000 | [diff] [blame] | 531 | //  1. %rax is null: since we constrain <offset> to be less than PageSize, the | 
| Sanjoy Das | ac9c5b1 | 2015-11-13 08:14:00 +0000 | [diff] [blame] | 532 | //     load instruction dereferences the null page, causing a segmentation | 
|  | 533 | //     fault. | 
|  | 534 | // | 
| Francis Visoiu Mistrih | 9d7bb0c | 2017-11-28 17:15:09 +0000 | [diff] [blame] | 535 | //  2. %rax is not null: in this case we know that the load cannot fault, as | 
| Sanjoy Das | ac9c5b1 | 2015-11-13 08:14:00 +0000 | [diff] [blame] | 536 | //     otherwise the load would've faulted in the original program too and the | 
|  | 537 | //     original program would've been undefined. | 
|  | 538 | // | 
|  | 539 | // This reasoning cannot be extended to justify hoisting through arbitrary | 
|  | 540 | // control flow.  For instance, in the example below (in pseudo-C) | 
|  | 541 | // | 
|  | 542 | //    if (ptr == null) { throw_npe(); unreachable; } | 
|  | 543 | //    if (some_cond) { return 42; } | 
|  | 544 | //    v = ptr->field;  // LD | 
|  | 545 | //    ... | 
|  | 546 | // | 
|  | 547 | // we cannot (without code duplication) use the load marked "LD" to null check | 
|  | 548 | // ptr -- clause (2) above does not apply in this case.  In the above program | 
|  | 549 | // the safety of ptr->field can be dependent on some_cond; and, for instance, | 
|  | 550 | // ptr could be some non-null invalid reference that never gets loaded from | 
|  | 551 | // because some_cond is always true. | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 552 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 553 | const unsigned PointerReg = MBP.LHS.getReg(); | 
| Sanjoy Das | b771845 | 2015-07-09 20:13:25 +0000 | [diff] [blame] | 554 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 555 | SmallVector<MachineInstr *, 8> InstsSeenSoFar; | 
| Sanjoy Das | b771845 | 2015-07-09 20:13:25 +0000 | [diff] [blame] | 556 |  | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 557 | for (auto &MI : *NotNullSucc) { | 
|  | 558 | if (!canHandle(&MI) || InstsSeenSoFar.size() >= MaxInstsToConsider) | 
|  | 559 | return false; | 
|  | 560 |  | 
|  | 561 | MachineInstr *Dependence; | 
| Sanjoy Das | eef785c | 2017-02-28 07:04:49 +0000 | [diff] [blame] | 562 | SuitabilityResult SR = isSuitableMemoryOp(MI, PointerReg, InstsSeenSoFar); | 
| Sanjoy Das | 15e50b5 | 2017-02-01 02:49:25 +0000 | [diff] [blame] | 563 | if (SR == SR_Impossible) | 
|  | 564 | return false; | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 565 | if (SR == SR_Suitable && | 
|  | 566 | canHoistInst(&MI, PointerReg, InstsSeenSoFar, NullSucc, Dependence)) { | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 567 | NullCheckList.emplace_back(&MI, MBP.ConditionDef, &MBB, NotNullSucc, | 
|  | 568 | NullSucc, Dependence); | 
|  | 569 | return true; | 
|  | 570 | } | 
|  | 571 |  | 
| Serguei Katkov | 0b0dc57 | 2017-06-21 06:38:23 +0000 | [diff] [blame] | 572 | // If MI re-defines the PointerReg then we cannot move further. | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 573 | if (llvm::any_of(MI.operands(), [&](MachineOperand &MO) { | 
| Serguei Katkov | 0b0dc57 | 2017-06-21 06:38:23 +0000 | [diff] [blame] | 574 | return MO.isReg() && MO.getReg() && MO.isDef() && | 
|  | 575 | TRI->regsOverlap(MO.getReg(), PointerReg); | 
|  | 576 | })) | 
|  | 577 | return false; | 
| Sanjoy Das | 9a12980 | 2016-12-23 00:41:21 +0000 | [diff] [blame] | 578 | InstsSeenSoFar.push_back(&MI); | 
| Sanjoy Das | b771845 | 2015-07-09 20:13:25 +0000 | [diff] [blame] | 579 | } | 
|  | 580 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 581 | return false; | 
|  | 582 | } | 
|  | 583 |  | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 584 | /// Wrap a machine instruction, MI, into a FAULTING machine instruction. | 
|  | 585 | /// The FAULTING instruction does the same load/store as MI | 
|  | 586 | /// (defining the same register), and branches to HandlerMBB if the mem access | 
|  | 587 | /// faults.  The FAULTING instruction is inserted at the end of MBB. | 
|  | 588 | MachineInstr *ImplicitNullChecks::insertFaultingInstr( | 
|  | 589 | MachineInstr *MI, MachineBasicBlock *MBB, MachineBasicBlock *HandlerMBB) { | 
| Sanjoy Das | 93d608c | 2015-07-20 20:31:39 +0000 | [diff] [blame] | 590 | const unsigned NoRegister = 0; // Guaranteed to be the NoRegister value for | 
|  | 591 | // all targets. | 
|  | 592 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 593 | DebugLoc DL; | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 594 | unsigned NumDefs = MI->getDesc().getNumDefs(); | 
| Sanjoy Das | 93d608c | 2015-07-20 20:31:39 +0000 | [diff] [blame] | 595 | assert(NumDefs <= 1 && "other cases unhandled!"); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 596 |  | 
| Sanjoy Das | 93d608c | 2015-07-20 20:31:39 +0000 | [diff] [blame] | 597 | unsigned DefReg = NoRegister; | 
|  | 598 | if (NumDefs != 0) { | 
| Craig Topper | 342273a | 2018-05-16 23:39:27 +0000 | [diff] [blame] | 599 | DefReg = MI->getOperand(0).getReg(); | 
| Vedant Kumar | 5a0872c | 2018-05-16 23:20:42 +0000 | [diff] [blame] | 600 | assert(NumDefs == 1 && "expected exactly one def!"); | 
| Sanjoy Das | 93d608c | 2015-07-20 20:31:39 +0000 | [diff] [blame] | 601 | } | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 602 |  | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 603 | FaultMaps::FaultKind FK; | 
|  | 604 | if (MI->mayLoad()) | 
|  | 605 | FK = | 
|  | 606 | MI->mayStore() ? FaultMaps::FaultingLoadStore : FaultMaps::FaultingLoad; | 
|  | 607 | else | 
|  | 608 | FK = FaultMaps::FaultingStore; | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 609 |  | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 610 | auto MIB = BuildMI(MBB, DL, TII->get(TargetOpcode::FAULTING_OP), DefReg) | 
|  | 611 | .addImm(FK) | 
|  | 612 | .addMBB(HandlerMBB) | 
|  | 613 | .addImm(MI->getOpcode()); | 
|  | 614 |  | 
| Matthias Braun | 605f7795 | 2017-05-31 22:23:08 +0000 | [diff] [blame] | 615 | for (auto &MO : MI->uses()) { | 
|  | 616 | if (MO.isReg()) { | 
|  | 617 | MachineOperand NewMO = MO; | 
|  | 618 | if (MO.isUse()) { | 
|  | 619 | NewMO.setIsKill(false); | 
|  | 620 | } else { | 
|  | 621 | assert(MO.isDef() && "Expected def or use"); | 
|  | 622 | NewMO.setIsDead(false); | 
|  | 623 | } | 
|  | 624 | MIB.add(NewMO); | 
|  | 625 | } else { | 
|  | 626 | MIB.add(MO); | 
|  | 627 | } | 
|  | 628 | } | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 629 |  | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 630 | MIB.setMemRefs(MI->memoperands_begin(), MI->memoperands_end()); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 631 |  | 
|  | 632 | return MIB; | 
|  | 633 | } | 
|  | 634 |  | 
|  | 635 | /// Rewrite the null checks in NullCheckList into implicit null checks. | 
|  | 636 | void ImplicitNullChecks::rewriteNullChecks( | 
|  | 637 | ArrayRef<ImplicitNullChecks::NullCheck> NullCheckList) { | 
|  | 638 | DebugLoc DL; | 
|  | 639 |  | 
|  | 640 | for (auto &NC : NullCheckList) { | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 641 | // Remove the conditional branch dependent on the null check. | 
| Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 642 | unsigned BranchesRemoved = TII->removeBranch(*NC.getCheckBlock()); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 643 | (void)BranchesRemoved; | 
|  | 644 | assert(BranchesRemoved > 0 && "expected at least one branch!"); | 
|  | 645 |  | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 646 | if (auto *DepMI = NC.getOnlyDependency()) { | 
|  | 647 | DepMI->removeFromParent(); | 
|  | 648 | NC.getCheckBlock()->insert(NC.getCheckBlock()->end(), DepMI); | 
|  | 649 | } | 
|  | 650 |  | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 651 | // Insert a faulting instruction where the conditional branch was | 
|  | 652 | // originally. We check earlier ensures that this bit of code motion | 
|  | 653 | // is legal.  We do not touch the successors list for any basic block | 
|  | 654 | // since we haven't changed control flow, we've just made it implicit. | 
|  | 655 | MachineInstr *FaultingInstr = insertFaultingInstr( | 
| Sanjoy Das | e173b9a | 2016-06-21 02:10:18 +0000 | [diff] [blame] | 656 | NC.getMemOperation(), NC.getCheckBlock(), NC.getNullSucc()); | 
| Quentin Colombet | 26dab3a | 2016-05-03 18:09:06 +0000 | [diff] [blame] | 657 | // Now the values defined by MemOperation, if any, are live-in of | 
|  | 658 | // the block of MemOperation. | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 659 | // The original operation may define implicit-defs alongside | 
|  | 660 | // the value. | 
| Sanjoy Das | e173b9a | 2016-06-21 02:10:18 +0000 | [diff] [blame] | 661 | MachineBasicBlock *MBB = NC.getMemOperation()->getParent(); | 
| Sanjoy Das | 2f63cbc | 2017-02-07 19:19:49 +0000 | [diff] [blame] | 662 | for (const MachineOperand &MO : FaultingInstr->operands()) { | 
| Quentin Colombet | 26dab3a | 2016-05-03 18:09:06 +0000 | [diff] [blame] | 663 | if (!MO.isReg() || !MO.isDef()) | 
|  | 664 | continue; | 
|  | 665 | unsigned Reg = MO.getReg(); | 
|  | 666 | if (!Reg || MBB->isLiveIn(Reg)) | 
|  | 667 | continue; | 
|  | 668 | MBB->addLiveIn(Reg); | 
| Quentin Colombet | 12b6991 | 2016-04-27 23:26:40 +0000 | [diff] [blame] | 669 | } | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 670 |  | 
|  | 671 | if (auto *DepMI = NC.getOnlyDependency()) { | 
|  | 672 | for (auto &MO : DepMI->operands()) { | 
|  | 673 | if (!MO.isReg() || !MO.getReg() || !MO.isDef()) | 
|  | 674 | continue; | 
|  | 675 | if (!NC.getNotNullSucc()->isLiveIn(MO.getReg())) | 
|  | 676 | NC.getNotNullSucc()->addLiveIn(MO.getReg()); | 
|  | 677 | } | 
|  | 678 | } | 
|  | 679 |  | 
| Sanjoy Das | e173b9a | 2016-06-21 02:10:18 +0000 | [diff] [blame] | 680 | NC.getMemOperation()->eraseFromParent(); | 
|  | 681 | NC.getCheckOperation()->eraseFromParent(); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 682 |  | 
|  | 683 | // Insert an *unconditional* branch to not-null successor. | 
| Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 684 | TII->insertBranch(*NC.getCheckBlock(), NC.getNotNullSucc(), nullptr, | 
| Sanjoy Das | e173b9a | 2016-06-21 02:10:18 +0000 | [diff] [blame] | 685 | /*Cond=*/None, DL); | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 686 |  | 
| Sanjoy Das | 8ee6a30 | 2015-07-06 23:32:10 +0000 | [diff] [blame] | 687 | NumImplicitNullChecks++; | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 688 | } | 
|  | 689 | } | 
|  | 690 |  | 
|  | 691 | char ImplicitNullChecks::ID = 0; | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 692 |  | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 693 | char &llvm::ImplicitNullChecksID = ImplicitNullChecks::ID; | 
| Eugene Zelenko | 900b633 | 2017-08-29 22:32:07 +0000 | [diff] [blame] | 694 |  | 
| Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 695 | INITIALIZE_PASS_BEGIN(ImplicitNullChecks, DEBUG_TYPE, | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 696 | "Implicit null checks", false, false) | 
| Sanjoy Das | e57bf68 | 2016-06-22 22:16:51 +0000 | [diff] [blame] | 697 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) | 
| Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 698 | INITIALIZE_PASS_END(ImplicitNullChecks, DEBUG_TYPE, | 
| Sanjoy Das | 69fad07 | 2015-06-15 18:44:27 +0000 | [diff] [blame] | 699 | "Implicit null checks", false, false) |