reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
224 if (opt.startswith("mcpu=")) { 225 mcpu = opt.substr(strlen("mcpu=")); 226 } else if (opt.startswith("extra-library-path=")) { 227 extra_library_path = opt.substr(strlen("extra_library_path=")); 228 } else if (opt.startswith("mtriple=")) { 229 triple = opt.substr(strlen("mtriple=")); 230 } else if (opt.startswith("obj-path=")) { 231 obj_path = opt.substr(strlen("obj-path=")); 232 } else if (opt == "emit-llvm") { 234 } else if (opt == "save-temps") { 236 } else if (opt == "disable-output") { 238 } else if (opt == "emit-asm") { 240 } else if (opt == "thinlto") { 242 } else if (opt == "thinlto-index-only") { 244 } else if (opt.startswith("thinlto-index-only=")) { 246 thinlto_linked_objects_file = opt.substr(strlen("thinlto-index-only=")); 247 } else if (opt == "thinlto-emit-imports-files") { 249 } else if (opt.startswith("thinlto-prefix-replace=")) { 250 thinlto_prefix_replace = opt.substr(strlen("thinlto-prefix-replace=")); 253 } else if (opt.startswith("thinlto-object-suffix-replace=")) { 255 opt.substr(strlen("thinlto-object-suffix-replace=")); 259 } else if (opt.startswith("cache-dir=")) { 260 cache_dir = opt.substr(strlen("cache-dir=")); 261 } else if (opt.startswith("cache-policy=")) { 262 cache_policy = opt.substr(strlen("cache-policy=")); 263 } else if (opt.size() == 2 && opt[0] == 'O') { 263 } else if (opt.size() == 2 && opt[0] == 'O') { 264 if (opt[1] < '0' || opt[1] > '3') 264 if (opt[1] < '0' || opt[1] > '3') 266 OptLevel = opt[1] - '0'; 267 } else if (opt.startswith("jobs=")) { 270 } else if (opt.startswith("lto-partitions=")) { 271 if (opt.substr(strlen("lto-partitions=")) 274 } else if (opt == "disable-verify") { 276 } else if (opt.startswith("sample-profile=")) { 277 sample_profile = opt.substr(strlen("sample-profile=")); 278 } else if (opt == "cs-profile-generate") { 280 } else if (opt.startswith("cs-profile-path=")) { 281 cs_profile_path = opt.substr(strlen("cs-profile-path=")); 282 } else if (opt == "new-pass-manager") { 284 } else if (opt == "debug-pass-manager") { 286 } else if (opt.startswith("dwo_dir=")) { 287 dwo_dir = opt.substr(strlen("dwo_dir=")); 288 } else if (opt.startswith("opt-remarks-filename=")) { 289 RemarksFilename = opt.substr(strlen("opt-remarks-filename=")); 290 } else if (opt.startswith("opt-remarks-passes=")) { 291 RemarksPasses = opt.substr(strlen("opt-remarks-passes=")); 292 } else if (opt == "opt-remarks-with-hotness") { 294 } else if (opt.startswith("opt-remarks-format=")) { 295 RemarksFormat = opt.substr(strlen("opt-remarks-format=")); 296 } else if (opt.startswith("stats-file=")) { 297 stats_file = opt.substr(strlen("stats-file="));