From ca429faf9dc2dd4c474042c592e3e1ffe2fa7451 Mon Sep 17 00:00:00 2001 From: Alexander Frick Date: Wed, 27 Nov 2024 15:14:50 -0600 Subject: [PATCH] rmdd tatus --- tatus | 135 ---------------------------------------------------------- 1 file changed, 135 deletions(-) delete mode 100644 tatus diff --git a/tatus b/tatus deleted file mode 100644 index d91153ab..00000000 --- a/tatus +++ /dev/null @@ -1,135 +0,0 @@ -diff --git a/src/build/config/compiler/BUILD.gn b/src/build/config/compiler/BUILD.gn -index 2e0cfdf6..f933f6cc 100644 ---- a/src/build/config/compiler/BUILD.gn -+++ b/src/build/config/compiler/BUILD.gn -@@ -266,21 +266,6 @@ config("no_unresolved_symbols") { - } - } -  --# Emit relocations for BOLT --config("emit-relocs") { -- if (!using_sanitizer && use_bolt) { -- if (is_win) { -- ldflags = [ -- "-mllvm:--emit-relocs", -- ] -- } else { -- ldflags = [ -- "-Wl,--emit-relocs", -- ] -- } -- } --} -- - # compiler --------------------------------------------------------------------- - # - # Base compiler configuration. -@@ -2642,16 +2627,6 @@ if (is_win) { - ] - } -  -- if (use_polly == true) { -- common_optimize_on_ldflags += [ -- "-mllvm:-polly", -- "-mllvm:-polly-detect-profitability-min-per-loop-insts=40", -- #"-mllvm:-polly-invariant-load-hoisting", -- "-mllvm:-polly-run-dce", -- "-mllvm:-polly-vectorizer=stripmine", -- ] -- } -- - # /OPT:ICF is not desirable in Debug builds, since code-folding can result in - # misleading symbols in stack traces. - if (!is_debug && !is_component_build) { -@@ -2785,16 +2760,6 @@ if (is_win) { - ] - } -  -- if (use_polly == true) { -- common_optimize_on_ldflags += [ -- "-Wl,-mllvm,-polly", -- "-Wl,-mllvm,-polly-detect-profitability-min-per-loop-insts=40", -- #"-Wl,-mllvm,-polly-invariant-load-hoisting", -- "-Wl,-mllvm,-polly-run-dce", -- "-Wl,-mllvm,-polly-vectorizer=stripmine", -- ] -- } -- - if (is_android) { - # TODO(jdduke) Re-enable on mips after resolving linking - # issues with libc++ (crbug.com/456380). -@@ -3032,6 +2997,45 @@ config("no_optimize") { - } - } -  -+# Emit relocs for BOLT -+config("emit-relocs") { -+ if (!using_sanitizer && use_bolt) { -+ if (is_win) { -+ ldflags = [ -+ "-mllvm:--emit-relocs", -+ ] -+ } else { -+ ldflags = [ -+ "-Wl,--emit-relocs", -+ ] -+ } -+ } -+} -+ -+# Use LLVM's Polly optimizer -+config("polly") { -+ if (use_polly == true) { -+ ldflags = common_optimize_on_ldflags -+ if (is_win) { -+ ldflags += [ -+ "-mllvm:-polly", -+ "-mllvm:-polly-detect-profitability-min-per-loop-insts=40", -+ #"-mllvm:-polly-invariant-load-hoisting", -+ "-mllvm:-polly-run-dce", -+ "-mllvm:-polly-vectorizer=stripmine", -+ ] -+ } else { -+ ldflags += [ -+ "-Wl,-mllvm,-polly", -+ "-Wl,-mllvm,-polly-detect-profitability-min-per-loop-insts=40", -+ #"-Wl,-mllvm,-polly-invariant-load-hoisting", -+ "-Wl,-mllvm,-polly-run-dce", -+ "-Wl,-mllvm,-polly-vectorizer=stripmine", -+ ] -+ } -+ } -+} -+ - # Turns up the optimization level. Used to explicitly enable -O2 instead of - # -Os for select targets on platforms that use optimize_for_size. No-op - # elsewhere. -@@ -3062,6 +3066,7 @@ config("optimize_max") { - } - rustflags = [ "-Copt-level=3", ] - } -+ configs = [ ":polly" ] - } -  - # This config can be used to override the default settings for per-component -@@ -3098,6 +3103,7 @@ config("optimize_speed") { - } - rustflags = [ "-Copt-level=3", ] - } -+ configs = [ ":polly" ] - } -  - config("optimize_fuzzing") { -diff --git a/src/media/base/media_switches.cc b/src/media/base/media_switches.cc -index d2f8bec3..0f528844 100644 ---- a/src/media/base/media_switches.cc -+++ b/src/media/base/media_switches.cc -@@ -755,7 +755,7 @@ BASE_FEATURE(kVaapiVideoDecodeLinux, -  - BASE_FEATURE(kVaapiVideoDecodeLinuxGL, - "VaapiVideoDecodeLinuxGL", -- base::FEATURE_ENABLED_BY_DEFAULT); -+ base::FEATURE_DISABLED_BY_DEFAULT); -  - BASE_FEATURE(kVaapiVideoEncodeLinux, - "VaapiVideoEncoder",