Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 1 | //===- Passes.cpp - Parsing, selection, and running of passes -------------===// |
| 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 | /// \file |
| 10 | /// |
| 11 | /// This file provides the infrastructure to parse and build a custom pass |
| 12 | /// manager based on a commandline flag. It also provides helpers to aid in |
| 13 | /// analyzing, debugging, and testing pass structures. |
| 14 | /// |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #include "Passes.h" |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/CGSCCPassManager.h" |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/LazyCallGraph.h" |
Chandler Carruth | 52eef88 | 2014-01-12 12:15:39 +0000 | [diff] [blame] | 20 | #include "llvm/IR/IRPrintingPasses.h" |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 21 | #include "llvm/IR/PassManager.h" |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 22 | #include "llvm/IR/Verifier.h" |
Chandler Carruth | 52eef88 | 2014-01-12 12:15:39 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Debug.h" |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 24 | |
| 25 | using namespace llvm; |
| 26 | |
| 27 | namespace { |
| 28 | |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 29 | /// \brief No-op module pass which does nothing. |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 30 | struct NoOpModulePass { |
| 31 | PreservedAnalyses run(Module *M) { return PreservedAnalyses::all(); } |
Chandler Carruth | a13f27c | 2014-01-11 11:52:05 +0000 | [diff] [blame] | 32 | static StringRef name() { return "NoOpModulePass"; } |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 33 | }; |
| 34 | |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 35 | /// \brief No-op CGSCC pass which does nothing. |
| 36 | struct NoOpCGSCCPass { |
| 37 | PreservedAnalyses run(LazyCallGraph::SCC *C) { |
| 38 | return PreservedAnalyses::all(); |
| 39 | } |
| 40 | static StringRef name() { return "NoOpCGSCCPass"; } |
| 41 | }; |
| 42 | |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 43 | /// \brief No-op function pass which does nothing. |
| 44 | struct NoOpFunctionPass { |
| 45 | PreservedAnalyses run(Function *F) { return PreservedAnalyses::all(); } |
| 46 | static StringRef name() { return "NoOpFunctionPass"; } |
| 47 | }; |
| 48 | |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 49 | } // End anonymous namespace. |
| 50 | |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 51 | static bool isModulePassName(StringRef Name) { |
| 52 | if (Name == "no-op-module") return true; |
Chandler Carruth | 5894418 | 2014-04-21 08:08:50 +0000 | [diff] [blame] | 53 | |
| 54 | #define MODULE_PASS(NAME, CREATE_PASS) if (Name == NAME) return true; |
| 55 | #include "PassRegistry.def" |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 56 | |
| 57 | return false; |
| 58 | } |
| 59 | |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 60 | static bool isCGSCCPassName(StringRef Name) { |
| 61 | if (Name == "no-op-cgscc") return true; |
| 62 | |
| 63 | #define CGSCC_PASS(NAME, CREATE_PASS) if (Name == NAME) return true; |
| 64 | #include "PassRegistry.def" |
| 65 | |
| 66 | return false; |
| 67 | } |
| 68 | |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 69 | static bool isFunctionPassName(StringRef Name) { |
| 70 | if (Name == "no-op-function") return true; |
Chandler Carruth | 5894418 | 2014-04-21 08:08:50 +0000 | [diff] [blame] | 71 | |
| 72 | #define FUNCTION_PASS(NAME, CREATE_PASS) if (Name == NAME) return true; |
| 73 | #include "PassRegistry.def" |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 74 | |
| 75 | return false; |
| 76 | } |
| 77 | |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 78 | static bool parseModulePassName(ModulePassManager &MPM, StringRef Name) { |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 79 | if (Name == "no-op-module") { |
| 80 | MPM.addPass(NoOpModulePass()); |
| 81 | return true; |
| 82 | } |
Chandler Carruth | 5894418 | 2014-04-21 08:08:50 +0000 | [diff] [blame] | 83 | |
| 84 | #define MODULE_PASS(NAME, CREATE_PASS) \ |
| 85 | if (Name == NAME) { \ |
| 86 | MPM.addPass(CREATE_PASS); \ |
| 87 | return true; \ |
Chandler Carruth | 52eef88 | 2014-01-12 12:15:39 +0000 | [diff] [blame] | 88 | } |
Chandler Carruth | 5894418 | 2014-04-21 08:08:50 +0000 | [diff] [blame] | 89 | #include "PassRegistry.def" |
| 90 | |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 91 | return false; |
| 92 | } |
| 93 | |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 94 | static bool parseCGSCCPassName(CGSCCPassManager &CGPM, StringRef Name) { |
| 95 | if (Name == "no-op-cgscc") { |
| 96 | CGPM.addPass(NoOpCGSCCPass()); |
| 97 | return true; |
| 98 | } |
| 99 | |
| 100 | #define CGSCC_PASS(NAME, CREATE_PASS) \ |
| 101 | if (Name == NAME) { \ |
| 102 | CGPM.addPass(CREATE_PASS); \ |
| 103 | return true; \ |
| 104 | } |
| 105 | #include "PassRegistry.def" |
| 106 | |
| 107 | return false; |
| 108 | } |
| 109 | |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 110 | static bool parseFunctionPassName(FunctionPassManager &FPM, StringRef Name) { |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 111 | if (Name == "no-op-function") { |
| 112 | FPM.addPass(NoOpFunctionPass()); |
| 113 | return true; |
| 114 | } |
Chandler Carruth | 5894418 | 2014-04-21 08:08:50 +0000 | [diff] [blame] | 115 | |
| 116 | #define FUNCTION_PASS(NAME, CREATE_PASS) \ |
| 117 | if (Name == NAME) { \ |
| 118 | FPM.addPass(CREATE_PASS); \ |
| 119 | return true; \ |
Chandler Carruth | 52eef88 | 2014-01-12 12:15:39 +0000 | [diff] [blame] | 120 | } |
Chandler Carruth | 5894418 | 2014-04-21 08:08:50 +0000 | [diff] [blame] | 121 | #include "PassRegistry.def" |
| 122 | |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 123 | return false; |
| 124 | } |
| 125 | |
| 126 | static bool parseFunctionPassPipeline(FunctionPassManager &FPM, |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 127 | StringRef &PipelineText, |
| 128 | bool VerifyEachPass) { |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 129 | for (;;) { |
| 130 | // Parse nested pass managers by recursing. |
| 131 | if (PipelineText.startswith("function(")) { |
| 132 | FunctionPassManager NestedFPM; |
| 133 | |
| 134 | // Parse the inner pipeline inte the nested manager. |
| 135 | PipelineText = PipelineText.substr(strlen("function(")); |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 136 | if (!parseFunctionPassPipeline(NestedFPM, PipelineText, VerifyEachPass) || |
Chandler Carruth | 6546cb6 | 2014-01-12 10:02:02 +0000 | [diff] [blame] | 137 | PipelineText.empty()) |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 138 | return false; |
Chandler Carruth | 6546cb6 | 2014-01-12 10:02:02 +0000 | [diff] [blame] | 139 | assert(PipelineText[0] == ')'); |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 140 | PipelineText = PipelineText.substr(1); |
| 141 | |
| 142 | // Add the nested pass manager with the appropriate adaptor. |
Chandler Carruth | c3f3da3 | 2014-03-09 11:49:53 +0000 | [diff] [blame] | 143 | FPM.addPass(std::move(NestedFPM)); |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 144 | } else { |
| 145 | // Otherwise try to parse a pass name. |
| 146 | size_t End = PipelineText.find_first_of(",)"); |
| 147 | if (!parseFunctionPassName(FPM, PipelineText.substr(0, End))) |
| 148 | return false; |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 149 | if (VerifyEachPass) |
| 150 | FPM.addPass(VerifierPass()); |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 151 | |
| 152 | PipelineText = PipelineText.substr(End); |
| 153 | } |
| 154 | |
| 155 | if (PipelineText.empty() || PipelineText[0] == ')') |
| 156 | return true; |
| 157 | |
| 158 | assert(PipelineText[0] == ','); |
| 159 | PipelineText = PipelineText.substr(1); |
| 160 | } |
| 161 | } |
| 162 | |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 163 | static bool parseCGSCCPassPipeline(CGSCCPassManager &CGPM, |
| 164 | StringRef &PipelineText, |
| 165 | bool VerifyEachPass) { |
| 166 | for (;;) { |
| 167 | // Parse nested pass managers by recursing. |
| 168 | if (PipelineText.startswith("cgscc(")) { |
| 169 | CGSCCPassManager NestedCGPM; |
| 170 | |
| 171 | // Parse the inner pipeline into the nested manager. |
| 172 | PipelineText = PipelineText.substr(strlen("cgscc(")); |
| 173 | if (!parseCGSCCPassPipeline(NestedCGPM, PipelineText, VerifyEachPass) || |
| 174 | PipelineText.empty()) |
| 175 | return false; |
| 176 | assert(PipelineText[0] == ')'); |
| 177 | PipelineText = PipelineText.substr(1); |
| 178 | |
| 179 | // Add the nested pass manager with the appropriate adaptor. |
| 180 | CGPM.addPass(std::move(NestedCGPM)); |
| 181 | } else if (PipelineText.startswith("function(")) { |
| 182 | FunctionPassManager NestedFPM; |
| 183 | |
| 184 | // Parse the inner pipeline inte the nested manager. |
| 185 | PipelineText = PipelineText.substr(strlen("function(")); |
| 186 | if (!parseFunctionPassPipeline(NestedFPM, PipelineText, VerifyEachPass) || |
| 187 | PipelineText.empty()) |
| 188 | return false; |
| 189 | assert(PipelineText[0] == ')'); |
| 190 | PipelineText = PipelineText.substr(1); |
| 191 | |
| 192 | // Add the nested pass manager with the appropriate adaptor. |
| 193 | CGPM.addPass(createCGSCCToFunctionPassAdaptor(std::move(NestedFPM))); |
| 194 | } else { |
| 195 | // Otherwise try to parse a pass name. |
| 196 | size_t End = PipelineText.find_first_of(",)"); |
| 197 | if (!parseCGSCCPassName(CGPM, PipelineText.substr(0, End))) |
| 198 | return false; |
| 199 | // FIXME: No verifier support for CGSCC passes! |
| 200 | |
| 201 | PipelineText = PipelineText.substr(End); |
| 202 | } |
| 203 | |
| 204 | if (PipelineText.empty() || PipelineText[0] == ')') |
| 205 | return true; |
| 206 | |
| 207 | assert(PipelineText[0] == ','); |
| 208 | PipelineText = PipelineText.substr(1); |
| 209 | } |
| 210 | } |
| 211 | |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 212 | static bool parseModulePassPipeline(ModulePassManager &MPM, |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 213 | StringRef &PipelineText, |
| 214 | bool VerifyEachPass) { |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 215 | for (;;) { |
| 216 | // Parse nested pass managers by recursing. |
| 217 | if (PipelineText.startswith("module(")) { |
Chandler Carruth | 258dbb3 | 2014-01-11 12:06:47 +0000 | [diff] [blame] | 218 | ModulePassManager NestedMPM; |
| 219 | |
| 220 | // Parse the inner pipeline into the nested manager. |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 221 | PipelineText = PipelineText.substr(strlen("module(")); |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 222 | if (!parseModulePassPipeline(NestedMPM, PipelineText, VerifyEachPass) || |
Chandler Carruth | 6546cb6 | 2014-01-12 10:02:02 +0000 | [diff] [blame] | 223 | PipelineText.empty()) |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 224 | return false; |
Chandler Carruth | 6546cb6 | 2014-01-12 10:02:02 +0000 | [diff] [blame] | 225 | assert(PipelineText[0] == ')'); |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 226 | PipelineText = PipelineText.substr(1); |
Chandler Carruth | 258dbb3 | 2014-01-11 12:06:47 +0000 | [diff] [blame] | 227 | |
| 228 | // Now add the nested manager as a module pass. |
Chandler Carruth | c3f3da3 | 2014-03-09 11:49:53 +0000 | [diff] [blame] | 229 | MPM.addPass(std::move(NestedMPM)); |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 230 | } else if (PipelineText.startswith("cgscc(")) { |
| 231 | CGSCCPassManager NestedCGPM; |
| 232 | |
| 233 | // Parse the inner pipeline inte the nested manager. |
| 234 | PipelineText = PipelineText.substr(strlen("cgscc(")); |
| 235 | if (!parseCGSCCPassPipeline(NestedCGPM, PipelineText, VerifyEachPass) || |
| 236 | PipelineText.empty()) |
| 237 | return false; |
| 238 | assert(PipelineText[0] == ')'); |
| 239 | PipelineText = PipelineText.substr(1); |
| 240 | |
| 241 | // Add the nested pass manager with the appropriate adaptor. |
| 242 | MPM.addPass( |
| 243 | createModuleToPostOrderCGSCCPassAdaptor(std::move(NestedCGPM))); |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 244 | } else if (PipelineText.startswith("function(")) { |
| 245 | FunctionPassManager NestedFPM; |
| 246 | |
| 247 | // Parse the inner pipeline inte the nested manager. |
| 248 | PipelineText = PipelineText.substr(strlen("function(")); |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 249 | if (!parseFunctionPassPipeline(NestedFPM, PipelineText, VerifyEachPass) || |
Chandler Carruth | 6546cb6 | 2014-01-12 10:02:02 +0000 | [diff] [blame] | 250 | PipelineText.empty()) |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 251 | return false; |
Chandler Carruth | 6546cb6 | 2014-01-12 10:02:02 +0000 | [diff] [blame] | 252 | assert(PipelineText[0] == ')'); |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 253 | PipelineText = PipelineText.substr(1); |
| 254 | |
| 255 | // Add the nested pass manager with the appropriate adaptor. |
Chandler Carruth | c3f3da3 | 2014-03-09 11:49:53 +0000 | [diff] [blame] | 256 | MPM.addPass(createModuleToFunctionPassAdaptor(std::move(NestedFPM))); |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 257 | } else { |
| 258 | // Otherwise try to parse a pass name. |
| 259 | size_t End = PipelineText.find_first_of(",)"); |
| 260 | if (!parseModulePassName(MPM, PipelineText.substr(0, End))) |
| 261 | return false; |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 262 | if (VerifyEachPass) |
| 263 | MPM.addPass(VerifierPass()); |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 264 | |
| 265 | PipelineText = PipelineText.substr(End); |
| 266 | } |
| 267 | |
| 268 | if (PipelineText.empty() || PipelineText[0] == ')') |
| 269 | return true; |
| 270 | |
| 271 | assert(PipelineText[0] == ','); |
| 272 | PipelineText = PipelineText.substr(1); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | // Primary pass pipeline description parsing routine. |
| 277 | // FIXME: Should this routine accept a TargetMachine or require the caller to |
| 278 | // pre-populate the analysis managers with target-specific stuff? |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 279 | bool llvm::parsePassPipeline(ModulePassManager &MPM, StringRef PipelineText, |
| 280 | bool VerifyEachPass) { |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 281 | // Look at the first entry to figure out which layer to start parsing at. |
| 282 | if (PipelineText.startswith("module(")) |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 283 | return parseModulePassPipeline(MPM, PipelineText, VerifyEachPass) && |
| 284 | PipelineText.empty(); |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 285 | if (PipelineText.startswith("cgscc(")) { |
| 286 | CGSCCPassManager CGPM; |
| 287 | if (!parseCGSCCPassPipeline(CGPM, PipelineText, VerifyEachPass) || |
| 288 | !PipelineText.empty()) |
| 289 | return false; |
| 290 | MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(std::move(CGPM))); |
| 291 | return true; |
| 292 | } |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 293 | if (PipelineText.startswith("function(")) { |
| 294 | FunctionPassManager FPM; |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 295 | if (!parseFunctionPassPipeline(FPM, PipelineText, VerifyEachPass) || |
| 296 | !PipelineText.empty()) |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 297 | return false; |
Chandler Carruth | c3f3da3 | 2014-03-09 11:49:53 +0000 | [diff] [blame] | 298 | MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM))); |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 299 | return true; |
| 300 | } |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 301 | |
| 302 | // This isn't a direct pass manager name, look for the end of a pass name. |
Chandler Carruth | 6546cb6 | 2014-01-12 10:02:02 +0000 | [diff] [blame] | 303 | StringRef FirstName = |
| 304 | PipelineText.substr(0, PipelineText.find_first_of(",)")); |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 305 | if (isModulePassName(FirstName)) |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 306 | return parseModulePassPipeline(MPM, PipelineText, VerifyEachPass) && |
| 307 | PipelineText.empty(); |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 308 | |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 309 | if (isCGSCCPassName(FirstName)) { |
| 310 | CGSCCPassManager CGPM; |
| 311 | if (!parseCGSCCPassPipeline(CGPM, PipelineText, VerifyEachPass) || |
| 312 | !PipelineText.empty()) |
| 313 | return false; |
| 314 | MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(std::move(CGPM))); |
| 315 | return true; |
| 316 | } |
| 317 | |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 318 | if (isFunctionPassName(FirstName)) { |
| 319 | FunctionPassManager FPM; |
Chandler Carruth | 4d35631 | 2014-01-20 11:34:08 +0000 | [diff] [blame] | 320 | if (!parseFunctionPassPipeline(FPM, PipelineText, VerifyEachPass) || |
| 321 | !PipelineText.empty()) |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 322 | return false; |
Chandler Carruth | c3f3da3 | 2014-03-09 11:49:53 +0000 | [diff] [blame] | 323 | MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM))); |
Chandler Carruth | d833098 | 2014-01-12 09:34:22 +0000 | [diff] [blame] | 324 | return true; |
| 325 | } |
Chandler Carruth | 6644538 | 2014-01-11 08:16:35 +0000 | [diff] [blame] | 326 | |
| 327 | return false; |
| 328 | } |