Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012, The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 17 | #include "bcc/RenderScript/RSCompilerDriver.h" |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 18 | |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 19 | #include <llvm/Support/Path.h> |
| 20 | |
| 21 | #include "bcinfo/BitcodeWrapper.h" |
| 22 | |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 23 | #include "bcc/RenderScript/RSExecutable.h" |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 24 | #include "bcc/RenderScript/RSScript.h" |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 25 | #include "bcc/Support/CompilerConfig.h" |
| 26 | #include "bcc/Support/TargetCompilerConfigs.h" |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 27 | #include "bcc/Source.h" |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 28 | #include "bcc/Support/FileMutex.h" |
Zonr Chang | ef73a24 | 2012-04-12 16:44:01 +0800 | [diff] [blame] | 29 | #include "bcc/Support/Log.h" |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 30 | #include "bcc/Support/InputFile.h" |
| 31 | #include "bcc/Support/Initialization.h" |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 32 | #include "bcc/Support/Sha1Util.h" |
Zonr Chang | c72c4dd | 2012-04-12 15:38:53 +0800 | [diff] [blame] | 33 | #include "bcc/Support/OutputFile.h" |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 34 | |
| 35 | #include <cutils/properties.h> |
| 36 | #include <utils/String8.h> |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 37 | #include <utils/StopWatch.h> |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 38 | |
| 39 | using namespace bcc; |
| 40 | |
| 41 | namespace { |
| 42 | |
| 43 | bool is_force_recompile() { |
| 44 | char buf[PROPERTY_VALUE_MAX]; |
| 45 | |
Shih-wei Liao | ed7fffb | 2012-06-30 11:27:59 -0700 | [diff] [blame] | 46 | // Re-compile if floating point precision has been overridden. |
| 47 | property_get("debug.rs.precision", buf, ""); |
| 48 | if (buf[0] != '\0') { |
| 49 | return true; |
| 50 | } |
| 51 | |
| 52 | // Re-compile if debug.rs.forcerecompile is set. |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 53 | property_get("debug.rs.forcerecompile", buf, "0"); |
| 54 | if ((::strcmp(buf, "1") == 0) || (::strcmp(buf, "true") == 0)) { |
| 55 | return true; |
| 56 | } else { |
| 57 | return false; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | } // end anonymous namespace |
| 62 | |
| 63 | RSCompilerDriver::RSCompilerDriver() : mConfig(NULL), mCompiler() { |
| 64 | init::Initialize(); |
| 65 | // Chain the symbol resolvers for BCC runtimes and RS runtimes. |
| 66 | mResolver.chainResolver(mBCCRuntime); |
| 67 | mResolver.chainResolver(mRSRuntime); |
| 68 | } |
| 69 | |
| 70 | RSCompilerDriver::~RSCompilerDriver() { |
| 71 | delete mConfig; |
| 72 | } |
| 73 | |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 74 | RSExecutable * |
| 75 | RSCompilerDriver::loadScriptCache(const char *pOutputPath, |
| 76 | const RSInfo::DependencyTableTy &pDeps) { |
| 77 | android::StopWatch load_time("bcc: RSCompilerDriver::loadScriptCache time"); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 78 | RSExecutable *result = NULL; |
| 79 | |
| 80 | if (is_force_recompile()) |
| 81 | return NULL; |
| 82 | |
| 83 | //===--------------------------------------------------------------------===// |
| 84 | // Acquire the read lock for reading output object file. |
| 85 | //===--------------------------------------------------------------------===// |
| 86 | FileMutex<FileBase::kReadLock> read_output_mutex(pOutputPath); |
| 87 | |
| 88 | if (read_output_mutex.hasError() || !read_output_mutex.lock()) { |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 89 | ALOGE("Unable to acquire the read lock for %s! (%s)", pOutputPath, |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 90 | read_output_mutex.getErrorMessage().c_str()); |
| 91 | return NULL; |
| 92 | } |
| 93 | |
| 94 | //===--------------------------------------------------------------------===// |
| 95 | // Read the output object file. |
| 96 | //===--------------------------------------------------------------------===// |
| 97 | InputFile *output_file = new (std::nothrow) InputFile(pOutputPath); |
| 98 | |
| 99 | if ((output_file == NULL) || output_file->hasError()) { |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 100 | ALOGE("Unable to open the %s for read! (%s)", pOutputPath, |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 101 | output_file->getErrorMessage().c_str()); |
| 102 | delete output_file; |
| 103 | return NULL; |
| 104 | } |
| 105 | |
| 106 | //===--------------------------------------------------------------------===// |
| 107 | // Acquire the read lock on output_file for reading its RS info file. |
| 108 | //===--------------------------------------------------------------------===// |
| 109 | android::String8 info_path = RSInfo::GetPath(*output_file); |
| 110 | |
| 111 | if (!output_file->lock()) { |
| 112 | ALOGE("Unable to acquire the read lock on %s for reading %s! (%s)", |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 113 | pOutputPath, info_path.string(), |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 114 | output_file->getErrorMessage().c_str()); |
| 115 | delete output_file; |
| 116 | return NULL; |
| 117 | } |
| 118 | |
| 119 | //===---------------------------------------------------------------------===// |
| 120 | // Open and load the RS info file. |
| 121 | //===--------------------------------------------------------------------===// |
| 122 | InputFile info_file(info_path.string()); |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 123 | RSInfo *info = RSInfo::ReadFromFile(info_file, pDeps); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 124 | |
| 125 | // Release the lock on output_file. |
| 126 | output_file->unlock(); |
| 127 | |
| 128 | if (info == NULL) { |
| 129 | delete output_file; |
| 130 | return NULL; |
| 131 | } |
| 132 | |
| 133 | //===--------------------------------------------------------------------===// |
| 134 | // Create the RSExecutable. |
| 135 | //===--------------------------------------------------------------------===// |
| 136 | result = RSExecutable::Create(*info, *output_file, mResolver); |
| 137 | if (result == NULL) { |
| 138 | delete output_file; |
| 139 | delete info; |
| 140 | return NULL; |
| 141 | } |
| 142 | |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 143 | return result; |
| 144 | } |
| 145 | |
| 146 | bool RSCompilerDriver::setupConfig(const RSScript &pScript) { |
| 147 | bool changed = false; |
| 148 | |
| 149 | const llvm::CodeGenOpt::Level script_opt_level = |
| 150 | static_cast<llvm::CodeGenOpt::Level>(pScript.getOptimizationLevel()); |
| 151 | |
| 152 | if (mConfig != NULL) { |
| 153 | // Renderscript bitcode may have their optimization flag configuration |
| 154 | // different than the previous run of RS compilation. |
| 155 | if (mConfig->getOptimizationLevel() != script_opt_level) { |
| 156 | mConfig->setOptimizationLevel(script_opt_level); |
| 157 | changed = true; |
| 158 | } |
| 159 | } else { |
| 160 | // Haven't run the compiler ever. |
| 161 | mConfig = new (std::nothrow) DefaultCompilerConfig(); |
| 162 | if (mConfig == NULL) { |
| 163 | // Return false since mConfig remains NULL and out-of-memory. |
| 164 | return false; |
| 165 | } |
| 166 | mConfig->setOptimizationLevel(script_opt_level); |
| 167 | changed = true; |
| 168 | } |
| 169 | |
| 170 | #if defined(DEFAULT_ARM_CODEGEN) |
| 171 | // NEON should be disable when full-precision floating point is required. |
| 172 | assert((pScript.getInfo() != NULL) && "NULL RS info!"); |
Shih-wei Liao | ed7fffb | 2012-06-30 11:27:59 -0700 | [diff] [blame] | 173 | if (pScript.getInfo()->getFloatPrecisionRequirement() == RSInfo::FP_Full) { |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 174 | // Must be ARMCompilerConfig. |
| 175 | ARMCompilerConfig *arm_config = static_cast<ARMCompilerConfig *>(mConfig); |
| 176 | changed |= arm_config->enableNEON(/* pEnable */false); |
| 177 | } |
| 178 | #endif |
| 179 | |
| 180 | return changed; |
| 181 | } |
| 182 | |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 183 | RSExecutable * |
| 184 | RSCompilerDriver::compileScript(RSScript &pScript, |
Shih-wei Liao | ba42064 | 2012-06-30 11:27:37 -0700 | [diff] [blame] | 185 | const char* pScriptName, |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 186 | const char *pOutputPath, |
| 187 | const RSInfo::DependencyTableTy &pDeps) { |
| 188 | android::StopWatch compile_time("bcc: RSCompilerDriver::compileScript time"); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 189 | RSExecutable *result = NULL; |
| 190 | RSInfo *info = NULL; |
| 191 | |
| 192 | //===--------------------------------------------------------------------===// |
| 193 | // Extract RS-specific information from source bitcode. |
| 194 | //===--------------------------------------------------------------------===// |
| 195 | // RS info may contains configuration (such as #optimization_level) to the |
| 196 | // compiler therefore it should be extracted before compilation. |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 197 | info = RSInfo::ExtractFromSource(pScript.getSource(), pDeps); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 198 | if (info == NULL) { |
| 199 | return NULL; |
| 200 | } |
| 201 | |
| 202 | //===--------------------------------------------------------------------===// |
| 203 | // Associate script with its info |
| 204 | //===--------------------------------------------------------------------===// |
| 205 | // This is required since RS compiler may need information in the info file |
| 206 | // to do some transformation (e.g., expand foreach-able function.) |
| 207 | pScript.setInfo(info); |
| 208 | |
| 209 | //===--------------------------------------------------------------------===// |
Shih-wei Liao | ba42064 | 2012-06-30 11:27:37 -0700 | [diff] [blame] | 210 | // Link RS script with RenderScript runtime. |
| 211 | //===--------------------------------------------------------------------===// |
| 212 | if (!RSScript::LinkRuntime(pScript)) { |
| 213 | ALOGE("Failed to link script '%s' with RenderScript runtime!", pScriptName); |
| 214 | return NULL; |
| 215 | } |
| 216 | |
| 217 | //===--------------------------------------------------------------------===// |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 218 | // Acquire the write lock for writing output object file. |
| 219 | //===--------------------------------------------------------------------===// |
| 220 | FileMutex<FileBase::kWriteLock> write_output_mutex(pOutputPath); |
| 221 | |
| 222 | if (write_output_mutex.hasError() || !write_output_mutex.lock()) { |
| 223 | ALOGE("Unable to acquire the lock for writing %s! (%s)", |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 224 | pOutputPath, write_output_mutex.getErrorMessage().c_str()); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 225 | return NULL; |
| 226 | } |
| 227 | |
| 228 | //===--------------------------------------------------------------------===// |
| 229 | // Open the output file for write. |
| 230 | //===--------------------------------------------------------------------===// |
Shih-wei Liao | c02eae6 | 2012-07-22 16:23:32 -0700 | [diff] [blame] | 231 | OutputFile *output_file = |
| 232 | new (std::nothrow) OutputFile(pOutputPath, FileBase::kTruncate); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 233 | |
| 234 | if ((output_file == NULL) || output_file->hasError()) { |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 235 | ALOGE("Unable to open the %s for write! (%s)", pOutputPath, |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 236 | output_file->getErrorMessage().c_str()); |
| 237 | delete info; |
| 238 | delete output_file; |
| 239 | return NULL; |
| 240 | } |
| 241 | |
| 242 | //===--------------------------------------------------------------------===// |
| 243 | // Setup the config to the compiler. |
| 244 | //===--------------------------------------------------------------------===// |
| 245 | bool compiler_need_reconfigure = setupConfig(pScript); |
| 246 | |
| 247 | if (mConfig == NULL) { |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 248 | ALOGE("Failed to setup config for RS compiler to compile %s!", pOutputPath); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 249 | delete info; |
| 250 | delete output_file; |
| 251 | return NULL; |
| 252 | } |
| 253 | |
| 254 | // Compiler need to re-config if it's haven't run the config() yet or the |
| 255 | // configuration it referenced is changed. |
| 256 | if (compiler_need_reconfigure) { |
| 257 | Compiler::ErrorCode err = mCompiler.config(*mConfig); |
| 258 | if (err != Compiler::kSuccess) { |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 259 | ALOGE("Failed to config the RS compiler for %s! (%s)",pOutputPath, |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 260 | Compiler::GetErrorString(err)); |
| 261 | delete info; |
| 262 | delete output_file; |
| 263 | return NULL; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | //===--------------------------------------------------------------------===// |
| 268 | // Run the compiler. |
| 269 | //===--------------------------------------------------------------------===// |
| 270 | Compiler::ErrorCode compile_result = mCompiler.compile(pScript, *output_file); |
| 271 | if (compile_result != Compiler::kSuccess) { |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 272 | ALOGE("Unable to compile the source to file %s! (%s)", pOutputPath, |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 273 | Compiler::GetErrorString(compile_result)); |
| 274 | delete info; |
| 275 | delete output_file; |
| 276 | return NULL; |
| 277 | } |
| 278 | |
| 279 | //===--------------------------------------------------------------------===// |
| 280 | // Create the RSExecutable. |
| 281 | //===--------------------------------------------------------------------===// |
| 282 | result = RSExecutable::Create(*info, *output_file, mResolver); |
| 283 | if (result == NULL) { |
| 284 | delete info; |
| 285 | delete output_file; |
| 286 | return NULL; |
| 287 | } |
| 288 | |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 289 | //===--------------------------------------------------------------------===// |
| 290 | // Write out the RS info file. |
| 291 | //===--------------------------------------------------------------------===// |
| 292 | // Note that write failure only results in a warning since the source is |
| 293 | // successfully compiled and loaded. |
| 294 | if (!result->syncInfo(/* pForce */true)) { |
| 295 | ALOGW("%s was successfully compiled and loaded but its RS info file failed " |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 296 | "to write out!", pOutputPath); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | return result; |
| 300 | } |
| 301 | |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 302 | RSExecutable *RSCompilerDriver::build(BCCContext &pContext, |
| 303 | const char *pCacheDir, |
| 304 | const char *pResName, |
| 305 | const char *pBitcode, |
| 306 | size_t pBitcodeSize) { |
| 307 | android::StopWatch build_time("bcc: RSCompilerDriver::build time"); |
| 308 | //===--------------------------------------------------------------------===// |
| 309 | // Check parameters. |
| 310 | //===--------------------------------------------------------------------===// |
| 311 | if ((pCacheDir == NULL) || (pResName == NULL)) { |
| 312 | ALOGE("Invalid parameter passed to RSCompilerDriver::build()! (cache dir: " |
| 313 | "%s, resource name: %s)", ((pCacheDir) ? pCacheDir : "(null)"), |
| 314 | ((pResName) ? pResName : "(null)")); |
| 315 | return NULL; |
| 316 | } |
| 317 | |
| 318 | if ((pBitcode == NULL) || (pBitcodeSize <= 0)) { |
| 319 | ALOGE("No bitcode supplied! (bitcode: %p, size of bitcode: %u)", |
| 320 | pBitcode, static_cast<unsigned>(pBitcodeSize)); |
| 321 | return NULL; |
| 322 | } |
| 323 | |
| 324 | //===--------------------------------------------------------------------===// |
| 325 | // Prepare dependency information. |
| 326 | //===--------------------------------------------------------------------===// |
| 327 | RSInfo::DependencyTableTy dep_info; |
| 328 | uint8_t bitcode_sha1[20]; |
| 329 | Sha1Util::GetSHA1DigestFromBuffer(bitcode_sha1, pBitcode, pBitcodeSize); |
| 330 | dep_info.push(std::make_pair(pResName, bitcode_sha1)); |
| 331 | |
| 332 | //===--------------------------------------------------------------------===// |
| 333 | // Construct output path. |
| 334 | //===--------------------------------------------------------------------===// |
| 335 | llvm::sys::Path output_path(pCacheDir); |
| 336 | |
| 337 | // {pCacheDir}/{pResName} |
| 338 | if (!output_path.appendComponent(pResName)) { |
| 339 | ALOGE("Failed to construct output path %s/%s!", pCacheDir, pResName); |
| 340 | return NULL; |
| 341 | } |
| 342 | |
| 343 | // {pCacheDir}/{pResName}.o |
| 344 | output_path.appendSuffix("o"); |
| 345 | |
| 346 | //===--------------------------------------------------------------------===// |
| 347 | // Load cache. |
| 348 | //===--------------------------------------------------------------------===// |
| 349 | RSExecutable *result = loadScriptCache(output_path.c_str(), dep_info); |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 350 | |
| 351 | if (result != NULL) { |
| 352 | // Cache hit |
| 353 | return result; |
| 354 | } |
| 355 | |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 356 | //===--------------------------------------------------------------------===// |
| 357 | // Load the bitcode and create script. |
| 358 | //===--------------------------------------------------------------------===// |
| 359 | Source *source = Source::CreateFromBuffer(pContext, pResName, |
| 360 | pBitcode, pBitcodeSize); |
| 361 | if (source == NULL) { |
| 362 | return NULL; |
| 363 | } |
| 364 | |
| 365 | RSScript *script = new (std::nothrow) RSScript(*source); |
| 366 | if (script == NULL) { |
| 367 | ALOGE("Out of memory when create Script object for '%s'! (output: %s)", |
| 368 | pResName, output_path.c_str()); |
| 369 | delete source; |
| 370 | return NULL; |
| 371 | } |
| 372 | |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 373 | // Read information from bitcode wrapper. |
| 374 | bcinfo::BitcodeWrapper wrapper(pBitcode, pBitcodeSize); |
| 375 | script->setCompilerVersion(wrapper.getCompilerVersion()); |
| 376 | script->setOptimizationLevel(static_cast<RSScript::OptimizationLevel>( |
| 377 | wrapper.getOptimizationLevel())); |
| 378 | |
| 379 | //===--------------------------------------------------------------------===// |
| 380 | // Compile the script |
| 381 | //===--------------------------------------------------------------------===// |
Shih-wei Liao | ba42064 | 2012-06-30 11:27:37 -0700 | [diff] [blame] | 382 | result = compileScript(*script, pResName, output_path.c_str(), dep_info); |
Shih-wei Liao | 7bcec85 | 2012-04-25 04:07:09 -0700 | [diff] [blame] | 383 | |
| 384 | // Script is no longer used. Free it to get more memory. |
| 385 | delete script; |
| 386 | |
| 387 | if (result == NULL) { |
| 388 | return NULL; |
| 389 | } |
| 390 | |
| 391 | return result; |
Zonr Chang | 0fffa7e | 2012-04-12 19:43:53 +0800 | [diff] [blame] | 392 | } |