Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Issue 9584046: Update the tcmalloc chromium branch to r144 (gperftools 2.0), and merge chromium-specific changes. (Closed)

Created:
8 years, 9 months ago by Dai Mikurube (NOT FULLTIME)
Modified:
8 years, 9 months ago
CC:
chromium-reviews, nkostylev+watch_chromium.org, jam, mihaip+watch_chromium.org, joi+watch-content_chromium.org, Aaron Boodman, darin-cc_chromium.org, brettw-cc_chromium.org, pam+watch_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org
Visibility:
Public.

Description

Update the tcmalloc chromium branch to r144 (gperftools 2.0), and merge chromium-specific changes. This change is retry of r124832. The original review discussion is at http://codereview.chromium.org/9311003/. The major reason for us is to enable a fix for HEAP_PROFILE_MMAP. The change is created by 3-way merge from 1) the original google-perftools r109 ( = vendor base), 2) the original gperftools 2.0 r144 ( = branch), and 3) the chromium branch ( = another branch) with the following additional changes : * base/allocator/allocator.gyp is modified. * Many [#include "third_party/tcmalloc/chromium/src/google/..."] are replaced with "gperftools/". (Many files in Chromium) * gperftools/tcmalloc.h (formerly google/tcmalloc.h) is replaced with the original (generated) one. * windows/gperftools/tcmalloc.h (formerly windows/google/tcmalloc.h) is replaced with the original (generated) one. * malloc_hook-like functions are moved to libc_override*.h in gperftools 2.0. Some changes due to it. * MALLOC_HOOK_MAYBE_VOLATILE is redefined using __MALLOC_HOOK_VOLATILE. (config.h, tcmalloc.cc and libc_override_glibc.h) * The macro "CRASH(...)" is replaced with "Log(kCrash, __FILE__, __LINE__, ...)". (Many files) * LARGE_PAGE-related parameters (which may affect performance?) are merged. (common.h) * RAW_VLOG() calls are removed. (base/googleinit.h) * sys_{mmap|munmap|mremap}(...) calls are tentatively replaced with syscall(SYS_{mmap|munmap|mremap}, ...). (malloc_hook_mmap_linux.h) * tc_mallinfo is declared only when HAVE_STRUCT_MALLINFO is defined. (gperftools/tcmalloc.h) * "libc_override_redefine.h" is not included in Windows. (libc_override.h) * Chromium-original "sys_alloc" is not declared. (windows/port.cc) * base/spinlock_win32-inl.h is reverted from r144 because 64-bit atomicops are not implemented on Windows. (base/atomicops-internals-windows.h) The vendor branch is updated in another change. BUG=114302 TEST=run all existing tests. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=126412

Patch Set 1 #

