Tobias Bosch | cfa8c24 | 2019-07-19 03:29:40 -0700 | [diff] [blame] | 1 | // Copyright 2019 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 5 | package main |
| 6 | |
| 7 | import ( |
George Burgess IV | 26caa2f | 2020-02-28 14:36:01 -0800 | [diff] [blame^] | 8 | "bytes" |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 9 | "fmt" |
| 10 | "io" |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 11 | "path/filepath" |
Tobias Bosch | 5f98f2d | 2019-08-15 17:17:57 -0700 | [diff] [blame] | 12 | "strings" |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 13 | ) |
| 14 | |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 15 | func callCompiler(env env, cfg *config, inputCmd *command) int { |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 16 | var compilerErr error |
Tobias Bosch | 5edca50 | 2019-08-26 12:53:41 -0700 | [diff] [blame] | 17 | |
| 18 | if !filepath.IsAbs(inputCmd.Path) && !strings.HasPrefix(inputCmd.Path, ".") && |
| 19 | !strings.ContainsRune(inputCmd.Path, filepath.Separator) { |
Tobias Bosch | 5f98f2d | 2019-08-15 17:17:57 -0700 | [diff] [blame] | 20 | if resolvedPath, err := resolveAgainstPathEnv(env, inputCmd.Path); err == nil { |
| 21 | inputCmd = &command{ |
| 22 | Path: resolvedPath, |
| 23 | Args: inputCmd.Args, |
| 24 | EnvUpdates: inputCmd.EnvUpdates, |
| 25 | } |
| 26 | } else { |
| 27 | compilerErr = err |
| 28 | } |
| 29 | } |
| 30 | exitCode := 0 |
| 31 | if compilerErr == nil { |
Tobias Bosch | 8dd67e1 | 2019-10-28 14:26:51 -0700 | [diff] [blame] | 32 | exitCode, compilerErr = callCompilerInternal(env, cfg, inputCmd) |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 33 | } |
| 34 | if compilerErr != nil { |
| 35 | printCompilerError(env.stderr(), compilerErr) |
| 36 | exitCode = 1 |
| 37 | } |
| 38 | return exitCode |
| 39 | } |
| 40 | |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 41 | func callCompilerInternal(env env, cfg *config, inputCmd *command) (exitCode int, err error) { |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 42 | if err := checkUnsupportedFlags(inputCmd); err != nil { |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 43 | return 0, err |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 44 | } |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 45 | mainBuilder, err := newCommandBuilder(env, cfg, inputCmd) |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 46 | if err != nil { |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 47 | return 0, err |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 48 | } |
Tobias Bosch | 5847281 | 2019-07-11 04:24:52 -0700 | [diff] [blame] | 49 | processPrintConfigFlag(mainBuilder) |
| 50 | processPrintCmdlineFlag(mainBuilder) |
| 51 | env = mainBuilder.env |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 52 | var compilerCmd *command |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 53 | clangSyntax := processClangSyntaxFlag(mainBuilder) |
Tobias Bosch | 8cb363f | 2019-10-17 07:44:13 -0700 | [diff] [blame] | 54 | if cfg.isAndroidWrapper { |
| 55 | // FIXME: This combination of using the directory of the symlink but the |
| 56 | // basename of the link target is strange but is the logic that old android |
| 57 | // wrapper uses. Change this to use directory and basename either from the |
| 58 | // absWrapperPath or from the builder.path, but don't mix anymore. |
| 59 | mainBuilder.path = filepath.Join(filepath.Dir(mainBuilder.path), filepath.Base(mainBuilder.absWrapperPath)+".real") |
| 60 | |
| 61 | switch mainBuilder.target.compilerType { |
| 62 | case clangType: |
| 63 | mainBuilder.addPreUserArgs(mainBuilder.cfg.clangFlags...) |
| 64 | mainBuilder.addPreUserArgs(mainBuilder.cfg.commonFlags...) |
| 65 | if _, err := processGomaCccFlags(mainBuilder); err != nil { |
| 66 | return 0, err |
| 67 | } |
| 68 | compilerCmd = mainBuilder.build() |
| 69 | case clangTidyType: |
| 70 | compilerCmd = mainBuilder.build() |
| 71 | default: |
| 72 | return 0, newErrorwithSourceLocf("unsupported compiler: %s", mainBuilder.target.compiler) |
| 73 | } |
| 74 | } else if mainBuilder.target.compilerType == clangType { |
Tobias Bosch | 38f3c42 | 2019-07-08 11:03:26 -0700 | [diff] [blame] | 75 | cSrcFile, useClangTidy := processClangTidyFlags(mainBuilder) |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 76 | sysroot, err := prepareClangCommand(mainBuilder) |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 77 | if err != nil { |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 78 | return 0, err |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 79 | } |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 80 | allowCCache := true |
Tobias Bosch | 38f3c42 | 2019-07-08 11:03:26 -0700 | [diff] [blame] | 81 | if useClangTidy { |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 82 | allowCCache = false |
| 83 | clangCmdWithoutGomaAndCCache := mainBuilder.build() |
| 84 | if err := runClangTidy(env, clangCmdWithoutGomaAndCCache, cSrcFile); err != nil { |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 85 | return 0, err |
Tobias Bosch | 38f3c42 | 2019-07-08 11:03:26 -0700 | [diff] [blame] | 86 | } |
| 87 | } |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 88 | if err := processGomaCCacheFlags(sysroot, allowCCache, mainBuilder); err != nil { |
| 89 | return 0, err |
| 90 | } |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 91 | compilerCmd = mainBuilder.build() |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 92 | } else { |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 93 | if clangSyntax { |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 94 | allowCCache := false |
| 95 | clangCmd, err := calcClangCommand(allowCCache, mainBuilder.clone()) |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 96 | if err != nil { |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 97 | return 0, err |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 98 | } |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 99 | gccCmd, err := calcGccCommand(mainBuilder) |
| 100 | if err != nil { |
| 101 | return 0, err |
| 102 | } |
Tobias Bosch | a50a9c1 | 2019-08-16 11:47:00 -0700 | [diff] [blame] | 103 | return checkClangSyntax(env, clangCmd, gccCmd) |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 104 | } |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 105 | compilerCmd, err = calcGccCommand(mainBuilder) |
| 106 | if err != nil { |
| 107 | return 0, err |
| 108 | } |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 109 | } |
Tobias Bosch | 9d60930 | 2019-07-10 06:16:04 -0700 | [diff] [blame] | 110 | rusageLogfileName := getRusageLogFilename(env) |
Tobias Bosch | 9780ea9 | 2019-07-11 01:19:42 -0700 | [diff] [blame] | 111 | bisectStage := getBisectStage(env) |
Pirama Arumuga Nainar | ee7e22c | 2020-02-20 15:08:30 -0800 | [diff] [blame] | 112 | if newWarningsDir, ok := getNewWarningsDir(env, cfg); ok { |
Tobias Bosch | 9d60930 | 2019-07-10 06:16:04 -0700 | [diff] [blame] | 113 | if rusageLogfileName != "" { |
| 114 | return 0, newUserErrorf("GETRUSAGE is meaningless with FORCE_DISABLE_WERROR") |
| 115 | } |
Tobias Bosch | 9780ea9 | 2019-07-11 01:19:42 -0700 | [diff] [blame] | 116 | if bisectStage != "" { |
| 117 | return 0, newUserErrorf("BISECT_STAGE is meaningless with FORCE_DISABLE_WERROR") |
| 118 | } |
Pirama Arumuga Nainar | ee7e22c | 2020-02-20 15:08:30 -0800 | [diff] [blame] | 119 | return doubleBuildWithWNoError(env, cfg, newWarningsDir, compilerCmd) |
Tobias Bosch | f6d9f4f | 2019-07-09 08:09:01 -0700 | [diff] [blame] | 120 | } |
Tobias Bosch | c88ee8a | 2019-10-01 15:00:52 -0700 | [diff] [blame] | 121 | if shouldCompileWithFallback(env) { |
| 122 | if rusageLogfileName != "" { |
| 123 | return 0, newUserErrorf("GETRUSAGE is meaningless with FORCE_DISABLE_WERROR") |
| 124 | } |
| 125 | if bisectStage != "" { |
| 126 | return 0, newUserErrorf("BISECT_STAGE is meaningless with FORCE_DISABLE_WERROR") |
| 127 | } |
| 128 | return compileWithFallback(env, cfg, compilerCmd, mainBuilder.absWrapperPath) |
| 129 | } |
Tobias Bosch | 9d60930 | 2019-07-10 06:16:04 -0700 | [diff] [blame] | 130 | if rusageLogfileName != "" { |
Tobias Bosch | 9780ea9 | 2019-07-11 01:19:42 -0700 | [diff] [blame] | 131 | if bisectStage != "" { |
| 132 | return 0, newUserErrorf("BISECT_STAGE is meaningless with GETRUSAGE") |
| 133 | } |
Tobias Bosch | 9d60930 | 2019-07-10 06:16:04 -0700 | [diff] [blame] | 134 | return logRusage(env, rusageLogfileName, compilerCmd) |
| 135 | } |
Tobias Bosch | 9780ea9 | 2019-07-11 01:19:42 -0700 | [diff] [blame] | 136 | if bisectStage != "" { |
Tobias Bosch | 820bffa | 2019-09-30 15:53:52 -0700 | [diff] [blame] | 137 | compilerCmd, err = calcBisectCommand(env, cfg, bisectStage, compilerCmd) |
| 138 | if err != nil { |
| 139 | return 0, err |
| 140 | } |
Tobias Bosch | 9780ea9 | 2019-07-11 01:19:42 -0700 | [diff] [blame] | 141 | } |
Tobias Bosch | 9332d21 | 2019-07-10 06:23:57 -0700 | [diff] [blame] | 142 | // Note: We return an exit code only if the underlying env is not |
| 143 | // really doing an exec, e.g. commandRecordingEnv. |
| 144 | return wrapSubprocessErrorWithSourceLoc(compilerCmd, env.exec(compilerCmd)) |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 147 | func prepareClangCommand(builder *commandBuilder) (sysroot string, err error) { |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 148 | sysroot = "" |
Tobias Bosch | 8cb363f | 2019-10-17 07:44:13 -0700 | [diff] [blame] | 149 | if !builder.cfg.isHostWrapper { |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 150 | sysroot = processSysrootFlag(builder) |
| 151 | } |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 152 | builder.addPreUserArgs(builder.cfg.clangFlags...) |
Caroline Tice | 8ac33e0 | 2019-10-28 09:48:18 -0700 | [diff] [blame] | 153 | builder.addPostUserArgs(builder.cfg.clangPostFlags...) |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 154 | calcCommonPreUserArgs(builder) |
| 155 | if err := processClangFlags(builder); err != nil { |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 156 | return "", err |
| 157 | } |
| 158 | return sysroot, nil |
| 159 | } |
| 160 | |
| 161 | func calcClangCommand(allowCCache bool, builder *commandBuilder) (*command, error) { |
| 162 | sysroot, err := prepareClangCommand(builder) |
| 163 | if err != nil { |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 164 | return nil, err |
| 165 | } |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 166 | if err := processGomaCCacheFlags(sysroot, allowCCache, builder); err != nil { |
| 167 | return nil, err |
| 168 | } |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 169 | return builder.build(), nil |
| 170 | } |
| 171 | |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 172 | func calcGccCommand(builder *commandBuilder) (*command, error) { |
Tobias Bosch | b27c8f2 | 2019-07-19 06:53:07 -0700 | [diff] [blame] | 173 | sysroot := "" |
| 174 | if !builder.cfg.isHostWrapper { |
| 175 | sysroot = processSysrootFlag(builder) |
| 176 | } |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 177 | builder.addPreUserArgs(builder.cfg.gccFlags...) |
Tobias Bosch | b27c8f2 | 2019-07-19 06:53:07 -0700 | [diff] [blame] | 178 | if !builder.cfg.isHostWrapper { |
| 179 | calcCommonPreUserArgs(builder) |
| 180 | } |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 181 | processGccFlags(builder) |
Tobias Bosch | b27c8f2 | 2019-07-19 06:53:07 -0700 | [diff] [blame] | 182 | if !builder.cfg.isHostWrapper { |
| 183 | allowCCache := true |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 184 | if err := processGomaCCacheFlags(sysroot, allowCCache, builder); err != nil { |
| 185 | return nil, err |
| 186 | } |
Tobias Bosch | b27c8f2 | 2019-07-19 06:53:07 -0700 | [diff] [blame] | 187 | } |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 188 | return builder.build(), nil |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | func calcCommonPreUserArgs(builder *commandBuilder) { |
| 192 | builder.addPreUserArgs(builder.cfg.commonFlags...) |
Tobias Bosch | 8cb363f | 2019-10-17 07:44:13 -0700 | [diff] [blame] | 193 | if !builder.cfg.isHostWrapper { |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 194 | processPieFlags(builder) |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 195 | processThumbCodeFlags(builder) |
Tobias Bosch | 1cd5f84 | 2019-08-20 10:05:33 -0700 | [diff] [blame] | 196 | processStackProtectorFlags(builder) |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 197 | processX86Flags(builder) |
| 198 | } |
Tobias Bosch | 8cb363f | 2019-10-17 07:44:13 -0700 | [diff] [blame] | 199 | processSanitizerFlags(builder) |
Tobias Bosch | d868417 | 2019-07-08 10:59:14 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 202 | func processGomaCCacheFlags(sysroot string, allowCCache bool, builder *commandBuilder) (err error) { |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 203 | gomaccUsed := false |
| 204 | if !builder.cfg.isHostWrapper { |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 205 | gomaccUsed, err = processGomaCccFlags(builder) |
| 206 | if err != nil { |
| 207 | return err |
| 208 | } |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 209 | } |
Tobias Bosch | 198a3c9 | 2019-07-17 04:22:34 -0700 | [diff] [blame] | 210 | if !gomaccUsed && allowCCache { |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 211 | processCCacheFlag(sysroot, builder) |
| 212 | } |
Tobias Bosch | c58f8d5 | 2019-09-30 10:37:42 -0700 | [diff] [blame] | 213 | return nil |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 216 | func getAbsWrapperPath(env env, wrapperCmd *command) (string, error) { |
Tobias Bosch | 5847281 | 2019-07-11 04:24:52 -0700 | [diff] [blame] | 217 | wrapperPath := getAbsCmdPath(env, wrapperCmd) |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 218 | evaledCmdPath, err := filepath.EvalSymlinks(wrapperPath) |
| 219 | if err != nil { |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 220 | return "", wrapErrorwithSourceLocf(err, "failed to evaluate symlinks for %s", wrapperPath) |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 221 | } |
Tobias Bosch | 31dec2c | 2019-07-18 07:34:03 -0700 | [diff] [blame] | 222 | return evaledCmdPath, nil |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Tobias Bosch | 900dbc9 | 2019-06-24 09:31:39 -0700 | [diff] [blame] | 225 | func printCompilerError(writer io.Writer, compilerErr error) { |
| 226 | if _, ok := compilerErr.(userError); ok { |
| 227 | fmt.Fprintf(writer, "%s\n", compilerErr) |
| 228 | } else { |
| 229 | fmt.Fprintf(writer, |
| 230 | "Internal error. Please report to chromeos-toolchain@google.com.\n%s\n", |
| 231 | compilerErr) |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 232 | } |
Tobias Bosch | ef8f969 | 2019-06-10 15:50:33 -0700 | [diff] [blame] | 233 | } |
Tobias Bosch | 6f59a66 | 2019-08-20 15:37:11 -0700 | [diff] [blame] | 234 | |
George Burgess IV | 26caa2f | 2020-02-28 14:36:01 -0800 | [diff] [blame^] | 235 | func needStdinTee(inputCmd *command) bool { |
Tobias Bosch | 6f59a66 | 2019-08-20 15:37:11 -0700 | [diff] [blame] | 236 | lastArg := "" |
| 237 | for _, arg := range inputCmd.Args { |
| 238 | if arg == "-" && lastArg != "-o" { |
George Burgess IV | 26caa2f | 2020-02-28 14:36:01 -0800 | [diff] [blame^] | 239 | return true |
Tobias Bosch | 6f59a66 | 2019-08-20 15:37:11 -0700 | [diff] [blame] | 240 | } |
| 241 | lastArg = arg |
| 242 | } |
George Burgess IV | 26caa2f | 2020-02-28 14:36:01 -0800 | [diff] [blame^] | 243 | return false |
| 244 | } |
| 245 | |
| 246 | func prebufferStdinIfNeeded(env env, inputCmd *command) (getStdin func() io.Reader, err error) { |
| 247 | // We pre-buffer the entirety of stdin, since the compiler may exit mid-invocation with an |
| 248 | // error, which may leave stdin partially read. |
| 249 | if !needStdinTee(inputCmd) { |
| 250 | // This won't produce deterministic input to the compiler, but stdin shouldn't |
| 251 | // matter in this case, so... |
| 252 | return env.stdin, nil |
| 253 | } |
| 254 | |
| 255 | stdinBuffer := &bytes.Buffer{} |
| 256 | if _, err := stdinBuffer.ReadFrom(env.stdin()); err != nil { |
| 257 | return nil, wrapErrorwithSourceLocf(err, "prebuffering stdin") |
| 258 | } |
| 259 | |
| 260 | return func() io.Reader { return bytes.NewReader(stdinBuffer.Bytes()) }, nil |
Tobias Bosch | 6f59a66 | 2019-08-20 15:37:11 -0700 | [diff] [blame] | 261 | } |