Patch Set 2 : rebased and updated README.chromium. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+6133 lines, -5872 lines) Patch
M base/allocator/allocator.gyp View 11 chunks +41 lines, -21 lines 0 comments Download
M base/debug/leak_annotations.h View 1 chunk +1 line, -1 line 0 comments Download
M base/debug/profiler.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/browser_about_handler.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/status/memory_menu_button.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/memory_purger.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/webui/about_ui.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/chrome_render_process_observer.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/zygote_host_impl_linux.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/render_thread_impl.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/README.chromium View 1 1 chunk +1 line, -1 line 0 comments Download
D third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-gcc.h View 1 chunk +0 lines, -234 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-generic.h View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-v6plus.h View 4 chunks +140 lines, -16 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/atomicops-internals-windows.h View 7 chunks +107 lines, -20 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/basictypes.h View 3 chunks +24 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/cycleclock.h View 4 chunks +31 lines, -8 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/dynamic_annotations.h View 3 chunks +22 lines, -16 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/dynamic_annotations.c View 3 chunks +16 lines, -2 lines 0 comments Download
A third_party/tcmalloc/chromium/src/base/elf_mem_image.h View 1 chunk +134 lines, -0 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/base/elf_mem_image.cc View 13 chunks +35 lines, -165 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/googleinit.h View 1 chunk +40 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/linux_syscall_support.h View 40 chunks +268 lines, -1107 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/logging.h View 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/low_level_alloc.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_internal.cc View 2 chunks +25 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_linux-inl.h View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_posix-inl.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_win32-inl.h View 1 chunk +7 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/stl_allocator.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/sysinfo.cc View 1 chunk +10 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/vdso_support.h View 5 chunks +39 lines, -70 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/vdso_support.cc View 6 chunks +8 lines, -382 lines 0 comments Download
M third_party/tcmalloc/chromium/src/central_freelist.h View 5 chunks +27 lines, -11 lines 0 comments Download
M third_party/tcmalloc/chromium/src/central_freelist.cc View 8 chunks +43 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/common.h View 5 chunks +10 lines, -11 lines 0 comments Download
M third_party/tcmalloc/chromium/src/common.cc View 6 chunks +33 lines, -44 lines 0 comments Download
M third_party/tcmalloc/chromium/src/config.h View 1 chunk +0 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/config.h.in View 4 chunks +13 lines, -3 lines 0 comments Download
M third_party/tcmalloc/chromium/src/debugallocation.cc View 17 chunks +109 lines, -72 lines 0 comments Download
M third_party/tcmalloc/chromium/src/free_list.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/free_list.cc View 1 chunk +4 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/heap-checker.h View 1 chunk +4 lines, -389 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/heap-profiler.h View 1 chunk +3 lines, -73 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_extension.h View 1 chunk +4 lines, -356 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_extension_c.h View 1 chunk +3 lines, -56 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_hook.h View 1 chunk +4 lines, -316 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_hook_c.h View 1 chunk +3 lines, -142 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/profiler.h View 1 chunk +3 lines, -135 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/stacktrace.h View 1 chunk +4 lines, -87 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/tcmalloc.h View 1 chunk +33 lines, -68 lines 0 comments Download
D third_party/tcmalloc/chromium/src/google/tcmalloc.h.in View 1 chunk +0 lines, -123 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/heap-checker.h View 6 chunks +25 lines, -19 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_extension.h View 3 chunks +22 lines, -7 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_extension_c.h View 2 chunks +16 lines, -4 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_hook.h View 3 chunks +14 lines, -1 line 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_hook_c.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/profiler.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/stacktrace.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h View 2 chunks +5 lines, -5 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h.in View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/heap-checker.cc View 23 chunks +119 lines, -45 lines 0 comments Download
M third_party/tcmalloc/chromium/src/heap-checker-bcad.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/heap-profile-table.h View 7 chunks +59 lines, -21 lines 0 comments Download
M third_party/tcmalloc/chromium/src/heap-profile-table.cc View 14 chunks +151 lines, -56 lines 0 comments Download
M third_party/tcmalloc/chromium/src/heap-profiler.cc View 5 chunks +13 lines, -36 lines 0 comments Download
M third_party/tcmalloc/chromium/src/internal_logging.h View 1 chunk +54 lines, -52 lines 0 comments Download
M third_party/tcmalloc/chromium/src/internal_logging.cc View 1 chunk +113 lines, -39 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override.h View 1 chunk +94 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_gcc_and_weak.h View 1 chunk +99 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_glibc.h View 1 chunk +159 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_osx.h View 1 chunk +275 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_redefine.h View 1 chunk +93 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/malloc_extension.cc View 6 chunks +28 lines, -15 lines 0 comments Download
M third_party/tcmalloc/chromium/src/malloc_hook.cc View 8 chunks +15 lines, -198 lines 0 comments Download
M third_party/tcmalloc/chromium/src/malloc_hook-inl.h View 2 chunks +2 lines, -2 lines 0 comments Download
A third_party/tcmalloc/chromium/src/malloc_hook_mmap_freebsd.h View 1 chunk +165 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/malloc_hook_mmap_linux.h View 1 chunk +241 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/maybe_threads.cc View 2 chunks +20 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/memfs_malloc.cc View 8 chunks +61 lines, -54 lines 0 comments Download
M third_party/tcmalloc/chromium/src/memory_region_map.h View 2 chunks +9 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/memory_region_map.cc View 5 chunks +8 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/page_heap.h View 4 chunks +18 lines, -10 lines 0 comments Download
M third_party/tcmalloc/chromium/src/page_heap.cc View 2 chunks +12 lines, -90 lines 0 comments Download
M third_party/tcmalloc/chromium/src/page_heap_allocator.h View 3 chunks +9 lines, -7 lines 0 comments Download
M third_party/tcmalloc/chromium/src/pprof View 1 71 chunks +623 lines, -183 lines 0 comments Download
M third_party/tcmalloc/chromium/src/profile-handler.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/profile-handler.cc View 13 chunks +70 lines, -19 lines 0 comments Download
M third_party/tcmalloc/chromium/src/profiler.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/span.h View 1 chunk +0 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/span.cc View 1 chunk +0 lines, -10 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stack_trace_table.cc View 3 chunks +6 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace.cc View 2 chunks +7 lines, -6 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/stacktrace_arm-inl.h View 7 chunks +40 lines, -68 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_config.h View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_generic-inl.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_libunwind-inl.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_powerpc-inl.h View 4 chunks +10 lines, -13 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_win32-inl.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_with_context.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_x86-inl.h View 2 chunks +9 lines, -4 lines 0 comments Download
D third_party/tcmalloc/chromium/src/stacktrace_x86_64-inl.h View 1 chunk +0 lines, -151 lines 0 comments Download
M third_party/tcmalloc/chromium/src/static_vars.h View 2 chunks +2 lines, -7 lines 0 comments Download
M third_party/tcmalloc/chromium/src/static_vars.cc View 3 chunks +7 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/symbolize.cc View 9 chunks +65 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/system-alloc.cc View 11 chunks +18 lines, -10 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tcmalloc.cc View 26 chunks +154 lines, -237 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/current_allocated_bytes_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/debugallocation_test.cc View 3 chunks +6 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/frag_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/heap-checker-death_unittest.sh View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc View 3 chunks +17 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/heap-profiler_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/low_level_alloc_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/malloc_extension_c_test.c View 2 chunks +10 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/malloc_extension_test.cc View 3 chunks +22 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/malloc_hook_test.cc View 7 chunks +29 lines, -8 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/markidle_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/profile-handler_unittest.cc View 6 chunks +38 lines, -8 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/profiler_unittest.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/sampler_test.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/sampling_test.cc View 1 chunk +1 line, -1 line 0 comments Download
A + third_party/tcmalloc/chromium/src/tests/simple_compat_test.cc View 2 chunks +29 lines, -25 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/stacktrace_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/system-alloc_unittest.cc View 3 chunks +21 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/tcmalloc_unittest.cc View 6 chunks +94 lines, -53 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/thread_dealloc_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/thread_cache.h View 4 chunks +11 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/thread_cache.cc View 9 chunks +44 lines, -43 lines 0 comments Download
A third_party/tcmalloc/chromium/src/windows/auto_testing_hook.h View 1 chunk +155 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/config.h View 4 chunks +23 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/google/tcmalloc.h View 1 chunk +4 lines, -86 lines 0 comments Download
D third_party/tcmalloc/chromium/src/windows/google/tcmalloc.h.in View 1 chunk +0 lines, -116 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h View 3 chunks +12 lines, -5 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h.in View 3 chunks +9 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/ia32_opcode_map.cc View 4 chunks +31 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mingw.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mini_disassembler.h View 1 3 chunks +8 lines, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mini_disassembler.cc View 3 chunks +14 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mini_disassembler_types.h View 2 chunks +12 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/patch_functions.cc View 7 chunks +8 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/port.h View 6 chunks +14 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/port.cc View 3 chunks +5 lines, -6 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/preamble_patcher.h View 9 chunks +237 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/preamble_patcher.cc View 11 chunks +393 lines, -53 lines 0 comments Download
A third_party/tcmalloc/chromium/src/windows/preamble_patcher_test.cc View 1 chunk +367 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/preamble_patcher_with_stub.cc View 8 chunks +133 lines, -37 lines 0 comments Download
A third_party/tcmalloc/chromium/src/windows/shortproc.asm View 1 chunk +169 lines, -0 lines 0 comments Download
M webkit/extensions/v8/heap_profiler_extension.cc View 1 chunk +1 line, -1 line 0 comments Download
M webkit/extensions/v8/profiler_extension.cc View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 13 (0 generated)
Dai Mikurube (NOT FULLTIME)
John(jam), Tony(tony), Erik(arv), Steven(stevenjb) I wonder if you could PTAL at changes in - content/* ...
8 years, 9 months ago (2012-03-03 08:47:43 UTC) #1
jam
rubberstamp lgtm
8 years, 9 months ago (2012-03-05 06:56:26 UTC) #2
tony
webkit LGTM
8 years, 9 months ago (2012-03-05 19:27:30 UTC) #3
arv (Not doing code reviews)
LGTm
8 years, 9 months ago (2012-03-05 21:21:16 UTC) #4
stevenjb
rubberstamp lgtm for chrome/browser/chromeos/status/memory_menu_button.cc
8 years, 9 months ago (2012-03-05 23:14:05 UTC) #5
jar (doing other things)
I wanted to to have a look at the perfbots... but the overview pgae is ...
8 years, 9 months ago (2012-03-06 03:42:46 UTC) #6
Dai Mikurube (NOT FULLTIME)
Thank you for your lgtms, jam, tony, arv, stevenjb. Jim, I understood the situation. Thanks ...
8 years, 9 months ago (2012-03-06 04:49:41 UTC) #7
Dai Mikurube (NOT FULLTIME)
Hi Jim, Perfbots may still be wrong? On 2012/03/06 04:49:41, Dai Mikurube wrote: > Thank ...
8 years, 9 months ago (2012-03-07 21:34:14 UTC) #8
Dai Mikurube (NOT FULLTIME)
Did the performance experiment again, in r126020, and reverted in r126023. Look at the perf ...
8 years, 9 months ago (2012-03-10 10:13:03 UTC) #9
jar (doing other things)
Looking at revision 126020 on the various perf graphs, I've only noticed: Bloat - HTTP: ...
8 years, 9 months ago (2012-03-13 01:01:58 UTC) #10
Dai Mikurube (NOT FULLTIME)
Thank you for looking at it, Jim! I saw the peak in Bloat - HTTP, ...
8 years, 9 months ago (2012-03-13 01:13:07 UTC) #11
jar (doing other things)
The bloat change is very apparent, so the test landing was on target. Have you ...
8 years, 9 months ago (2012-03-14 21:21:56 UTC) #12
Dai Mikurube (NOT FULLTIME)
8 years, 9 months ago (2012-03-14 22:18:36 UTC) #13
Do you mean "Bloat - HTTP" shows worse values after r126412?  I don't see such
an obvious changes in looking at
http://build.chromium.org/f/chromium/perf/xp-release-dual-core/bloat-http/rep...
or other graphs...

Sorry, I think I don't understand your point...


On 2012/03/14 21:21:56, jar wrote:
> The bloat change is very apparent, so the test landing was on target.
> 
> Have you looked at changing back to using "small" pages?  I'm wary that this
is
> at the heart of the issue.  A few percent in byte utilization adds up... and I
> recall reading about this change a few months back with trepidations.
> 
> I *think* there is setting for small vs large pages, and I *think* the new
> default is (questionably) large.
> 
> Jim
> 
> On 2012/03/13 01:13:07, Dai Mikurube wrote:
> > Thank you for looking at it, Jim!
> > 
> > I saw the peak in Bloat - HTTP, too.  I'll keep taking looks after
committing
> > this update.
> > 
> > I'll commit it after dealing with the issue in static initializers.  (I'm
> > talking w/ thakis and pliard.)

Powered by Google App Engine
This is Rietveld 408576698